blob: 026a6f44084a965917fea5cf9c50ef25b18461ab [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.
219 SDValue getCopyFromRegs(SelectionDAG &DAG,
220 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.
226 void getCopyToRegs(SDValue Val, SelectionDAG &DAG,
227 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,
274 bool EnableFastISel) {
275 Fn = &fn;
276 MF = &mf;
277 RegInfo = &MF->getRegInfo();
278
279 // Create a vreg for each argument register that is not dead and is used
280 // outside of the entry block for the function.
281 for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
282 AI != E; ++AI)
283 if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
284 InitializeRegForValue(AI);
285
286 // Initialize the mapping of values to registers. This is only set up for
287 // instruction values that are used outside of the block that defines
288 // them.
289 Function::iterator BB = Fn->begin(), EB = Fn->end();
290 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
291 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
292 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
293 const Type *Ty = AI->getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000294 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000295 unsigned Align =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000296 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
297 AI->getAlignment());
298
299 TySize *= CUI->getZExtValue(); // Get total allocated size.
300 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
301 StaticAllocaMap[AI] =
302 MF->getFrameInfo()->CreateStackObject(TySize, Align);
303 }
304
305 for (; BB != EB; ++BB)
306 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
307 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
308 if (!isa<AllocaInst>(I) ||
309 !StaticAllocaMap.count(cast<AllocaInst>(I)))
310 InitializeRegForValue(I);
311
312 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
313 // also creates the initial PHI MachineInstrs, though none of the input
314 // operands are populated.
315 for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) {
316 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
317 MBBMap[BB] = MBB;
318 MF->push_back(MBB);
319
320 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
321 // appropriate.
322 PHINode *PN;
323 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
324 if (PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000325
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000326 unsigned PHIReg = ValueMap[PN];
327 assert(PHIReg && "PHI node does not have an assigned virtual register!");
328
329 SmallVector<MVT, 4> ValueVTs;
330 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
331 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
332 MVT VT = ValueVTs[vti];
333 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000334 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000335 for (unsigned i = 0; i != NumRegisters; ++i)
336 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
337 PHIReg += NumRegisters;
338 }
339 }
340 }
341}
342
343unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
344 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
345}
346
347/// CreateRegForValue - Allocate the appropriate number of virtual registers of
348/// the correctly promoted or expanded types. Assign these registers
349/// consecutive vreg numbers and return the first assigned number.
350///
351/// In the case that the given value has struct or array type, this function
352/// will assign registers for each member or element.
353///
354unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
355 SmallVector<MVT, 4> ValueVTs;
356 ComputeValueVTs(TLI, V->getType(), ValueVTs);
357
358 unsigned FirstReg = 0;
359 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
360 MVT ValueVT = ValueVTs[Value];
361 MVT RegisterVT = TLI.getRegisterType(ValueVT);
362
363 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
364 for (unsigned i = 0; i != NumRegs; ++i) {
365 unsigned R = MakeReg(RegisterVT);
366 if (!FirstReg) FirstReg = R;
367 }
368 }
369 return FirstReg;
370}
371
372/// getCopyFromParts - Create a value that contains the specified legal parts
373/// combined into the value they represent. If the parts combine to a type
374/// larger then ValueVT then AssertOp can be used to specify whether the extra
375/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
376/// (ISD::AssertSext).
Duncan Sands0b3aa262009-01-28 14:42:54 +0000377static SDValue getCopyFromParts(SelectionDAG &DAG, const SDValue *Parts,
378 unsigned NumParts, MVT PartVT, MVT ValueVT,
379 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000380 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000381 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000382 SDValue Val = Parts[0];
383
384 if (NumParts > 1) {
385 // Assemble the value from multiple parts.
386 if (!ValueVT.isVector()) {
387 unsigned PartBits = PartVT.getSizeInBits();
388 unsigned ValueBits = ValueVT.getSizeInBits();
389
390 // Assemble the power of 2 part.
391 unsigned RoundParts = NumParts & (NumParts - 1) ?
392 1 << Log2_32(NumParts) : NumParts;
393 unsigned RoundBits = PartBits * RoundParts;
394 MVT RoundVT = RoundBits == ValueBits ?
395 ValueVT : MVT::getIntegerVT(RoundBits);
396 SDValue Lo, Hi;
397
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000398 MVT HalfVT = ValueVT.isInteger() ?
399 MVT::getIntegerVT(RoundBits/2) :
400 MVT::getFloatingPointVT(RoundBits/2);
401
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000402 if (RoundParts > 2) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000403 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
404 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
405 PartVT, HalfVT);
406 } else {
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000407 Lo = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(),
408 HalfVT, Parts[0]);
409 Hi = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(),
410 HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000411 }
412 if (TLI.isBigEndian())
413 std::swap(Lo, Hi);
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000414 Val = DAG.getNode(ISD::BUILD_PAIR, DAG.getCurDebugLoc(), RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000415
416 if (RoundParts < NumParts) {
417 // Assemble the trailing non-power-of-2 part.
418 unsigned OddParts = NumParts - RoundParts;
419 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
420 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
421
422 // Combine the round and odd parts.
423 Lo = Val;
424 if (TLI.isBigEndian())
425 std::swap(Lo, Hi);
426 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000427 Hi = DAG.getNode(ISD::ANY_EXTEND, DAG.getCurDebugLoc(), TotalVT, Hi);
428 Hi = DAG.getNode(ISD::SHL, DAG.getCurDebugLoc(), TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000429 DAG.getConstant(Lo.getValueType().getSizeInBits(),
430 TLI.getShiftAmountTy()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000431 Lo = DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(), TotalVT, Lo);
432 Val = DAG.getNode(ISD::OR, DAG.getCurDebugLoc(), TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000433 }
434 } else {
435 // Handle a multi-element vector.
436 MVT IntermediateVT, RegisterVT;
437 unsigned NumIntermediates;
438 unsigned NumRegs =
439 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
440 RegisterVT);
441 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
442 NumParts = NumRegs; // Silence a compiler warning.
443 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
444 assert(RegisterVT == Parts[0].getValueType() &&
445 "Part type doesn't match part!");
446
447 // Assemble the parts into intermediate operands.
448 SmallVector<SDValue, 8> Ops(NumIntermediates);
449 if (NumIntermediates == NumParts) {
450 // If the register was not expanded, truncate or copy the value,
451 // as appropriate.
452 for (unsigned i = 0; i != NumParts; ++i)
453 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
454 PartVT, IntermediateVT);
455 } else if (NumParts > 0) {
456 // If the intermediate type was expanded, build the intermediate operands
457 // from the parts.
458 assert(NumParts % NumIntermediates == 0 &&
459 "Must expand into a divisible number of parts!");
460 unsigned Factor = NumParts / NumIntermediates;
461 for (unsigned i = 0; i != NumIntermediates; ++i)
462 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
463 PartVT, IntermediateVT);
464 }
465
466 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
467 // operands.
468 Val = DAG.getNode(IntermediateVT.isVector() ?
469 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000470 DAG.getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000471 ValueVT, &Ops[0], NumIntermediates);
472 }
473 }
474
475 // There is now one part, held in Val. Correct it to match ValueVT.
476 PartVT = Val.getValueType();
477
478 if (PartVT == ValueVT)
479 return Val;
480
481 if (PartVT.isVector()) {
482 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000483 return DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(), ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000484 }
485
486 if (ValueVT.isVector()) {
487 assert(ValueVT.getVectorElementType() == PartVT &&
488 ValueVT.getVectorNumElements() == 1 &&
489 "Only trivial scalar-to-vector conversions should get here!");
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000490 return DAG.getNode(ISD::BUILD_VECTOR, DAG.getCurDebugLoc(), ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000491 }
492
493 if (PartVT.isInteger() &&
494 ValueVT.isInteger()) {
495 if (ValueVT.bitsLT(PartVT)) {
496 // For a truncate, see if we have any information to
497 // indicate whether the truncated bits will always be
498 // zero or sign-extension.
499 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000500 Val = DAG.getNode(AssertOp, DAG.getCurDebugLoc(), PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000501 DAG.getValueType(ValueVT));
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000502 return DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(), ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000503 } else {
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000504 return DAG.getNode(ISD::ANY_EXTEND, DAG.getCurDebugLoc(), ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000505 }
506 }
507
508 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
509 if (ValueVT.bitsLT(Val.getValueType()))
510 // FP_ROUND's are always exact here.
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000511 return DAG.getNode(ISD::FP_ROUND, DAG.getCurDebugLoc(), ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000512 DAG.getIntPtrConstant(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000513 return DAG.getNode(ISD::FP_EXTEND, DAG.getCurDebugLoc(), ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000514 }
515
516 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000517 return DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(), ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000518
519 assert(0 && "Unknown mismatch!");
520 return SDValue();
521}
522
523/// getCopyToParts - Create a series of nodes that contain the specified value
524/// split into legal parts. If the parts contain more bits than Val, then, for
525/// integers, ExtendKind can be used to specify how to generate the extra bits.
Chris Lattner01426e12008-10-21 00:45:36 +0000526static void getCopyToParts(SelectionDAG &DAG, SDValue Val,
527 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000528 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000529 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000530 MVT PtrVT = TLI.getPointerTy();
531 MVT ValueVT = Val.getValueType();
532 unsigned PartBits = PartVT.getSizeInBits();
533 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
534
535 if (!NumParts)
536 return;
537
538 if (!ValueVT.isVector()) {
539 if (PartVT == ValueVT) {
540 assert(NumParts == 1 && "No-op copy with multiple parts!");
541 Parts[0] = Val;
542 return;
543 }
544
545 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
546 // If the parts cover more bits than the value has, promote the value.
547 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
548 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000549 Val = DAG.getNode(ISD::FP_EXTEND, DAG.getCurDebugLoc(), PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000550 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
551 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000552 Val = DAG.getNode(ExtendKind, DAG.getCurDebugLoc(), ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000553 } else {
554 assert(0 && "Unknown mismatch!");
555 }
556 } else if (PartBits == ValueVT.getSizeInBits()) {
557 // Different types of the same size.
558 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000559 Val = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(), PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000560 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
561 // If the parts cover less bits than value has, truncate the value.
562 if (PartVT.isInteger() && ValueVT.isInteger()) {
563 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000564 Val = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(), ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000565 } else {
566 assert(0 && "Unknown mismatch!");
567 }
568 }
569
570 // The value may have changed - recompute ValueVT.
571 ValueVT = Val.getValueType();
572 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
573 "Failed to tile the value with PartVT!");
574
575 if (NumParts == 1) {
576 assert(PartVT == ValueVT && "Type conversion failed!");
577 Parts[0] = Val;
578 return;
579 }
580
581 // Expand the value into multiple parts.
582 if (NumParts & (NumParts - 1)) {
583 // The number of parts is not a power of 2. Split off and copy the tail.
584 assert(PartVT.isInteger() && ValueVT.isInteger() &&
585 "Do not know what to expand to!");
586 unsigned RoundParts = 1 << Log2_32(NumParts);
587 unsigned RoundBits = RoundParts * PartBits;
588 unsigned OddParts = NumParts - RoundParts;
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000589 SDValue OddVal = DAG.getNode(ISD::SRL, DAG.getCurDebugLoc(), ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000590 DAG.getConstant(RoundBits,
591 TLI.getShiftAmountTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000592 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
593 if (TLI.isBigEndian())
594 // The odd parts were reversed by getCopyToParts - unreverse them.
595 std::reverse(Parts + RoundParts, Parts + NumParts);
596 NumParts = RoundParts;
597 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000598 Val = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(), ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000599 }
600
601 // The number of parts is a power of 2. Repeatedly bisect the value using
602 // EXTRACT_ELEMENT.
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000603 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000604 MVT::getIntegerVT(ValueVT.getSizeInBits()),
605 Val);
606 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
607 for (unsigned i = 0; i < NumParts; i += StepSize) {
608 unsigned ThisBits = StepSize * PartBits / 2;
609 MVT ThisVT = MVT::getIntegerVT (ThisBits);
610 SDValue &Part0 = Parts[i];
611 SDValue &Part1 = Parts[i+StepSize/2];
612
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000613 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, DAG.getCurDebugLoc(),
614 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000615 DAG.getConstant(1, PtrVT));
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000616 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, DAG.getCurDebugLoc(),
617 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000618 DAG.getConstant(0, PtrVT));
619
620 if (ThisBits == PartBits && ThisVT != PartVT) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000621 Part0 = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(),
622 PartVT, Part0);
623 Part1 = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(),
624 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000625 }
626 }
627 }
628
629 if (TLI.isBigEndian())
630 std::reverse(Parts, Parts + NumParts);
631
632 return;
633 }
634
635 // Vector ValueVT.
636 if (NumParts == 1) {
637 if (PartVT != ValueVT) {
638 if (PartVT.isVector()) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000639 Val = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(), PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000640 } else {
641 assert(ValueVT.getVectorElementType() == PartVT &&
642 ValueVT.getVectorNumElements() == 1 &&
643 "Only trivial vector-to-scalar conversions should get here!");
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000644 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DAG.getCurDebugLoc(),
645 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000646 DAG.getConstant(0, PtrVT));
647 }
648 }
649
650 Parts[0] = Val;
651 return;
652 }
653
654 // Handle a multi-element vector.
655 MVT IntermediateVT, RegisterVT;
656 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000657 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000658 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
659 RegisterVT);
660 unsigned NumElements = ValueVT.getVectorNumElements();
661
662 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
663 NumParts = NumRegs; // Silence a compiler warning.
664 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
665
666 // Split the vector into intermediate operands.
667 SmallVector<SDValue, 8> Ops(NumIntermediates);
668 for (unsigned i = 0; i != NumIntermediates; ++i)
669 if (IntermediateVT.isVector())
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000670 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DAG.getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000671 IntermediateVT, Val,
672 DAG.getConstant(i * (NumElements / NumIntermediates),
673 PtrVT));
674 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000675 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DAG.getCurDebugLoc(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000676 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000677 DAG.getConstant(i, PtrVT));
678
679 // Split the intermediate operands into legal parts.
680 if (NumParts == NumIntermediates) {
681 // If the register was not expanded, promote or copy the value,
682 // as appropriate.
683 for (unsigned i = 0; i != NumParts; ++i)
684 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
685 } else if (NumParts > 0) {
686 // If the intermediate type was expanded, split each the value into
687 // legal parts.
688 assert(NumParts % NumIntermediates == 0 &&
689 "Must expand into a divisible number of parts!");
690 unsigned Factor = NumParts / NumIntermediates;
691 for (unsigned i = 0; i != NumIntermediates; ++i)
692 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
693 }
694}
695
696
697void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
698 AA = &aa;
699 GFI = gfi;
700 TD = DAG.getTarget().getTargetData();
701}
702
703/// clear - Clear out the curret SelectionDAG and the associated
704/// state and prepare this SelectionDAGLowering object to be used
705/// for a new block. This doesn't clear out information about
706/// additional blocks that are needed to complete switch lowering
707/// or PHI node updating; that information is cleared out as it is
708/// consumed.
709void SelectionDAGLowering::clear() {
710 NodeMap.clear();
711 PendingLoads.clear();
712 PendingExports.clear();
713 DAG.clear();
714}
715
716/// getRoot - Return the current virtual root of the Selection DAG,
717/// flushing any PendingLoad items. This must be done before emitting
718/// a store or any other node that may need to be ordered after any
719/// prior load instructions.
720///
721SDValue SelectionDAGLowering::getRoot() {
722 if (PendingLoads.empty())
723 return DAG.getRoot();
724
725 if (PendingLoads.size() == 1) {
726 SDValue Root = PendingLoads[0];
727 DAG.setRoot(Root);
728 PendingLoads.clear();
729 return Root;
730 }
731
732 // Otherwise, we have to make a token factor node.
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000733 SDValue Root = DAG.getNode(ISD::TokenFactor, DAG.getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000734 &PendingLoads[0], PendingLoads.size());
735 PendingLoads.clear();
736 DAG.setRoot(Root);
737 return Root;
738}
739
740/// getControlRoot - Similar to getRoot, but instead of flushing all the
741/// PendingLoad items, flush all the PendingExports items. It is necessary
742/// to do this before emitting a terminator instruction.
743///
744SDValue SelectionDAGLowering::getControlRoot() {
745 SDValue Root = DAG.getRoot();
746
747 if (PendingExports.empty())
748 return Root;
749
750 // Turn all of the CopyToReg chains into one factored node.
751 if (Root.getOpcode() != ISD::EntryToken) {
752 unsigned i = 0, e = PendingExports.size();
753 for (; i != e; ++i) {
754 assert(PendingExports[i].getNode()->getNumOperands() > 1);
755 if (PendingExports[i].getNode()->getOperand(0) == Root)
756 break; // Don't add the root if we already indirectly depend on it.
757 }
758
759 if (i == e)
760 PendingExports.push_back(Root);
761 }
762
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000763 Root = DAG.getNode(ISD::TokenFactor, DAG.getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000764 &PendingExports[0],
765 PendingExports.size());
766 PendingExports.clear();
767 DAG.setRoot(Root);
768 return Root;
769}
770
771void SelectionDAGLowering::visit(Instruction &I) {
772 visit(I.getOpcode(), I);
773}
774
775void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
776 // Note: this doesn't use InstVisitor, because it has to work with
777 // ConstantExpr's in addition to instructions.
778 switch (Opcode) {
779 default: assert(0 && "Unknown instruction type encountered!");
780 abort();
781 // Build the switch statement using the Instruction.def file.
782#define HANDLE_INST(NUM, OPCODE, CLASS) \
783 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
784#include "llvm/Instruction.def"
785 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000786}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000787
788void SelectionDAGLowering::visitAdd(User &I) {
789 if (I.getType()->isFPOrFPVector())
790 visitBinary(I, ISD::FADD);
791 else
792 visitBinary(I, ISD::ADD);
793}
794
795void SelectionDAGLowering::visitMul(User &I) {
796 if (I.getType()->isFPOrFPVector())
797 visitBinary(I, ISD::FMUL);
798 else
799 visitBinary(I, ISD::MUL);
800}
801
802SDValue SelectionDAGLowering::getValue(const Value *V) {
803 SDValue &N = NodeMap[V];
804 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000805
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000806 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
807 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000808
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000809 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000810 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000811
812 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
813 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000814
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000815 if (isa<ConstantPointerNull>(C))
816 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000817
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000818 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000819 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000820
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000821 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
822 !V->getType()->isAggregateType())
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000823 return N = DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000824
825 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
826 visit(CE->getOpcode(), *CE);
827 SDValue N1 = NodeMap[V];
828 assert(N1.getNode() && "visit didn't populate the ValueMap!");
829 return N1;
830 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000831
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000832 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
833 SmallVector<SDValue, 4> Constants;
834 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
835 OI != OE; ++OI) {
836 SDNode *Val = getValue(*OI).getNode();
837 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
838 Constants.push_back(SDValue(Val, i));
839 }
840 return DAG.getMergeValues(&Constants[0], Constants.size());
841 }
842
843 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
844 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
845 "Unknown struct or array constant!");
846
847 SmallVector<MVT, 4> ValueVTs;
848 ComputeValueVTs(TLI, C->getType(), ValueVTs);
849 unsigned NumElts = ValueVTs.size();
850 if (NumElts == 0)
851 return SDValue(); // empty struct
852 SmallVector<SDValue, 4> Constants(NumElts);
853 for (unsigned i = 0; i != NumElts; ++i) {
854 MVT EltVT = ValueVTs[i];
855 if (isa<UndefValue>(C))
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000856 Constants[i] = DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(), EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000857 else if (EltVT.isFloatingPoint())
858 Constants[i] = DAG.getConstantFP(0, EltVT);
859 else
860 Constants[i] = DAG.getConstant(0, EltVT);
861 }
862 return DAG.getMergeValues(&Constants[0], NumElts);
863 }
864
865 const VectorType *VecTy = cast<VectorType>(V->getType());
866 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000867
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000868 // Now that we know the number and type of the elements, get that number of
869 // elements into the Ops array based on what kind of constant it is.
870 SmallVector<SDValue, 16> Ops;
871 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
872 for (unsigned i = 0; i != NumElements; ++i)
873 Ops.push_back(getValue(CP->getOperand(i)));
874 } else {
875 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
876 "Unknown vector constant!");
877 MVT EltVT = TLI.getValueType(VecTy->getElementType());
878
879 SDValue Op;
880 if (isa<UndefValue>(C))
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000881 Op = DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(), EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000882 else if (EltVT.isFloatingPoint())
883 Op = DAG.getConstantFP(0, EltVT);
884 else
885 Op = DAG.getConstant(0, EltVT);
886 Ops.assign(NumElements, Op);
887 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000888
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000889 // Create a BUILD_VECTOR node.
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000890 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, DAG.getCurDebugLoc(),
891 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000892 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000893
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000894 // If this is a static alloca, generate it as the frameindex instead of
895 // computation.
896 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
897 DenseMap<const AllocaInst*, int>::iterator SI =
898 FuncInfo.StaticAllocaMap.find(AI);
899 if (SI != FuncInfo.StaticAllocaMap.end())
900 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
901 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000902
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000903 unsigned InReg = FuncInfo.ValueMap[V];
904 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000905
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000906 RegsForValue RFV(TLI, InReg, V->getType());
907 SDValue Chain = DAG.getEntryNode();
908 return RFV.getCopyFromRegs(DAG, Chain, NULL);
909}
910
911
912void SelectionDAGLowering::visitRet(ReturnInst &I) {
913 if (I.getNumOperands() == 0) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000914 DAG.setRoot(DAG.getNode(ISD::RET, DAG.getCurDebugLoc(),
915 MVT::Other, getControlRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000916 return;
917 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000918
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000919 SmallVector<SDValue, 8> NewValues;
920 NewValues.push_back(getControlRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000921 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000922 SmallVector<MVT, 4> ValueVTs;
923 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000924 unsigned NumValues = ValueVTs.size();
925 if (NumValues == 0) continue;
926
927 SDValue RetOp = getValue(I.getOperand(i));
928 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000929 MVT VT = ValueVTs[j];
930
931 // FIXME: C calling convention requires the return type to be promoted to
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000932 // at least 32-bit. But this is not necessary for non-C calling
933 // conventions.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000934 if (VT.isInteger()) {
935 MVT MinVT = TLI.getRegisterType(MVT::i32);
936 if (VT.bitsLT(MinVT))
937 VT = MinVT;
938 }
939
940 unsigned NumParts = TLI.getNumRegisters(VT);
941 MVT PartVT = TLI.getRegisterType(VT);
942 SmallVector<SDValue, 4> Parts(NumParts);
943 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000944
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000945 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000946 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000947 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000948 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000949 ExtendKind = ISD::ZERO_EXTEND;
950
951 getCopyToParts(DAG, SDValue(RetOp.getNode(), RetOp.getResNo() + j),
952 &Parts[0], NumParts, PartVT, ExtendKind);
953
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000954 // 'inreg' on function refers to return value
955 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +0000956 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000957 Flags.setInReg();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000958 for (unsigned i = 0; i < NumParts; ++i) {
959 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000960 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000961 }
962 }
963 }
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000964 DAG.setRoot(DAG.getNode(ISD::RET, DAG.getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000965 &NewValues[0], NewValues.size()));
966}
967
968/// ExportFromCurrentBlock - If this condition isn't known to be exported from
969/// the current basic block, add it to ValueMap now so that we'll get a
970/// CopyTo/FromReg.
971void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
972 // No need to export constants.
973 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000974
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000975 // Already exported?
976 if (FuncInfo.isExportedInst(V)) return;
977
978 unsigned Reg = FuncInfo.InitializeRegForValue(V);
979 CopyValueToVirtualRegister(V, Reg);
980}
981
982bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
983 const BasicBlock *FromBB) {
984 // The operands of the setcc have to be in this block. We don't know
985 // how to export them from some other block.
986 if (Instruction *VI = dyn_cast<Instruction>(V)) {
987 // Can export from current BB.
988 if (VI->getParent() == FromBB)
989 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000990
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000991 // Is already exported, noop.
992 return FuncInfo.isExportedInst(V);
993 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000994
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000995 // If this is an argument, we can export it if the BB is the entry block or
996 // if it is already exported.
997 if (isa<Argument>(V)) {
998 if (FromBB == &FromBB->getParent()->getEntryBlock())
999 return true;
1000
1001 // Otherwise, can only export this if it is already exported.
1002 return FuncInfo.isExportedInst(V);
1003 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001004
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001005 // Otherwise, constants can always be exported.
1006 return true;
1007}
1008
1009static bool InBlock(const Value *V, const BasicBlock *BB) {
1010 if (const Instruction *I = dyn_cast<Instruction>(V))
1011 return I->getParent() == BB;
1012 return true;
1013}
1014
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001015/// getFCmpCondCode - Return the ISD condition code corresponding to
1016/// the given LLVM IR floating-point condition code. This includes
1017/// consideration of global floating-point math flags.
1018///
1019static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1020 ISD::CondCode FPC, FOC;
1021 switch (Pred) {
1022 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1023 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1024 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1025 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1026 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1027 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1028 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1029 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1030 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1031 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1032 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1033 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1034 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1035 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1036 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1037 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1038 default:
1039 assert(0 && "Invalid FCmp predicate opcode!");
1040 FOC = FPC = ISD::SETFALSE;
1041 break;
1042 }
1043 if (FiniteOnlyFPMath())
1044 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001045 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001046 return FPC;
1047}
1048
1049/// getICmpCondCode - Return the ISD condition code corresponding to
1050/// the given LLVM IR integer condition code.
1051///
1052static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1053 switch (Pred) {
1054 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1055 case ICmpInst::ICMP_NE: return ISD::SETNE;
1056 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1057 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1058 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1059 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1060 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1061 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1062 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1063 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1064 default:
1065 assert(0 && "Invalid ICmp predicate opcode!");
1066 return ISD::SETNE;
1067 }
1068}
1069
Dan Gohmanc2277342008-10-17 21:16:08 +00001070/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1071/// This function emits a branch and is used at the leaves of an OR or an
1072/// AND operator tree.
1073///
1074void
1075SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1076 MachineBasicBlock *TBB,
1077 MachineBasicBlock *FBB,
1078 MachineBasicBlock *CurBB) {
1079 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001080
Dan Gohmanc2277342008-10-17 21:16:08 +00001081 // If the leaf of the tree is a comparison, merge the condition into
1082 // the caseblock.
1083 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1084 // The operands of the cmp have to be in this block. We don't know
1085 // how to export them from some other block. If this is the first block
1086 // of the sequence, no exporting is needed.
1087 if (CurBB == CurMBB ||
1088 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1089 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001090 ISD::CondCode Condition;
1091 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001092 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001093 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001094 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001095 } else {
1096 Condition = ISD::SETEQ; // silence warning.
1097 assert(0 && "Unknown compare instruction");
1098 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001099
1100 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001101 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1102 SwitchCases.push_back(CB);
1103 return;
1104 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001105 }
1106
1107 // Create a CaseBlock record representing this branch.
1108 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1109 NULL, TBB, FBB, CurBB);
1110 SwitchCases.push_back(CB);
1111}
1112
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001113/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001114void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1115 MachineBasicBlock *TBB,
1116 MachineBasicBlock *FBB,
1117 MachineBasicBlock *CurBB,
1118 unsigned Opc) {
1119 // If this node is not part of the or/and tree, emit it as a branch.
1120 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001121 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001122 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1123 BOp->getParent() != CurBB->getBasicBlock() ||
1124 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1125 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1126 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001127 return;
1128 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001129
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001130 // Create TmpBB after CurBB.
1131 MachineFunction::iterator BBI = CurBB;
1132 MachineFunction &MF = DAG.getMachineFunction();
1133 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1134 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001135
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001136 if (Opc == Instruction::Or) {
1137 // Codegen X | Y as:
1138 // jmp_if_X TBB
1139 // jmp TmpBB
1140 // TmpBB:
1141 // jmp_if_Y TBB
1142 // jmp FBB
1143 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001144
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001145 // Emit the LHS condition.
1146 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001147
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001148 // Emit the RHS condition into TmpBB.
1149 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1150 } else {
1151 assert(Opc == Instruction::And && "Unknown merge op!");
1152 // Codegen X & Y as:
1153 // jmp_if_X TmpBB
1154 // jmp FBB
1155 // TmpBB:
1156 // jmp_if_Y TBB
1157 // jmp FBB
1158 //
1159 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001160
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001161 // Emit the LHS condition.
1162 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001163
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001164 // Emit the RHS condition into TmpBB.
1165 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1166 }
1167}
1168
1169/// If the set of cases should be emitted as a series of branches, return true.
1170/// If we should emit this as a bunch of and/or'd together conditions, return
1171/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001172bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001173SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1174 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001175
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001176 // If this is two comparisons of the same values or'd or and'd together, they
1177 // will get folded into a single comparison, so don't emit two blocks.
1178 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1179 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1180 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1181 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1182 return false;
1183 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001184
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001185 return true;
1186}
1187
1188void SelectionDAGLowering::visitBr(BranchInst &I) {
1189 // Update machine-CFG edges.
1190 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1191
1192 // Figure out which block is immediately after the current one.
1193 MachineBasicBlock *NextBlock = 0;
1194 MachineFunction::iterator BBI = CurMBB;
1195 if (++BBI != CurMBB->getParent()->end())
1196 NextBlock = BBI;
1197
1198 if (I.isUnconditional()) {
1199 // Update machine-CFG edges.
1200 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001201
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001202 // If this is not a fall-through branch, emit the branch.
1203 if (Succ0MBB != NextBlock)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001204 DAG.setRoot(DAG.getNode(ISD::BR, DAG.getCurDebugLoc(),
1205 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001206 DAG.getBasicBlock(Succ0MBB)));
1207 return;
1208 }
1209
1210 // If this condition is one of the special cases we handle, do special stuff
1211 // now.
1212 Value *CondVal = I.getCondition();
1213 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1214
1215 // If this is a series of conditions that are or'd or and'd together, emit
1216 // this as a sequence of branches instead of setcc's with and/or operations.
1217 // For example, instead of something like:
1218 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001219 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001220 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001221 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001222 // or C, F
1223 // jnz foo
1224 // Emit:
1225 // cmp A, B
1226 // je foo
1227 // cmp D, E
1228 // jle foo
1229 //
1230 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001231 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001232 (BOp->getOpcode() == Instruction::And ||
1233 BOp->getOpcode() == Instruction::Or)) {
1234 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1235 // If the compares in later blocks need to use values not currently
1236 // exported from this block, export them now. This block should always
1237 // be the first entry.
1238 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001239
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001240 // Allow some cases to be rejected.
1241 if (ShouldEmitAsBranches(SwitchCases)) {
1242 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1243 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1244 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1245 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001246
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001247 // Emit the branch for this block.
1248 visitSwitchCase(SwitchCases[0]);
1249 SwitchCases.erase(SwitchCases.begin());
1250 return;
1251 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001252
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001253 // Okay, we decided not to do this, remove any inserted MBB's and clear
1254 // SwitchCases.
1255 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1256 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001257
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001258 SwitchCases.clear();
1259 }
1260 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001261
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001262 // Create a CaseBlock record representing this branch.
1263 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1264 NULL, Succ0MBB, Succ1MBB, CurMBB);
1265 // Use visitSwitchCase to actually insert the fast branch sequence for this
1266 // cond branch.
1267 visitSwitchCase(CB);
1268}
1269
1270/// visitSwitchCase - Emits the necessary code to represent a single node in
1271/// the binary search tree resulting from lowering a switch instruction.
1272void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1273 SDValue Cond;
1274 SDValue CondLHS = getValue(CB.CmpLHS);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001275
1276 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001277 if (CB.CmpMHS == NULL) {
1278 // Fold "(X == true)" to X and "(X == false)" to !X to
1279 // handle common cases produced by branch lowering.
1280 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1281 Cond = CondLHS;
1282 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1283 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001284 Cond = DAG.getNode(ISD::XOR, DAG.getCurDebugLoc(),
1285 CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001286 } else
1287 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1288 } else {
1289 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1290
Anton Korobeynikov23218582008-12-23 22:25:27 +00001291 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1292 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001293
1294 SDValue CmpOp = getValue(CB.CmpMHS);
1295 MVT VT = CmpOp.getValueType();
1296
1297 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1298 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1299 } else {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001300 SDValue SUB = DAG.getNode(ISD::SUB, DAG.getCurDebugLoc(),
1301 VT, CmpOp, DAG.getConstant(Low, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001302 Cond = DAG.getSetCC(MVT::i1, SUB,
1303 DAG.getConstant(High-Low, VT), ISD::SETULE);
1304 }
1305 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001306
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001307 // Update successor info
1308 CurMBB->addSuccessor(CB.TrueBB);
1309 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001310
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001311 // Set NextBlock to be the MBB immediately after the current one, if any.
1312 // This is used to avoid emitting unnecessary branches to the next block.
1313 MachineBasicBlock *NextBlock = 0;
1314 MachineFunction::iterator BBI = CurMBB;
1315 if (++BBI != CurMBB->getParent()->end())
1316 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001317
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001318 // If the lhs block is the next block, invert the condition so that we can
1319 // fall through to the lhs instead of the rhs block.
1320 if (CB.TrueBB == NextBlock) {
1321 std::swap(CB.TrueBB, CB.FalseBB);
1322 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001323 Cond = DAG.getNode(ISD::XOR, DAG.getCurDebugLoc(),
1324 Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001325 }
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001326 SDValue BrCond = DAG.getNode(ISD::BRCOND, DAG.getCurDebugLoc(),
1327 MVT::Other, getControlRoot(), Cond,
1328 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001329
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001330 // If the branch was constant folded, fix up the CFG.
1331 if (BrCond.getOpcode() == ISD::BR) {
1332 CurMBB->removeSuccessor(CB.FalseBB);
1333 DAG.setRoot(BrCond);
1334 } else {
1335 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001336 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001337 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001338
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001339 if (CB.FalseBB == NextBlock)
1340 DAG.setRoot(BrCond);
1341 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001342 DAG.setRoot(DAG.getNode(ISD::BR, DAG.getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001343 DAG.getBasicBlock(CB.FalseBB)));
1344 }
1345}
1346
1347/// visitJumpTable - Emit JumpTable node in the current MBB
1348void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1349 // Emit the code for the jump table
1350 assert(JT.Reg != -1U && "Should lower JT Header first!");
1351 MVT PTy = TLI.getPointerTy();
1352 SDValue Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
1353 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001354 DAG.setRoot(DAG.getNode(ISD::BR_JT, DAG.getCurDebugLoc(),
1355 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001356 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001357}
1358
1359/// visitJumpTableHeader - This function emits necessary code to produce index
1360/// in the JumpTable from switch case.
1361void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1362 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001363 // Subtract the lowest switch case value from the value being switched on and
1364 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001365 // difference between smallest and largest cases.
1366 SDValue SwitchOp = getValue(JTH.SValue);
1367 MVT VT = SwitchOp.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001368 SDValue SUB = DAG.getNode(ISD::SUB, DAG.getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001369 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001370
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001371 // The SDNode we just created, which holds the value being switched on minus
1372 // the the smallest case value, needs to be copied to a virtual register so it
1373 // can be used as an index into the jump table in a subsequent basic block.
1374 // This value may be smaller or larger than the target's pointer type, and
1375 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001376 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001377 SwitchOp = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(),
1378 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001379 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001380 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(),
1381 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001382
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001383 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
1384 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
1385 JT.Reg = JumpTableReg;
1386
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001387 // Emit the range check for the jump table, and branch to the default block
1388 // for the switch statement if the value being switched on exceeds the largest
1389 // case in the switch.
Duncan Sands5480c042009-01-01 15:52:00 +00001390 SDValue CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001391 DAG.getConstant(JTH.Last-JTH.First,VT),
1392 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001393
1394 // Set NextBlock to be the MBB immediately after the current one, if any.
1395 // This is used to avoid emitting unnecessary branches to the next block.
1396 MachineBasicBlock *NextBlock = 0;
1397 MachineFunction::iterator BBI = CurMBB;
1398 if (++BBI != CurMBB->getParent()->end())
1399 NextBlock = BBI;
1400
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001401 SDValue BrCond = DAG.getNode(ISD::BRCOND, DAG.getCurDebugLoc(),
1402 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001403 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001404
1405 if (JT.MBB == NextBlock)
1406 DAG.setRoot(BrCond);
1407 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001408 DAG.setRoot(DAG.getNode(ISD::BR, DAG.getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001409 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001410}
1411
1412/// visitBitTestHeader - This function emits necessary code to produce value
1413/// suitable for "bit tests"
1414void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1415 // Subtract the minimum value
1416 SDValue SwitchOp = getValue(B.SValue);
1417 MVT VT = SwitchOp.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001418 SDValue SUB = DAG.getNode(ISD::SUB, DAG.getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001419 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001420
1421 // Check range
Duncan Sands5480c042009-01-01 15:52:00 +00001422 SDValue RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001423 DAG.getConstant(B.Range, VT),
1424 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001425
1426 SDValue ShiftOp;
1427 if (VT.bitsGT(TLI.getShiftAmountTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001428 ShiftOp = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(),
1429 TLI.getShiftAmountTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001430 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001431 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(),
1432 TLI.getShiftAmountTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001433
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001434 B.Reg = FuncInfo.MakeReg(TLI.getShiftAmountTy());
1435 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001436
1437 // Set NextBlock to be the MBB immediately after the current one, if any.
1438 // This is used to avoid emitting unnecessary branches to the next block.
1439 MachineBasicBlock *NextBlock = 0;
1440 MachineFunction::iterator BBI = CurMBB;
1441 if (++BBI != CurMBB->getParent()->end())
1442 NextBlock = BBI;
1443
1444 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1445
1446 CurMBB->addSuccessor(B.Default);
1447 CurMBB->addSuccessor(MBB);
1448
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001449 SDValue BrRange = DAG.getNode(ISD::BRCOND, DAG.getCurDebugLoc(),
1450 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001451 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001452
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001453 if (MBB == NextBlock)
1454 DAG.setRoot(BrRange);
1455 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001456 DAG.setRoot(DAG.getNode(ISD::BR, DAG.getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001457 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001458}
1459
1460/// visitBitTestCase - this function produces one "bit test"
1461void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1462 unsigned Reg,
1463 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001464 // Make desired shift
1465 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), Reg,
1466 TLI.getShiftAmountTy());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001467 SDValue SwitchVal = DAG.getNode(ISD::SHL, DAG.getCurDebugLoc(),
1468 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001469 DAG.getConstant(1, TLI.getPointerTy()),
1470 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001471
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001472 // Emit bit tests and jumps
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001473 SDValue AndOp = DAG.getNode(ISD::AND, DAG.getCurDebugLoc(),
1474 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001475 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Duncan Sands5480c042009-01-01 15:52:00 +00001476 SDValue AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp.getValueType()),
1477 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001478 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001479
1480 CurMBB->addSuccessor(B.TargetBB);
1481 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001482
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001483 SDValue BrAnd = DAG.getNode(ISD::BRCOND, DAG.getCurDebugLoc(),
1484 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001485 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001486
1487 // Set NextBlock to be the MBB immediately after the current one, if any.
1488 // This is used to avoid emitting unnecessary branches to the next block.
1489 MachineBasicBlock *NextBlock = 0;
1490 MachineFunction::iterator BBI = CurMBB;
1491 if (++BBI != CurMBB->getParent()->end())
1492 NextBlock = BBI;
1493
1494 if (NextMBB == NextBlock)
1495 DAG.setRoot(BrAnd);
1496 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001497 DAG.setRoot(DAG.getNode(ISD::BR, DAG.getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001498 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001499}
1500
1501void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1502 // Retrieve successors.
1503 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1504 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1505
Gabor Greifb67e6b32009-01-15 11:10:44 +00001506 const Value *Callee(I.getCalledValue());
1507 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001508 visitInlineAsm(&I);
1509 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001510 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001511
1512 // If the value of the invoke is used outside of its defining block, make it
1513 // available as a virtual register.
1514 if (!I.use_empty()) {
1515 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1516 if (VMI != FuncInfo.ValueMap.end())
1517 CopyValueToVirtualRegister(&I, VMI->second);
1518 }
1519
1520 // Update successor info
1521 CurMBB->addSuccessor(Return);
1522 CurMBB->addSuccessor(LandingPad);
1523
1524 // Drop into normal successor.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001525 DAG.setRoot(DAG.getNode(ISD::BR, DAG.getCurDebugLoc(),
1526 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001527 DAG.getBasicBlock(Return)));
1528}
1529
1530void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1531}
1532
1533/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1534/// small case ranges).
1535bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1536 CaseRecVector& WorkList,
1537 Value* SV,
1538 MachineBasicBlock* Default) {
1539 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001540
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001541 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001542 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001543 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001544 return false;
1545
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001546 // Get the MachineFunction which holds the current MBB. This is used when
1547 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001548 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001549
1550 // Figure out which block is immediately after the current one.
1551 MachineBasicBlock *NextBlock = 0;
1552 MachineFunction::iterator BBI = CR.CaseBB;
1553
1554 if (++BBI != CurMBB->getParent()->end())
1555 NextBlock = BBI;
1556
1557 // TODO: If any two of the cases has the same destination, and if one value
1558 // is the same as the other, but has one bit unset that the other has set,
1559 // use bit manipulation to do two compares at once. For example:
1560 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001561
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001562 // Rearrange the case blocks so that the last one falls through if possible.
1563 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1564 // The last case block won't fall through into 'NextBlock' if we emit the
1565 // branches in this order. See if rearranging a case value would help.
1566 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1567 if (I->BB == NextBlock) {
1568 std::swap(*I, BackCase);
1569 break;
1570 }
1571 }
1572 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001573
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001574 // Create a CaseBlock record representing a conditional branch to
1575 // the Case's target mbb if the value being switched on SV is equal
1576 // to C.
1577 MachineBasicBlock *CurBlock = CR.CaseBB;
1578 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1579 MachineBasicBlock *FallThrough;
1580 if (I != E-1) {
1581 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1582 CurMF->insert(BBI, FallThrough);
1583 } else {
1584 // If the last case doesn't match, go to the default block.
1585 FallThrough = Default;
1586 }
1587
1588 Value *RHS, *LHS, *MHS;
1589 ISD::CondCode CC;
1590 if (I->High == I->Low) {
1591 // This is just small small case range :) containing exactly 1 case
1592 CC = ISD::SETEQ;
1593 LHS = SV; RHS = I->High; MHS = NULL;
1594 } else {
1595 CC = ISD::SETLE;
1596 LHS = I->Low; MHS = SV; RHS = I->High;
1597 }
1598 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001599
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001600 // If emitting the first comparison, just call visitSwitchCase to emit the
1601 // code into the current block. Otherwise, push the CaseBlock onto the
1602 // vector to be later processed by SDISel, and insert the node's MBB
1603 // before the next MBB.
1604 if (CurBlock == CurMBB)
1605 visitSwitchCase(CB);
1606 else
1607 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001608
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001609 CurBlock = FallThrough;
1610 }
1611
1612 return true;
1613}
1614
1615static inline bool areJTsAllowed(const TargetLowering &TLI) {
1616 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001617 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1618 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001619}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001620
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001621static APInt ComputeRange(const APInt &First, const APInt &Last) {
1622 APInt LastExt(Last), FirstExt(First);
1623 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1624 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1625 return (LastExt - FirstExt + 1ULL);
1626}
1627
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001628/// handleJTSwitchCase - Emit jumptable for current switch case range
1629bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1630 CaseRecVector& WorkList,
1631 Value* SV,
1632 MachineBasicBlock* Default) {
1633 Case& FrontCase = *CR.Range.first;
1634 Case& BackCase = *(CR.Range.second-1);
1635
Anton Korobeynikov23218582008-12-23 22:25:27 +00001636 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1637 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001638
Anton Korobeynikov23218582008-12-23 22:25:27 +00001639 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001640 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1641 I!=E; ++I)
1642 TSize += I->size();
1643
1644 if (!areJTsAllowed(TLI) || TSize <= 3)
1645 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001646
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001647 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001648 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001649 if (Density < 0.4)
1650 return false;
1651
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001652 DEBUG(errs() << "Lowering jump table\n"
1653 << "First entry: " << First << ". Last entry: " << Last << '\n'
1654 << "Range: " << Range
1655 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001656
1657 // Get the MachineFunction which holds the current MBB. This is used when
1658 // inserting any additional MBBs necessary to represent the switch.
1659 MachineFunction *CurMF = CurMBB->getParent();
1660
1661 // Figure out which block is immediately after the current one.
1662 MachineBasicBlock *NextBlock = 0;
1663 MachineFunction::iterator BBI = CR.CaseBB;
1664
1665 if (++BBI != CurMBB->getParent()->end())
1666 NextBlock = BBI;
1667
1668 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1669
1670 // Create a new basic block to hold the code for loading the address
1671 // of the jump table, and jumping to it. Update successor information;
1672 // we will either branch to the default case for the switch, or the jump
1673 // table.
1674 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1675 CurMF->insert(BBI, JumpTableBB);
1676 CR.CaseBB->addSuccessor(Default);
1677 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001678
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001679 // Build a vector of destination BBs, corresponding to each target
1680 // of the jump table. If the value of the jump table slot corresponds to
1681 // a case statement, push the case's BB onto the vector, otherwise, push
1682 // the default BB.
1683 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001684 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001685 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001686 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1687 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1688
1689 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001690 DestBBs.push_back(I->BB);
1691 if (TEI==High)
1692 ++I;
1693 } else {
1694 DestBBs.push_back(Default);
1695 }
1696 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001697
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001698 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001699 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1700 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001701 E = DestBBs.end(); I != E; ++I) {
1702 if (!SuccsHandled[(*I)->getNumber()]) {
1703 SuccsHandled[(*I)->getNumber()] = true;
1704 JumpTableBB->addSuccessor(*I);
1705 }
1706 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001707
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001708 // Create a jump table index for this jump table, or return an existing
1709 // one.
1710 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001711
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001712 // Set the jump table information so that we can codegen it as a second
1713 // MachineBasicBlock
1714 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1715 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1716 if (CR.CaseBB == CurMBB)
1717 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001718
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001719 JTCases.push_back(JumpTableBlock(JTH, JT));
1720
1721 return true;
1722}
1723
1724/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1725/// 2 subtrees.
1726bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1727 CaseRecVector& WorkList,
1728 Value* SV,
1729 MachineBasicBlock* Default) {
1730 // Get the MachineFunction which holds the current MBB. This is used when
1731 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001732 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001733
1734 // Figure out which block is immediately after the current one.
1735 MachineBasicBlock *NextBlock = 0;
1736 MachineFunction::iterator BBI = CR.CaseBB;
1737
1738 if (++BBI != CurMBB->getParent()->end())
1739 NextBlock = BBI;
1740
1741 Case& FrontCase = *CR.Range.first;
1742 Case& BackCase = *(CR.Range.second-1);
1743 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1744
1745 // Size is the number of Cases represented by this range.
1746 unsigned Size = CR.Range.second - CR.Range.first;
1747
Anton Korobeynikov23218582008-12-23 22:25:27 +00001748 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1749 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001750 double FMetric = 0;
1751 CaseItr Pivot = CR.Range.first + Size/2;
1752
1753 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1754 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001755 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001756 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1757 I!=E; ++I)
1758 TSize += I->size();
1759
Anton Korobeynikov23218582008-12-23 22:25:27 +00001760 size_t LSize = FrontCase.size();
1761 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001762 DEBUG(errs() << "Selecting best pivot: \n"
1763 << "First: " << First << ", Last: " << Last <<'\n'
1764 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001765 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1766 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001767 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1768 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001769 APInt Range = ComputeRange(LEnd, RBegin);
1770 assert((Range - 2ULL).isNonNegative() &&
1771 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001772 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1773 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001774 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001775 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001776 DEBUG(errs() <<"=>Step\n"
1777 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1778 << "LDensity: " << LDensity
1779 << ", RDensity: " << RDensity << '\n'
1780 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001781 if (FMetric < Metric) {
1782 Pivot = J;
1783 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001784 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001785 }
1786
1787 LSize += J->size();
1788 RSize -= J->size();
1789 }
1790 if (areJTsAllowed(TLI)) {
1791 // If our case is dense we *really* should handle it earlier!
1792 assert((FMetric > 0) && "Should handle dense range earlier!");
1793 } else {
1794 Pivot = CR.Range.first + Size/2;
1795 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001796
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001797 CaseRange LHSR(CR.Range.first, Pivot);
1798 CaseRange RHSR(Pivot, CR.Range.second);
1799 Constant *C = Pivot->Low;
1800 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001801
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001802 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001803 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001804 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001805 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001806 // Pivot's Value, then we can branch directly to the LHS's Target,
1807 // rather than creating a leaf node for it.
1808 if ((LHSR.second - LHSR.first) == 1 &&
1809 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001810 cast<ConstantInt>(C)->getValue() ==
1811 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001812 TrueBB = LHSR.first->BB;
1813 } else {
1814 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1815 CurMF->insert(BBI, TrueBB);
1816 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
1817 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001818
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001819 // Similar to the optimization above, if the Value being switched on is
1820 // known to be less than the Constant CR.LT, and the current Case Value
1821 // is CR.LT - 1, then we can branch directly to the target block for
1822 // the current Case Value, rather than emitting a RHS leaf node for it.
1823 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001824 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1825 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001826 FalseBB = RHSR.first->BB;
1827 } else {
1828 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1829 CurMF->insert(BBI, FalseBB);
1830 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
1831 }
1832
1833 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001834 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001835 // Otherwise, branch to LHS.
1836 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1837
1838 if (CR.CaseBB == CurMBB)
1839 visitSwitchCase(CB);
1840 else
1841 SwitchCases.push_back(CB);
1842
1843 return true;
1844}
1845
1846/// handleBitTestsSwitchCase - if current case range has few destination and
1847/// range span less, than machine word bitwidth, encode case range into series
1848/// of masks and emit bit tests with these masks.
1849bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1850 CaseRecVector& WorkList,
1851 Value* SV,
1852 MachineBasicBlock* Default){
1853 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1854
1855 Case& FrontCase = *CR.Range.first;
1856 Case& BackCase = *(CR.Range.second-1);
1857
1858 // Get the MachineFunction which holds the current MBB. This is used when
1859 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001860 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001861
Anton Korobeynikov23218582008-12-23 22:25:27 +00001862 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001863 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1864 I!=E; ++I) {
1865 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001866 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001867 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001868
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001869 // Count unique destinations
1870 SmallSet<MachineBasicBlock*, 4> Dests;
1871 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1872 Dests.insert(I->BB);
1873 if (Dests.size() > 3)
1874 // Don't bother the code below, if there are too much unique destinations
1875 return false;
1876 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001877 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1878 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001879
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001880 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001881 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1882 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001883 APInt cmpRange = maxValue - minValue;
1884
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001885 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1886 << "Low bound: " << minValue << '\n'
1887 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001888
1889 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001890 (!(Dests.size() == 1 && numCmps >= 3) &&
1891 !(Dests.size() == 2 && numCmps >= 5) &&
1892 !(Dests.size() >= 3 && numCmps >= 6)))
1893 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001894
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001895 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001896 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1897
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001898 // Optimize the case where all the case values fit in a
1899 // word without having to subtract minValue. In this case,
1900 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001901 if (minValue.isNonNegative() &&
1902 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1903 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001904 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001905 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001906 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001907
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001908 CaseBitsVector CasesBits;
1909 unsigned i, count = 0;
1910
1911 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1912 MachineBasicBlock* Dest = I->BB;
1913 for (i = 0; i < count; ++i)
1914 if (Dest == CasesBits[i].BB)
1915 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001916
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001917 if (i == count) {
1918 assert((count < 3) && "Too much destinations to test!");
1919 CasesBits.push_back(CaseBits(0, Dest, 0));
1920 count++;
1921 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001922
1923 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1924 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1925
1926 uint64_t lo = (lowValue - lowBound).getZExtValue();
1927 uint64_t hi = (highValue - lowBound).getZExtValue();
1928
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001929 for (uint64_t j = lo; j <= hi; j++) {
1930 CasesBits[i].Mask |= 1ULL << j;
1931 CasesBits[i].Bits++;
1932 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001933
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001934 }
1935 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001936
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001937 BitTestInfo BTC;
1938
1939 // Figure out which block is immediately after the current one.
1940 MachineFunction::iterator BBI = CR.CaseBB;
1941 ++BBI;
1942
1943 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1944
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001945 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001946 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001947 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
1948 << ", Bits: " << CasesBits[i].Bits
1949 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001950
1951 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1952 CurMF->insert(BBI, CaseBB);
1953 BTC.push_back(BitTestCase(CasesBits[i].Mask,
1954 CaseBB,
1955 CasesBits[i].BB));
1956 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001957
1958 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001959 -1U, (CR.CaseBB == CurMBB),
1960 CR.CaseBB, Default, BTC);
1961
1962 if (CR.CaseBB == CurMBB)
1963 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001964
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001965 BitTestCases.push_back(BTB);
1966
1967 return true;
1968}
1969
1970
1971/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00001972size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001973 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001974 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001975
1976 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00001977 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001978 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
1979 Cases.push_back(Case(SI.getSuccessorValue(i),
1980 SI.getSuccessorValue(i),
1981 SMBB));
1982 }
1983 std::sort(Cases.begin(), Cases.end(), CaseCmp());
1984
1985 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00001986 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001987 // Must recompute end() each iteration because it may be
1988 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00001989 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
1990 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
1991 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001992 MachineBasicBlock* nextBB = J->BB;
1993 MachineBasicBlock* currentBB = I->BB;
1994
1995 // If the two neighboring cases go to the same destination, merge them
1996 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001997 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001998 I->High = J->High;
1999 J = Cases.erase(J);
2000 } else {
2001 I = J++;
2002 }
2003 }
2004
2005 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2006 if (I->Low != I->High)
2007 // A range counts double, since it requires two compares.
2008 ++numCmps;
2009 }
2010
2011 return numCmps;
2012}
2013
Anton Korobeynikov23218582008-12-23 22:25:27 +00002014void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002015 // Figure out which block is immediately after the current one.
2016 MachineBasicBlock *NextBlock = 0;
2017 MachineFunction::iterator BBI = CurMBB;
2018
2019 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2020
2021 // If there is only the default destination, branch to it if it is not the
2022 // next basic block. Otherwise, just fall through.
2023 if (SI.getNumOperands() == 2) {
2024 // Update machine-CFG edges.
2025
2026 // If this is not a fall-through branch, emit the branch.
2027 CurMBB->addSuccessor(Default);
2028 if (Default != NextBlock)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002029 DAG.setRoot(DAG.getNode(ISD::BR, DAG.getCurDebugLoc(),
2030 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002031 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002032 return;
2033 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002034
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002035 // If there are any non-default case statements, create a vector of Cases
2036 // representing each one, and sort the vector so that we can efficiently
2037 // create a binary search tree from them.
2038 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002039 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002040 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2041 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002042 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002043
2044 // Get the Value to be switched on and default basic blocks, which will be
2045 // inserted into CaseBlock records, representing basic blocks in the binary
2046 // search tree.
2047 Value *SV = SI.getOperand(0);
2048
2049 // Push the initial CaseRec onto the worklist
2050 CaseRecVector WorkList;
2051 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2052
2053 while (!WorkList.empty()) {
2054 // Grab a record representing a case range to process off the worklist
2055 CaseRec CR = WorkList.back();
2056 WorkList.pop_back();
2057
2058 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2059 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002060
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002061 // If the range has few cases (two or less) emit a series of specific
2062 // tests.
2063 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2064 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002065
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002066 // If the switch has more than 5 blocks, and at least 40% dense, and the
2067 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002068 // lowering the switch to a binary tree of conditional branches.
2069 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2070 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002071
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002072 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2073 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2074 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2075 }
2076}
2077
2078
2079void SelectionDAGLowering::visitSub(User &I) {
2080 // -0.0 - X --> fneg
2081 const Type *Ty = I.getType();
2082 if (isa<VectorType>(Ty)) {
2083 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2084 const VectorType *DestTy = cast<VectorType>(I.getType());
2085 const Type *ElTy = DestTy->getElementType();
2086 if (ElTy->isFloatingPoint()) {
2087 unsigned VL = DestTy->getNumElements();
2088 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2089 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2090 if (CV == CNZ) {
2091 SDValue Op2 = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002092 setValue(&I, DAG.getNode(ISD::FNEG, DAG.getCurDebugLoc(),
2093 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002094 return;
2095 }
2096 }
2097 }
2098 }
2099 if (Ty->isFloatingPoint()) {
2100 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2101 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2102 SDValue Op2 = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002103 setValue(&I, DAG.getNode(ISD::FNEG, DAG.getCurDebugLoc(),
2104 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002105 return;
2106 }
2107 }
2108
2109 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2110}
2111
2112void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2113 SDValue Op1 = getValue(I.getOperand(0));
2114 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002115
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002116 setValue(&I, DAG.getNode(OpCode, DAG.getCurDebugLoc(),
2117 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002118}
2119
2120void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2121 SDValue Op1 = getValue(I.getOperand(0));
2122 SDValue Op2 = getValue(I.getOperand(1));
2123 if (!isa<VectorType>(I.getType())) {
2124 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002125 Op2 = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(),
2126 TLI.getShiftAmountTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002127 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002128 Op2 = DAG.getNode(ISD::ANY_EXTEND, DAG.getCurDebugLoc(),
2129 TLI.getShiftAmountTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002130 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002131
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002132 setValue(&I, DAG.getNode(Opcode, DAG.getCurDebugLoc(),
2133 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002134}
2135
2136void SelectionDAGLowering::visitICmp(User &I) {
2137 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2138 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2139 predicate = IC->getPredicate();
2140 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2141 predicate = ICmpInst::Predicate(IC->getPredicate());
2142 SDValue Op1 = getValue(I.getOperand(0));
2143 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002144 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002145 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2146}
2147
2148void SelectionDAGLowering::visitFCmp(User &I) {
2149 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2150 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2151 predicate = FC->getPredicate();
2152 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2153 predicate = FCmpInst::Predicate(FC->getPredicate());
2154 SDValue Op1 = getValue(I.getOperand(0));
2155 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002156 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002157 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
2158}
2159
2160void SelectionDAGLowering::visitVICmp(User &I) {
2161 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2162 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2163 predicate = IC->getPredicate();
2164 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2165 predicate = ICmpInst::Predicate(IC->getPredicate());
2166 SDValue Op1 = getValue(I.getOperand(0));
2167 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002168 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002169 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2170}
2171
2172void SelectionDAGLowering::visitVFCmp(User &I) {
2173 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2174 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2175 predicate = FC->getPredicate();
2176 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2177 predicate = FCmpInst::Predicate(FC->getPredicate());
2178 SDValue Op1 = getValue(I.getOperand(0));
2179 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002180 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002181 MVT DestVT = TLI.getValueType(I.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002182
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002183 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2184}
2185
2186void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002187 SmallVector<MVT, 4> ValueVTs;
2188 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2189 unsigned NumValues = ValueVTs.size();
2190 if (NumValues != 0) {
2191 SmallVector<SDValue, 4> Values(NumValues);
2192 SDValue Cond = getValue(I.getOperand(0));
2193 SDValue TrueVal = getValue(I.getOperand(1));
2194 SDValue FalseVal = getValue(I.getOperand(2));
2195
2196 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002197 Values[i] = DAG.getNode(ISD::SELECT, DAG.getCurDebugLoc(),
2198 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002199 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2200 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2201
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002202 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, DAG.getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002203 DAG.getVTList(&ValueVTs[0], NumValues),
2204 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002205 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002206}
2207
2208
2209void SelectionDAGLowering::visitTrunc(User &I) {
2210 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2211 SDValue N = getValue(I.getOperand(0));
2212 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002213 setValue(&I, DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002214}
2215
2216void SelectionDAGLowering::visitZExt(User &I) {
2217 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2218 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2219 SDValue N = getValue(I.getOperand(0));
2220 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002221 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002222}
2223
2224void SelectionDAGLowering::visitSExt(User &I) {
2225 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2226 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2227 SDValue N = getValue(I.getOperand(0));
2228 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002229 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DAG.getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002230}
2231
2232void SelectionDAGLowering::visitFPTrunc(User &I) {
2233 // FPTrunc is never a no-op cast, no need to check
2234 SDValue N = getValue(I.getOperand(0));
2235 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002236 setValue(&I, DAG.getNode(ISD::FP_ROUND, DAG.getCurDebugLoc(),
2237 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002238}
2239
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002240void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002241 // FPTrunc is never a no-op cast, no need to check
2242 SDValue N = getValue(I.getOperand(0));
2243 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002244 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DAG.getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002245}
2246
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002247void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002248 // FPToUI is never a no-op cast, no need to check
2249 SDValue N = getValue(I.getOperand(0));
2250 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002251 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DAG.getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002252}
2253
2254void SelectionDAGLowering::visitFPToSI(User &I) {
2255 // FPToSI is never a no-op cast, no need to check
2256 SDValue N = getValue(I.getOperand(0));
2257 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002258 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DAG.getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002259}
2260
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002261void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002262 // UIToFP is never a no-op cast, no need to check
2263 SDValue N = getValue(I.getOperand(0));
2264 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002265 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DAG.getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002266}
2267
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002268void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002269 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002270 SDValue N = getValue(I.getOperand(0));
2271 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002272 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DAG.getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002273}
2274
2275void SelectionDAGLowering::visitPtrToInt(User &I) {
2276 // What to do depends on the size of the integer and the size of the pointer.
2277 // We can either truncate, zero extend, or no-op, accordingly.
2278 SDValue N = getValue(I.getOperand(0));
2279 MVT SrcVT = N.getValueType();
2280 MVT DestVT = TLI.getValueType(I.getType());
2281 SDValue Result;
2282 if (DestVT.bitsLT(SrcVT))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002283 Result = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002284 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002285 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002286 Result = DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002287 setValue(&I, Result);
2288}
2289
2290void SelectionDAGLowering::visitIntToPtr(User &I) {
2291 // What to do depends on the size of the integer and the size of the pointer.
2292 // We can either truncate, zero extend, or no-op, accordingly.
2293 SDValue N = getValue(I.getOperand(0));
2294 MVT SrcVT = N.getValueType();
2295 MVT DestVT = TLI.getValueType(I.getType());
2296 if (DestVT.bitsLT(SrcVT))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002297 setValue(&I, DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002298 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002299 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002300 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(),
2301 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002302}
2303
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002304void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002305 SDValue N = getValue(I.getOperand(0));
2306 MVT DestVT = TLI.getValueType(I.getType());
2307
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002308 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002309 // is either a BIT_CONVERT or a no-op.
2310 if (DestVT != N.getValueType())
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002311 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(),
2312 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002313 else
2314 setValue(&I, N); // noop cast.
2315}
2316
2317void SelectionDAGLowering::visitInsertElement(User &I) {
2318 SDValue InVec = getValue(I.getOperand(0));
2319 SDValue InVal = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002320 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(),
2321 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002322 getValue(I.getOperand(2)));
2323
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002324 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, DAG.getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002325 TLI.getValueType(I.getType()),
2326 InVec, InVal, InIdx));
2327}
2328
2329void SelectionDAGLowering::visitExtractElement(User &I) {
2330 SDValue InVec = getValue(I.getOperand(0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002331 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(),
2332 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002333 getValue(I.getOperand(1)));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002334 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DAG.getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002335 TLI.getValueType(I.getType()), InVec, InIdx));
2336}
2337
Mon P Wangaeb06d22008-11-10 04:46:22 +00002338
2339// Utility for visitShuffleVector - Returns true if the mask is mask starting
2340// from SIndx and increasing to the element length (undefs are allowed).
2341static bool SequentialMask(SDValue Mask, unsigned SIndx) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002342 unsigned MaskNumElts = Mask.getNumOperands();
2343 for (unsigned i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002344 if (Mask.getOperand(i).getOpcode() != ISD::UNDEF) {
2345 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2346 if (Idx != i + SIndx)
2347 return false;
2348 }
2349 }
2350 return true;
2351}
2352
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002353void SelectionDAGLowering::visitShuffleVector(User &I) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002354 SDValue Src1 = getValue(I.getOperand(0));
2355 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002356 SDValue Mask = getValue(I.getOperand(2));
2357
Mon P Wangaeb06d22008-11-10 04:46:22 +00002358 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002359 MVT SrcVT = Src1.getValueType();
Mon P Wangc7849c22008-11-16 05:06:27 +00002360 int MaskNumElts = Mask.getNumOperands();
2361 int SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002362
Mon P Wangc7849c22008-11-16 05:06:27 +00002363 if (SrcNumElts == MaskNumElts) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002364 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, DAG.getCurDebugLoc(),
2365 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002366 return;
2367 }
2368
2369 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002370 MVT MaskEltVT = Mask.getValueType().getVectorElementType();
2371
2372 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2373 // Mask is longer than the source vectors and is a multiple of the source
2374 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002375 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002376 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2377 // The shuffle is concatenating two vectors together.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002378 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, DAG.getCurDebugLoc(),
2379 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002380 return;
2381 }
2382
Mon P Wangc7849c22008-11-16 05:06:27 +00002383 // Pad both vectors with undefs to make them the same length as the mask.
2384 unsigned NumConcat = MaskNumElts / SrcNumElts;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002385 SDValue UndefVal = DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(), SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002386
Mon P Wang230e4fa2008-11-21 04:25:21 +00002387 SDValue* MOps1 = new SDValue[NumConcat];
2388 SDValue* MOps2 = new SDValue[NumConcat];
2389 MOps1[0] = Src1;
2390 MOps2[0] = Src2;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002391 for (unsigned i = 1; i != NumConcat; ++i) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002392 MOps1[i] = UndefVal;
2393 MOps2[i] = UndefVal;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002394 }
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002395 Src1 = DAG.getNode(ISD::CONCAT_VECTORS, DAG.getCurDebugLoc(),
2396 VT, MOps1, NumConcat);
2397 Src2 = DAG.getNode(ISD::CONCAT_VECTORS, DAG.getCurDebugLoc(),
2398 VT, MOps2, NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002399
2400 delete [] MOps1;
2401 delete [] MOps2;
2402
Mon P Wangaeb06d22008-11-10 04:46:22 +00002403 // Readjust mask for new input vector length.
2404 SmallVector<SDValue, 8> MappedOps;
Mon P Wangc7849c22008-11-16 05:06:27 +00002405 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002406 if (Mask.getOperand(i).getOpcode() == ISD::UNDEF) {
2407 MappedOps.push_back(Mask.getOperand(i));
2408 } else {
Mon P Wangc7849c22008-11-16 05:06:27 +00002409 int Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2410 if (Idx < SrcNumElts)
2411 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
2412 else
2413 MappedOps.push_back(DAG.getConstant(Idx + MaskNumElts - SrcNumElts,
2414 MaskEltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002415 }
2416 }
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002417 Mask = DAG.getNode(ISD::BUILD_VECTOR, DAG.getCurDebugLoc(),
2418 Mask.getValueType(),
Mon P Wangaeb06d22008-11-10 04:46:22 +00002419 &MappedOps[0], MappedOps.size());
2420
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002421 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, DAG.getCurDebugLoc(),
2422 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002423 return;
2424 }
2425
Mon P Wangc7849c22008-11-16 05:06:27 +00002426 if (SrcNumElts > MaskNumElts) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002427 // Resulting vector is shorter than the incoming vector.
Mon P Wangc7849c22008-11-16 05:06:27 +00002428 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002429 // Shuffle extracts 1st vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002430 setValue(&I, Src1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002431 return;
2432 }
2433
Mon P Wangc7849c22008-11-16 05:06:27 +00002434 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002435 // Shuffle extracts 2nd vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002436 setValue(&I, Src2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002437 return;
2438 }
2439
Mon P Wangc7849c22008-11-16 05:06:27 +00002440 // Analyze the access pattern of the vector to see if we can extract
2441 // two subvectors and do the shuffle. The analysis is done by calculating
2442 // the range of elements the mask access on both vectors.
2443 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2444 int MaxRange[2] = {-1, -1};
2445
2446 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002447 SDValue Arg = Mask.getOperand(i);
2448 if (Arg.getOpcode() != ISD::UNDEF) {
2449 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002450 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2451 int Input = 0;
2452 if (Idx >= SrcNumElts) {
2453 Input = 1;
2454 Idx -= SrcNumElts;
2455 }
2456 if (Idx > MaxRange[Input])
2457 MaxRange[Input] = Idx;
2458 if (Idx < MinRange[Input])
2459 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002460 }
2461 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002462
Mon P Wangc7849c22008-11-16 05:06:27 +00002463 // Check if the access is smaller than the vector size and can we find
2464 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002465 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002466 int StartIdx[2]; // StartIdx to extract from
2467 for (int Input=0; Input < 2; ++Input) {
2468 if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) {
2469 RangeUse[Input] = 0; // Unused
2470 StartIdx[Input] = 0;
2471 } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) {
2472 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002473 // start index that is a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002474 if (MaxRange[Input] < MaskNumElts) {
2475 RangeUse[Input] = 1; // Extract from beginning of the vector
2476 StartIdx[Input] = 0;
2477 } else {
2478 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Mon P Wang6cce3da2008-11-23 04:35:05 +00002479 if (MaxRange[Input] - StartIdx[Input] < MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002480 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002481 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002482 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002483 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002484 }
2485
2486 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002487 setValue(&I, DAG.getNode(ISD::UNDEF,
2488 DAG.getCurDebugLoc(), VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002489 return;
2490 }
2491 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2492 // Extract appropriate subvector and generate a vector shuffle
2493 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002494 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002495 if (RangeUse[Input] == 0) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002496 Src = DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(), VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002497 } else {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002498 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DAG.getCurDebugLoc(), VT,
2499 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002500 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002501 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002502 // Calculate new mask.
2503 SmallVector<SDValue, 8> MappedOps;
2504 for (int i = 0; i != MaskNumElts; ++i) {
2505 SDValue Arg = Mask.getOperand(i);
2506 if (Arg.getOpcode() == ISD::UNDEF) {
2507 MappedOps.push_back(Arg);
2508 } else {
2509 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2510 if (Idx < SrcNumElts)
2511 MappedOps.push_back(DAG.getConstant(Idx - StartIdx[0], MaskEltVT));
2512 else {
2513 Idx = Idx - SrcNumElts - StartIdx[1] + MaskNumElts;
2514 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002515 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002516 }
2517 }
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002518 Mask = DAG.getNode(ISD::BUILD_VECTOR, DAG.getCurDebugLoc(),
2519 Mask.getValueType(),
Mon P Wangc7849c22008-11-16 05:06:27 +00002520 &MappedOps[0], MappedOps.size());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002521 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, DAG.getCurDebugLoc(),
2522 VT, Src1, Src2, Mask));
Mon P Wangc7849c22008-11-16 05:06:27 +00002523 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002524 }
2525 }
2526
Mon P Wangc7849c22008-11-16 05:06:27 +00002527 // We can't use either concat vectors or extract subvectors so fall back to
2528 // replacing the shuffle with extract and build vector.
2529 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002530 MVT EltVT = VT.getVectorElementType();
2531 MVT PtrVT = TLI.getPointerTy();
2532 SmallVector<SDValue,8> Ops;
Mon P Wangc7849c22008-11-16 05:06:27 +00002533 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002534 SDValue Arg = Mask.getOperand(i);
2535 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002536 Ops.push_back(DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(), EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002537 } else {
2538 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002539 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2540 if (Idx < SrcNumElts)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002541 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DAG.getCurDebugLoc(),
2542 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002543 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002544 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DAG.getCurDebugLoc(),
2545 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002546 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002547 }
2548 }
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002549 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, DAG.getCurDebugLoc(),
2550 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002551}
2552
2553void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2554 const Value *Op0 = I.getOperand(0);
2555 const Value *Op1 = I.getOperand(1);
2556 const Type *AggTy = I.getType();
2557 const Type *ValTy = Op1->getType();
2558 bool IntoUndef = isa<UndefValue>(Op0);
2559 bool FromUndef = isa<UndefValue>(Op1);
2560
2561 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2562 I.idx_begin(), I.idx_end());
2563
2564 SmallVector<MVT, 4> AggValueVTs;
2565 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2566 SmallVector<MVT, 4> ValValueVTs;
2567 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2568
2569 unsigned NumAggValues = AggValueVTs.size();
2570 unsigned NumValValues = ValValueVTs.size();
2571 SmallVector<SDValue, 4> Values(NumAggValues);
2572
2573 SDValue Agg = getValue(Op0);
2574 SDValue Val = getValue(Op1);
2575 unsigned i = 0;
2576 // Copy the beginning value(s) from the original aggregate.
2577 for (; i != LinearIndex; ++i)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002578 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(),
2579 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002580 SDValue(Agg.getNode(), Agg.getResNo() + i);
2581 // Copy values from the inserted value(s).
2582 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002583 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(),
2584 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002585 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2586 // Copy remaining value(s) from the original aggregate.
2587 for (; i != NumAggValues; ++i)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002588 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(),
2589 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002590 SDValue(Agg.getNode(), Agg.getResNo() + i);
2591
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002592 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, DAG.getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002593 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2594 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002595}
2596
2597void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2598 const Value *Op0 = I.getOperand(0);
2599 const Type *AggTy = Op0->getType();
2600 const Type *ValTy = I.getType();
2601 bool OutOfUndef = isa<UndefValue>(Op0);
2602
2603 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2604 I.idx_begin(), I.idx_end());
2605
2606 SmallVector<MVT, 4> ValValueVTs;
2607 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2608
2609 unsigned NumValValues = ValValueVTs.size();
2610 SmallVector<SDValue, 4> Values(NumValValues);
2611
2612 SDValue Agg = getValue(Op0);
2613 // Copy out the selected value(s).
2614 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2615 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002616 OutOfUndef ?
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002617 DAG.getNode(ISD::UNDEF, DAG.getCurDebugLoc(),
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002618 Agg.getNode()->getValueType(Agg.getResNo() + i)) :
2619 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002620
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002621 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, DAG.getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002622 DAG.getVTList(&ValValueVTs[0], NumValValues),
2623 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002624}
2625
2626
2627void SelectionDAGLowering::visitGetElementPtr(User &I) {
2628 SDValue N = getValue(I.getOperand(0));
2629 const Type *Ty = I.getOperand(0)->getType();
2630
2631 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2632 OI != E; ++OI) {
2633 Value *Idx = *OI;
2634 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2635 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2636 if (Field) {
2637 // N = N + Offset
2638 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002639 N = DAG.getNode(ISD::ADD, DAG.getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002640 DAG.getIntPtrConstant(Offset));
2641 }
2642 Ty = StTy->getElementType(Field);
2643 } else {
2644 Ty = cast<SequentialType>(Ty)->getElementType();
2645
2646 // If this is a constant subscript, handle it quickly.
2647 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2648 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002649 uint64_t Offs =
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002650 TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002651 N = DAG.getNode(ISD::ADD, DAG.getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002652 DAG.getIntPtrConstant(Offs));
2653 continue;
2654 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002655
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002656 // N = N + Idx * ElementSize;
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002657 uint64_t ElementSize = TD->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002658 SDValue IdxN = getValue(Idx);
2659
2660 // If the index is smaller or larger than intptr_t, truncate or extend
2661 // it.
2662 if (IdxN.getValueType().bitsLT(N.getValueType()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002663 IdxN = DAG.getNode(ISD::SIGN_EXTEND, DAG.getCurDebugLoc(),
2664 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002665 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002666 IdxN = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(),
2667 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002668
2669 // If this is a multiply by a power of two, turn it into a shl
2670 // immediately. This is a very common case.
2671 if (ElementSize != 1) {
2672 if (isPowerOf2_64(ElementSize)) {
2673 unsigned Amt = Log2_64(ElementSize);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002674 IdxN = DAG.getNode(ISD::SHL, DAG.getCurDebugLoc(),
2675 N.getValueType(), IdxN,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002676 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
2677 } else {
2678 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002679 IdxN = DAG.getNode(ISD::MUL, DAG.getCurDebugLoc(),
2680 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002681 }
2682 }
2683
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002684 N = DAG.getNode(ISD::ADD, DAG.getCurDebugLoc(),
2685 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002686 }
2687 }
2688 setValue(&I, N);
2689}
2690
2691void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2692 // If this is a fixed sized alloca in the entry block of the function,
2693 // allocate it statically on the stack.
2694 if (FuncInfo.StaticAllocaMap.count(&I))
2695 return; // getValue will auto-populate this.
2696
2697 const Type *Ty = I.getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002698 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002699 unsigned Align =
2700 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2701 I.getAlignment());
2702
2703 SDValue AllocSize = getValue(I.getArraySize());
2704 MVT IntPtr = TLI.getPointerTy();
2705 if (IntPtr.bitsLT(AllocSize.getValueType()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002706 AllocSize = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(),
2707 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002708 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002709 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(),
2710 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002711
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002712 AllocSize = DAG.getNode(ISD::MUL, DAG.getCurDebugLoc(), IntPtr, AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002713 DAG.getIntPtrConstant(TySize));
2714
2715 // Handle alignment. If the requested alignment is less than or equal to
2716 // the stack alignment, ignore it. If the size is greater than or equal to
2717 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2718 unsigned StackAlign =
2719 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2720 if (Align <= StackAlign)
2721 Align = 0;
2722
2723 // Round the size of the allocation up to the stack alignment size
2724 // by add SA-1 to the size.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002725 AllocSize = DAG.getNode(ISD::ADD, DAG.getCurDebugLoc(),
2726 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002727 DAG.getIntPtrConstant(StackAlign-1));
2728 // Mask out the low bits for alignment purposes.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002729 AllocSize = DAG.getNode(ISD::AND, DAG.getCurDebugLoc(),
2730 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002731 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2732
2733 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
2734 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2735 MVT::Other);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002736 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, DAG.getCurDebugLoc(),
2737 VTs, 2, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002738 setValue(&I, DSA);
2739 DAG.setRoot(DSA.getValue(1));
2740
2741 // Inform the Frame Information that we have just allocated a variable-sized
2742 // object.
2743 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2744}
2745
2746void SelectionDAGLowering::visitLoad(LoadInst &I) {
2747 const Value *SV = I.getOperand(0);
2748 SDValue Ptr = getValue(SV);
2749
2750 const Type *Ty = I.getType();
2751 bool isVolatile = I.isVolatile();
2752 unsigned Alignment = I.getAlignment();
2753
2754 SmallVector<MVT, 4> ValueVTs;
2755 SmallVector<uint64_t, 4> Offsets;
2756 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2757 unsigned NumValues = ValueVTs.size();
2758 if (NumValues == 0)
2759 return;
2760
2761 SDValue Root;
2762 bool ConstantMemory = false;
2763 if (I.isVolatile())
2764 // Serialize volatile loads with other side effects.
2765 Root = getRoot();
2766 else if (AA->pointsToConstantMemory(SV)) {
2767 // Do not serialize (non-volatile) loads of constant memory with anything.
2768 Root = DAG.getEntryNode();
2769 ConstantMemory = true;
2770 } else {
2771 // Do not serialize non-volatile loads against each other.
2772 Root = DAG.getRoot();
2773 }
2774
2775 SmallVector<SDValue, 4> Values(NumValues);
2776 SmallVector<SDValue, 4> Chains(NumValues);
2777 MVT PtrVT = Ptr.getValueType();
2778 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002779 SDValue L = DAG.getLoad(ValueVTs[i], DAG.getCurDebugLoc(), Root,
2780 DAG.getNode(ISD::ADD, DAG.getCurDebugLoc(),
2781 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002782 DAG.getConstant(Offsets[i], PtrVT)),
2783 SV, Offsets[i],
2784 isVolatile, Alignment);
2785 Values[i] = L;
2786 Chains[i] = L.getValue(1);
2787 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002788
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002789 if (!ConstantMemory) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002790 SDValue Chain = DAG.getNode(ISD::TokenFactor, DAG.getCurDebugLoc(),
2791 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002792 &Chains[0], NumValues);
2793 if (isVolatile)
2794 DAG.setRoot(Chain);
2795 else
2796 PendingLoads.push_back(Chain);
2797 }
2798
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002799 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, DAG.getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002800 DAG.getVTList(&ValueVTs[0], NumValues),
2801 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002802}
2803
2804
2805void SelectionDAGLowering::visitStore(StoreInst &I) {
2806 Value *SrcV = I.getOperand(0);
2807 Value *PtrV = I.getOperand(1);
2808
2809 SmallVector<MVT, 4> ValueVTs;
2810 SmallVector<uint64_t, 4> Offsets;
2811 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2812 unsigned NumValues = ValueVTs.size();
2813 if (NumValues == 0)
2814 return;
2815
2816 // Get the lowered operands. Note that we do this after
2817 // checking if NumResults is zero, because with zero results
2818 // the operands won't have values in the map.
2819 SDValue Src = getValue(SrcV);
2820 SDValue Ptr = getValue(PtrV);
2821
2822 SDValue Root = getRoot();
2823 SmallVector<SDValue, 4> Chains(NumValues);
2824 MVT PtrVT = Ptr.getValueType();
2825 bool isVolatile = I.isVolatile();
2826 unsigned Alignment = I.getAlignment();
2827 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002828 Chains[i] = DAG.getStore(Root, DAG.getCurDebugLoc(),
2829 SDValue(Src.getNode(), Src.getResNo() + i),
2830 DAG.getNode(ISD::ADD, DAG.getCurDebugLoc(),
2831 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002832 DAG.getConstant(Offsets[i], PtrVT)),
2833 PtrV, Offsets[i],
2834 isVolatile, Alignment);
2835
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002836 DAG.setRoot(DAG.getNode(ISD::TokenFactor, DAG.getCurDebugLoc(),
2837 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002838}
2839
2840/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2841/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002842void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002843 unsigned Intrinsic) {
2844 bool HasChain = !I.doesNotAccessMemory();
2845 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2846
2847 // Build the operand list.
2848 SmallVector<SDValue, 8> Ops;
2849 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2850 if (OnlyLoad) {
2851 // We don't need to serialize loads against other loads.
2852 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002853 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002854 Ops.push_back(getRoot());
2855 }
2856 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002857
2858 // Info is set by getTgtMemInstrinsic
2859 TargetLowering::IntrinsicInfo Info;
2860 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2861
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002862 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002863 if (!IsTgtIntrinsic)
2864 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002865
2866 // Add all operands of the call to the operand list.
2867 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2868 SDValue Op = getValue(I.getOperand(i));
2869 assert(TLI.isTypeLegal(Op.getValueType()) &&
2870 "Intrinsic uses a non-legal type?");
2871 Ops.push_back(Op);
2872 }
2873
2874 std::vector<MVT> VTs;
2875 if (I.getType() != Type::VoidTy) {
2876 MVT VT = TLI.getValueType(I.getType());
2877 if (VT.isVector()) {
2878 const VectorType *DestTy = cast<VectorType>(I.getType());
2879 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002880
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002881 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2882 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2883 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002884
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002885 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2886 VTs.push_back(VT);
2887 }
2888 if (HasChain)
2889 VTs.push_back(MVT::Other);
2890
2891 const MVT *VTList = DAG.getNodeValueTypes(VTs);
2892
2893 // Create the node.
2894 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002895 if (IsTgtIntrinsic) {
2896 // This is target intrinsic that touches memory
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002897 Result = DAG.getMemIntrinsicNode(Info.opc, DAG.getCurDebugLoc(),
2898 VTList, VTs.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002899 &Ops[0], Ops.size(),
2900 Info.memVT, Info.ptrVal, Info.offset,
2901 Info.align, Info.vol,
2902 Info.readMem, Info.writeMem);
2903 }
2904 else if (!HasChain)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002905 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DAG.getCurDebugLoc(),
2906 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002907 &Ops[0], Ops.size());
2908 else if (I.getType() != Type::VoidTy)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002909 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, DAG.getCurDebugLoc(),
2910 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002911 &Ops[0], Ops.size());
2912 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002913 Result = DAG.getNode(ISD::INTRINSIC_VOID, DAG.getCurDebugLoc(),
2914 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002915 &Ops[0], Ops.size());
2916
2917 if (HasChain) {
2918 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2919 if (OnlyLoad)
2920 PendingLoads.push_back(Chain);
2921 else
2922 DAG.setRoot(Chain);
2923 }
2924 if (I.getType() != Type::VoidTy) {
2925 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2926 MVT VT = TLI.getValueType(PTy);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002927 Result = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002928 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002929 setValue(&I, Result);
2930 }
2931}
2932
2933/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2934static GlobalVariable *ExtractTypeInfo(Value *V) {
2935 V = V->stripPointerCasts();
2936 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2937 assert ((GV || isa<ConstantPointerNull>(V)) &&
2938 "TypeInfo must be a global variable or NULL");
2939 return GV;
2940}
2941
2942namespace llvm {
2943
2944/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2945/// call, and add them to the specified machine basic block.
2946void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2947 MachineBasicBlock *MBB) {
2948 // Inform the MachineModuleInfo of the personality for this landing pad.
2949 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2950 assert(CE->getOpcode() == Instruction::BitCast &&
2951 isa<Function>(CE->getOperand(0)) &&
2952 "Personality should be a function");
2953 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2954
2955 // Gather all the type infos for this landing pad and pass them along to
2956 // MachineModuleInfo.
2957 std::vector<GlobalVariable *> TyInfo;
2958 unsigned N = I.getNumOperands();
2959
2960 for (unsigned i = N - 1; i > 2; --i) {
2961 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2962 unsigned FilterLength = CI->getZExtValue();
2963 unsigned FirstCatch = i + FilterLength + !FilterLength;
2964 assert (FirstCatch <= N && "Invalid filter length");
2965
2966 if (FirstCatch < N) {
2967 TyInfo.reserve(N - FirstCatch);
2968 for (unsigned j = FirstCatch; j < N; ++j)
2969 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2970 MMI->addCatchTypeInfo(MBB, TyInfo);
2971 TyInfo.clear();
2972 }
2973
2974 if (!FilterLength) {
2975 // Cleanup.
2976 MMI->addCleanup(MBB);
2977 } else {
2978 // Filter.
2979 TyInfo.reserve(FilterLength - 1);
2980 for (unsigned j = i + 1; j < FirstCatch; ++j)
2981 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2982 MMI->addFilterTypeInfo(MBB, TyInfo);
2983 TyInfo.clear();
2984 }
2985
2986 N = i;
2987 }
2988 }
2989
2990 if (N > 3) {
2991 TyInfo.reserve(N - 3);
2992 for (unsigned j = 3; j < N; ++j)
2993 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2994 MMI->addCatchTypeInfo(MBB, TyInfo);
2995 }
2996}
2997
2998}
2999
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003000/// GetSignificand - Get the significand and build it into a floating-point
3001/// number with exponent of 1:
3002///
3003/// Op = (Op & 0x007fffff) | 0x3f800000;
3004///
3005/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003006static SDValue
3007GetSignificand(SelectionDAG &DAG, SDValue Op) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003008 SDValue t1 = DAG.getNode(ISD::AND, DAG.getCurDebugLoc(), MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003009 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003010 SDValue t2 = DAG.getNode(ISD::OR, DAG.getCurDebugLoc(), MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003011 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003012 return DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(), MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003013}
3014
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003015/// GetExponent - Get the exponent:
3016///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003017/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003018///
3019/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003020static SDValue
Bill Wendling6c533342009-01-20 06:10:42 +00003021GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003022 SDValue t0 = DAG.getNode(ISD::AND, DAG.getCurDebugLoc(), MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003023 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003024 SDValue t1 = DAG.getNode(ISD::SRL, DAG.getCurDebugLoc(), MVT::i32, t0,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003025 DAG.getConstant(23, TLI.getShiftAmountTy()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003026 SDValue t2 = DAG.getNode(ISD::SUB, DAG.getCurDebugLoc(), MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003027 DAG.getConstant(127, MVT::i32));
3028 return DAG.getNode(ISD::SINT_TO_FP, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003029}
3030
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003031/// getF32Constant - Get 32-bit floating point constant.
3032static SDValue
3033getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3034 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3035}
3036
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003037/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003038/// visitIntrinsicCall: I is a call instruction
3039/// Op is the associated NodeType for I
3040const char *
3041SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003042 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003043 SDValue L =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003044 DAG.getAtomic(Op, DAG.getCurDebugLoc(),
3045 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003046 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003047 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003048 getValue(I.getOperand(2)),
3049 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003050 setValue(&I, L);
3051 DAG.setRoot(L.getValue(1));
3052 return 0;
3053}
3054
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003055// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003056const char *
3057SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003058 SDValue Op1 = getValue(I.getOperand(1));
3059 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003060
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003061 MVT ValueVTs[] = { Op1.getValueType(), MVT::i1 };
3062 SDValue Ops[] = { Op1, Op2 };
Bill Wendling74c37652008-12-09 22:08:41 +00003063
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003064 SDValue Result = DAG.getNode(Op, DAG.getCurDebugLoc(),
3065 DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2);
Bill Wendling74c37652008-12-09 22:08:41 +00003066
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003067 setValue(&I, Result);
3068 return 0;
3069}
Bill Wendling74c37652008-12-09 22:08:41 +00003070
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003071/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3072/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003073void
3074SelectionDAGLowering::visitExp(CallInst &I) {
3075 SDValue result;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003076 DebugLoc dl = DAG.getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003077
3078 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3079 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3080 SDValue Op = getValue(I.getOperand(1));
3081
3082 // Put the exponent in the right bit position for later addition to the
3083 // final result:
3084 //
3085 // #define LOG2OFe 1.4426950f
3086 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003087 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003088 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003089 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003090
3091 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003092 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3093 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003094
3095 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003096 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Bill Wendling6c533342009-01-20 06:10:42 +00003097 DAG.getConstant(23, TLI.getShiftAmountTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003098
3099 if (LimitFloatPrecision <= 6) {
3100 // For floating-point precision of 6:
3101 //
3102 // TwoToFractionalPartOfX =
3103 // 0.997535578f +
3104 // (0.735607626f + 0.252464424f * x) * x;
3105 //
3106 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003107 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003108 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003109 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003110 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003111 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3112 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003113 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003114 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003115
3116 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003117 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003118 TwoToFracPartOfX, IntegerPartOfX);
3119
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003120 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003121 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3122 // For floating-point precision of 12:
3123 //
3124 // TwoToFractionalPartOfX =
3125 // 0.999892986f +
3126 // (0.696457318f +
3127 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3128 //
3129 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003130 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003131 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003132 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003133 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003134 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3135 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003136 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003137 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3138 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003139 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003140 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003141
3142 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003143 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003144 TwoToFracPartOfX, IntegerPartOfX);
3145
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003146 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003147 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3148 // For floating-point precision of 18:
3149 //
3150 // TwoToFractionalPartOfX =
3151 // 0.999999982f +
3152 // (0.693148872f +
3153 // (0.240227044f +
3154 // (0.554906021e-1f +
3155 // (0.961591928e-2f +
3156 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3157 //
3158 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003159 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003160 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003161 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003162 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003163 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3164 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003165 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003166 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3167 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003168 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003169 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3170 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003171 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003172 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3173 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003174 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003175 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3176 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003177 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003178 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
3179 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003180
3181 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003182 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003183 TwoToFracPartOfX, IntegerPartOfX);
3184
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003185 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003186 }
3187 } else {
3188 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003189 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003190 getValue(I.getOperand(1)).getValueType(),
3191 getValue(I.getOperand(1)));
3192 }
3193
Dale Johannesen59e577f2008-09-05 18:38:42 +00003194 setValue(&I, result);
3195}
3196
Bill Wendling39150252008-09-09 20:39:27 +00003197/// visitLog - Lower a log intrinsic. Handles the special sequences for
3198/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003199void
3200SelectionDAGLowering::visitLog(CallInst &I) {
3201 SDValue result;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003202 DebugLoc dl = DAG.getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003203
3204 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3205 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3206 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003207 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003208
3209 // Scale the exponent by log(2) [0.69314718f].
Bill Wendling6c533342009-01-20 06:10:42 +00003210 SDValue Exp = GetExponent(DAG, Op1, TLI);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003211 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003212 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003213
3214 // Get the significand and build it into a floating-point number with
3215 // exponent of 1.
3216 SDValue X = GetSignificand(DAG, Op1);
3217
3218 if (LimitFloatPrecision <= 6) {
3219 // For floating-point precision of 6:
3220 //
3221 // LogofMantissa =
3222 // -1.1609546f +
3223 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003224 //
Bill Wendling39150252008-09-09 20:39:27 +00003225 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003226 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003227 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003228 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003229 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003230 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3231 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003232 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003233
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003234 result = DAG.getNode(ISD::FADD, dl,
3235 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003236 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3237 // For floating-point precision of 12:
3238 //
3239 // LogOfMantissa =
3240 // -1.7417939f +
3241 // (2.8212026f +
3242 // (-1.4699568f +
3243 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3244 //
3245 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003246 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003247 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003248 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003249 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003250 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3251 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003252 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003253 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3254 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003255 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003256 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3257 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003258 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003259
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003260 result = DAG.getNode(ISD::FADD, dl,
3261 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003262 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3263 // For floating-point precision of 18:
3264 //
3265 // LogOfMantissa =
3266 // -2.1072184f +
3267 // (4.2372794f +
3268 // (-3.7029485f +
3269 // (2.2781945f +
3270 // (-0.87823314f +
3271 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3272 //
3273 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003274 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003275 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003276 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003277 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003278 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3279 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003280 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003281 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3282 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003283 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003284 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3285 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003286 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003287 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3288 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003289 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003290 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3291 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003292 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003293
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003294 result = DAG.getNode(ISD::FADD, dl,
3295 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003296 }
3297 } else {
3298 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003299 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003300 getValue(I.getOperand(1)).getValueType(),
3301 getValue(I.getOperand(1)));
3302 }
3303
Dale Johannesen59e577f2008-09-05 18:38:42 +00003304 setValue(&I, result);
3305}
3306
Bill Wendling3eb59402008-09-09 00:28:24 +00003307/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3308/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003309void
3310SelectionDAGLowering::visitLog2(CallInst &I) {
3311 SDValue result;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003312 DebugLoc dl = DAG.getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003313
Dale Johannesen853244f2008-09-05 23:49:37 +00003314 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003315 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3316 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003317 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003318
Bill Wendling39150252008-09-09 20:39:27 +00003319 // Get the exponent.
Bill Wendling6c533342009-01-20 06:10:42 +00003320 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI);
Bill Wendling3eb59402008-09-09 00:28:24 +00003321
3322 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003323 // exponent of 1.
3324 SDValue X = GetSignificand(DAG, Op1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003325
Bill Wendling3eb59402008-09-09 00:28:24 +00003326 // Different possible minimax approximations of significand in
3327 // floating-point for various degrees of accuracy over [1,2].
3328 if (LimitFloatPrecision <= 6) {
3329 // For floating-point precision of 6:
3330 //
3331 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3332 //
3333 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003334 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003335 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003336 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003337 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003338 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3339 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003340 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003341
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003342 result = DAG.getNode(ISD::FADD, dl,
3343 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003344 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3345 // For floating-point precision of 12:
3346 //
3347 // Log2ofMantissa =
3348 // -2.51285454f +
3349 // (4.07009056f +
3350 // (-2.12067489f +
3351 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003352 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003353 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003354 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003355 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003356 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003357 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003358 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3359 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003360 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003361 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3362 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003363 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003364 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3365 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003366 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003367
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003368 result = DAG.getNode(ISD::FADD, dl,
3369 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003370 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3371 // For floating-point precision of 18:
3372 //
3373 // Log2ofMantissa =
3374 // -3.0400495f +
3375 // (6.1129976f +
3376 // (-5.3420409f +
3377 // (3.2865683f +
3378 // (-1.2669343f +
3379 // (0.27515199f -
3380 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3381 //
3382 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003383 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003384 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003385 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003386 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003387 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3388 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003389 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003390 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3391 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003392 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003393 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3394 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003395 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003396 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3397 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003398 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003399 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3400 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003401 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003402
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003403 result = DAG.getNode(ISD::FADD, dl,
3404 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003405 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003406 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003407 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003408 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003409 getValue(I.getOperand(1)).getValueType(),
3410 getValue(I.getOperand(1)));
3411 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003412
Dale Johannesen59e577f2008-09-05 18:38:42 +00003413 setValue(&I, result);
3414}
3415
Bill Wendling3eb59402008-09-09 00:28:24 +00003416/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3417/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003418void
3419SelectionDAGLowering::visitLog10(CallInst &I) {
3420 SDValue result;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003421 DebugLoc dl = DAG.getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003422
Dale Johannesen852680a2008-09-05 21:27:19 +00003423 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003424 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3425 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003426 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003427
Bill Wendling39150252008-09-09 20:39:27 +00003428 // Scale the exponent by log10(2) [0.30102999f].
Bill Wendling6c533342009-01-20 06:10:42 +00003429 SDValue Exp = GetExponent(DAG, Op1, TLI);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003430 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003431 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003432
3433 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003434 // exponent of 1.
3435 SDValue X = GetSignificand(DAG, Op1);
Bill Wendling3eb59402008-09-09 00:28:24 +00003436
3437 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003438 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003439 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003440 // Log10ofMantissa =
3441 // -0.50419619f +
3442 // (0.60948995f - 0.10380950f * x) * x;
3443 //
3444 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003445 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003446 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003447 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003448 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003449 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3450 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003451 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003452
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003453 result = DAG.getNode(ISD::FADD, dl,
3454 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003455 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3456 // For floating-point precision of 12:
3457 //
3458 // Log10ofMantissa =
3459 // -0.64831180f +
3460 // (0.91751397f +
3461 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3462 //
3463 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003464 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003465 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003466 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003467 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003468 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3469 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003470 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003471 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3472 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003473 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003474
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003475 result = DAG.getNode(ISD::FADD, dl,
3476 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003477 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003478 // For floating-point precision of 18:
3479 //
3480 // Log10ofMantissa =
3481 // -0.84299375f +
3482 // (1.5327582f +
3483 // (-1.0688956f +
3484 // (0.49102474f +
3485 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3486 //
3487 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003488 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003489 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003490 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003491 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003492 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3493 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003494 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003495 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3496 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003497 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003498 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3499 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003500 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003501 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3502 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003503 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003504
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003505 result = DAG.getNode(ISD::FADD, dl,
3506 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003507 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003508 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003509 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003510 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003511 getValue(I.getOperand(1)).getValueType(),
3512 getValue(I.getOperand(1)));
3513 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003514
Dale Johannesen59e577f2008-09-05 18:38:42 +00003515 setValue(&I, result);
3516}
3517
Bill Wendlinge10c8142008-09-09 22:39:21 +00003518/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3519/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003520void
3521SelectionDAGLowering::visitExp2(CallInst &I) {
3522 SDValue result;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003523 DebugLoc dl = DAG.getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003524
Dale Johannesen601d3c02008-09-05 01:48:15 +00003525 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003526 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3527 SDValue Op = getValue(I.getOperand(1));
3528
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003529 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003530
3531 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003532 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3533 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003534
3535 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003536 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Bill Wendling6c533342009-01-20 06:10:42 +00003537 DAG.getConstant(23, TLI.getShiftAmountTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003538
3539 if (LimitFloatPrecision <= 6) {
3540 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003541 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003542 // TwoToFractionalPartOfX =
3543 // 0.997535578f +
3544 // (0.735607626f + 0.252464424f * x) * x;
3545 //
3546 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003547 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003548 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003549 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003550 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003551 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3552 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003553 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003554 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003555 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003556 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003557
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003558 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3559 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003560 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3561 // For floating-point precision of 12:
3562 //
3563 // TwoToFractionalPartOfX =
3564 // 0.999892986f +
3565 // (0.696457318f +
3566 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3567 //
3568 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003569 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003570 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003571 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003572 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003573 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3574 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003575 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003576 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3577 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003578 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003579 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003580 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003581 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003582
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003583 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3584 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003585 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3586 // For floating-point precision of 18:
3587 //
3588 // TwoToFractionalPartOfX =
3589 // 0.999999982f +
3590 // (0.693148872f +
3591 // (0.240227044f +
3592 // (0.554906021e-1f +
3593 // (0.961591928e-2f +
3594 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3595 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003596 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003597 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003598 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003599 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003600 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3601 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003602 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003603 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3604 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003605 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003606 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3607 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003608 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003609 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3610 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003611 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003612 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3613 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003614 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003615 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003616 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003617 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003618
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003619 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3620 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003621 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003622 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003623 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003624 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003625 getValue(I.getOperand(1)).getValueType(),
3626 getValue(I.getOperand(1)));
3627 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003628
Dale Johannesen601d3c02008-09-05 01:48:15 +00003629 setValue(&I, result);
3630}
3631
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003632/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3633/// limited-precision mode with x == 10.0f.
3634void
3635SelectionDAGLowering::visitPow(CallInst &I) {
3636 SDValue result;
3637 Value *Val = I.getOperand(1);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003638 DebugLoc dl = DAG.getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003639 bool IsExp10 = false;
3640
3641 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003642 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003643 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3644 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3645 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3646 APFloat Ten(10.0f);
3647 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3648 }
3649 }
3650 }
3651
3652 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3653 SDValue Op = getValue(I.getOperand(2));
3654
3655 // Put the exponent in the right bit position for later addition to the
3656 // final result:
3657 //
3658 // #define LOG2OF10 3.3219281f
3659 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003660 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003661 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003662 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003663
3664 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003665 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3666 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003667
3668 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003669 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Bill Wendling6c533342009-01-20 06:10:42 +00003670 DAG.getConstant(23, TLI.getShiftAmountTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003671
3672 if (LimitFloatPrecision <= 6) {
3673 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003674 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003675 // twoToFractionalPartOfX =
3676 // 0.997535578f +
3677 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003678 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003679 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003680 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003681 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003682 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003683 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003684 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3685 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003686 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003687 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003688 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003689 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003690
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003691 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3692 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003693 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3694 // For floating-point precision of 12:
3695 //
3696 // TwoToFractionalPartOfX =
3697 // 0.999892986f +
3698 // (0.696457318f +
3699 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3700 //
3701 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003702 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003703 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003704 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003705 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003706 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3707 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003708 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003709 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3710 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003711 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003712 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003713 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003714 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003715
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003716 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3717 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003718 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3719 // For floating-point precision of 18:
3720 //
3721 // TwoToFractionalPartOfX =
3722 // 0.999999982f +
3723 // (0.693148872f +
3724 // (0.240227044f +
3725 // (0.554906021e-1f +
3726 // (0.961591928e-2f +
3727 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3728 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003729 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003730 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003731 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003732 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003733 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3734 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003735 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003736 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3737 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003738 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003739 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3740 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003741 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003742 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3743 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003744 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003745 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3746 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003747 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003748 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003749 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003750 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003751
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003752 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3753 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003754 }
3755 } else {
3756 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003757 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003758 getValue(I.getOperand(1)).getValueType(),
3759 getValue(I.getOperand(1)),
3760 getValue(I.getOperand(2)));
3761 }
3762
3763 setValue(&I, result);
3764}
3765
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003766/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3767/// we want to emit this as a call to a named external function, return the name
3768/// otherwise lower it and return null.
3769const char *
3770SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003771 DebugLoc dl = DAG.getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003772 switch (Intrinsic) {
3773 default:
3774 // By default, turn this into a target intrinsic node.
3775 visitTargetIntrinsic(I, Intrinsic);
3776 return 0;
3777 case Intrinsic::vastart: visitVAStart(I); return 0;
3778 case Intrinsic::vaend: visitVAEnd(I); return 0;
3779 case Intrinsic::vacopy: visitVACopy(I); return 0;
3780 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003781 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003782 getValue(I.getOperand(1))));
3783 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003784 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003785 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003786 getValue(I.getOperand(1))));
3787 return 0;
3788 case Intrinsic::setjmp:
3789 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3790 break;
3791 case Intrinsic::longjmp:
3792 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3793 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003794 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003795 SDValue Op1 = getValue(I.getOperand(1));
3796 SDValue Op2 = getValue(I.getOperand(2));
3797 SDValue Op3 = getValue(I.getOperand(3));
3798 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3799 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3800 I.getOperand(1), 0, I.getOperand(2), 0));
3801 return 0;
3802 }
Chris Lattner824b9582008-11-21 16:42:48 +00003803 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003804 SDValue Op1 = getValue(I.getOperand(1));
3805 SDValue Op2 = getValue(I.getOperand(2));
3806 SDValue Op3 = getValue(I.getOperand(3));
3807 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3808 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3809 I.getOperand(1), 0));
3810 return 0;
3811 }
Chris Lattner824b9582008-11-21 16:42:48 +00003812 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003813 SDValue Op1 = getValue(I.getOperand(1));
3814 SDValue Op2 = getValue(I.getOperand(2));
3815 SDValue Op3 = getValue(I.getOperand(3));
3816 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3817
3818 // If the source and destination are known to not be aliases, we can
3819 // lower memmove as memcpy.
3820 uint64_t Size = -1ULL;
3821 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003822 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003823 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3824 AliasAnalysis::NoAlias) {
3825 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3826 I.getOperand(1), 0, I.getOperand(2), 0));
3827 return 0;
3828 }
3829
3830 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3831 I.getOperand(1), 0, I.getOperand(2), 0));
3832 return 0;
3833 }
3834 case Intrinsic::dbg_stoppoint: {
Devang Patel83489bb2009-01-13 00:35:13 +00003835 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003836 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003837 if (DW && DW->ValidDebugInfo(SPI.getContext())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003838 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3839 SPI.getLine(),
3840 SPI.getColumn(),
Devang Patel83489bb2009-01-13 00:35:13 +00003841 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003842 DICompileUnit CU(cast<GlobalVariable>(SPI.getContext()));
3843 unsigned SrcFile = DW->RecordSource(CU.getDirectory(), CU.getFilename());
3844 unsigned idx = DAG.getMachineFunction().
3845 getOrCreateDebugLocID(SrcFile,
3846 SPI.getLine(),
3847 SPI.getColumn());
3848 DAG.setCurDebugLoc(DebugLoc::get(idx));
3849 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003850 return 0;
3851 }
3852 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003853 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003854 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patelb79b5352009-01-19 23:21:49 +00003855 if (DW && DW->ValidDebugInfo(RSI.getContext())) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003856 unsigned LabelID =
Devang Patel83489bb2009-01-13 00:35:13 +00003857 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003858 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
3859 }
3860
3861 return 0;
3862 }
3863 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003864 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003865 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patelb79b5352009-01-19 23:21:49 +00003866 if (DW && DW->ValidDebugInfo(REI.getContext())) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003867 unsigned LabelID =
Devang Patel83489bb2009-01-13 00:35:13 +00003868 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003869 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
3870 }
3871
3872 return 0;
3873 }
3874 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003875 DwarfWriter *DW = DAG.getDwarfWriter();
3876 if (!DW) return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003877 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
3878 Value *SP = FSI.getSubprogram();
Devang Patelcf3a4482009-01-15 23:41:32 +00003879 if (SP && DW->ValidDebugInfo(SP)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003880 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3881 // what (most?) gdb expects.
Devang Patel83489bb2009-01-13 00:35:13 +00003882 DISubprogram Subprogram(cast<GlobalVariable>(SP));
3883 DICompileUnit CompileUnit = Subprogram.getCompileUnit();
3884 unsigned SrcFile = DW->RecordSource(CompileUnit.getDirectory(),
3885 CompileUnit.getFilename());
Devang Patel20dd0462008-11-06 00:30:09 +00003886 // Record the source line but does not create a label for the normal
3887 // function start. It will be emitted at asm emission time. However,
3888 // create a label if this is a beginning of inlined function.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003889 unsigned Line = Subprogram.getLineNumber();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003890 unsigned LabelID =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003891 DW->RecordSourceLine(Line, 0, SrcFile);
Devang Patel83489bb2009-01-13 00:35:13 +00003892 if (DW->getRecordSourceLineCount() != 1)
Devang Patel20dd0462008-11-06 00:30:09 +00003893 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003894 DAG.setCurDebugLoc(DebugLoc::get(DAG.getMachineFunction().
3895 getOrCreateDebugLocID(SrcFile, Line, 0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003896 }
3897
3898 return 0;
3899 }
3900 case Intrinsic::dbg_declare: {
Devang Patel83489bb2009-01-13 00:35:13 +00003901 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003902 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3903 Value *Variable = DI.getVariable();
Devang Patelb79b5352009-01-19 23:21:49 +00003904 if (DW && DW->ValidDebugInfo(Variable))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003905 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003906 getValue(DI.getAddress()), getValue(Variable)));
3907 return 0;
3908 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003909
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003910 case Intrinsic::eh_exception: {
3911 if (!CurMBB->isLandingPad()) {
3912 // FIXME: Mark exception register as live in. Hack for PR1508.
3913 unsigned Reg = TLI.getExceptionAddressRegister();
3914 if (Reg) CurMBB->addLiveIn(Reg);
3915 }
3916 // Insert the EXCEPTIONADDR instruction.
3917 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3918 SDValue Ops[1];
3919 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003920 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003921 setValue(&I, Op);
3922 DAG.setRoot(Op.getValue(1));
3923 return 0;
3924 }
3925
3926 case Intrinsic::eh_selector_i32:
3927 case Intrinsic::eh_selector_i64: {
3928 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3929 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
3930 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003931
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003932 if (MMI) {
3933 if (CurMBB->isLandingPad())
3934 AddCatchInfo(I, MMI, CurMBB);
3935 else {
3936#ifndef NDEBUG
3937 FuncInfo.CatchInfoLost.insert(&I);
3938#endif
3939 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3940 unsigned Reg = TLI.getExceptionSelectorRegister();
3941 if (Reg) CurMBB->addLiveIn(Reg);
3942 }
3943
3944 // Insert the EHSELECTION instruction.
3945 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
3946 SDValue Ops[2];
3947 Ops[0] = getValue(I.getOperand(1));
3948 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003949 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003950 setValue(&I, Op);
3951 DAG.setRoot(Op.getValue(1));
3952 } else {
3953 setValue(&I, DAG.getConstant(0, VT));
3954 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003955
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003956 return 0;
3957 }
3958
3959 case Intrinsic::eh_typeid_for_i32:
3960 case Intrinsic::eh_typeid_for_i64: {
3961 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3962 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
3963 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00003964
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003965 if (MMI) {
3966 // Find the type id for the given typeinfo.
3967 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
3968
3969 unsigned TypeID = MMI->getTypeIDFor(GV);
3970 setValue(&I, DAG.getConstant(TypeID, VT));
3971 } else {
3972 // Return something different to eh_selector.
3973 setValue(&I, DAG.getConstant(1, VT));
3974 }
3975
3976 return 0;
3977 }
3978
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00003979 case Intrinsic::eh_return_i32:
3980 case Intrinsic::eh_return_i64:
3981 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003982 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003983 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003984 MVT::Other,
3985 getControlRoot(),
3986 getValue(I.getOperand(1)),
3987 getValue(I.getOperand(2))));
3988 } else {
3989 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3990 }
3991
3992 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00003993 case Intrinsic::eh_unwind_init:
3994 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3995 MMI->setCallsUnwindInit(true);
3996 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003997
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00003998 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003999
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004000 case Intrinsic::eh_dwarf_cfa: {
4001 MVT VT = getValue(I.getOperand(1)).getValueType();
4002 SDValue CfaArg;
4003 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004004 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004005 TLI.getPointerTy(), getValue(I.getOperand(1)));
4006 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004007 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004008 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004009
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004010 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004011 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004012 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004013 TLI.getPointerTy()),
4014 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004015 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004016 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004017 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004018 TLI.getPointerTy(),
4019 DAG.getConstant(0,
4020 TLI.getPointerTy())),
4021 Offset));
4022 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004023 }
4024
Mon P Wang77cdf302008-11-10 20:54:11 +00004025 case Intrinsic::convertff:
4026 case Intrinsic::convertfsi:
4027 case Intrinsic::convertfui:
4028 case Intrinsic::convertsif:
4029 case Intrinsic::convertuif:
4030 case Intrinsic::convertss:
4031 case Intrinsic::convertsu:
4032 case Intrinsic::convertus:
4033 case Intrinsic::convertuu: {
4034 ISD::CvtCode Code = ISD::CVT_INVALID;
4035 switch (Intrinsic) {
4036 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4037 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4038 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4039 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4040 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4041 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4042 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4043 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4044 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4045 }
4046 MVT DestVT = TLI.getValueType(I.getType());
4047 Value* Op1 = I.getOperand(1);
4048 setValue(&I, DAG.getConvertRndSat(DestVT, getValue(Op1),
4049 DAG.getValueType(DestVT),
4050 DAG.getValueType(getValue(Op1).getValueType()),
4051 getValue(I.getOperand(2)),
4052 getValue(I.getOperand(3)),
4053 Code));
4054 return 0;
4055 }
4056
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004057 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004058 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004059 getValue(I.getOperand(1)).getValueType(),
4060 getValue(I.getOperand(1))));
4061 return 0;
4062 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004063 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004064 getValue(I.getOperand(1)).getValueType(),
4065 getValue(I.getOperand(1)),
4066 getValue(I.getOperand(2))));
4067 return 0;
4068 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004069 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004070 getValue(I.getOperand(1)).getValueType(),
4071 getValue(I.getOperand(1))));
4072 return 0;
4073 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004074 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004075 getValue(I.getOperand(1)).getValueType(),
4076 getValue(I.getOperand(1))));
4077 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004078 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004079 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004080 return 0;
4081 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004082 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004083 return 0;
4084 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004085 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004086 return 0;
4087 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004088 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004089 return 0;
4090 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004091 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004092 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004093 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004094 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004095 return 0;
4096 case Intrinsic::pcmarker: {
4097 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004098 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004099 return 0;
4100 }
4101 case Intrinsic::readcyclecounter: {
4102 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004103 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004104 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
4105 &Op, 1);
4106 setValue(&I, Tmp);
4107 DAG.setRoot(Tmp.getValue(1));
4108 return 0;
4109 }
4110 case Intrinsic::part_select: {
4111 // Currently not implemented: just abort
4112 assert(0 && "part_select intrinsic not implemented");
4113 abort();
4114 }
4115 case Intrinsic::part_set: {
4116 // Currently not implemented: just abort
4117 assert(0 && "part_set intrinsic not implemented");
4118 abort();
4119 }
4120 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004121 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004122 getValue(I.getOperand(1)).getValueType(),
4123 getValue(I.getOperand(1))));
4124 return 0;
4125 case Intrinsic::cttz: {
4126 SDValue Arg = getValue(I.getOperand(1));
4127 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004128 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004129 setValue(&I, result);
4130 return 0;
4131 }
4132 case Intrinsic::ctlz: {
4133 SDValue Arg = getValue(I.getOperand(1));
4134 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004135 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004136 setValue(&I, result);
4137 return 0;
4138 }
4139 case Intrinsic::ctpop: {
4140 SDValue Arg = getValue(I.getOperand(1));
4141 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004142 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004143 setValue(&I, result);
4144 return 0;
4145 }
4146 case Intrinsic::stacksave: {
4147 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004148 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004149 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
4150 setValue(&I, Tmp);
4151 DAG.setRoot(Tmp.getValue(1));
4152 return 0;
4153 }
4154 case Intrinsic::stackrestore: {
4155 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004156 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004157 return 0;
4158 }
Bill Wendling57344502008-11-18 11:01:33 +00004159 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004160 // Emit code into the DAG to store the stack guard onto the stack.
4161 MachineFunction &MF = DAG.getMachineFunction();
4162 MachineFrameInfo *MFI = MF.getFrameInfo();
4163 MVT PtrTy = TLI.getPointerTy();
4164
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004165 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4166 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004167
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004168 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004169 MFI->setStackProtectorIndex(FI);
4170
4171 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4172
4173 // Store the stack protector onto the stack.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004174 SDValue Result = DAG.getStore(getRoot(), DAG.getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004175 PseudoSourceValue::getFixedStack(FI),
4176 0, true);
4177 setValue(&I, Result);
4178 DAG.setRoot(Result);
4179 return 0;
4180 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004181 case Intrinsic::var_annotation:
4182 // Discard annotate attributes
4183 return 0;
4184
4185 case Intrinsic::init_trampoline: {
4186 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4187
4188 SDValue Ops[6];
4189 Ops[0] = getRoot();
4190 Ops[1] = getValue(I.getOperand(1));
4191 Ops[2] = getValue(I.getOperand(2));
4192 Ops[3] = getValue(I.getOperand(3));
4193 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4194 Ops[5] = DAG.getSrcValue(F);
4195
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004196 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004197 DAG.getNodeValueTypes(TLI.getPointerTy(),
4198 MVT::Other), 2,
4199 Ops, 6);
4200
4201 setValue(&I, Tmp);
4202 DAG.setRoot(Tmp.getValue(1));
4203 return 0;
4204 }
4205
4206 case Intrinsic::gcroot:
4207 if (GFI) {
4208 Value *Alloca = I.getOperand(1);
4209 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004210
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004211 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4212 GFI->addStackRoot(FI->getIndex(), TypeMap);
4213 }
4214 return 0;
4215
4216 case Intrinsic::gcread:
4217 case Intrinsic::gcwrite:
4218 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4219 return 0;
4220
4221 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004222 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004223 return 0;
4224 }
4225
4226 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004227 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004228 return 0;
4229 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004230
Bill Wendlingef375462008-11-21 02:38:44 +00004231 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004232 return implVisitAluOverflow(I, ISD::UADDO);
4233 case Intrinsic::sadd_with_overflow:
4234 return implVisitAluOverflow(I, ISD::SADDO);
4235 case Intrinsic::usub_with_overflow:
4236 return implVisitAluOverflow(I, ISD::USUBO);
4237 case Intrinsic::ssub_with_overflow:
4238 return implVisitAluOverflow(I, ISD::SSUBO);
4239 case Intrinsic::umul_with_overflow:
4240 return implVisitAluOverflow(I, ISD::UMULO);
4241 case Intrinsic::smul_with_overflow:
4242 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004243
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004244 case Intrinsic::prefetch: {
4245 SDValue Ops[4];
4246 Ops[0] = getRoot();
4247 Ops[1] = getValue(I.getOperand(1));
4248 Ops[2] = getValue(I.getOperand(2));
4249 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004250 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004251 return 0;
4252 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004253
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004254 case Intrinsic::memory_barrier: {
4255 SDValue Ops[6];
4256 Ops[0] = getRoot();
4257 for (int x = 1; x < 6; ++x)
4258 Ops[x] = getValue(I.getOperand(x));
4259
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004260 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004261 return 0;
4262 }
4263 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004264 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004265 SDValue L =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004266 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, DAG.getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004267 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4268 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004269 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004270 getValue(I.getOperand(2)),
4271 getValue(I.getOperand(3)),
4272 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004273 setValue(&I, L);
4274 DAG.setRoot(L.getValue(1));
4275 return 0;
4276 }
4277 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004278 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004279 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004280 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004281 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004282 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004283 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004284 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004285 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004286 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004287 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004288 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004289 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004290 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004291 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004292 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004293 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004294 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004295 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004296 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004297 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004298 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004299 }
4300}
4301
4302
4303void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4304 bool IsTailCall,
4305 MachineBasicBlock *LandingPad) {
4306 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4307 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4308 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4309 unsigned BeginLabel = 0, EndLabel = 0;
4310
4311 TargetLowering::ArgListTy Args;
4312 TargetLowering::ArgListEntry Entry;
4313 Args.reserve(CS.arg_size());
4314 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4315 i != e; ++i) {
4316 SDValue ArgNode = getValue(*i);
4317 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4318
4319 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004320 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4321 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4322 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4323 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4324 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4325 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004326 Entry.Alignment = CS.getParamAlignment(attrInd);
4327 Args.push_back(Entry);
4328 }
4329
4330 if (LandingPad && MMI) {
4331 // Insert a label before the invoke call to mark the try range. This can be
4332 // used to detect deletion of the invoke via the MachineModuleInfo.
4333 BeginLabel = MMI->NextLabelID();
4334 // Both PendingLoads and PendingExports must be flushed here;
4335 // this call might not return.
4336 (void)getRoot();
4337 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
4338 }
4339
4340 std::pair<SDValue,SDValue> Result =
4341 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004342 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004343 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
4344 CS.paramHasAttr(0, Attribute::InReg),
4345 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004346 IsTailCall && PerformTailCallOpt,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004347 Callee, Args, DAG);
4348 if (CS.getType() != Type::VoidTy)
4349 setValue(CS.getInstruction(), Result.first);
4350 DAG.setRoot(Result.second);
4351
4352 if (LandingPad && MMI) {
4353 // Insert a label at the end of the invoke call to mark the try range. This
4354 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4355 EndLabel = MMI->NextLabelID();
4356 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
4357
4358 // Inform MachineModuleInfo of range.
4359 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4360 }
4361}
4362
4363
4364void SelectionDAGLowering::visitCall(CallInst &I) {
4365 const char *RenameFn = 0;
4366 if (Function *F = I.getCalledFunction()) {
4367 if (F->isDeclaration()) {
4368 if (unsigned IID = F->getIntrinsicID()) {
4369 RenameFn = visitIntrinsicCall(I, IID);
4370 if (!RenameFn)
4371 return;
4372 }
4373 }
4374
4375 // Check for well-known libc/libm calls. If the function is internal, it
4376 // can't be a library call.
4377 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004378 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004379 const char *NameStr = F->getNameStart();
4380 if (NameStr[0] == 'c' &&
4381 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4382 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4383 if (I.getNumOperands() == 3 && // Basic sanity checks.
4384 I.getOperand(1)->getType()->isFloatingPoint() &&
4385 I.getType() == I.getOperand(1)->getType() &&
4386 I.getType() == I.getOperand(2)->getType()) {
4387 SDValue LHS = getValue(I.getOperand(1));
4388 SDValue RHS = getValue(I.getOperand(2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004389 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, DAG.getCurDebugLoc(),
4390 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004391 return;
4392 }
4393 } else if (NameStr[0] == 'f' &&
4394 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4395 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4396 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4397 if (I.getNumOperands() == 2 && // Basic sanity checks.
4398 I.getOperand(1)->getType()->isFloatingPoint() &&
4399 I.getType() == I.getOperand(1)->getType()) {
4400 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004401 setValue(&I, DAG.getNode(ISD::FABS, DAG.getCurDebugLoc(),
4402 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004403 return;
4404 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004405 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004406 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4407 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4408 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4409 if (I.getNumOperands() == 2 && // Basic sanity checks.
4410 I.getOperand(1)->getType()->isFloatingPoint() &&
4411 I.getType() == I.getOperand(1)->getType()) {
4412 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004413 setValue(&I, DAG.getNode(ISD::FSIN, DAG.getCurDebugLoc(),
4414 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004415 return;
4416 }
4417 } else if (NameStr[0] == 'c' &&
4418 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4419 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4420 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4421 if (I.getNumOperands() == 2 && // Basic sanity checks.
4422 I.getOperand(1)->getType()->isFloatingPoint() &&
4423 I.getType() == I.getOperand(1)->getType()) {
4424 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004425 setValue(&I, DAG.getNode(ISD::FCOS, DAG.getCurDebugLoc(),
4426 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004427 return;
4428 }
4429 }
4430 }
4431 } else if (isa<InlineAsm>(I.getOperand(0))) {
4432 visitInlineAsm(&I);
4433 return;
4434 }
4435
4436 SDValue Callee;
4437 if (!RenameFn)
4438 Callee = getValue(I.getOperand(0));
4439 else
Bill Wendling056292f2008-09-16 21:48:12 +00004440 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004441
4442 LowerCallTo(&I, Callee, I.isTailCall());
4443}
4444
4445
4446/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004447/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004448/// Chain/Flag as the input and updates them for the output Chain/Flag.
4449/// If the Flag pointer is NULL, no flag is used.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004450SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004451 SDValue &Chain,
4452 SDValue *Flag) const {
4453 // Assemble the legal parts into the final values.
4454 SmallVector<SDValue, 4> Values(ValueVTs.size());
4455 SmallVector<SDValue, 8> Parts;
4456 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4457 // Copy the legal parts from the registers.
4458 MVT ValueVT = ValueVTs[Value];
4459 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4460 MVT RegisterVT = RegVTs[Value];
4461
4462 Parts.resize(NumRegs);
4463 for (unsigned i = 0; i != NumRegs; ++i) {
4464 SDValue P;
4465 if (Flag == 0)
4466 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
4467 else {
4468 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
4469 *Flag = P.getValue(2);
4470 }
4471 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004472
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004473 // If the source register was virtual and if we know something about it,
4474 // add an assert node.
4475 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4476 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4477 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4478 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4479 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4480 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004481
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004482 unsigned RegSize = RegisterVT.getSizeInBits();
4483 unsigned NumSignBits = LOI.NumSignBits;
4484 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004485
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004486 // FIXME: We capture more information than the dag can represent. For
4487 // now, just use the tightest assertzext/assertsext possible.
4488 bool isSExt = true;
4489 MVT FromVT(MVT::Other);
4490 if (NumSignBits == RegSize)
4491 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4492 else if (NumZeroBits >= RegSize-1)
4493 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4494 else if (NumSignBits > RegSize-8)
4495 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
4496 else if (NumZeroBits >= RegSize-9)
4497 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4498 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004499 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004500 else if (NumZeroBits >= RegSize-17)
Bill Wendling181b6272008-10-19 20:34:04 +00004501 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004502 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004503 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004504 else if (NumZeroBits >= RegSize-33)
Bill Wendling181b6272008-10-19 20:34:04 +00004505 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004506
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004507 if (FromVT != MVT::Other) {
4508 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004509 DAG.getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004510 RegisterVT, P, DAG.getValueType(FromVT));
4511
4512 }
4513 }
4514 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004515
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004516 Parts[i] = P;
4517 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004518
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004519 Values[Value] = getCopyFromParts(DAG, Parts.begin(), NumRegs, RegisterVT,
4520 ValueVT);
4521 Part += NumRegs;
4522 Parts.clear();
4523 }
4524
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004525 return DAG.getNode(ISD::MERGE_VALUES, DAG.getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004526 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4527 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004528}
4529
4530/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004531/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004532/// Chain/Flag as the input and updates them for the output Chain/Flag.
4533/// If the Flag pointer is NULL, no flag is used.
4534void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG,
4535 SDValue &Chain, SDValue *Flag) const {
4536 // Get the list of the values's legal parts.
4537 unsigned NumRegs = Regs.size();
4538 SmallVector<SDValue, 8> Parts(NumRegs);
4539 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4540 MVT ValueVT = ValueVTs[Value];
4541 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4542 MVT RegisterVT = RegVTs[Value];
4543
4544 getCopyToParts(DAG, Val.getValue(Val.getResNo() + Value),
4545 &Parts[Part], NumParts, RegisterVT);
4546 Part += NumParts;
4547 }
4548
4549 // Copy the parts into the registers.
4550 SmallVector<SDValue, 8> Chains(NumRegs);
4551 for (unsigned i = 0; i != NumRegs; ++i) {
4552 SDValue Part;
4553 if (Flag == 0)
4554 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
4555 else {
4556 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
4557 *Flag = Part.getValue(1);
4558 }
4559 Chains[i] = Part.getValue(0);
4560 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004561
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004562 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004563 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004564 // flagged to it. That is the CopyToReg nodes and the user are considered
4565 // a single scheduling unit. If we create a TokenFactor and return it as
4566 // chain, then the TokenFactor is both a predecessor (operand) of the
4567 // user as well as a successor (the TF operands are flagged to the user).
4568 // c1, f1 = CopyToReg
4569 // c2, f2 = CopyToReg
4570 // c3 = TokenFactor c1, c2
4571 // ...
4572 // = op c3, ..., f2
4573 Chain = Chains[NumRegs-1];
4574 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004575 Chain = DAG.getNode(ISD::TokenFactor, DAG.getCurDebugLoc(),
4576 MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004577}
4578
4579/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004580/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004581/// values added into it.
4582void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
4583 std::vector<SDValue> &Ops) const {
4584 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
4585 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
4586 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4587 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4588 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004589 for (unsigned i = 0; i != NumRegs; ++i) {
4590 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004591 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004592 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004593 }
4594}
4595
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004596/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004597/// i.e. it isn't a stack pointer or some other special register, return the
4598/// register class for the register. Otherwise, return null.
4599static const TargetRegisterClass *
4600isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4601 const TargetLowering &TLI,
4602 const TargetRegisterInfo *TRI) {
4603 MVT FoundVT = MVT::Other;
4604 const TargetRegisterClass *FoundRC = 0;
4605 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4606 E = TRI->regclass_end(); RCI != E; ++RCI) {
4607 MVT ThisVT = MVT::Other;
4608
4609 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004610 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004611 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4612 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4613 I != E; ++I) {
4614 if (TLI.isTypeLegal(*I)) {
4615 // If we have already found this register in a different register class,
4616 // choose the one with the largest VT specified. For example, on
4617 // PowerPC, we favor f64 register classes over f32.
4618 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4619 ThisVT = *I;
4620 break;
4621 }
4622 }
4623 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004624
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004625 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004626
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004627 // NOTE: This isn't ideal. In particular, this might allocate the
4628 // frame pointer in functions that need it (due to them not being taken
4629 // out of allocation, because a variable sized allocation hasn't been seen
4630 // yet). This is a slight code pessimization, but should still work.
4631 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4632 E = RC->allocation_order_end(MF); I != E; ++I)
4633 if (*I == Reg) {
4634 // We found a matching register class. Keep looking at others in case
4635 // we find one with larger registers that this physreg is also in.
4636 FoundRC = RC;
4637 FoundVT = ThisVT;
4638 break;
4639 }
4640 }
4641 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004642}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643
4644
4645namespace llvm {
4646/// AsmOperandInfo - This contains information for each constraint that we are
4647/// lowering.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004648struct VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004649 public TargetLowering::AsmOperandInfo {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004650 /// CallOperand - If this is the result output operand or a clobber
4651 /// this is null, otherwise it is the incoming operand to the CallInst.
4652 /// This gets modified as the asm is processed.
4653 SDValue CallOperand;
4654
4655 /// AssignedRegs - If this is a register or register class operand, this
4656 /// contains the set of register corresponding to the operand.
4657 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004658
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004659 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4660 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4661 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004662
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004663 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4664 /// busy in OutputRegs/InputRegs.
4665 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004666 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004667 std::set<unsigned> &InputRegs,
4668 const TargetRegisterInfo &TRI) const {
4669 if (isOutReg) {
4670 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4671 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4672 }
4673 if (isInReg) {
4674 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4675 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4676 }
4677 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004678
Chris Lattner81249c92008-10-17 17:05:25 +00004679 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4680 /// corresponds to. If there is no Value* for this operand, it returns
4681 /// MVT::Other.
4682 MVT getCallOperandValMVT(const TargetLowering &TLI,
4683 const TargetData *TD) const {
4684 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004685
Chris Lattner81249c92008-10-17 17:05:25 +00004686 if (isa<BasicBlock>(CallOperandVal))
4687 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004688
Chris Lattner81249c92008-10-17 17:05:25 +00004689 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004690
Chris Lattner81249c92008-10-17 17:05:25 +00004691 // If this is an indirect operand, the operand is a pointer to the
4692 // accessed type.
4693 if (isIndirect)
4694 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004695
Chris Lattner81249c92008-10-17 17:05:25 +00004696 // If OpTy is not a single value, it may be a struct/union that we
4697 // can tile with integers.
4698 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4699 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4700 switch (BitSize) {
4701 default: break;
4702 case 1:
4703 case 8:
4704 case 16:
4705 case 32:
4706 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004707 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004708 OpTy = IntegerType::get(BitSize);
4709 break;
4710 }
4711 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004712
Chris Lattner81249c92008-10-17 17:05:25 +00004713 return TLI.getValueType(OpTy, true);
4714 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004715
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004716private:
4717 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4718 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004719 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004720 const TargetRegisterInfo &TRI) {
4721 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4722 Regs.insert(Reg);
4723 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4724 for (; *Aliases; ++Aliases)
4725 Regs.insert(*Aliases);
4726 }
4727};
4728} // end llvm namespace.
4729
4730
4731/// GetRegistersForValue - Assign registers (virtual or physical) for the
4732/// specified operand. We prefer to assign virtual registers, to allow the
4733/// register allocator handle the assignment process. However, if the asm uses
4734/// features that we can't model on machineinstrs, we have SDISel do the
4735/// allocation. This produces generally horrible, but correct, code.
4736///
4737/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004738/// Input and OutputRegs are the set of already allocated physical registers.
4739///
4740void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004741GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004742 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004743 std::set<unsigned> &InputRegs) {
4744 // Compute whether this value requires an input register, an output register,
4745 // or both.
4746 bool isOutReg = false;
4747 bool isInReg = false;
4748 switch (OpInfo.Type) {
4749 case InlineAsm::isOutput:
4750 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004751
4752 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004753 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004754 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004755 break;
4756 case InlineAsm::isInput:
4757 isInReg = true;
4758 isOutReg = false;
4759 break;
4760 case InlineAsm::isClobber:
4761 isOutReg = true;
4762 isInReg = true;
4763 break;
4764 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004765
4766
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004767 MachineFunction &MF = DAG.getMachineFunction();
4768 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004769
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004770 // If this is a constraint for a single physreg, or a constraint for a
4771 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004772 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004773 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4774 OpInfo.ConstraintVT);
4775
4776 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004777 if (OpInfo.ConstraintVT != MVT::Other) {
4778 // If this is a FP input in an integer register (or visa versa) insert a bit
4779 // cast of the input value. More generally, handle any case where the input
4780 // value disagrees with the register class we plan to stick this in.
4781 if (OpInfo.Type == InlineAsm::isInput &&
4782 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4783 // Try to convert to the first MVT that the reg class contains. If the
4784 // types are identical size, use a bitcast to convert (e.g. two differing
4785 // vector types).
4786 MVT RegVT = *PhysReg.second->vt_begin();
4787 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004788 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(),
4789 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004790 OpInfo.ConstraintVT = RegVT;
4791 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4792 // If the input is a FP value and we want it in FP registers, do a
4793 // bitcast to the corresponding integer type. This turns an f64 value
4794 // into i64, which can be passed with two i32 values on a 32-bit
4795 // machine.
4796 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004797 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(),
4798 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004799 OpInfo.ConstraintVT = RegVT;
4800 }
4801 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004802
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004803 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004804 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004805
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004806 MVT RegVT;
4807 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004808
4809 // If this is a constraint for a specific physical register, like {r17},
4810 // assign it now.
4811 if (PhysReg.first) {
4812 if (OpInfo.ConstraintVT == MVT::Other)
4813 ValueVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004814
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004815 // Get the actual register value type. This is important, because the user
4816 // may have asked for (e.g.) the AX register in i32 type. We need to
4817 // remember that AX is actually i16 to get the right extension.
4818 RegVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004819
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004820 // This is a explicit reference to a physical register.
4821 Regs.push_back(PhysReg.first);
4822
4823 // If this is an expanded reference, add the rest of the regs to Regs.
4824 if (NumRegs != 1) {
4825 TargetRegisterClass::iterator I = PhysReg.second->begin();
4826 for (; *I != PhysReg.first; ++I)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004827 assert(I != PhysReg.second->end() && "Didn't find reg!");
4828
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004829 // Already added the first reg.
4830 --NumRegs; ++I;
4831 for (; NumRegs; --NumRegs, ++I) {
4832 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
4833 Regs.push_back(*I);
4834 }
4835 }
4836 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4837 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4838 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4839 return;
4840 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004841
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004842 // Otherwise, if this was a reference to an LLVM register class, create vregs
4843 // for this reference.
4844 std::vector<unsigned> RegClassRegs;
4845 const TargetRegisterClass *RC = PhysReg.second;
4846 if (RC) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004847 // If this is a tied register, our regalloc doesn't know how to maintain
Chris Lattner58f15c42008-10-17 16:21:11 +00004848 // the constraint, so we have to pick a register to pin the input/output to.
4849 // If it isn't a matched constraint, go ahead and create vreg and let the
4850 // regalloc do its thing.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004851 if (!OpInfo.hasMatchingInput()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004852 RegVT = *PhysReg.second->vt_begin();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004853 if (OpInfo.ConstraintVT == MVT::Other)
4854 ValueVT = RegVT;
4855
4856 // Create the appropriate number of virtual registers.
4857 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4858 for (; NumRegs; --NumRegs)
4859 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004860
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004861 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4862 return;
4863 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004864
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004865 // Otherwise, we can't allocate it. Let the code below figure out how to
4866 // maintain these constraints.
4867 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004868
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004869 } else {
4870 // This is a reference to a register class that doesn't directly correspond
4871 // to an LLVM register class. Allocate NumRegs consecutive, available,
4872 // registers from the class.
4873 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4874 OpInfo.ConstraintVT);
4875 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004876
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004877 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4878 unsigned NumAllocated = 0;
4879 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4880 unsigned Reg = RegClassRegs[i];
4881 // See if this register is available.
4882 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4883 (isInReg && InputRegs.count(Reg))) { // Already used.
4884 // Make sure we find consecutive registers.
4885 NumAllocated = 0;
4886 continue;
4887 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004888
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004889 // Check to see if this register is allocatable (i.e. don't give out the
4890 // stack pointer).
4891 if (RC == 0) {
4892 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4893 if (!RC) { // Couldn't allocate this register.
4894 // Reset NumAllocated to make sure we return consecutive registers.
4895 NumAllocated = 0;
4896 continue;
4897 }
4898 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004899
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004900 // Okay, this register is good, we can use it.
4901 ++NumAllocated;
4902
4903 // If we allocated enough consecutive registers, succeed.
4904 if (NumAllocated == NumRegs) {
4905 unsigned RegStart = (i-NumAllocated)+1;
4906 unsigned RegEnd = i+1;
4907 // Mark all of the allocated registers used.
4908 for (unsigned i = RegStart; i != RegEnd; ++i)
4909 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004910
4911 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004912 OpInfo.ConstraintVT);
4913 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4914 return;
4915 }
4916 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004917
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004918 // Otherwise, we couldn't allocate enough registers for this.
4919}
4920
Evan Chengda43bcf2008-09-24 00:05:32 +00004921/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
4922/// processed uses a memory 'm' constraint.
4923static bool
4924hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00004925 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00004926 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
4927 InlineAsm::ConstraintInfo &CI = CInfos[i];
4928 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
4929 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
4930 if (CType == TargetLowering::C_Memory)
4931 return true;
4932 }
4933 }
4934
4935 return false;
4936}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004937
4938/// visitInlineAsm - Handle a call to an InlineAsm object.
4939///
4940void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4941 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
4942
4943 /// ConstraintOperands - Information about all of the constraints.
4944 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004945
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004946 SDValue Chain = getRoot();
4947 SDValue Flag;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004948
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004949 std::set<unsigned> OutputRegs, InputRegs;
4950
4951 // Do a prepass over the constraints, canonicalizing them, and building up the
4952 // ConstraintOperands list.
4953 std::vector<InlineAsm::ConstraintInfo>
4954 ConstraintInfos = IA->ParseConstraints();
4955
Evan Chengda43bcf2008-09-24 00:05:32 +00004956 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004957
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004958 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
4959 unsigned ResNo = 0; // ResNo - The result number of the next output.
4960 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
4961 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4962 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004963
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004964 MVT OpVT = MVT::Other;
4965
4966 // Compute the value type for each operand.
4967 switch (OpInfo.Type) {
4968 case InlineAsm::isOutput:
4969 // Indirect outputs just consume an argument.
4970 if (OpInfo.isIndirect) {
4971 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
4972 break;
4973 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004974
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004975 // The return value of the call is this value. As such, there is no
4976 // corresponding argument.
4977 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4978 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4979 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4980 } else {
4981 assert(ResNo == 0 && "Asm only has one result!");
4982 OpVT = TLI.getValueType(CS.getType());
4983 }
4984 ++ResNo;
4985 break;
4986 case InlineAsm::isInput:
4987 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
4988 break;
4989 case InlineAsm::isClobber:
4990 // Nothing to do.
4991 break;
4992 }
4993
4994 // If this is an input or an indirect output, process the call argument.
4995 // BasicBlocks are labels, currently appearing only in asm's.
4996 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00004997 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004998 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00004999 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005000 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005001 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005002
Chris Lattner81249c92008-10-17 17:05:25 +00005003 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005004 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005005
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005006 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005007 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005008
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005009 // Second pass over the constraints: compute which constraint option to use
5010 // and assign registers to constraints that want a specific physreg.
5011 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5012 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005013
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005014 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005015 // matching input. If their types mismatch, e.g. one is an integer, the
5016 // other is floating point, or their sizes are different, flag it as an
5017 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005018 if (OpInfo.hasMatchingInput()) {
5019 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5020 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005021 if ((OpInfo.ConstraintVT.isInteger() !=
5022 Input.ConstraintVT.isInteger()) ||
5023 (OpInfo.ConstraintVT.getSizeInBits() !=
5024 Input.ConstraintVT.getSizeInBits())) {
5025 cerr << "Unsupported asm: input constraint with a matching output "
5026 << "constraint of incompatible type!\n";
5027 exit(1);
5028 }
5029 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005030 }
5031 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005032
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005033 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005034 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005035
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005036 // If this is a memory input, and if the operand is not indirect, do what we
5037 // need to to provide an address for the memory input.
5038 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5039 !OpInfo.isIndirect) {
5040 assert(OpInfo.Type == InlineAsm::isInput &&
5041 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005042
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005043 // Memory operands really want the address of the value. If we don't have
5044 // an indirect input, put it in the constpool if we can, otherwise spill
5045 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005046
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005047 // If the operand is a float, integer, or vector constant, spill to a
5048 // constant pool entry to get its address.
5049 Value *OpVal = OpInfo.CallOperandVal;
5050 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5051 isa<ConstantVector>(OpVal)) {
5052 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5053 TLI.getPointerTy());
5054 } else {
5055 // Otherwise, create a stack slot and emit a store to it before the
5056 // asm.
5057 const Type *Ty = OpVal->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005058 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005059 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5060 MachineFunction &MF = DAG.getMachineFunction();
5061 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5062 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005063 Chain = DAG.getStore(Chain, DAG.getCurDebugLoc(),
5064 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005065 OpInfo.CallOperand = StackSlot;
5066 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005067
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005068 // There is no longer a Value* corresponding to this operand.
5069 OpInfo.CallOperandVal = 0;
5070 // It is now an indirect operand.
5071 OpInfo.isIndirect = true;
5072 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005073
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005074 // If this constraint is for a specific register, allocate it before
5075 // anything else.
5076 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005077 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005078 }
5079 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005080
5081
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005082 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005083 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005084 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5085 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005086
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005087 // C_Register operands have already been allocated, Other/Memory don't need
5088 // to be.
5089 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005090 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005091 }
5092
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005093 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5094 std::vector<SDValue> AsmNodeOperands;
5095 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5096 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005097 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005098
5099
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005100 // Loop over all of the inputs, copying the operand values into the
5101 // appropriate registers and processing the output regs.
5102 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005103
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005104 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5105 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005106
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005107 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5108 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5109
5110 switch (OpInfo.Type) {
5111 case InlineAsm::isOutput: {
5112 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5113 OpInfo.ConstraintType != TargetLowering::C_Register) {
5114 // Memory output, or 'other' output (e.g. 'X' constraint).
5115 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5116
5117 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005118 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5119 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005120 TLI.getPointerTy()));
5121 AsmNodeOperands.push_back(OpInfo.CallOperand);
5122 break;
5123 }
5124
5125 // Otherwise, this is a register or register class output.
5126
5127 // Copy the output from the appropriate register. Find a register that
5128 // we can use.
5129 if (OpInfo.AssignedRegs.Regs.empty()) {
5130 cerr << "Couldn't allocate output reg for constraint '"
5131 << OpInfo.ConstraintCode << "'!\n";
5132 exit(1);
5133 }
5134
5135 // If this is an indirect operand, store through the pointer after the
5136 // asm.
5137 if (OpInfo.isIndirect) {
5138 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5139 OpInfo.CallOperandVal));
5140 } else {
5141 // This is the result value of the call.
5142 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5143 // Concatenate this output onto the outputs list.
5144 RetValRegs.append(OpInfo.AssignedRegs);
5145 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005146
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005147 // Add information to the INLINEASM node to know that this register is
5148 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005149 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5150 6 /* EARLYCLOBBER REGDEF */ :
5151 2 /* REGDEF */ ,
5152 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005153 break;
5154 }
5155 case InlineAsm::isInput: {
5156 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005157
Chris Lattner6bdcda32008-10-17 16:47:46 +00005158 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005159 // If this is required to match an output register we have already set,
5160 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005161 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005162
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005163 // Scan until we find the definition we already emitted of this operand.
5164 // When we find it, create a RegsForValue operand.
5165 unsigned CurOp = 2; // The first operand.
5166 for (; OperandNo; --OperandNo) {
5167 // Advance to the next operand.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005168 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005169 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005170 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
Dale Johannesen913d3df2008-09-12 17:49:03 +00005171 (NumOps & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
Dale Johannesen86b49f82008-09-24 01:07:17 +00005172 (NumOps & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005173 "Skipped past definitions?");
5174 CurOp += (NumOps>>3)+1;
5175 }
5176
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005177 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005178 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005179 if ((NumOps & 7) == 2 /*REGDEF*/
Dale Johannesen913d3df2008-09-12 17:49:03 +00005180 || (NumOps & 7) == 6 /* EARLYCLOBBER REGDEF */) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005181 // Add NumOps>>3 registers to MatchedRegs.
5182 RegsForValue MatchedRegs;
5183 MatchedRegs.TLI = &TLI;
5184 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
5185 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
5186 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
5187 unsigned Reg =
5188 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
5189 MatchedRegs.Regs.push_back(Reg);
5190 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005191
5192 // Use the produced MatchedRegs object to
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005193 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Dale Johannesen86b49f82008-09-24 01:07:17 +00005194 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005195 break;
5196 } else {
Dale Johannesen86b49f82008-09-24 01:07:17 +00005197 assert(((NumOps & 7) == 4) && "Unknown matching constraint!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005198 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005199 // Add information to the INLINEASM node to know about this input.
Dale Johannesen91aac102008-09-17 21:13:11 +00005200 AsmNodeOperands.push_back(DAG.getTargetConstant(NumOps,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005201 TLI.getPointerTy()));
5202 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5203 break;
5204 }
5205 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005206
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005207 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005208 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005209 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005210
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005211 std::vector<SDValue> Ops;
5212 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005213 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005214 if (Ops.empty()) {
5215 cerr << "Invalid operand for inline asm constraint '"
5216 << OpInfo.ConstraintCode << "'!\n";
5217 exit(1);
5218 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005219
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005220 // Add information to the INLINEASM node to know about this input.
5221 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005222 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005223 TLI.getPointerTy()));
5224 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5225 break;
5226 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5227 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5228 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5229 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005230
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005231 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005232 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5233 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005234 TLI.getPointerTy()));
5235 AsmNodeOperands.push_back(InOperandVal);
5236 break;
5237 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005238
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005239 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5240 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5241 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005242 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005243 "Don't know how to handle indirect register inputs yet!");
5244
5245 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005246 if (OpInfo.AssignedRegs.Regs.empty()) {
5247 cerr << "Couldn't allocate output reg for constraint '"
5248 << OpInfo.ConstraintCode << "'!\n";
5249 exit(1);
5250 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005251
5252 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005253
Dale Johannesen86b49f82008-09-24 01:07:17 +00005254 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/,
5255 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005256 break;
5257 }
5258 case InlineAsm::isClobber: {
5259 // Add the clobbered value to the operand list, so that the register
5260 // allocator is aware that the physreg got clobbered.
5261 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005262 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
5263 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005264 break;
5265 }
5266 }
5267 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005268
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005269 // Finish up input operands.
5270 AsmNodeOperands[0] = Chain;
5271 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005272
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005273 Chain = DAG.getNode(ISD::INLINEASM, DAG.getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005274 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
5275 &AsmNodeOperands[0], AsmNodeOperands.size());
5276 Flag = Chain.getValue(1);
5277
5278 // If this asm returns a register value, copy the result from that register
5279 // and set it as the value of the call.
5280 if (!RetValRegs.Regs.empty()) {
5281 SDValue Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005282
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005283 // FIXME: Why don't we do this for inline asms with MRVs?
5284 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5285 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005286
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005287 // If any of the results of the inline asm is a vector, it may have the
5288 // wrong width/num elts. This can happen for register classes that can
5289 // contain multiple different value types. The preg or vreg allocated may
5290 // not have the same VT as was expected. Convert it to the right type
5291 // with bit_convert.
5292 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005293 Val = DAG.getNode(ISD::BIT_CONVERT, DAG.getCurDebugLoc(),
5294 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005295
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005296 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005297 ResultType.isInteger() && Val.getValueType().isInteger()) {
5298 // If a result value was tied to an input value, the computed result may
5299 // have a wider width than the expected result. Extract the relevant
5300 // portion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005301 Val = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005302 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005303
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005304 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005305 }
Dan Gohman95915732008-10-18 01:03:45 +00005306
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005307 setValue(CS.getInstruction(), Val);
5308 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005310 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005311
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005312 // Process indirect outputs, first output all of the flagged copies out of
5313 // physregs.
5314 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5315 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5316 Value *Ptr = IndirectStoresToEmit[i].second;
5317 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
5318 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
5319 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005320
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005321 // Emit the non-flagged stores from the physregs.
5322 SmallVector<SDValue, 8> OutChains;
5323 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005324 OutChains.push_back(DAG.getStore(Chain, DAG.getCurDebugLoc(),
5325 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005326 getValue(StoresToEmit[i].second),
5327 StoresToEmit[i].second, 0));
5328 if (!OutChains.empty())
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005329 Chain = DAG.getNode(ISD::TokenFactor, DAG.getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005330 &OutChains[0], OutChains.size());
5331 DAG.setRoot(Chain);
5332}
5333
5334
5335void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5336 SDValue Src = getValue(I.getOperand(0));
5337
5338 MVT IntPtr = TLI.getPointerTy();
5339
5340 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005341 Src = DAG.getNode(ISD::TRUNCATE, DAG.getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005342 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005343 Src = DAG.getNode(ISD::ZERO_EXTEND, DAG.getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005344
5345 // Scale the source by the type size.
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005346 uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType());
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005347 Src = DAG.getNode(ISD::MUL, DAG.getCurDebugLoc(), Src.getValueType(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005348 Src, DAG.getIntPtrConstant(ElementSize));
5349
5350 TargetLowering::ArgListTy Args;
5351 TargetLowering::ArgListEntry Entry;
5352 Entry.Node = Src;
5353 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5354 Args.push_back(Entry);
5355
5356 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005357 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005358 CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005359 DAG.getExternalSymbol("malloc", IntPtr),
Dan Gohman1937e2f2008-09-16 01:42:28 +00005360 Args, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005361 setValue(&I, Result.first); // Pointers always fit in registers
5362 DAG.setRoot(Result.second);
5363}
5364
5365void SelectionDAGLowering::visitFree(FreeInst &I) {
5366 TargetLowering::ArgListTy Args;
5367 TargetLowering::ArgListEntry Entry;
5368 Entry.Node = getValue(I.getOperand(0));
5369 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5370 Args.push_back(Entry);
5371 MVT IntPtr = TLI.getPointerTy();
5372 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005373 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Dan Gohman1937e2f2008-09-16 01:42:28 +00005374 CallingConv::C, PerformTailCallOpt,
Bill Wendling056292f2008-09-16 21:48:12 +00005375 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005376 DAG.setRoot(Result.second);
5377}
5378
5379void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005380 DAG.setRoot(DAG.getNode(ISD::VASTART, DAG.getCurDebugLoc(),
5381 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005382 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005383 DAG.getSrcValue(I.getOperand(1))));
5384}
5385
5386void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
5387 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
5388 getValue(I.getOperand(0)),
5389 DAG.getSrcValue(I.getOperand(0)));
5390 setValue(&I, V);
5391 DAG.setRoot(V.getValue(1));
5392}
5393
5394void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005395 DAG.setRoot(DAG.getNode(ISD::VAEND, DAG.getCurDebugLoc(),
5396 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005397 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005398 DAG.getSrcValue(I.getOperand(1))));
5399}
5400
5401void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005402 DAG.setRoot(DAG.getNode(ISD::VACOPY, DAG.getCurDebugLoc(),
5403 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005404 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005405 getValue(I.getOperand(2)),
5406 DAG.getSrcValue(I.getOperand(1)),
5407 DAG.getSrcValue(I.getOperand(2))));
5408}
5409
5410/// TargetLowering::LowerArguments - This is the default LowerArguments
5411/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005412/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005413/// integrated into SDISel.
5414void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
5415 SmallVectorImpl<SDValue> &ArgValues) {
5416 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5417 SmallVector<SDValue, 3+16> Ops;
5418 Ops.push_back(DAG.getRoot());
5419 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5420 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5421
5422 // Add one result value for each formal argument.
5423 SmallVector<MVT, 16> RetVals;
5424 unsigned j = 1;
5425 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5426 I != E; ++I, ++j) {
5427 SmallVector<MVT, 4> ValueVTs;
5428 ComputeValueVTs(*this, I->getType(), ValueVTs);
5429 for (unsigned Value = 0, NumValues = ValueVTs.size();
5430 Value != NumValues; ++Value) {
5431 MVT VT = ValueVTs[Value];
5432 const Type *ArgTy = VT.getTypeForMVT();
5433 ISD::ArgFlagsTy Flags;
5434 unsigned OriginalAlignment =
5435 getTargetData()->getABITypeAlignment(ArgTy);
5436
Devang Patel05988662008-09-25 21:00:45 +00005437 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005438 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005439 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005440 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005441 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005442 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005443 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005444 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005445 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005446 Flags.setByVal();
5447 const PointerType *Ty = cast<PointerType>(I->getType());
5448 const Type *ElementTy = Ty->getElementType();
5449 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005450 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005451 // For ByVal, alignment should be passed from FE. BE will guess if
5452 // this info is not there but there are cases it cannot get right.
5453 if (F.getParamAlignment(j))
5454 FrameAlign = F.getParamAlignment(j);
5455 Flags.setByValAlign(FrameAlign);
5456 Flags.setByValSize(FrameSize);
5457 }
Devang Patel05988662008-09-25 21:00:45 +00005458 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005459 Flags.setNest();
5460 Flags.setOrigAlign(OriginalAlignment);
5461
5462 MVT RegisterVT = getRegisterType(VT);
5463 unsigned NumRegs = getNumRegisters(VT);
5464 for (unsigned i = 0; i != NumRegs; ++i) {
5465 RetVals.push_back(RegisterVT);
5466 ISD::ArgFlagsTy MyFlags = Flags;
5467 if (NumRegs > 1 && i == 0)
5468 MyFlags.setSplit();
5469 // if it isn't first piece, alignment must be 1
5470 else if (i > 0)
5471 MyFlags.setOrigAlign(1);
5472 Ops.push_back(DAG.getArgFlags(MyFlags));
5473 }
5474 }
5475 }
5476
5477 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005478
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005479 // Create the node.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005480 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, DAG.getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005481 DAG.getVTList(&RetVals[0], RetVals.size()),
5482 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005483
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005484 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5485 // allows exposing the loads that may be part of the argument access to the
5486 // first DAGCombiner pass.
5487 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005488
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005489 // The number of results should match up, except that the lowered one may have
5490 // an extra flag result.
5491 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5492 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5493 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5494 && "Lowering produced unexpected number of results!");
5495
5496 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5497 if (Result != TmpRes.getNode() && Result->use_empty()) {
5498 HandleSDNode Dummy(DAG.getRoot());
5499 DAG.RemoveDeadNode(Result);
5500 }
5501
5502 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005503
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005504 unsigned NumArgRegs = Result->getNumValues() - 1;
5505 DAG.setRoot(SDValue(Result, NumArgRegs));
5506
5507 // Set up the return result vector.
5508 unsigned i = 0;
5509 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005510 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005511 ++I, ++Idx) {
5512 SmallVector<MVT, 4> ValueVTs;
5513 ComputeValueVTs(*this, I->getType(), ValueVTs);
5514 for (unsigned Value = 0, NumValues = ValueVTs.size();
5515 Value != NumValues; ++Value) {
5516 MVT VT = ValueVTs[Value];
5517 MVT PartVT = getRegisterType(VT);
5518
5519 unsigned NumParts = getNumRegisters(VT);
5520 SmallVector<SDValue, 4> Parts(NumParts);
5521 for (unsigned j = 0; j != NumParts; ++j)
5522 Parts[j] = SDValue(Result, i++);
5523
5524 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005525 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005526 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005527 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005528 AssertOp = ISD::AssertZext;
5529
5530 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
5531 AssertOp));
5532 }
5533 }
5534 assert(i == NumArgRegs && "Argument register count mismatch!");
5535}
5536
5537
5538/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5539/// implementation, which just inserts an ISD::CALL node, which is later custom
5540/// lowered by the target to something concrete. FIXME: When all targets are
5541/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5542std::pair<SDValue, SDValue>
5543TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5544 bool RetSExt, bool RetZExt, bool isVarArg,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005545 bool isInreg,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005546 unsigned CallingConv, bool isTailCall,
5547 SDValue Callee,
5548 ArgListTy &Args, SelectionDAG &DAG) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005549 assert((!isTailCall || PerformTailCallOpt) &&
5550 "isTailCall set when tail-call optimizations are disabled!");
5551
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005552 SmallVector<SDValue, 32> Ops;
5553 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005554 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005555
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005556 // Handle all of the outgoing arguments.
5557 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5558 SmallVector<MVT, 4> ValueVTs;
5559 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5560 for (unsigned Value = 0, NumValues = ValueVTs.size();
5561 Value != NumValues; ++Value) {
5562 MVT VT = ValueVTs[Value];
5563 const Type *ArgTy = VT.getTypeForMVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005564 SDValue Op = SDValue(Args[i].Node.getNode(),
5565 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005566 ISD::ArgFlagsTy Flags;
5567 unsigned OriginalAlignment =
5568 getTargetData()->getABITypeAlignment(ArgTy);
5569
5570 if (Args[i].isZExt)
5571 Flags.setZExt();
5572 if (Args[i].isSExt)
5573 Flags.setSExt();
5574 if (Args[i].isInReg)
5575 Flags.setInReg();
5576 if (Args[i].isSRet)
5577 Flags.setSRet();
5578 if (Args[i].isByVal) {
5579 Flags.setByVal();
5580 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5581 const Type *ElementTy = Ty->getElementType();
5582 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005583 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005584 // For ByVal, alignment should come from FE. BE will guess if this
5585 // info is not there but there are cases it cannot get right.
5586 if (Args[i].Alignment)
5587 FrameAlign = Args[i].Alignment;
5588 Flags.setByValAlign(FrameAlign);
5589 Flags.setByValSize(FrameSize);
5590 }
5591 if (Args[i].isNest)
5592 Flags.setNest();
5593 Flags.setOrigAlign(OriginalAlignment);
5594
5595 MVT PartVT = getRegisterType(VT);
5596 unsigned NumParts = getNumRegisters(VT);
5597 SmallVector<SDValue, 4> Parts(NumParts);
5598 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5599
5600 if (Args[i].isSExt)
5601 ExtendKind = ISD::SIGN_EXTEND;
5602 else if (Args[i].isZExt)
5603 ExtendKind = ISD::ZERO_EXTEND;
5604
5605 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
5606
5607 for (unsigned i = 0; i != NumParts; ++i) {
5608 // if it isn't first piece, alignment must be 1
5609 ISD::ArgFlagsTy MyFlags = Flags;
5610 if (NumParts > 1 && i == 0)
5611 MyFlags.setSplit();
5612 else if (i != 0)
5613 MyFlags.setOrigAlign(1);
5614
5615 Ops.push_back(Parts[i]);
5616 Ops.push_back(DAG.getArgFlags(MyFlags));
5617 }
5618 }
5619 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005620
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005621 // Figure out the result value types. We start by making a list of
5622 // the potentially illegal return value types.
5623 SmallVector<MVT, 4> LoweredRetTys;
5624 SmallVector<MVT, 4> RetTys;
5625 ComputeValueVTs(*this, RetTy, RetTys);
5626
5627 // Then we translate that to a list of legal types.
5628 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5629 MVT VT = RetTys[I];
5630 MVT RegisterVT = getRegisterType(VT);
5631 unsigned NumRegs = getNumRegisters(VT);
5632 for (unsigned i = 0; i != NumRegs; ++i)
5633 LoweredRetTys.push_back(RegisterVT);
5634 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005635
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005636 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005637
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005638 // Create the CALL node.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005639 SDValue Res = DAG.getCall(CallingConv, DAG.getCurDebugLoc(),
5640 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005641 DAG.getVTList(&LoweredRetTys[0],
5642 LoweredRetTys.size()),
Dale Johannesen86098bd2008-09-26 19:31:26 +00005643 &Ops[0], Ops.size()
5644 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005645 Chain = Res.getValue(LoweredRetTys.size() - 1);
5646
5647 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005648 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005649 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5650
5651 if (RetSExt)
5652 AssertOp = ISD::AssertSext;
5653 else if (RetZExt)
5654 AssertOp = ISD::AssertZext;
5655
5656 SmallVector<SDValue, 4> ReturnValues;
5657 unsigned RegNo = 0;
5658 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5659 MVT VT = RetTys[I];
5660 MVT RegisterVT = getRegisterType(VT);
5661 unsigned NumRegs = getNumRegisters(VT);
5662 unsigned RegNoEnd = NumRegs + RegNo;
5663 SmallVector<SDValue, 4> Results;
5664 for (; RegNo != RegNoEnd; ++RegNo)
5665 Results.push_back(Res.getValue(RegNo));
5666 SDValue ReturnValue =
5667 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
5668 AssertOp);
5669 ReturnValues.push_back(ReturnValue);
5670 }
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005671 Res = DAG.getNode(ISD::MERGE_VALUES, DAG.getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00005672 DAG.getVTList(&RetTys[0], RetTys.size()),
5673 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005674 }
5675
5676 return std::make_pair(Res, Chain);
5677}
5678
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005679void TargetLowering::LowerOperationWrapper(SDNode *N,
5680 SmallVectorImpl<SDValue> &Results,
5681 SelectionDAG &DAG) {
5682 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005683 if (Res.getNode())
5684 Results.push_back(Res);
5685}
5686
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005687SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
5688 assert(0 && "LowerOperation not implemented for this target!");
5689 abort();
5690 return SDValue();
5691}
5692
5693
5694void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5695 SDValue Op = getValue(V);
5696 assert((Op.getOpcode() != ISD::CopyFromReg ||
5697 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5698 "Copy from a reg to the same reg!");
5699 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5700
5701 RegsForValue RFV(TLI, Reg, V->getType());
5702 SDValue Chain = DAG.getEntryNode();
5703 RFV.getCopyToRegs(Op, DAG, Chain, 0);
5704 PendingExports.push_back(Chain);
5705}
5706
5707#include "llvm/CodeGen/SelectionDAGISel.h"
5708
5709void SelectionDAGISel::
5710LowerArguments(BasicBlock *LLVMBB) {
5711 // If this is the entry block, emit arguments.
5712 Function &F = *LLVMBB->getParent();
5713 SDValue OldRoot = SDL->DAG.getRoot();
5714 SmallVector<SDValue, 16> Args;
5715 TLI.LowerArguments(F, SDL->DAG, Args);
5716
5717 unsigned a = 0;
5718 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5719 AI != E; ++AI) {
5720 SmallVector<MVT, 4> ValueVTs;
5721 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5722 unsigned NumValues = ValueVTs.size();
5723 if (!AI->use_empty()) {
5724 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues));
5725 // If this argument is live outside of the entry block, insert a copy from
5726 // whereever we got it to the vreg that other BB's will reference it as.
5727 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo->ValueMap.find(AI);
5728 if (VMI != FuncInfo->ValueMap.end()) {
5729 SDL->CopyValueToVirtualRegister(AI, VMI->second);
5730 }
5731 }
5732 a += NumValues;
5733 }
5734
5735 // Finally, if the target has anything special to do, allow it to do so.
5736 // FIXME: this should insert code into the DAG!
5737 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5738}
5739
5740/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5741/// ensure constants are generated when needed. Remember the virtual registers
5742/// that need to be added to the Machine PHI nodes as input. We cannot just
5743/// directly add them, because expansion might result in multiple MBB's for one
5744/// BB. As such, the start of the BB might correspond to a different MBB than
5745/// the end.
5746///
5747void
5748SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5749 TerminatorInst *TI = LLVMBB->getTerminator();
5750
5751 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5752
5753 // Check successor nodes' PHI nodes that expect a constant to be available
5754 // from this block.
5755 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5756 BasicBlock *SuccBB = TI->getSuccessor(succ);
5757 if (!isa<PHINode>(SuccBB->begin())) continue;
5758 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005759
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005760 // If this terminator has multiple identical successors (common for
5761 // switches), only handle each succ once.
5762 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005763
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005764 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5765 PHINode *PN;
5766
5767 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5768 // nodes and Machine PHI nodes, but the incoming operands have not been
5769 // emitted yet.
5770 for (BasicBlock::iterator I = SuccBB->begin();
5771 (PN = dyn_cast<PHINode>(I)); ++I) {
5772 // Ignore dead phi's.
5773 if (PN->use_empty()) continue;
5774
5775 unsigned Reg;
5776 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5777
5778 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5779 unsigned &RegOut = SDL->ConstantsOut[C];
5780 if (RegOut == 0) {
5781 RegOut = FuncInfo->CreateRegForValue(C);
5782 SDL->CopyValueToVirtualRegister(C, RegOut);
5783 }
5784 Reg = RegOut;
5785 } else {
5786 Reg = FuncInfo->ValueMap[PHIOp];
5787 if (Reg == 0) {
5788 assert(isa<AllocaInst>(PHIOp) &&
5789 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5790 "Didn't codegen value into a register!??");
5791 Reg = FuncInfo->CreateRegForValue(PHIOp);
5792 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5793 }
5794 }
5795
5796 // Remember that this register needs to added to the machine PHI node as
5797 // the input for this MBB.
5798 SmallVector<MVT, 4> ValueVTs;
5799 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5800 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5801 MVT VT = ValueVTs[vti];
5802 unsigned NumRegisters = TLI.getNumRegisters(VT);
5803 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5804 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5805 Reg += NumRegisters;
5806 }
5807 }
5808 }
5809 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005810}
5811
Dan Gohman3df24e62008-09-03 23:12:08 +00005812/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5813/// supports legal types, and it emits MachineInstrs directly instead of
5814/// creating SelectionDAG nodes.
5815///
5816bool
5817SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5818 FastISel *F) {
5819 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005820
Dan Gohman3df24e62008-09-03 23:12:08 +00005821 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5822 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5823
5824 // Check successor nodes' PHI nodes that expect a constant to be available
5825 // from this block.
5826 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5827 BasicBlock *SuccBB = TI->getSuccessor(succ);
5828 if (!isa<PHINode>(SuccBB->begin())) continue;
5829 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005830
Dan Gohman3df24e62008-09-03 23:12:08 +00005831 // If this terminator has multiple identical successors (common for
5832 // switches), only handle each succ once.
5833 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005834
Dan Gohman3df24e62008-09-03 23:12:08 +00005835 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5836 PHINode *PN;
5837
5838 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5839 // nodes and Machine PHI nodes, but the incoming operands have not been
5840 // emitted yet.
5841 for (BasicBlock::iterator I = SuccBB->begin();
5842 (PN = dyn_cast<PHINode>(I)); ++I) {
5843 // Ignore dead phi's.
5844 if (PN->use_empty()) continue;
5845
5846 // Only handle legal types. Two interesting things to note here. First,
5847 // by bailing out early, we may leave behind some dead instructions,
5848 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5849 // own moves. Second, this check is necessary becuase FastISel doesn't
5850 // use CreateRegForValue to create registers, so it always creates
5851 // exactly one register for each non-void instruction.
5852 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5853 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005854 // Promote MVT::i1.
5855 if (VT == MVT::i1)
5856 VT = TLI.getTypeToTransformTo(VT);
5857 else {
5858 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5859 return false;
5860 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005861 }
5862
5863 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5864
5865 unsigned Reg = F->getRegForValue(PHIOp);
5866 if (Reg == 0) {
5867 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5868 return false;
5869 }
5870 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5871 }
5872 }
5873
5874 return true;
5875}