blob: 8ba2b789ec652573b0042426bc25fde38f107e45 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
15#include "llvm/ADT/BitVector.h"
16#include "llvm/Analysis/AliasAnalysis.h"
17#include "llvm/CodeGen/SelectionDAGISel.h"
18#include "llvm/CodeGen/ScheduleDAG.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"
28#include "llvm/ParameterAttributes.h"
Gordon Henriksendf87fdc2008-01-07 01:30:38 +000029#include "llvm/CodeGen/Collector.h"
Bill Wendlinge15b1192008-06-27 00:09:40 +000030#include "llvm/CodeGen/MachineDebugInfoDesc.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000031#include "llvm/CodeGen/MachineFunction.h"
32#include "llvm/CodeGen/MachineFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner1b989192007-12-31 04:13:23 +000034#include "llvm/CodeGen/MachineJumpTableInfo.h"
35#include "llvm/CodeGen/MachineModuleInfo.h"
36#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037#include "llvm/CodeGen/SchedulerRegistry.h"
38#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000039#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include "llvm/Target/TargetData.h"
41#include "llvm/Target/TargetFrameInfo.h"
42#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetLowering.h"
44#include "llvm/Target/TargetMachine.h"
45#include "llvm/Target/TargetOptions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046#include "llvm/Support/Compiler.h"
Evan Cheng34fd4f32008-06-30 20:45:06 +000047#include "llvm/Support/Debug.h"
48#include "llvm/Support/MathExtras.h"
49#include "llvm/Support/Timer.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050#include <algorithm>
51using namespace llvm;
52
Chris Lattner68068cc2008-06-17 06:09:18 +000053static cl::opt<bool>
54EnableValueProp("enable-value-prop", cl::Hidden, cl::init(false));
55
56
Dan Gohmanf17a25c2007-07-18 16:29:46 +000057#ifndef NDEBUG
58static cl::opt<bool>
59ViewISelDAGs("view-isel-dags", cl::Hidden,
60 cl::desc("Pop up a window to show isel dags as they are selected"));
61static cl::opt<bool>
62ViewSchedDAGs("view-sched-dags", cl::Hidden,
63 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman134c5b62007-08-28 20:32:58 +000064static cl::opt<bool>
65ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner2f69f132008-01-25 17:24:52 +000066 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067#else
Dan Gohman134c5b62007-08-28 20:32:58 +000068static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0, ViewSUnitDAGs = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069#endif
70
71//===---------------------------------------------------------------------===//
72///
73/// RegisterScheduler class - Track the registration of instruction schedulers.
74///
75//===---------------------------------------------------------------------===//
76MachinePassRegistry RegisterScheduler::Registry;
77
78//===---------------------------------------------------------------------===//
79///
80/// ISHeuristic command line option for instruction schedulers.
81///
82//===---------------------------------------------------------------------===//
Dan Gohman089efff2008-05-13 00:00:25 +000083static cl::opt<RegisterScheduler::FunctionPassCtor, false,
84 RegisterPassParser<RegisterScheduler> >
85ISHeuristic("pre-RA-sched",
86 cl::init(&createDefaultScheduler),
87 cl::desc("Instruction schedulers available (before register"
88 " allocation):"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089
Dan Gohman089efff2008-05-13 00:00:25 +000090static RegisterScheduler
91defaultListDAGScheduler("default", " Best scheduler for the target",
92 createDefaultScheduler);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093
Evan Chengbcd66442008-02-26 02:33:44 +000094namespace { struct SDISelAsmOperandInfo; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095
Dan Gohman012bf582008-06-07 02:02:36 +000096/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
97/// insertvalue or extractvalue indices that identify a member, return
98/// the linearized index of the start of the member.
99///
100static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
101 const unsigned *Indices,
102 const unsigned *IndicesEnd,
103 unsigned CurIndex = 0) {
104 // Base case: We're done.
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000105 if (Indices && Indices == IndicesEnd)
Dan Gohman012bf582008-06-07 02:02:36 +0000106 return CurIndex;
107
Chris Lattner5f2006e2008-04-27 23:48:12 +0000108 // Given a struct type, recursively traverse the elements.
109 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000110 for (StructType::element_iterator EB = STy->element_begin(),
111 EI = EB,
Dan Gohman012bf582008-06-07 02:02:36 +0000112 EE = STy->element_end();
113 EI != EE; ++EI) {
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000114 if (Indices && *Indices == unsigned(EI - EB))
115 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
116 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
Dan Gohman012bf582008-06-07 02:02:36 +0000117 }
118 }
119 // Given an array type, recursively traverse the elements.
120 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
121 const Type *EltTy = ATy->getElementType();
122 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000123 if (Indices && *Indices == i)
124 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
125 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
Dan Gohman012bf582008-06-07 02:02:36 +0000126 }
127 }
128 // We haven't found the type we're looking for, so keep searching.
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000129 return CurIndex + 1;
Dan Gohman012bf582008-06-07 02:02:36 +0000130}
131
132/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
133/// MVTs that represent all the individual underlying
134/// non-aggregate types that comprise it.
135///
136/// If Offsets is non-null, it points to a vector to be filled in
137/// with the in-memory offsets of each of the individual values.
138///
139static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
140 SmallVectorImpl<MVT> &ValueVTs,
141 SmallVectorImpl<uint64_t> *Offsets = 0,
142 uint64_t StartingOffset = 0) {
143 // Given a struct type, recursively traverse the elements.
144 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
145 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
146 for (StructType::element_iterator EB = STy->element_begin(),
147 EI = EB,
148 EE = STy->element_end();
149 EI != EE; ++EI)
150 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
151 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattner5f2006e2008-04-27 23:48:12 +0000152 return;
Dan Gohman30a71f52008-04-25 18:27:55 +0000153 }
Chris Lattner5f2006e2008-04-27 23:48:12 +0000154 // Given an array type, recursively traverse the elements.
155 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
156 const Type *EltTy = ATy->getElementType();
Dan Gohman012bf582008-06-07 02:02:36 +0000157 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattner5f2006e2008-04-27 23:48:12 +0000158 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman012bf582008-06-07 02:02:36 +0000159 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
160 StartingOffset + i * EltSize);
Chris Lattner5f2006e2008-04-27 23:48:12 +0000161 return;
162 }
Duncan Sands92c43912008-06-06 12:08:01 +0000163 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattner5f2006e2008-04-27 23:48:12 +0000164 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman012bf582008-06-07 02:02:36 +0000165 if (Offsets)
166 Offsets->push_back(StartingOffset);
Chris Lattner5f2006e2008-04-27 23:48:12 +0000167}
Dan Gohman30a71f52008-04-25 18:27:55 +0000168
Chris Lattner5f2006e2008-04-27 23:48:12 +0000169namespace {
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000170 /// RegsForValue - This struct represents the registers (physical or virtual)
171 /// that a particular set of values is assigned, and the type information about
172 /// the value. The most common situation is to represent one value at a time,
173 /// but struct or array values are handled element-wise as multiple values.
174 /// The splitting of aggregates is performed recursively, so that we never
175 /// have aggregate-typed registers. The values at this point do not necessarily
176 /// have legal types, so each value may require one or more registers of some
177 /// legal type.
178 ///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman30a71f52008-04-25 18:27:55 +0000180 /// TLI - The TargetLowering object.
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000181 ///
Dan Gohman30a71f52008-04-25 18:27:55 +0000182 const TargetLowering *TLI;
183
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000184 /// ValueVTs - The value types of the values, which may not be legal, and
185 /// may need be promoted or synthesized from one or more registers.
186 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000187 SmallVector<MVT, 4> ValueVTs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000189 /// RegVTs - The value types of the registers. This is the same size as
190 /// ValueVTs and it records, for each value, what the type of the assigned
191 /// register or registers are. (Individual values are never synthesized
192 /// from more than one type of register.)
193 ///
194 /// With virtual registers, the contents of RegVTs is redundant with TLI's
195 /// getRegisterType member function, however when with physical registers
196 /// it is necessary to have a separate record of the types.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000198 SmallVector<MVT, 4> RegVTs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000199
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000200 /// Regs - This list holds the registers assigned to the values.
201 /// Each legal or promoted value requires one register, and each
202 /// expanded value requires multiple registers.
203 ///
204 SmallVector<unsigned, 4> Regs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205
Dan Gohman30a71f52008-04-25 18:27:55 +0000206 RegsForValue() : TLI(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207
Dan Gohman30a71f52008-04-25 18:27:55 +0000208 RegsForValue(const TargetLowering &tli,
Chris Lattner622811e2008-04-28 06:44:42 +0000209 const SmallVector<unsigned, 4> &regs,
Duncan Sands92c43912008-06-06 12:08:01 +0000210 MVT regvt, MVT valuevt)
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000211 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman30a71f52008-04-25 18:27:55 +0000212 RegsForValue(const TargetLowering &tli,
Chris Lattner622811e2008-04-28 06:44:42 +0000213 const SmallVector<unsigned, 4> &regs,
Duncan Sands92c43912008-06-06 12:08:01 +0000214 const SmallVector<MVT, 4> &regvts,
215 const SmallVector<MVT, 4> &valuevts)
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000216 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman30a71f52008-04-25 18:27:55 +0000217 RegsForValue(const TargetLowering &tli,
218 unsigned Reg, const Type *Ty) : TLI(&tli) {
219 ComputeValueVTs(tli, Ty, ValueVTs);
220
Dan Gohman3a163d22008-04-28 17:42:03 +0000221 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands92c43912008-06-06 12:08:01 +0000222 MVT ValueVT = ValueVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +0000223 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands92c43912008-06-06 12:08:01 +0000224 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman30a71f52008-04-25 18:27:55 +0000225 for (unsigned i = 0; i != NumRegs; ++i)
226 Regs.push_back(Reg + i);
227 RegVTs.push_back(RegisterVT);
228 Reg += NumRegs;
229 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 }
231
Chris Lattner08bbcb82008-04-29 04:29:54 +0000232 /// append - Add the specified values to this one.
233 void append(const RegsForValue &RHS) {
234 TLI = RHS.TLI;
235 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
236 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
237 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
238 }
239
240
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman30a71f52008-04-25 18:27:55 +0000242 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243 /// Chain/Flag as the input and updates them for the output Chain/Flag.
244 /// If the Flag pointer is NULL, no flag is used.
245 SDOperand getCopyFromRegs(SelectionDAG &DAG,
246 SDOperand &Chain, SDOperand *Flag) const;
247
248 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
249 /// specified value into the registers specified by this object. This uses
250 /// Chain/Flag as the input and updates them for the output Chain/Flag.
251 /// If the Flag pointer is NULL, no flag is used.
252 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
253 SDOperand &Chain, SDOperand *Flag) const;
254
255 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
256 /// operand list. This adds the code marker and includes the number of
257 /// values added into it.
258 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
259 std::vector<SDOperand> &Ops) const;
260 };
261}
262
263namespace llvm {
264 //===--------------------------------------------------------------------===//
265 /// createDefaultScheduler - This creates an instruction scheduler appropriate
266 /// for the target.
267 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
268 SelectionDAG *DAG,
269 MachineBasicBlock *BB) {
270 TargetLowering &TLI = IS->getTargetLowering();
271
272 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
273 return createTDListDAGScheduler(IS, DAG, BB);
274 } else {
275 assert(TLI.getSchedulingPreference() ==
276 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
277 return createBURRListDAGScheduler(IS, DAG, BB);
278 }
279 }
280
281
282 //===--------------------------------------------------------------------===//
283 /// FunctionLoweringInfo - This contains information that is global to a
284 /// function that is used when lowering a region of the function.
285 class FunctionLoweringInfo {
286 public:
287 TargetLowering &TLI;
288 Function &Fn;
289 MachineFunction &MF;
Chris Lattner1b989192007-12-31 04:13:23 +0000290 MachineRegisterInfo &RegInfo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291
292 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
293
294 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
295 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
296
297 /// ValueMap - Since we emit code for the function a basic block at a time,
298 /// we must remember which virtual registers hold the values for
299 /// cross-basic-block values.
300 DenseMap<const Value*, unsigned> ValueMap;
301
302 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
303 /// the entry block. This allows the allocas to be efficiently referenced
304 /// anywhere in the function.
305 std::map<const AllocaInst*, int> StaticAllocaMap;
306
307#ifndef NDEBUG
308 SmallSet<Instruction*, 8> CatchInfoLost;
309 SmallSet<Instruction*, 8> CatchInfoFound;
310#endif
311
Duncan Sands92c43912008-06-06 12:08:01 +0000312 unsigned MakeReg(MVT VT) {
Chris Lattner1b989192007-12-31 04:13:23 +0000313 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000314 }
315
316 /// isExportedInst - Return true if the specified value is an instruction
317 /// exported from its block.
318 bool isExportedInst(const Value *V) {
319 return ValueMap.count(V);
320 }
321
322 unsigned CreateRegForValue(const Value *V);
323
324 unsigned InitializeRegForValue(const Value *V) {
325 unsigned &R = ValueMap[V];
326 assert(R == 0 && "Already initialized this value register!");
327 return R = CreateRegForValue(V);
328 }
Chris Lattner68068cc2008-06-17 06:09:18 +0000329
330 struct LiveOutInfo {
331 unsigned NumSignBits;
332 APInt KnownOne, KnownZero;
333 LiveOutInfo() : NumSignBits(0) {}
334 };
335
336 /// LiveOutRegInfo - Information about live out vregs, indexed by their
337 /// register number offset by 'FirstVirtualRegister'.
338 std::vector<LiveOutInfo> LiveOutRegInfo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339 };
340}
341
342/// isSelector - Return true if this instruction is a call to the
343/// eh.selector intrinsic.
344static bool isSelector(Instruction *I) {
345 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov94c46a02007-09-07 11:39:35 +0000346 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
347 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000348 return false;
349}
350
351/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
352/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000353/// switch or atomic instruction, which may expand to multiple basic blocks.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
355 if (isa<PHINode>(I)) return true;
356 BasicBlock *BB = I->getParent();
357 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
358 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
359 // FIXME: Remove switchinst special case.
360 isa<SwitchInst>(*UI))
361 return true;
362 return false;
363}
364
365/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
366/// entry block, return true. This includes arguments used by switches, since
367/// the switch may expand into multiple basic blocks.
368static bool isOnlyUsedInEntryBlock(Argument *A) {
369 BasicBlock *Entry = A->getParent()->begin();
370 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
371 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
372 return false; // Use not in entry block.
373 return true;
374}
375
376FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
377 Function &fn, MachineFunction &mf)
Chris Lattner1b989192007-12-31 04:13:23 +0000378 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000379
380 // Create a vreg for each argument register that is not dead and is used
381 // outside of the entry block for the function.
382 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
383 AI != E; ++AI)
384 if (!isOnlyUsedInEntryBlock(AI))
385 InitializeRegForValue(AI);
386
387 // Initialize the mapping of values to registers. This is only set up for
388 // instruction values that are used outside of the block that defines
389 // them.
390 Function::iterator BB = Fn.begin(), EB = Fn.end();
391 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
392 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
393 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
394 const Type *Ty = AI->getAllocatedType();
Duncan Sandsf99fdc62007-11-01 20:53:16 +0000395 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396 unsigned Align =
397 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
398 AI->getAlignment());
399
400 TySize *= CUI->getZExtValue(); // Get total allocated size.
401 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
402 StaticAllocaMap[AI] =
403 MF.getFrameInfo()->CreateStackObject(TySize, Align);
404 }
405
406 for (; BB != EB; ++BB)
407 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
408 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
409 if (!isa<AllocaInst>(I) ||
410 !StaticAllocaMap.count(cast<AllocaInst>(I)))
411 InitializeRegForValue(I);
412
413 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
414 // also creates the initial PHI MachineInstrs, though none of the input
415 // operands are populated.
416 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
417 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
418 MBBMap[BB] = MBB;
419 MF.getBasicBlockList().push_back(MBB);
420
421 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
422 // appropriate.
423 PHINode *PN;
424 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
425 if (PN->use_empty()) continue;
426
Duncan Sands92c43912008-06-06 12:08:01 +0000427 MVT VT = TLI.getValueType(PN->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 unsigned NumRegisters = TLI.getNumRegisters(VT);
429 unsigned PHIReg = ValueMap[PN];
430 assert(PHIReg && "PHI node does not have an assigned virtual register!");
431 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
432 for (unsigned i = 0; i != NumRegisters; ++i)
433 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
434 }
435 }
436}
437
438/// CreateRegForValue - Allocate the appropriate number of virtual registers of
439/// the correctly promoted or expanded types. Assign these registers
440/// consecutive vreg numbers and return the first assigned number.
Dan Gohmanb9018812008-04-28 18:19:43 +0000441///
442/// In the case that the given value has struct or array type, this function
443/// will assign registers for each member or element.
444///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands92c43912008-06-06 12:08:01 +0000446 SmallVector<MVT, 4> ValueVTs;
Chris Lattner622811e2008-04-28 06:44:42 +0000447 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448
Dan Gohman30a71f52008-04-25 18:27:55 +0000449 unsigned FirstReg = 0;
Dan Gohman3a163d22008-04-28 17:42:03 +0000450 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands92c43912008-06-06 12:08:01 +0000451 MVT ValueVT = ValueVTs[Value];
452 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453
Chris Lattner622811e2008-04-28 06:44:42 +0000454 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman30a71f52008-04-25 18:27:55 +0000455 for (unsigned i = 0; i != NumRegs; ++i) {
456 unsigned R = MakeReg(RegisterVT);
457 if (!FirstReg) FirstReg = R;
458 }
459 }
460 return FirstReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461}
462
463//===----------------------------------------------------------------------===//
464/// SelectionDAGLowering - This is the common target-independent lowering
465/// implementation that is parameterized by a TargetLowering object.
466/// Also, targets can overload any lowering method.
467///
468namespace llvm {
469class SelectionDAGLowering {
470 MachineBasicBlock *CurMBB;
471
472 DenseMap<const Value*, SDOperand> NodeMap;
473
474 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
475 /// them up and then emit token factor nodes when possible. This allows us to
476 /// get simple disambiguation between loads without worrying about alias
477 /// analysis.
Dan Gohmane0208142008-06-30 20:31:15 +0000478 SmallVector<SDOperand, 8> PendingLoads;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000480 /// PendingExports - CopyToReg nodes that copy values to virtual registers
481 /// for export to other blocks need to be emitted before any terminator
482 /// instruction, but they have no other ordering requirements. We bunch them
483 /// up and the emit a single tokenfactor for them just before terminator
484 /// instructions.
485 std::vector<SDOperand> PendingExports;
486
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487 /// Case - A struct to record the Value for a switch case, and the
488 /// case's target basic block.
489 struct Case {
490 Constant* Low;
491 Constant* High;
492 MachineBasicBlock* BB;
493
494 Case() : Low(0), High(0), BB(0) { }
495 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
496 Low(low), High(high), BB(bb) { }
497 uint64_t size() const {
498 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
499 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
500 return (rHigh - rLow + 1ULL);
501 }
502 };
503
504 struct CaseBits {
505 uint64_t Mask;
506 MachineBasicBlock* BB;
507 unsigned Bits;
508
509 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
510 Mask(mask), BB(bb), Bits(bits) { }
511 };
512
513 typedef std::vector<Case> CaseVector;
514 typedef std::vector<CaseBits> CaseBitsVector;
515 typedef CaseVector::iterator CaseItr;
516 typedef std::pair<CaseItr, CaseItr> CaseRange;
517
518 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
519 /// of conditional branches.
520 struct CaseRec {
521 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
522 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
523
524 /// CaseBB - The MBB in which to emit the compare and branch
525 MachineBasicBlock *CaseBB;
526 /// LT, GE - If nonzero, we know the current case value must be less-than or
527 /// greater-than-or-equal-to these Constants.
528 Constant *LT;
529 Constant *GE;
530 /// Range - A pair of iterators representing the range of case values to be
531 /// processed at this point in the binary search tree.
532 CaseRange Range;
533 };
534
535 typedef std::vector<CaseRec> CaseRecVector;
536
537 /// The comparison function for sorting the switch case values in the vector.
538 /// WARNING: Case ranges should be disjoint!
539 struct CaseCmp {
540 bool operator () (const Case& C1, const Case& C2) {
541 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
542 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
543 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
544 return CI1->getValue().slt(CI2->getValue());
545 }
546 };
547
548 struct CaseBitsCmp {
549 bool operator () (const CaseBits& C1, const CaseBits& C2) {
550 return C1.Bits > C2.Bits;
551 }
552 };
553
554 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
555
556public:
557 // TLI - This is information that describes the available target features we
558 // need for lowering. This indicates when operations are unavailable,
559 // implemented with a libcall, etc.
560 TargetLowering &TLI;
561 SelectionDAG &DAG;
562 const TargetData *TD;
Dan Gohmancc863aa2007-08-27 16:26:13 +0000563 AliasAnalysis &AA;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564
565 /// SwitchCases - Vector of CaseBlock structures used to communicate
566 /// SwitchInst code generation information.
567 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
568 /// JTCases - Vector of JumpTable structures used to communicate
569 /// SwitchInst code generation information.
570 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
571 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
572
573 /// FuncInfo - Information about the function as a whole.
574 ///
575 FunctionLoweringInfo &FuncInfo;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000576
577 /// GCI - Garbage collection metadata for the function.
578 CollectorMetadata *GCI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579
580 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohmancc863aa2007-08-27 16:26:13 +0000581 AliasAnalysis &aa,
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000582 FunctionLoweringInfo &funcinfo,
583 CollectorMetadata *gci)
Dan Gohmancc863aa2007-08-27 16:26:13 +0000584 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000585 FuncInfo(funcinfo), GCI(gci) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 }
587
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000588 /// getRoot - Return the current virtual root of the Selection DAG,
589 /// flushing any PendingLoad items. This must be done before emitting
590 /// a store or any other node that may need to be ordered after any
591 /// prior load instructions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 ///
593 SDOperand getRoot() {
594 if (PendingLoads.empty())
595 return DAG.getRoot();
596
597 if (PendingLoads.size() == 1) {
598 SDOperand Root = PendingLoads[0];
599 DAG.setRoot(Root);
600 PendingLoads.clear();
601 return Root;
602 }
603
604 // Otherwise, we have to make a token factor node.
605 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
606 &PendingLoads[0], PendingLoads.size());
607 PendingLoads.clear();
608 DAG.setRoot(Root);
609 return Root;
610 }
611
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000612 /// getControlRoot - Similar to getRoot, but instead of flushing all the
613 /// PendingLoad items, flush all the PendingExports items. It is necessary
614 /// to do this before emitting a terminator instruction.
615 ///
616 SDOperand getControlRoot() {
617 SDOperand Root = DAG.getRoot();
618
619 if (PendingExports.empty())
620 return Root;
621
622 // Turn all of the CopyToReg chains into one factored node.
623 if (Root.getOpcode() != ISD::EntryToken) {
624 unsigned i = 0, e = PendingExports.size();
625 for (; i != e; ++i) {
626 assert(PendingExports[i].Val->getNumOperands() > 1);
627 if (PendingExports[i].Val->getOperand(0) == Root)
628 break; // Don't add the root if we already indirectly depend on it.
629 }
630
631 if (i == e)
632 PendingExports.push_back(Root);
633 }
634
635 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
636 &PendingExports[0],
637 PendingExports.size());
638 PendingExports.clear();
639 DAG.setRoot(Root);
640 return Root;
641 }
642
643 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000644
645 void visit(Instruction &I) { visit(I.getOpcode(), I); }
646
647 void visit(unsigned Opcode, User &I) {
648 // Note: this doesn't use InstVisitor, because it has to work with
649 // ConstantExpr's in addition to instructions.
650 switch (Opcode) {
651 default: assert(0 && "Unknown instruction type encountered!");
652 abort();
653 // Build the switch statement using the Instruction.def file.
654#define HANDLE_INST(NUM, OPCODE, CLASS) \
655 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
656#include "llvm/Instruction.def"
657 }
658 }
659
660 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
661
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000662 SDOperand getValue(const Value *V);
663
664 void setValue(const Value *V, SDOperand NewN) {
665 SDOperand &N = NodeMap[V];
666 assert(N.Val == 0 && "Already set a value for this node!");
667 N = NewN;
668 }
669
Evan Chengbcd66442008-02-26 02:33:44 +0000670 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000671 std::set<unsigned> &OutputRegs,
672 std::set<unsigned> &InputRegs);
673
674 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
675 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
676 unsigned Opc);
677 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
678 void ExportFromCurrentBlock(Value *V);
Duncan Sandse9bc9132007-12-19 09:48:52 +0000679 void LowerCallTo(CallSite CS, SDOperand Callee, bool IsTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsf5588dc2007-11-27 13:23:08 +0000681
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682 // Terminator instructions.
683 void visitRet(ReturnInst &I);
684 void visitBr(BranchInst &I);
685 void visitSwitch(SwitchInst &I);
686 void visitUnreachable(UnreachableInst &I) { /* noop */ }
687
688 // Helpers for visitSwitch
689 bool handleSmallSwitchRange(CaseRec& CR,
690 CaseRecVector& WorkList,
691 Value* SV,
692 MachineBasicBlock* Default);
693 bool handleJTSwitchCase(CaseRec& CR,
694 CaseRecVector& WorkList,
695 Value* SV,
696 MachineBasicBlock* Default);
697 bool handleBTSplitSwitchCase(CaseRec& CR,
698 CaseRecVector& WorkList,
699 Value* SV,
700 MachineBasicBlock* Default);
701 bool handleBitTestsSwitchCase(CaseRec& CR,
702 CaseRecVector& WorkList,
703 Value* SV,
704 MachineBasicBlock* Default);
705 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
706 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
707 void visitBitTestCase(MachineBasicBlock* NextMBB,
708 unsigned Reg,
709 SelectionDAGISel::BitTestCase &B);
710 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
711 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
712 SelectionDAGISel::JumpTableHeader &JTH);
713
714 // These all get lowered before this pass.
715 void visitInvoke(InvokeInst &I);
716 void visitUnwind(UnwindInst &I);
717
718 void visitBinary(User &I, unsigned OpCode);
719 void visitShift(User &I, unsigned Opcode);
720 void visitAdd(User &I) {
721 if (I.getType()->isFPOrFPVector())
722 visitBinary(I, ISD::FADD);
723 else
724 visitBinary(I, ISD::ADD);
725 }
726 void visitSub(User &I);
727 void visitMul(User &I) {
728 if (I.getType()->isFPOrFPVector())
729 visitBinary(I, ISD::FMUL);
730 else
731 visitBinary(I, ISD::MUL);
732 }
733 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
734 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
735 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
736 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
737 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
738 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
739 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
740 void visitOr (User &I) { visitBinary(I, ISD::OR); }
741 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
742 void visitShl (User &I) { visitShift(I, ISD::SHL); }
743 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
744 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
745 void visitICmp(User &I);
746 void visitFCmp(User &I);
Nate Begeman9a1ce152008-05-12 19:40:03 +0000747 void visitVICmp(User &I);
748 void visitVFCmp(User &I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 // Visit the conversion instructions
750 void visitTrunc(User &I);
751 void visitZExt(User &I);
752 void visitSExt(User &I);
753 void visitFPTrunc(User &I);
754 void visitFPExt(User &I);
755 void visitFPToUI(User &I);
756 void visitFPToSI(User &I);
757 void visitUIToFP(User &I);
758 void visitSIToFP(User &I);
759 void visitPtrToInt(User &I);
760 void visitIntToPtr(User &I);
761 void visitBitCast(User &I);
762
763 void visitExtractElement(User &I);
764 void visitInsertElement(User &I);
765 void visitShuffleVector(User &I);
766
Dan Gohman012bf582008-06-07 02:02:36 +0000767 void visitExtractValue(ExtractValueInst &I);
768 void visitInsertValue(InsertValueInst &I);
Dan Gohman8055f772008-05-15 19:50:34 +0000769
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000770 void visitGetElementPtr(User &I);
771 void visitSelect(User &I);
772
773 void visitMalloc(MallocInst &I);
774 void visitFree(FreeInst &I);
775 void visitAlloca(AllocaInst &I);
776 void visitLoad(LoadInst &I);
777 void visitStore(StoreInst &I);
778 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
779 void visitCall(CallInst &I);
Duncan Sands1c5526c2007-12-17 18:08:19 +0000780 void visitInlineAsm(CallSite CS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000781 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
782 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
783
784 void visitVAStart(CallInst &I);
785 void visitVAArg(VAArgInst &I);
786 void visitVAEnd(CallInst &I);
787 void visitVACopy(CallInst &I);
788
Dan Gohman3fdea2e2008-03-11 21:11:25 +0000789 void visitGetResult(GetResultInst &I);
Devang Pateld081ef02008-02-19 22:15:16 +0000790
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000791 void visitUserOp1(Instruction &I) {
792 assert(0 && "UserOp1 should not exist at instruction selection time!");
793 abort();
794 }
795 void visitUserOp2(Instruction &I) {
796 assert(0 && "UserOp2 should not exist at instruction selection time!");
797 abort();
798 }
Mon P Wang078a62d2008-05-05 19:05:59 +0000799
800private:
801 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
802
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000803};
804} // end namespace llvm
805
806
Duncan Sandse111ce82008-02-11 20:58:28 +0000807/// getCopyFromParts - Create a value that contains the specified legal parts
808/// combined into the value they represent. If the parts combine to a type
809/// larger then ValueVT then AssertOp can be used to specify whether the extra
810/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattnera7355b62008-03-09 09:38:46 +0000811/// (ISD::AssertSext).
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000812static SDOperand getCopyFromParts(SelectionDAG &DAG,
813 const SDOperand *Parts,
814 unsigned NumParts,
Duncan Sands92c43912008-06-06 12:08:01 +0000815 MVT PartVT,
816 MVT ValueVT,
Chris Lattnera7355b62008-03-09 09:38:46 +0000817 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000818 assert(NumParts > 0 && "No parts to assemble!");
819 TargetLowering &TLI = DAG.getTargetLoweringInfo();
820 SDOperand Val = Parts[0];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000821
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000822 if (NumParts > 1) {
823 // Assemble the value from multiple parts.
Duncan Sands92c43912008-06-06 12:08:01 +0000824 if (!ValueVT.isVector()) {
825 unsigned PartBits = PartVT.getSizeInBits();
826 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000828 // Assemble the power of 2 part.
829 unsigned RoundParts = NumParts & (NumParts - 1) ?
830 1 << Log2_32(NumParts) : NumParts;
831 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands92c43912008-06-06 12:08:01 +0000832 MVT RoundVT = RoundBits == ValueBits ?
833 ValueVT : MVT::getIntegerVT(RoundBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000834 SDOperand Lo, Hi;
835
836 if (RoundParts > 2) {
Duncan Sands92c43912008-06-06 12:08:01 +0000837 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000838 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
839 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
840 PartVT, HalfVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 } else {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000842 Lo = Parts[0];
843 Hi = Parts[1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000844 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000845 if (TLI.isBigEndian())
846 std::swap(Lo, Hi);
847 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
848
849 if (RoundParts < NumParts) {
850 // Assemble the trailing non-power-of-2 part.
851 unsigned OddParts = NumParts - RoundParts;
Duncan Sands92c43912008-06-06 12:08:01 +0000852 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000853 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
854
855 // Combine the round and odd parts.
856 Lo = Val;
857 if (TLI.isBigEndian())
858 std::swap(Lo, Hi);
Duncan Sands92c43912008-06-06 12:08:01 +0000859 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000860 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
861 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands92c43912008-06-06 12:08:01 +0000862 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000863 TLI.getShiftAmountTy()));
864 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
865 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
866 }
867 } else {
868 // Handle a multi-element vector.
Duncan Sands92c43912008-06-06 12:08:01 +0000869 MVT IntermediateVT, RegisterVT;
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000870 unsigned NumIntermediates;
871 unsigned NumRegs =
872 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
873 RegisterVT);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000874 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng11193be2008-05-14 20:29:30 +0000875 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000876 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
877 assert(RegisterVT == Parts[0].getValueType() &&
878 "Part type doesn't match part!");
879
880 // Assemble the parts into intermediate operands.
881 SmallVector<SDOperand, 8> Ops(NumIntermediates);
882 if (NumIntermediates == NumParts) {
883 // If the register was not expanded, truncate or copy the value,
884 // as appropriate.
885 for (unsigned i = 0; i != NumParts; ++i)
886 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
887 PartVT, IntermediateVT);
888 } else if (NumParts > 0) {
889 // If the intermediate type was expanded, build the intermediate operands
890 // from the parts.
891 assert(NumParts % NumIntermediates == 0 &&
892 "Must expand into a divisible number of parts!");
893 unsigned Factor = NumParts / NumIntermediates;
894 for (unsigned i = 0; i != NumIntermediates; ++i)
895 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
896 PartVT, IntermediateVT);
897 }
898
899 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
900 // operands.
Duncan Sands92c43912008-06-06 12:08:01 +0000901 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000902 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
903 ValueVT, &Ops[0], NumIntermediates);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000904 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 }
906
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000907 // There is now one part, held in Val. Correct it to match ValueVT.
908 PartVT = Val.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000909
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000910 if (PartVT == ValueVT)
911 return Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000912
Duncan Sands92c43912008-06-06 12:08:01 +0000913 if (PartVT.isVector()) {
914 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000915 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000916 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000917
Duncan Sands92c43912008-06-06 12:08:01 +0000918 if (ValueVT.isVector()) {
919 assert(ValueVT.getVectorElementType() == PartVT &&
920 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000921 "Only trivial scalar-to-vector conversions should get here!");
922 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
923 }
924
Duncan Sands92c43912008-06-06 12:08:01 +0000925 if (PartVT.isInteger() &&
926 ValueVT.isInteger()) {
Duncan Sandsec142ee2008-06-08 20:54:56 +0000927 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000928 // For a truncate, see if we have any information to
929 // indicate whether the truncated bits will always be
930 // zero or sign-extension.
931 if (AssertOp != ISD::DELETED_NODE)
932 Val = DAG.getNode(AssertOp, PartVT, Val,
933 DAG.getValueType(ValueVT));
934 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
935 } else {
936 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
937 }
938 }
939
Duncan Sands92c43912008-06-06 12:08:01 +0000940 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sandsec142ee2008-06-08 20:54:56 +0000941 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattnera7355b62008-03-09 09:38:46 +0000942 // FP_ROUND's are always exact here.
Chris Lattnerf8eb9e82008-03-09 07:47:22 +0000943 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattnera7355b62008-03-09 09:38:46 +0000944 DAG.getIntPtrConstant(1));
Chris Lattnerf8eb9e82008-03-09 07:47:22 +0000945 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
946 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000947
Duncan Sands92c43912008-06-06 12:08:01 +0000948 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000949 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
950
951 assert(0 && "Unknown mismatch!");
Chris Lattner2b06cd32008-03-30 18:22:13 +0000952 return SDOperand();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000953}
954
Duncan Sandse111ce82008-02-11 20:58:28 +0000955/// getCopyToParts - Create a series of nodes that contain the specified value
956/// split into legal parts. If the parts contain more bits than Val, then, for
957/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000958static void getCopyToParts(SelectionDAG &DAG,
959 SDOperand Val,
960 SDOperand *Parts,
961 unsigned NumParts,
Duncan Sands92c43912008-06-06 12:08:01 +0000962 MVT PartVT,
Duncan Sandse111ce82008-02-11 20:58:28 +0000963 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmanf7b05132007-08-10 14:59:38 +0000964 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands92c43912008-06-06 12:08:01 +0000965 MVT PtrVT = TLI.getPointerTy();
966 MVT ValueVT = Val.getValueType();
967 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000968 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000969
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000970 if (!NumParts)
971 return;
972
Duncan Sands92c43912008-06-06 12:08:01 +0000973 if (!ValueVT.isVector()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000974 if (PartVT == ValueVT) {
975 assert(NumParts == 1 && "No-op copy with multiple parts!");
976 Parts[0] = Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000977 return;
978 }
979
Duncan Sands92c43912008-06-06 12:08:01 +0000980 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000981 // If the parts cover more bits than the value has, promote the value.
Duncan Sands92c43912008-06-06 12:08:01 +0000982 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000983 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands92c43912008-06-06 12:08:01 +0000985 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
986 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000987 Val = DAG.getNode(ExtendKind, ValueVT, Val);
988 } else {
989 assert(0 && "Unknown mismatch!");
990 }
Duncan Sands92c43912008-06-06 12:08:01 +0000991 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000992 // Different types of the same size.
993 assert(NumParts == 1 && PartVT != ValueVT);
994 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands92c43912008-06-06 12:08:01 +0000995 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000996 // If the parts cover less bits than value has, truncate the value.
Duncan Sands92c43912008-06-06 12:08:01 +0000997 if (PartVT.isInteger() && ValueVT.isInteger()) {
998 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000999 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 } else {
1001 assert(0 && "Unknown mismatch!");
1002 }
1003 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001004
1005 // The value may have changed - recompute ValueVT.
1006 ValueVT = Val.getValueType();
Duncan Sands92c43912008-06-06 12:08:01 +00001007 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001008 "Failed to tile the value with PartVT!");
1009
1010 if (NumParts == 1) {
1011 assert(PartVT == ValueVT && "Type conversion failed!");
1012 Parts[0] = Val;
1013 return;
1014 }
1015
1016 // Expand the value into multiple parts.
1017 if (NumParts & (NumParts - 1)) {
1018 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands92c43912008-06-06 12:08:01 +00001019 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001020 "Do not know what to expand to!");
1021 unsigned RoundParts = 1 << Log2_32(NumParts);
1022 unsigned RoundBits = RoundParts * PartBits;
1023 unsigned OddParts = NumParts - RoundParts;
1024 SDOperand OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
1025 DAG.getConstant(RoundBits,
1026 TLI.getShiftAmountTy()));
1027 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1028 if (TLI.isBigEndian())
1029 // The odd parts were reversed by getCopyToParts - unreverse them.
1030 std::reverse(Parts + RoundParts, Parts + NumParts);
1031 NumParts = RoundParts;
Duncan Sands92c43912008-06-06 12:08:01 +00001032 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001033 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1034 }
1035
1036 // The number of parts is a power of 2. Repeatedly bisect the value using
1037 // EXTRACT_ELEMENT.
Duncan Sandsc4d85172008-03-12 20:30:08 +00001038 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands92c43912008-06-06 12:08:01 +00001039 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sandsc4d85172008-03-12 20:30:08 +00001040 Val);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001041 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1042 for (unsigned i = 0; i < NumParts; i += StepSize) {
1043 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands92c43912008-06-06 12:08:01 +00001044 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Duncan Sandsc4d85172008-03-12 20:30:08 +00001045 SDOperand &Part0 = Parts[i];
1046 SDOperand &Part1 = Parts[i+StepSize/2];
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001047
Duncan Sandsc4d85172008-03-12 20:30:08 +00001048 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1049 DAG.getConstant(1, PtrVT));
1050 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1051 DAG.getConstant(0, PtrVT));
1052
1053 if (ThisBits == PartBits && ThisVT != PartVT) {
1054 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1055 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1056 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001057 }
1058 }
1059
1060 if (TLI.isBigEndian())
1061 std::reverse(Parts, Parts + NumParts);
1062
1063 return;
1064 }
1065
1066 // Vector ValueVT.
1067 if (NumParts == 1) {
1068 if (PartVT != ValueVT) {
Duncan Sands92c43912008-06-06 12:08:01 +00001069 if (PartVT.isVector()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001070 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1071 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00001072 assert(ValueVT.getVectorElementType() == PartVT &&
1073 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001074 "Only trivial vector-to-scalar conversions should get here!");
1075 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1076 DAG.getConstant(0, PtrVT));
1077 }
1078 }
1079
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 Parts[0] = Val;
1081 return;
1082 }
1083
1084 // Handle a multi-element vector.
Duncan Sands92c43912008-06-06 12:08:01 +00001085 MVT IntermediateVT, RegisterVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001086 unsigned NumIntermediates;
1087 unsigned NumRegs =
1088 DAG.getTargetLoweringInfo()
1089 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1090 RegisterVT);
Duncan Sands92c43912008-06-06 12:08:01 +00001091 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001092
1093 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng11193be2008-05-14 20:29:30 +00001094 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001095 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1096
1097 // Split the vector into intermediate operands.
1098 SmallVector<SDOperand, 8> Ops(NumIntermediates);
1099 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands92c43912008-06-06 12:08:01 +00001100 if (IntermediateVT.isVector())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001101 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1102 IntermediateVT, Val,
1103 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohmanf7b05132007-08-10 14:59:38 +00001104 PtrVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001105 else
1106 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1107 IntermediateVT, Val,
Dan Gohmanf7b05132007-08-10 14:59:38 +00001108 DAG.getConstant(i, PtrVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001109
1110 // Split the intermediate operands into legal parts.
1111 if (NumParts == NumIntermediates) {
1112 // If the register was not expanded, promote or copy the value,
1113 // as appropriate.
1114 for (unsigned i = 0; i != NumParts; ++i)
1115 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
1116 } else if (NumParts > 0) {
1117 // If the intermediate type was expanded, split each the value into
1118 // legal parts.
1119 assert(NumParts % NumIntermediates == 0 &&
1120 "Must expand into a divisible number of parts!");
1121 unsigned Factor = NumParts / NumIntermediates;
1122 for (unsigned i = 0; i != NumIntermediates; ++i)
1123 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
1124 }
1125}
1126
1127
1128SDOperand SelectionDAGLowering::getValue(const Value *V) {
1129 SDOperand &N = NodeMap[V];
1130 if (N.Val) return N;
1131
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands92c43912008-06-06 12:08:01 +00001133 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattner622811e2008-04-28 06:44:42 +00001134
1135 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1136 return N = DAG.getConstant(CI->getValue(), VT);
1137
1138 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001139 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattner622811e2008-04-28 06:44:42 +00001140
1141 if (isa<ConstantPointerNull>(C))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001142 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattner622811e2008-04-28 06:44:42 +00001143
1144 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1145 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1146
Dan Gohman012bf582008-06-07 02:02:36 +00001147 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1148 !V->getType()->isAggregateType())
Chris Lattner02d73b32008-04-28 07:16:35 +00001149 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattner622811e2008-04-28 06:44:42 +00001150
1151 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1152 visit(CE->getOpcode(), *CE);
1153 SDOperand N1 = NodeMap[V];
1154 assert(N1.Val && "visit didn't populate the ValueMap!");
1155 return N1;
1156 }
1157
Dan Gohman012bf582008-06-07 02:02:36 +00001158 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1159 SmallVector<SDOperand, 4> Constants;
1160 SmallVector<MVT, 4> ValueVTs;
1161 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1162 OI != OE; ++OI) {
1163 SDNode *Val = getValue(*OI).Val;
1164 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) {
1165 Constants.push_back(SDOperand(Val, i));
1166 ValueVTs.push_back(Val->getValueType(i));
1167 }
1168 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00001169 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1170 &Constants[0], Constants.size());
Dan Gohman012bf582008-06-07 02:02:36 +00001171 }
1172
1173 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1174 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1175 "Unknown array constant!");
1176 unsigned NumElts = ATy->getNumElements();
Dan Gohman9115c7e2008-06-09 15:21:47 +00001177 if (NumElts == 0)
1178 return SDOperand(); // empty array
Dan Gohman012bf582008-06-07 02:02:36 +00001179 MVT EltVT = TLI.getValueType(ATy->getElementType());
1180 SmallVector<SDOperand, 4> Constants(NumElts);
1181 SmallVector<MVT, 4> ValueVTs(NumElts, EltVT);
1182 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1183 if (isa<UndefValue>(C))
1184 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1185 else if (EltVT.isFloatingPoint())
1186 Constants[i] = DAG.getConstantFP(0, EltVT);
1187 else
1188 Constants[i] = DAG.getConstant(0, EltVT);
1189 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00001190 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1191 &Constants[0], Constants.size());
Dan Gohman012bf582008-06-07 02:02:36 +00001192 }
1193
1194 if (const StructType *STy = dyn_cast<StructType>(C->getType())) {
1195 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1196 "Unknown struct constant!");
1197 unsigned NumElts = STy->getNumElements();
Dan Gohman9115c7e2008-06-09 15:21:47 +00001198 if (NumElts == 0)
1199 return SDOperand(); // empty struct
Dan Gohman012bf582008-06-07 02:02:36 +00001200 SmallVector<SDOperand, 4> Constants(NumElts);
1201 SmallVector<MVT, 4> ValueVTs(NumElts);
1202 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1203 MVT EltVT = TLI.getValueType(STy->getElementType(i));
1204 ValueVTs[i] = EltVT;
1205 if (isa<UndefValue>(C))
1206 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1207 else if (EltVT.isFloatingPoint())
1208 Constants[i] = DAG.getConstantFP(0, EltVT);
1209 else
1210 Constants[i] = DAG.getConstant(0, EltVT);
1211 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00001212 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1213 &Constants[0], Constants.size());
Dan Gohman012bf582008-06-07 02:02:36 +00001214 }
1215
Chris Lattner02d73b32008-04-28 07:16:35 +00001216 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattner622811e2008-04-28 06:44:42 +00001217 unsigned NumElements = VecTy->getNumElements();
Chris Lattner622811e2008-04-28 06:44:42 +00001218
Chris Lattner02d73b32008-04-28 07:16:35 +00001219 // Now that we know the number and type of the elements, get that number of
1220 // elements into the Ops array based on what kind of constant it is.
1221 SmallVector<SDOperand, 16> Ops;
Chris Lattner622811e2008-04-28 06:44:42 +00001222 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1223 for (unsigned i = 0; i != NumElements; ++i)
1224 Ops.push_back(getValue(CP->getOperand(i)));
1225 } else {
Chris Lattner02d73b32008-04-28 07:16:35 +00001226 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1227 "Unknown vector constant!");
Duncan Sands92c43912008-06-06 12:08:01 +00001228 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner02d73b32008-04-28 07:16:35 +00001229
Chris Lattner622811e2008-04-28 06:44:42 +00001230 SDOperand Op;
Chris Lattner02d73b32008-04-28 07:16:35 +00001231 if (isa<UndefValue>(C))
1232 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands92c43912008-06-06 12:08:01 +00001233 else if (EltVT.isFloatingPoint())
Chris Lattner02d73b32008-04-28 07:16:35 +00001234 Op = DAG.getConstantFP(0, EltVT);
Chris Lattner622811e2008-04-28 06:44:42 +00001235 else
Chris Lattner02d73b32008-04-28 07:16:35 +00001236 Op = DAG.getConstant(0, EltVT);
Chris Lattner622811e2008-04-28 06:44:42 +00001237 Ops.assign(NumElements, Op);
1238 }
1239
1240 // Create a BUILD_VECTOR node.
1241 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001242 }
1243
Chris Lattner622811e2008-04-28 06:44:42 +00001244 // If this is a static alloca, generate it as the frameindex instead of
1245 // computation.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001246 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1247 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattner622811e2008-04-28 06:44:42 +00001248 FuncInfo.StaticAllocaMap.find(AI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249 if (SI != FuncInfo.StaticAllocaMap.end())
1250 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1251 }
1252
1253 unsigned InReg = FuncInfo.ValueMap[V];
1254 assert(InReg && "Value not in map!");
1255
Chris Lattner02d73b32008-04-28 07:16:35 +00001256 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001257 SDOperand Chain = DAG.getEntryNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001258 return RFV.getCopyFromRegs(DAG, Chain, NULL);
1259}
1260
1261
1262void SelectionDAGLowering::visitRet(ReturnInst &I) {
1263 if (I.getNumOperands() == 0) {
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001264 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001265 return;
1266 }
Chris Lattner622811e2008-04-28 06:44:42 +00001267
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001268 SmallVector<SDOperand, 8> NewValues;
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001269 NewValues.push_back(getControlRoot());
1270 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001271 SDOperand RetOp = getValue(I.getOperand(i));
Duncan Sandse111ce82008-02-11 20:58:28 +00001272
Dan Gohman4f4a3492008-06-20 01:29:26 +00001273 SmallVector<MVT, 4> ValueVTs;
1274 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1275 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1276 MVT VT = ValueVTs[j];
Duncan Sandse111ce82008-02-11 20:58:28 +00001277
Dan Gohman4f4a3492008-06-20 01:29:26 +00001278 // FIXME: C calling convention requires the return type to be promoted to
1279 // at least 32-bit. But this is not necessary for non-C calling conventions.
1280 if (VT.isInteger()) {
1281 MVT MinVT = TLI.getRegisterType(MVT::i32);
1282 if (VT.bitsLT(MinVT))
1283 VT = MinVT;
1284 }
Duncan Sandse111ce82008-02-11 20:58:28 +00001285
Dan Gohman4f4a3492008-06-20 01:29:26 +00001286 unsigned NumParts = TLI.getNumRegisters(VT);
1287 MVT PartVT = TLI.getRegisterType(VT);
1288 SmallVector<SDOperand, 4> Parts(NumParts);
1289 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1290
1291 const Function *F = I.getParent()->getParent();
1292 if (F->paramHasAttr(0, ParamAttr::SExt))
1293 ExtendKind = ISD::SIGN_EXTEND;
1294 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1295 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandse111ce82008-02-11 20:58:28 +00001296
Dan Gohman4f4a3492008-06-20 01:29:26 +00001297 getCopyToParts(DAG, SDOperand(RetOp.Val, RetOp.ResNo + j),
1298 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandse111ce82008-02-11 20:58:28 +00001299
Dan Gohman4f4a3492008-06-20 01:29:26 +00001300 for (unsigned i = 0; i < NumParts; ++i) {
1301 NewValues.push_back(Parts[i]);
1302 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1303 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001304 }
1305 }
1306 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1307 &NewValues[0], NewValues.size()));
1308}
1309
1310/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1311/// the current basic block, add it to ValueMap now so that we'll get a
1312/// CopyTo/FromReg.
1313void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1314 // No need to export constants.
1315 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1316
1317 // Already exported?
1318 if (FuncInfo.isExportedInst(V)) return;
1319
1320 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001321 CopyValueToVirtualRegister(V, Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001322}
1323
1324bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1325 const BasicBlock *FromBB) {
1326 // The operands of the setcc have to be in this block. We don't know
1327 // how to export them from some other block.
1328 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1329 // Can export from current BB.
1330 if (VI->getParent() == FromBB)
1331 return true;
1332
1333 // Is already exported, noop.
1334 return FuncInfo.isExportedInst(V);
1335 }
1336
1337 // If this is an argument, we can export it if the BB is the entry block or
1338 // if it is already exported.
1339 if (isa<Argument>(V)) {
1340 if (FromBB == &FromBB->getParent()->getEntryBlock())
1341 return true;
1342
1343 // Otherwise, can only export this if it is already exported.
1344 return FuncInfo.isExportedInst(V);
1345 }
1346
1347 // Otherwise, constants can always be exported.
1348 return true;
1349}
1350
1351static bool InBlock(const Value *V, const BasicBlock *BB) {
1352 if (const Instruction *I = dyn_cast<Instruction>(V))
1353 return I->getParent() == BB;
1354 return true;
1355}
1356
1357/// FindMergedConditions - If Cond is an expression like
1358void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1359 MachineBasicBlock *TBB,
1360 MachineBasicBlock *FBB,
1361 MachineBasicBlock *CurBB,
1362 unsigned Opc) {
1363 // If this node is not part of the or/and tree, emit it as a branch.
1364 Instruction *BOp = dyn_cast<Instruction>(Cond);
1365
1366 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1367 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1368 BOp->getParent() != CurBB->getBasicBlock() ||
1369 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1370 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1371 const BasicBlock *BB = CurBB->getBasicBlock();
1372
1373 // If the leaf of the tree is a comparison, merge the condition into
1374 // the caseblock.
1375 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1376 // The operands of the cmp have to be in this block. We don't know
1377 // how to export them from some other block. If this is the first block
1378 // of the sequence, no exporting is needed.
1379 (CurBB == CurMBB ||
1380 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1381 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
1382 BOp = cast<Instruction>(Cond);
1383 ISD::CondCode Condition;
1384 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1385 switch (IC->getPredicate()) {
1386 default: assert(0 && "Unknown icmp predicate opcode!");
1387 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1388 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1389 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1390 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1391 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1392 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1393 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1394 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1395 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1396 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1397 }
1398 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1399 ISD::CondCode FPC, FOC;
1400 switch (FC->getPredicate()) {
1401 default: assert(0 && "Unknown fcmp predicate opcode!");
1402 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1403 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1404 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1405 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1406 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1407 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1408 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner98deeca2008-05-01 07:26:11 +00001409 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1410 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001411 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1412 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1413 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1414 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1415 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1416 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1417 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1418 }
1419 if (FiniteOnlyFPMath())
1420 Condition = FOC;
1421 else
1422 Condition = FPC;
1423 } else {
1424 Condition = ISD::SETEQ; // silence warning.
1425 assert(0 && "Unknown compare instruction");
1426 }
1427
1428 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
1429 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1430 SwitchCases.push_back(CB);
1431 return;
1432 }
1433
1434 // Create a CaseBlock record representing this branch.
1435 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1436 NULL, TBB, FBB, CurBB);
1437 SwitchCases.push_back(CB);
1438 return;
1439 }
1440
1441
1442 // Create TmpBB after CurBB.
1443 MachineFunction::iterator BBI = CurBB;
1444 MachineBasicBlock *TmpBB = new MachineBasicBlock(CurBB->getBasicBlock());
1445 CurBB->getParent()->getBasicBlockList().insert(++BBI, TmpBB);
1446
1447 if (Opc == Instruction::Or) {
1448 // Codegen X | Y as:
1449 // jmp_if_X TBB
1450 // jmp TmpBB
1451 // TmpBB:
1452 // jmp_if_Y TBB
1453 // jmp FBB
1454 //
1455
1456 // Emit the LHS condition.
1457 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1458
1459 // Emit the RHS condition into TmpBB.
1460 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1461 } else {
1462 assert(Opc == Instruction::And && "Unknown merge op!");
1463 // Codegen X & Y as:
1464 // jmp_if_X TmpBB
1465 // jmp FBB
1466 // TmpBB:
1467 // jmp_if_Y TBB
1468 // jmp FBB
1469 //
1470 // This requires creation of TmpBB after CurBB.
1471
1472 // Emit the LHS condition.
1473 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1474
1475 // Emit the RHS condition into TmpBB.
1476 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1477 }
1478}
1479
1480/// If the set of cases should be emitted as a series of branches, return true.
1481/// If we should emit this as a bunch of and/or'd together conditions, return
1482/// false.
1483static bool
1484ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1485 if (Cases.size() != 2) return true;
1486
1487 // If this is two comparisons of the same values or'd or and'd together, they
1488 // will get folded into a single comparison, so don't emit two blocks.
1489 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1490 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1491 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1492 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1493 return false;
1494 }
1495
1496 return true;
1497}
1498
1499void SelectionDAGLowering::visitBr(BranchInst &I) {
1500 // Update machine-CFG edges.
1501 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1502
1503 // Figure out which block is immediately after the current one.
1504 MachineBasicBlock *NextBlock = 0;
1505 MachineFunction::iterator BBI = CurMBB;
1506 if (++BBI != CurMBB->getParent()->end())
1507 NextBlock = BBI;
1508
1509 if (I.isUnconditional()) {
Owen Anderson451a1122008-06-07 00:00:23 +00001510 // Update machine-CFG edges.
1511 CurMBB->addSuccessor(Succ0MBB);
1512
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001513 // If this is not a fall-through branch, emit the branch.
1514 if (Succ0MBB != NextBlock)
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001515 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001516 DAG.getBasicBlock(Succ0MBB)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001517 return;
1518 }
1519
1520 // If this condition is one of the special cases we handle, do special stuff
1521 // now.
1522 Value *CondVal = I.getCondition();
1523 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1524
1525 // If this is a series of conditions that are or'd or and'd together, emit
1526 // this as a sequence of branches instead of setcc's with and/or operations.
1527 // For example, instead of something like:
1528 // cmp A, B
1529 // C = seteq
1530 // cmp D, E
1531 // F = setle
1532 // or C, F
1533 // jnz foo
1534 // Emit:
1535 // cmp A, B
1536 // je foo
1537 // cmp D, E
1538 // jle foo
1539 //
1540 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1541 if (BOp->hasOneUse() &&
1542 (BOp->getOpcode() == Instruction::And ||
1543 BOp->getOpcode() == Instruction::Or)) {
1544 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1545 // If the compares in later blocks need to use values not currently
1546 // exported from this block, export them now. This block should always
1547 // be the first entry.
1548 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1549
1550 // Allow some cases to be rejected.
1551 if (ShouldEmitAsBranches(SwitchCases)) {
1552 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1553 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1554 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1555 }
1556
1557 // Emit the branch for this block.
1558 visitSwitchCase(SwitchCases[0]);
1559 SwitchCases.erase(SwitchCases.begin());
1560 return;
1561 }
1562
1563 // Okay, we decided not to do this, remove any inserted MBB's and clear
1564 // SwitchCases.
1565 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1566 CurMBB->getParent()->getBasicBlockList().erase(SwitchCases[i].ThisBB);
1567
1568 SwitchCases.clear();
1569 }
1570 }
1571
1572 // Create a CaseBlock record representing this branch.
1573 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1574 NULL, Succ0MBB, Succ1MBB, CurMBB);
1575 // Use visitSwitchCase to actually insert the fast branch sequence for this
1576 // cond branch.
1577 visitSwitchCase(CB);
1578}
1579
1580/// visitSwitchCase - Emits the necessary code to represent a single node in
1581/// the binary search tree resulting from lowering a switch instruction.
1582void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
1583 SDOperand Cond;
1584 SDOperand CondLHS = getValue(CB.CmpLHS);
1585
1586 // Build the setcc now.
1587 if (CB.CmpMHS == NULL) {
1588 // Fold "(X == true)" to X and "(X == false)" to !X to
1589 // handle common cases produced by branch lowering.
1590 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1591 Cond = CondLHS;
1592 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1593 SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1594 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1595 } else
1596 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1597 } else {
1598 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1599
1600 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1601 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1602
1603 SDOperand CmpOp = getValue(CB.CmpMHS);
Duncan Sands92c43912008-06-06 12:08:01 +00001604 MVT VT = CmpOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001605
1606 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1607 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1608 } else {
1609 SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1610 Cond = DAG.getSetCC(MVT::i1, SUB,
1611 DAG.getConstant(High-Low, VT), ISD::SETULE);
1612 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001613 }
1614
Owen Anderson451a1122008-06-07 00:00:23 +00001615 // Update successor info
1616 CurMBB->addSuccessor(CB.TrueBB);
1617 CurMBB->addSuccessor(CB.FalseBB);
1618
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001619 // Set NextBlock to be the MBB immediately after the current one, if any.
1620 // This is used to avoid emitting unnecessary branches to the next block.
1621 MachineBasicBlock *NextBlock = 0;
1622 MachineFunction::iterator BBI = CurMBB;
1623 if (++BBI != CurMBB->getParent()->end())
1624 NextBlock = BBI;
1625
1626 // If the lhs block is the next block, invert the condition so that we can
1627 // fall through to the lhs instead of the rhs block.
1628 if (CB.TrueBB == NextBlock) {
1629 std::swap(CB.TrueBB, CB.FalseBB);
1630 SDOperand True = DAG.getConstant(1, Cond.getValueType());
1631 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1632 }
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001633 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001634 DAG.getBasicBlock(CB.TrueBB));
1635 if (CB.FalseBB == NextBlock)
1636 DAG.setRoot(BrCond);
1637 else
1638 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
1639 DAG.getBasicBlock(CB.FalseBB)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001640}
1641
1642/// visitJumpTable - Emit JumpTable node in the current MBB
1643void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
1644 // Emit the code for the jump table
1645 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands92c43912008-06-06 12:08:01 +00001646 MVT PTy = TLI.getPointerTy();
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001647 SDOperand Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001648 SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1649 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1650 Table, Index));
1651 return;
1652}
1653
1654/// visitJumpTableHeader - This function emits necessary code to produce index
1655/// in the JumpTable from switch case.
1656void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1657 SelectionDAGISel::JumpTableHeader &JTH) {
1658 // Subtract the lowest switch case value from the value being switched on
1659 // and conditional branch to default mbb if the result is greater than the
1660 // difference between smallest and largest cases.
1661 SDOperand SwitchOp = getValue(JTH.SValue);
Duncan Sands92c43912008-06-06 12:08:01 +00001662 MVT VT = SwitchOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001663 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1664 DAG.getConstant(JTH.First, VT));
1665
1666 // The SDNode we just created, which holds the value being switched on
1667 // minus the the smallest case value, needs to be copied to a virtual
1668 // register so it can be used as an index into the jump table in a
1669 // subsequent basic block. This value may be smaller or larger than the
1670 // target's pointer type, and therefore require extension or truncating.
Duncan Sandsec142ee2008-06-08 20:54:56 +00001671 if (VT.bitsGT(TLI.getPointerTy()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001672 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1673 else
1674 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1675
1676 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001677 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001678 JT.Reg = JumpTableReg;
1679
1680 // Emit the range check for the jump table, and branch to the default
1681 // block for the switch statement if the value being switched on exceeds
1682 // the largest case in the switch.
Scott Michel502151f2008-03-10 15:42:14 +00001683 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001684 DAG.getConstant(JTH.Last-JTH.First,VT),
1685 ISD::SETUGT);
1686
1687 // Set NextBlock to be the MBB immediately after the current one, if any.
1688 // This is used to avoid emitting unnecessary branches to the next block.
1689 MachineBasicBlock *NextBlock = 0;
1690 MachineFunction::iterator BBI = CurMBB;
1691 if (++BBI != CurMBB->getParent()->end())
1692 NextBlock = BBI;
1693
1694 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1695 DAG.getBasicBlock(JT.Default));
1696
1697 if (JT.MBB == NextBlock)
1698 DAG.setRoot(BrCond);
1699 else
1700 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
1701 DAG.getBasicBlock(JT.MBB)));
1702
1703 return;
1704}
1705
1706/// visitBitTestHeader - This function emits necessary code to produce value
1707/// suitable for "bit tests"
1708void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1709 // Subtract the minimum value
1710 SDOperand SwitchOp = getValue(B.SValue);
Duncan Sands92c43912008-06-06 12:08:01 +00001711 MVT VT = SwitchOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001712 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1713 DAG.getConstant(B.First, VT));
1714
1715 // Check range
Scott Michel502151f2008-03-10 15:42:14 +00001716 SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001717 DAG.getConstant(B.Range, VT),
1718 ISD::SETUGT);
1719
1720 SDOperand ShiftOp;
Duncan Sandsec142ee2008-06-08 20:54:56 +00001721 if (VT.bitsGT(TLI.getShiftAmountTy()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001722 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1723 else
1724 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1725
1726 // Make desired shift
1727 SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1728 DAG.getConstant(1, TLI.getPointerTy()),
1729 ShiftOp);
1730
1731 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001732 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001733 B.Reg = SwitchReg;
1734
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001735 // Set NextBlock to be the MBB immediately after the current one, if any.
1736 // This is used to avoid emitting unnecessary branches to the next block.
1737 MachineBasicBlock *NextBlock = 0;
1738 MachineFunction::iterator BBI = CurMBB;
1739 if (++BBI != CurMBB->getParent()->end())
1740 NextBlock = BBI;
1741
1742 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson451a1122008-06-07 00:00:23 +00001743
1744 CurMBB->addSuccessor(B.Default);
1745 CurMBB->addSuccessor(MBB);
1746
1747 SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1748 DAG.getBasicBlock(B.Default));
1749
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001750 if (MBB == NextBlock)
1751 DAG.setRoot(BrRange);
1752 else
1753 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1754 DAG.getBasicBlock(MBB)));
1755
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001756 return;
1757}
1758
1759/// visitBitTestCase - this function produces one "bit test"
1760void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1761 unsigned Reg,
1762 SelectionDAGISel::BitTestCase &B) {
1763 // Emit bit tests and jumps
Chris Lattner68068cc2008-06-17 06:09:18 +00001764 SDOperand SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
1765 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001766
Chris Lattner68068cc2008-06-17 06:09:18 +00001767 SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
1768 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Scott Michel502151f2008-03-10 15:42:14 +00001769 SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001770 DAG.getConstant(0, TLI.getPointerTy()),
1771 ISD::SETNE);
Owen Anderson451a1122008-06-07 00:00:23 +00001772
1773 CurMBB->addSuccessor(B.TargetBB);
1774 CurMBB->addSuccessor(NextMBB);
1775
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001776 SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001777 AndCmp, DAG.getBasicBlock(B.TargetBB));
1778
1779 // Set NextBlock to be the MBB immediately after the current one, if any.
1780 // This is used to avoid emitting unnecessary branches to the next block.
1781 MachineBasicBlock *NextBlock = 0;
1782 MachineFunction::iterator BBI = CurMBB;
1783 if (++BBI != CurMBB->getParent()->end())
1784 NextBlock = BBI;
1785
1786 if (NextMBB == NextBlock)
1787 DAG.setRoot(BrAnd);
1788 else
1789 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1790 DAG.getBasicBlock(NextMBB)));
1791
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001792 return;
1793}
1794
1795void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1796 // Retrieve successors.
1797 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1798 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1799
Duncan Sands1c5526c2007-12-17 18:08:19 +00001800 if (isa<InlineAsm>(I.getCalledValue()))
1801 visitInlineAsm(&I);
1802 else
Duncan Sandse9bc9132007-12-19 09:48:52 +00001803 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001804
1805 // If the value of the invoke is used outside of its defining block, make it
1806 // available as a virtual register.
1807 if (!I.use_empty()) {
1808 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1809 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001810 CopyValueToVirtualRegister(&I, VMI->second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001811 }
1812
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001813 // Update successor info
1814 CurMBB->addSuccessor(Return);
1815 CurMBB->addSuccessor(LandingPad);
Owen Anderson451a1122008-06-07 00:00:23 +00001816
1817 // Drop into normal successor.
1818 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1819 DAG.getBasicBlock(Return)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001820}
1821
1822void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1823}
1824
1825/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1826/// small case ranges).
1827bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1828 CaseRecVector& WorkList,
1829 Value* SV,
1830 MachineBasicBlock* Default) {
1831 Case& BackCase = *(CR.Range.second-1);
1832
1833 // Size is the number of Cases represented by this range.
1834 unsigned Size = CR.Range.second - CR.Range.first;
1835 if (Size > 3)
1836 return false;
1837
1838 // Get the MachineFunction which holds the current MBB. This is used when
1839 // inserting any additional MBBs necessary to represent the switch.
1840 MachineFunction *CurMF = CurMBB->getParent();
1841
1842 // Figure out which block is immediately after the current one.
1843 MachineBasicBlock *NextBlock = 0;
1844 MachineFunction::iterator BBI = CR.CaseBB;
1845
1846 if (++BBI != CurMBB->getParent()->end())
1847 NextBlock = BBI;
1848
1849 // TODO: If any two of the cases has the same destination, and if one value
1850 // is the same as the other, but has one bit unset that the other has set,
1851 // use bit manipulation to do two compares at once. For example:
1852 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1853
1854 // Rearrange the case blocks so that the last one falls through if possible.
1855 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1856 // The last case block won't fall through into 'NextBlock' if we emit the
1857 // branches in this order. See if rearranging a case value would help.
1858 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1859 if (I->BB == NextBlock) {
1860 std::swap(*I, BackCase);
1861 break;
1862 }
1863 }
1864 }
1865
1866 // Create a CaseBlock record representing a conditional branch to
1867 // the Case's target mbb if the value being switched on SV is equal
1868 // to C.
1869 MachineBasicBlock *CurBlock = CR.CaseBB;
1870 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1871 MachineBasicBlock *FallThrough;
1872 if (I != E-1) {
1873 FallThrough = new MachineBasicBlock(CurBlock->getBasicBlock());
1874 CurMF->getBasicBlockList().insert(BBI, FallThrough);
1875 } else {
1876 // If the last case doesn't match, go to the default block.
1877 FallThrough = Default;
1878 }
1879
1880 Value *RHS, *LHS, *MHS;
1881 ISD::CondCode CC;
1882 if (I->High == I->Low) {
1883 // This is just small small case range :) containing exactly 1 case
1884 CC = ISD::SETEQ;
1885 LHS = SV; RHS = I->High; MHS = NULL;
1886 } else {
1887 CC = ISD::SETLE;
1888 LHS = I->Low; MHS = SV; RHS = I->High;
1889 }
1890 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1891 I->BB, FallThrough, CurBlock);
1892
1893 // If emitting the first comparison, just call visitSwitchCase to emit the
1894 // code into the current block. Otherwise, push the CaseBlock onto the
1895 // vector to be later processed by SDISel, and insert the node's MBB
1896 // before the next MBB.
1897 if (CurBlock == CurMBB)
1898 visitSwitchCase(CB);
1899 else
1900 SwitchCases.push_back(CB);
1901
1902 CurBlock = FallThrough;
1903 }
1904
1905 return true;
1906}
1907
1908static inline bool areJTsAllowed(const TargetLowering &TLI) {
1909 return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1910 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1911}
1912
1913/// handleJTSwitchCase - Emit jumptable for current switch case range
1914bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1915 CaseRecVector& WorkList,
1916 Value* SV,
1917 MachineBasicBlock* Default) {
1918 Case& FrontCase = *CR.Range.first;
1919 Case& BackCase = *(CR.Range.second-1);
1920
1921 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1922 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1923
1924 uint64_t TSize = 0;
1925 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1926 I!=E; ++I)
1927 TSize += I->size();
1928
1929 if (!areJTsAllowed(TLI) || TSize <= 3)
1930 return false;
1931
1932 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1933 if (Density < 0.4)
1934 return false;
1935
1936 DOUT << "Lowering jump table\n"
1937 << "First entry: " << First << ". Last entry: " << Last << "\n"
1938 << "Size: " << TSize << ". Density: " << Density << "\n\n";
1939
1940 // Get the MachineFunction which holds the current MBB. This is used when
1941 // inserting any additional MBBs necessary to represent the switch.
1942 MachineFunction *CurMF = CurMBB->getParent();
1943
1944 // Figure out which block is immediately after the current one.
1945 MachineBasicBlock *NextBlock = 0;
1946 MachineFunction::iterator BBI = CR.CaseBB;
1947
1948 if (++BBI != CurMBB->getParent()->end())
1949 NextBlock = BBI;
1950
1951 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1952
1953 // Create a new basic block to hold the code for loading the address
1954 // of the jump table, and jumping to it. Update successor information;
1955 // we will either branch to the default case for the switch, or the jump
1956 // table.
1957 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
1958 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
1959 CR.CaseBB->addSuccessor(Default);
1960 CR.CaseBB->addSuccessor(JumpTableBB);
1961
1962 // Build a vector of destination BBs, corresponding to each target
1963 // of the jump table. If the value of the jump table slot corresponds to
1964 // a case statement, push the case's BB onto the vector, otherwise, push
1965 // the default BB.
1966 std::vector<MachineBasicBlock*> DestBBs;
1967 int64_t TEI = First;
1968 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1969 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1970 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1971
1972 if ((Low <= TEI) && (TEI <= High)) {
1973 DestBBs.push_back(I->BB);
1974 if (TEI==High)
1975 ++I;
1976 } else {
1977 DestBBs.push_back(Default);
1978 }
1979 }
1980
1981 // Update successor info. Add one edge to each unique successor.
1982 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1983 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1984 E = DestBBs.end(); I != E; ++I) {
1985 if (!SuccsHandled[(*I)->getNumber()]) {
1986 SuccsHandled[(*I)->getNumber()] = true;
1987 JumpTableBB->addSuccessor(*I);
1988 }
1989 }
1990
1991 // Create a jump table index for this jump table, or return an existing
1992 // one.
1993 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1994
1995 // Set the jump table information so that we can codegen it as a second
1996 // MachineBasicBlock
1997 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
1998 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
1999 (CR.CaseBB == CurMBB));
2000 if (CR.CaseBB == CurMBB)
2001 visitJumpTableHeader(JT, JTH);
2002
2003 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
2004
2005 return true;
2006}
2007
2008/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2009/// 2 subtrees.
2010bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
2011 CaseRecVector& WorkList,
2012 Value* SV,
2013 MachineBasicBlock* Default) {
2014 // Get the MachineFunction which holds the current MBB. This is used when
2015 // inserting any additional MBBs necessary to represent the switch.
2016 MachineFunction *CurMF = CurMBB->getParent();
2017
2018 // Figure out which block is immediately after the current one.
2019 MachineBasicBlock *NextBlock = 0;
2020 MachineFunction::iterator BBI = CR.CaseBB;
2021
2022 if (++BBI != CurMBB->getParent()->end())
2023 NextBlock = BBI;
2024
2025 Case& FrontCase = *CR.Range.first;
2026 Case& BackCase = *(CR.Range.second-1);
2027 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2028
2029 // Size is the number of Cases represented by this range.
2030 unsigned Size = CR.Range.second - CR.Range.first;
2031
2032 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2033 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
2034 double FMetric = 0;
2035 CaseItr Pivot = CR.Range.first + Size/2;
2036
2037 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2038 // (heuristically) allow us to emit JumpTable's later.
2039 uint64_t TSize = 0;
2040 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2041 I!=E; ++I)
2042 TSize += I->size();
2043
2044 uint64_t LSize = FrontCase.size();
2045 uint64_t RSize = TSize-LSize;
2046 DOUT << "Selecting best pivot: \n"
2047 << "First: " << First << ", Last: " << Last <<"\n"
2048 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
2049 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
2050 J!=E; ++I, ++J) {
2051 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2052 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
2053 assert((RBegin-LEnd>=1) && "Invalid case distance");
2054 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2055 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
2056 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
2057 // Should always split in some non-trivial place
2058 DOUT <<"=>Step\n"
2059 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2060 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2061 << "Metric: " << Metric << "\n";
2062 if (FMetric < Metric) {
2063 Pivot = J;
2064 FMetric = Metric;
2065 DOUT << "Current metric set to: " << FMetric << "\n";
2066 }
2067
2068 LSize += J->size();
2069 RSize -= J->size();
2070 }
2071 if (areJTsAllowed(TLI)) {
2072 // If our case is dense we *really* should handle it earlier!
2073 assert((FMetric > 0) && "Should handle dense range earlier!");
2074 } else {
2075 Pivot = CR.Range.first + Size/2;
2076 }
2077
2078 CaseRange LHSR(CR.Range.first, Pivot);
2079 CaseRange RHSR(Pivot, CR.Range.second);
2080 Constant *C = Pivot->Low;
2081 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2082
2083 // We know that we branch to the LHS if the Value being switched on is
2084 // less than the Pivot value, C. We use this to optimize our binary
2085 // tree a bit, by recognizing that if SV is greater than or equal to the
2086 // LHS's Case Value, and that Case Value is exactly one less than the
2087 // Pivot's Value, then we can branch directly to the LHS's Target,
2088 // rather than creating a leaf node for it.
2089 if ((LHSR.second - LHSR.first) == 1 &&
2090 LHSR.first->High == CR.GE &&
2091 cast<ConstantInt>(C)->getSExtValue() ==
2092 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2093 TrueBB = LHSR.first->BB;
2094 } else {
2095 TrueBB = new MachineBasicBlock(LLVMBB);
2096 CurMF->getBasicBlockList().insert(BBI, TrueBB);
2097 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2098 }
2099
2100 // Similar to the optimization above, if the Value being switched on is
2101 // known to be less than the Constant CR.LT, and the current Case Value
2102 // is CR.LT - 1, then we can branch directly to the target block for
2103 // the current Case Value, rather than emitting a RHS leaf node for it.
2104 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
2105 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2106 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2107 FalseBB = RHSR.first->BB;
2108 } else {
2109 FalseBB = new MachineBasicBlock(LLVMBB);
2110 CurMF->getBasicBlockList().insert(BBI, FalseBB);
2111 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2112 }
2113
2114 // Create a CaseBlock record representing a conditional branch to
2115 // the LHS node if the value being switched on SV is less than C.
2116 // Otherwise, branch to LHS.
2117 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2118 TrueBB, FalseBB, CR.CaseBB);
2119
2120 if (CR.CaseBB == CurMBB)
2121 visitSwitchCase(CB);
2122 else
2123 SwitchCases.push_back(CB);
2124
2125 return true;
2126}
2127
2128/// handleBitTestsSwitchCase - if current case range has few destination and
2129/// range span less, than machine word bitwidth, encode case range into series
2130/// of masks and emit bit tests with these masks.
2131bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2132 CaseRecVector& WorkList,
2133 Value* SV,
2134 MachineBasicBlock* Default){
Duncan Sands92c43912008-06-06 12:08:01 +00002135 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002136
2137 Case& FrontCase = *CR.Range.first;
2138 Case& BackCase = *(CR.Range.second-1);
2139
2140 // Get the MachineFunction which holds the current MBB. This is used when
2141 // inserting any additional MBBs necessary to represent the switch.
2142 MachineFunction *CurMF = CurMBB->getParent();
2143
2144 unsigned numCmps = 0;
2145 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2146 I!=E; ++I) {
2147 // Single case counts one, case range - two.
2148 if (I->Low == I->High)
2149 numCmps +=1;
2150 else
2151 numCmps +=2;
2152 }
2153
2154 // Count unique destinations
2155 SmallSet<MachineBasicBlock*, 4> Dests;
2156 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2157 Dests.insert(I->BB);
2158 if (Dests.size() > 3)
2159 // Don't bother the code below, if there are too much unique destinations
2160 return false;
2161 }
2162 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2163 << "Total number of comparisons: " << numCmps << "\n";
2164
2165 // Compute span of values.
2166 Constant* minValue = FrontCase.Low;
2167 Constant* maxValue = BackCase.High;
2168 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2169 cast<ConstantInt>(minValue)->getSExtValue();
2170 DOUT << "Compare range: " << range << "\n"
2171 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2172 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2173
2174 if (range>=IntPtrBits ||
2175 (!(Dests.size() == 1 && numCmps >= 3) &&
2176 !(Dests.size() == 2 && numCmps >= 5) &&
2177 !(Dests.size() >= 3 && numCmps >= 6)))
2178 return false;
2179
2180 DOUT << "Emitting bit tests\n";
2181 int64_t lowBound = 0;
2182
2183 // Optimize the case where all the case values fit in a
2184 // word without having to subtract minValue. In this case,
2185 // we can optimize away the subtraction.
2186 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
2187 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
2188 range = cast<ConstantInt>(maxValue)->getSExtValue();
2189 } else {
2190 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2191 }
2192
2193 CaseBitsVector CasesBits;
2194 unsigned i, count = 0;
2195
2196 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2197 MachineBasicBlock* Dest = I->BB;
2198 for (i = 0; i < count; ++i)
2199 if (Dest == CasesBits[i].BB)
2200 break;
2201
2202 if (i == count) {
2203 assert((count < 3) && "Too much destinations to test!");
2204 CasesBits.push_back(CaseBits(0, Dest, 0));
2205 count++;
2206 }
2207
2208 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2209 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2210
2211 for (uint64_t j = lo; j <= hi; j++) {
2212 CasesBits[i].Mask |= 1ULL << j;
2213 CasesBits[i].Bits++;
2214 }
2215
2216 }
2217 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2218
2219 SelectionDAGISel::BitTestInfo BTC;
2220
2221 // Figure out which block is immediately after the current one.
2222 MachineFunction::iterator BBI = CR.CaseBB;
2223 ++BBI;
2224
2225 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2226
2227 DOUT << "Cases:\n";
2228 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2229 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2230 << ", BB: " << CasesBits[i].BB << "\n";
2231
2232 MachineBasicBlock *CaseBB = new MachineBasicBlock(LLVMBB);
2233 CurMF->getBasicBlockList().insert(BBI, CaseBB);
2234 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2235 CaseBB,
2236 CasesBits[i].BB));
2237 }
2238
2239 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
2240 -1U, (CR.CaseBB == CurMBB),
2241 CR.CaseBB, Default, BTC);
2242
2243 if (CR.CaseBB == CurMBB)
2244 visitBitTestHeader(BTB);
2245
2246 BitTestCases.push_back(BTB);
2247
2248 return true;
2249}
2250
2251
Dan Gohman9fe5bd62008-03-27 19:56:19 +00002252/// Clusterify - Transform simple list of Cases into list of CaseRange's
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002253unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2254 const SwitchInst& SI) {
2255 unsigned numCmps = 0;
2256
2257 // Start with "simple" cases
2258 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2259 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2260 Cases.push_back(Case(SI.getSuccessorValue(i),
2261 SI.getSuccessorValue(i),
2262 SMBB));
2263 }
Chris Lattner5624ae42007-11-27 06:14:32 +00002264 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002265
2266 // Merge case into clusters
2267 if (Cases.size()>=2)
2268 // Must recompute end() each iteration because it may be
2269 // invalidated by erase if we hold on to it
Chris Lattnerdfb947d2007-11-24 07:07:01 +00002270 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002271 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2272 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2273 MachineBasicBlock* nextBB = J->BB;
2274 MachineBasicBlock* currentBB = I->BB;
2275
2276 // If the two neighboring cases go to the same destination, merge them
2277 // into a single case.
2278 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2279 I->High = J->High;
2280 J = Cases.erase(J);
2281 } else {
2282 I = J++;
2283 }
2284 }
2285
2286 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2287 if (I->Low != I->High)
2288 // A range counts double, since it requires two compares.
2289 ++numCmps;
2290 }
2291
2292 return numCmps;
2293}
2294
2295void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
2296 // Figure out which block is immediately after the current one.
2297 MachineBasicBlock *NextBlock = 0;
2298 MachineFunction::iterator BBI = CurMBB;
2299
2300 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2301
2302 // If there is only the default destination, branch to it if it is not the
2303 // next basic block. Otherwise, just fall through.
2304 if (SI.getNumOperands() == 2) {
2305 // Update machine-CFG edges.
2306
2307 // If this is not a fall-through branch, emit the branch.
Owen Anderson451a1122008-06-07 00:00:23 +00002308 CurMBB->addSuccessor(Default);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002309 if (Default != NextBlock)
Dan Gohman9fe5bd62008-03-27 19:56:19 +00002310 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002311 DAG.getBasicBlock(Default)));
Owen Anderson451a1122008-06-07 00:00:23 +00002312
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002313 return;
2314 }
2315
2316 // If there are any non-default case statements, create a vector of Cases
2317 // representing each one, and sort the vector so that we can efficiently
2318 // create a binary search tree from them.
2319 CaseVector Cases;
2320 unsigned numCmps = Clusterify(Cases, SI);
2321 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2322 << ". Total compares: " << numCmps << "\n";
2323
2324 // Get the Value to be switched on and default basic blocks, which will be
2325 // inserted into CaseBlock records, representing basic blocks in the binary
2326 // search tree.
2327 Value *SV = SI.getOperand(0);
2328
2329 // Push the initial CaseRec onto the worklist
2330 CaseRecVector WorkList;
2331 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2332
2333 while (!WorkList.empty()) {
2334 // Grab a record representing a case range to process off the worklist
2335 CaseRec CR = WorkList.back();
2336 WorkList.pop_back();
2337
2338 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2339 continue;
2340
2341 // If the range has few cases (two or less) emit a series of specific
2342 // tests.
2343 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2344 continue;
2345
2346 // If the switch has more than 5 blocks, and at least 40% dense, and the
2347 // target supports indirect branches, then emit a jump table rather than
2348 // lowering the switch to a binary tree of conditional branches.
2349 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2350 continue;
2351
2352 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2353 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2354 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2355 }
2356}
2357
2358
2359void SelectionDAGLowering::visitSub(User &I) {
2360 // -0.0 - X --> fneg
2361 const Type *Ty = I.getType();
2362 if (isa<VectorType>(Ty)) {
2363 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2364 const VectorType *DestTy = cast<VectorType>(I.getType());
2365 const Type *ElTy = DestTy->getElementType();
2366 if (ElTy->isFloatingPoint()) {
2367 unsigned VL = DestTy->getNumElements();
Dale Johannesen2fc20782007-09-14 22:26:36 +00002368 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002369 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2370 if (CV == CNZ) {
2371 SDOperand Op2 = getValue(I.getOperand(1));
2372 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2373 return;
2374 }
2375 }
2376 }
2377 }
2378 if (Ty->isFloatingPoint()) {
2379 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen2fc20782007-09-14 22:26:36 +00002380 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002381 SDOperand Op2 = getValue(I.getOperand(1));
2382 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2383 return;
2384 }
2385 }
2386
2387 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2388}
2389
2390void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2391 SDOperand Op1 = getValue(I.getOperand(0));
2392 SDOperand Op2 = getValue(I.getOperand(1));
2393
2394 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
2395}
2396
2397void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2398 SDOperand Op1 = getValue(I.getOperand(0));
2399 SDOperand Op2 = getValue(I.getOperand(1));
2400
Duncan Sandsec142ee2008-06-08 20:54:56 +00002401 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002402 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002403 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002404 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
2405
2406 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2407}
2408
2409void SelectionDAGLowering::visitICmp(User &I) {
2410 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2411 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2412 predicate = IC->getPredicate();
2413 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2414 predicate = ICmpInst::Predicate(IC->getPredicate());
2415 SDOperand Op1 = getValue(I.getOperand(0));
2416 SDOperand Op2 = getValue(I.getOperand(1));
2417 ISD::CondCode Opcode;
2418 switch (predicate) {
2419 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2420 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2421 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2422 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2423 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2424 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2425 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2426 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2427 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2428 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2429 default:
2430 assert(!"Invalid ICmp predicate value");
2431 Opcode = ISD::SETEQ;
2432 break;
2433 }
2434 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2435}
2436
2437void SelectionDAGLowering::visitFCmp(User &I) {
2438 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2439 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2440 predicate = FC->getPredicate();
2441 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2442 predicate = FCmpInst::Predicate(FC->getPredicate());
2443 SDOperand Op1 = getValue(I.getOperand(0));
2444 SDOperand Op2 = getValue(I.getOperand(1));
2445 ISD::CondCode Condition, FOC, FPC;
2446 switch (predicate) {
2447 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2448 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2449 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2450 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2451 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2452 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2453 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmanfc28db22008-05-01 23:40:44 +00002454 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2455 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002456 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2457 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2458 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2459 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2460 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2461 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2462 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2463 default:
2464 assert(!"Invalid FCmp predicate value");
2465 FOC = FPC = ISD::SETFALSE;
2466 break;
2467 }
2468 if (FiniteOnlyFPMath())
2469 Condition = FOC;
2470 else
2471 Condition = FPC;
2472 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
2473}
2474
Nate Begeman9a1ce152008-05-12 19:40:03 +00002475void SelectionDAGLowering::visitVICmp(User &I) {
2476 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2477 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2478 predicate = IC->getPredicate();
2479 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2480 predicate = ICmpInst::Predicate(IC->getPredicate());
2481 SDOperand Op1 = getValue(I.getOperand(0));
2482 SDOperand Op2 = getValue(I.getOperand(1));
2483 ISD::CondCode Opcode;
2484 switch (predicate) {
2485 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2486 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2487 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2488 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2489 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2490 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2491 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2492 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2493 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2494 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2495 default:
2496 assert(!"Invalid ICmp predicate value");
2497 Opcode = ISD::SETEQ;
2498 break;
2499 }
2500 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2501}
2502
2503void SelectionDAGLowering::visitVFCmp(User &I) {
2504 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2505 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2506 predicate = FC->getPredicate();
2507 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2508 predicate = FCmpInst::Predicate(FC->getPredicate());
2509 SDOperand Op1 = getValue(I.getOperand(0));
2510 SDOperand Op2 = getValue(I.getOperand(1));
2511 ISD::CondCode Condition, FOC, FPC;
2512 switch (predicate) {
2513 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2514 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2515 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2516 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2517 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2518 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2519 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2520 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2521 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2522 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2523 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2524 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2525 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2526 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2527 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2528 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2529 default:
2530 assert(!"Invalid VFCmp predicate value");
2531 FOC = FPC = ISD::SETFALSE;
2532 break;
2533 }
2534 if (FiniteOnlyFPMath())
2535 Condition = FOC;
2536 else
2537 Condition = FPC;
2538
Duncan Sands92c43912008-06-06 12:08:01 +00002539 MVT DestVT = TLI.getValueType(I.getType());
Nate Begeman9a1ce152008-05-12 19:40:03 +00002540
2541 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2542}
2543
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002544void SelectionDAGLowering::visitSelect(User &I) {
2545 SDOperand Cond = getValue(I.getOperand(0));
2546 SDOperand TrueVal = getValue(I.getOperand(1));
2547 SDOperand FalseVal = getValue(I.getOperand(2));
2548 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2549 TrueVal, FalseVal));
2550}
2551
2552
2553void SelectionDAGLowering::visitTrunc(User &I) {
2554 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2555 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002556 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002557 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2558}
2559
2560void SelectionDAGLowering::visitZExt(User &I) {
2561 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2562 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2563 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002564 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002565 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2566}
2567
2568void SelectionDAGLowering::visitSExt(User &I) {
2569 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2570 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2571 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002572 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002573 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2574}
2575
2576void SelectionDAGLowering::visitFPTrunc(User &I) {
2577 // FPTrunc is never a no-op cast, no need to check
2578 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002579 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner5872a362008-01-17 07:00:52 +00002580 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002581}
2582
2583void SelectionDAGLowering::visitFPExt(User &I){
2584 // FPTrunc is never a no-op cast, no need to check
2585 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002586 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002587 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2588}
2589
2590void SelectionDAGLowering::visitFPToUI(User &I) {
2591 // FPToUI is never a no-op cast, no need to check
2592 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002593 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002594 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2595}
2596
2597void SelectionDAGLowering::visitFPToSI(User &I) {
2598 // FPToSI is never a no-op cast, no need to check
2599 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002600 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002601 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2602}
2603
2604void SelectionDAGLowering::visitUIToFP(User &I) {
2605 // UIToFP is never a no-op cast, no need to check
2606 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002607 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002608 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2609}
2610
2611void SelectionDAGLowering::visitSIToFP(User &I){
2612 // UIToFP is never a no-op cast, no need to check
2613 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002614 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002615 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2616}
2617
2618void SelectionDAGLowering::visitPtrToInt(User &I) {
2619 // What to do depends on the size of the integer and the size of the pointer.
2620 // We can either truncate, zero extend, or no-op, accordingly.
2621 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002622 MVT SrcVT = N.getValueType();
2623 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002624 SDOperand Result;
Duncan Sandsec142ee2008-06-08 20:54:56 +00002625 if (DestVT.bitsLT(SrcVT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002626 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2627 else
2628 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2629 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2630 setValue(&I, Result);
2631}
2632
2633void SelectionDAGLowering::visitIntToPtr(User &I) {
2634 // What to do depends on the size of the integer and the size of the pointer.
2635 // We can either truncate, zero extend, or no-op, accordingly.
2636 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002637 MVT SrcVT = N.getValueType();
2638 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sandsec142ee2008-06-08 20:54:56 +00002639 if (DestVT.bitsLT(SrcVT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002640 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2641 else
2642 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2643 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2644}
2645
2646void SelectionDAGLowering::visitBitCast(User &I) {
2647 SDOperand N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002648 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002649
2650 // BitCast assures us that source and destination are the same size so this
2651 // is either a BIT_CONVERT or a no-op.
2652 if (DestVT != N.getValueType())
2653 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2654 else
2655 setValue(&I, N); // noop cast.
2656}
2657
2658void SelectionDAGLowering::visitInsertElement(User &I) {
2659 SDOperand InVec = getValue(I.getOperand(0));
2660 SDOperand InVal = getValue(I.getOperand(1));
2661 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2662 getValue(I.getOperand(2)));
2663
2664 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2665 TLI.getValueType(I.getType()),
2666 InVec, InVal, InIdx));
2667}
2668
2669void SelectionDAGLowering::visitExtractElement(User &I) {
2670 SDOperand InVec = getValue(I.getOperand(0));
2671 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2672 getValue(I.getOperand(1)));
2673 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
2674 TLI.getValueType(I.getType()), InVec, InIdx));
2675}
2676
2677void SelectionDAGLowering::visitShuffleVector(User &I) {
2678 SDOperand V1 = getValue(I.getOperand(0));
2679 SDOperand V2 = getValue(I.getOperand(1));
2680 SDOperand Mask = getValue(I.getOperand(2));
2681
2682 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2683 TLI.getValueType(I.getType()),
2684 V1, V2, Mask));
2685}
2686
Dan Gohman012bf582008-06-07 02:02:36 +00002687void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2688 const Value *Op0 = I.getOperand(0);
2689 const Value *Op1 = I.getOperand(1);
2690 const Type *AggTy = I.getType();
2691 const Type *ValTy = Op1->getType();
2692 bool IntoUndef = isa<UndefValue>(Op0);
2693 bool FromUndef = isa<UndefValue>(Op1);
2694
2695 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2696 I.idx_begin(), I.idx_end());
2697
2698 SmallVector<MVT, 4> AggValueVTs;
2699 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2700 SmallVector<MVT, 4> ValValueVTs;
2701 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2702
2703 unsigned NumAggValues = AggValueVTs.size();
2704 unsigned NumValValues = ValValueVTs.size();
2705 SmallVector<SDOperand, 4> Values(NumAggValues);
2706
2707 SDOperand Agg = getValue(Op0);
2708 SDOperand Val = getValue(Op1);
2709 unsigned i = 0;
2710 // Copy the beginning value(s) from the original aggregate.
2711 for (; i != LinearIndex; ++i)
2712 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2713 SDOperand(Agg.Val, Agg.ResNo + i);
2714 // Copy values from the inserted value(s).
2715 for (; i != LinearIndex + NumValValues; ++i)
2716 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2717 SDOperand(Val.Val, Val.ResNo + i - LinearIndex);
2718 // Copy remaining value(s) from the original aggregate.
2719 for (; i != NumAggValues; ++i)
2720 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2721 SDOperand(Agg.Val, Agg.ResNo + i);
2722
Duncan Sandsf19591c2008-06-30 10:19:09 +00002723 setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2724 &Values[0], NumAggValues));
Dan Gohman8055f772008-05-15 19:50:34 +00002725}
2726
Dan Gohman012bf582008-06-07 02:02:36 +00002727void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2728 const Value *Op0 = I.getOperand(0);
2729 const Type *AggTy = Op0->getType();
2730 const Type *ValTy = I.getType();
2731 bool OutOfUndef = isa<UndefValue>(Op0);
2732
2733 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2734 I.idx_begin(), I.idx_end());
2735
2736 SmallVector<MVT, 4> ValValueVTs;
2737 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2738
2739 unsigned NumValValues = ValValueVTs.size();
2740 SmallVector<SDOperand, 4> Values(NumValValues);
2741
2742 SDOperand Agg = getValue(Op0);
2743 // Copy out the selected value(s).
2744 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2745 Values[i - LinearIndex] =
Dan Gohman4ec23c42008-06-20 00:54:19 +00002746 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
2747 SDOperand(Agg.Val, Agg.ResNo + i);
Dan Gohman012bf582008-06-07 02:02:36 +00002748
Duncan Sandsf19591c2008-06-30 10:19:09 +00002749 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2750 &Values[0], NumValValues));
Dan Gohman8055f772008-05-15 19:50:34 +00002751}
2752
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002753
2754void SelectionDAGLowering::visitGetElementPtr(User &I) {
2755 SDOperand N = getValue(I.getOperand(0));
2756 const Type *Ty = I.getOperand(0)->getType();
2757
2758 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2759 OI != E; ++OI) {
2760 Value *Idx = *OI;
2761 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2762 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2763 if (Field) {
2764 // N = N + Offset
2765 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
2766 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner5872a362008-01-17 07:00:52 +00002767 DAG.getIntPtrConstant(Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002768 }
2769 Ty = StTy->getElementType(Field);
2770 } else {
2771 Ty = cast<SequentialType>(Ty)->getElementType();
2772
2773 // If this is a constant subscript, handle it quickly.
2774 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2775 if (CI->getZExtValue() == 0) continue;
2776 uint64_t Offs =
Dale Johannesen5ec2e732007-10-01 23:08:35 +00002777 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner5872a362008-01-17 07:00:52 +00002778 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2779 DAG.getIntPtrConstant(Offs));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002780 continue;
2781 }
2782
2783 // N = N + Idx * ElementSize;
Dale Johannesen5ec2e732007-10-01 23:08:35 +00002784 uint64_t ElementSize = TD->getABITypeSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002785 SDOperand IdxN = getValue(Idx);
2786
2787 // If the index is smaller or larger than intptr_t, truncate or extend
2788 // it.
Duncan Sandsec142ee2008-06-08 20:54:56 +00002789 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002790 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002791 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002792 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2793
2794 // If this is a multiply by a power of two, turn it into a shl
2795 // immediately. This is a very common case.
2796 if (isPowerOf2_64(ElementSize)) {
2797 unsigned Amt = Log2_64(ElementSize);
2798 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
2799 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
2800 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2801 continue;
2802 }
2803
Chris Lattner5872a362008-01-17 07:00:52 +00002804 SDOperand Scale = DAG.getIntPtrConstant(ElementSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002805 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2806 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2807 }
2808 }
2809 setValue(&I, N);
2810}
2811
2812void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2813 // If this is a fixed sized alloca in the entry block of the function,
2814 // allocate it statically on the stack.
2815 if (FuncInfo.StaticAllocaMap.count(&I))
2816 return; // getValue will auto-populate this.
2817
2818 const Type *Ty = I.getAllocatedType();
Duncan Sandsf99fdc62007-11-01 20:53:16 +00002819 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002820 unsigned Align =
2821 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2822 I.getAlignment());
2823
2824 SDOperand AllocSize = getValue(I.getArraySize());
Duncan Sands92c43912008-06-06 12:08:01 +00002825 MVT IntPtr = TLI.getPointerTy();
Duncan Sandsec142ee2008-06-08 20:54:56 +00002826 if (IntPtr.bitsLT(AllocSize.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002827 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002828 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002829 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
2830
2831 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner5872a362008-01-17 07:00:52 +00002832 DAG.getIntPtrConstant(TySize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002833
Evan Chenga31dc752007-08-16 23:46:29 +00002834 // Handle alignment. If the requested alignment is less than or equal to
2835 // the stack alignment, ignore it. If the size is greater than or equal to
2836 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002837 unsigned StackAlign =
2838 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Chenga31dc752007-08-16 23:46:29 +00002839 if (Align <= StackAlign)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002840 Align = 0;
Evan Chenga31dc752007-08-16 23:46:29 +00002841
2842 // Round the size of the allocation up to the stack alignment size
2843 // by add SA-1 to the size.
2844 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner5872a362008-01-17 07:00:52 +00002845 DAG.getIntPtrConstant(StackAlign-1));
Evan Chenga31dc752007-08-16 23:46:29 +00002846 // Mask out the low bits for alignment purposes.
2847 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner5872a362008-01-17 07:00:52 +00002848 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002849
Chris Lattner5872a362008-01-17 07:00:52 +00002850 SDOperand Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands92c43912008-06-06 12:08:01 +00002851 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002852 MVT::Other);
2853 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
2854 setValue(&I, DSA);
2855 DAG.setRoot(DSA.getValue(1));
2856
2857 // Inform the Frame Information that we have just allocated a variable-sized
2858 // object.
2859 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2860}
2861
2862void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman9115c7e2008-06-09 15:21:47 +00002863 const Value *SV = I.getOperand(0);
2864 SDOperand Ptr = getValue(SV);
2865
2866 const Type *Ty = I.getType();
2867 bool isVolatile = I.isVolatile();
2868 unsigned Alignment = I.getAlignment();
2869
2870 SmallVector<MVT, 4> ValueVTs;
2871 SmallVector<uint64_t, 4> Offsets;
2872 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2873 unsigned NumValues = ValueVTs.size();
2874 if (NumValues == 0)
2875 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002876
2877 SDOperand Root;
2878 if (I.isVolatile())
2879 Root = getRoot();
2880 else {
2881 // Do not serialize non-volatile loads against each other.
2882 Root = DAG.getRoot();
2883 }
2884
Dan Gohman012bf582008-06-07 02:02:36 +00002885 SmallVector<SDOperand, 4> Values(NumValues);
2886 SmallVector<SDOperand, 4> Chains(NumValues);
2887 MVT PtrVT = Ptr.getValueType();
2888 for (unsigned i = 0; i != NumValues; ++i) {
2889 SDOperand L = DAG.getLoad(ValueVTs[i], Root,
2890 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2891 DAG.getConstant(Offsets[i], PtrVT)),
2892 SV, Offsets[i],
2893 isVolatile, Alignment);
2894 Values[i] = L;
2895 Chains[i] = L.getValue(1);
2896 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002897
Dan Gohman012bf582008-06-07 02:02:36 +00002898 SDOperand Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2899 &Chains[0], NumValues);
2900 if (isVolatile)
2901 DAG.setRoot(Chain);
2902 else
2903 PendingLoads.push_back(Chain);
2904
Duncan Sandsf19591c2008-06-30 10:19:09 +00002905 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2906 &Values[0], NumValues));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002907}
2908
2909
2910void SelectionDAGLowering::visitStore(StoreInst &I) {
2911 Value *SrcV = I.getOperand(0);
2912 SDOperand Src = getValue(SrcV);
Dan Gohman012bf582008-06-07 02:02:36 +00002913 Value *PtrV = I.getOperand(1);
2914 SDOperand Ptr = getValue(PtrV);
2915
2916 SmallVector<MVT, 4> ValueVTs;
2917 SmallVector<uint64_t, 4> Offsets;
2918 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2919 unsigned NumValues = ValueVTs.size();
Dan Gohman9115c7e2008-06-09 15:21:47 +00002920 if (NumValues == 0)
2921 return;
Dan Gohman012bf582008-06-07 02:02:36 +00002922
2923 SDOperand Root = getRoot();
2924 SmallVector<SDOperand, 4> Chains(NumValues);
2925 MVT PtrVT = Ptr.getValueType();
2926 bool isVolatile = I.isVolatile();
2927 unsigned Alignment = I.getAlignment();
2928 for (unsigned i = 0; i != NumValues; ++i)
2929 Chains[i] = DAG.getStore(Root, SDOperand(Src.Val, Src.ResNo + i),
2930 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2931 DAG.getConstant(Offsets[i], PtrVT)),
2932 PtrV, Offsets[i],
2933 isVolatile, Alignment);
2934
2935 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002936}
2937
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002938/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2939/// node.
2940void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2941 unsigned Intrinsic) {
Duncan Sands79d28872007-12-03 20:06:50 +00002942 bool HasChain = !I.doesNotAccessMemory();
2943 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2944
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002945 // Build the operand list.
2946 SmallVector<SDOperand, 8> Ops;
2947 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2948 if (OnlyLoad) {
2949 // We don't need to serialize loads against other loads.
2950 Ops.push_back(DAG.getRoot());
2951 } else {
2952 Ops.push_back(getRoot());
2953 }
2954 }
2955
2956 // Add the intrinsic ID as an integer operand.
2957 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2958
2959 // Add all operands of the call to the operand list.
2960 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2961 SDOperand Op = getValue(I.getOperand(i));
2962 assert(TLI.isTypeLegal(Op.getValueType()) &&
2963 "Intrinsic uses a non-legal type?");
2964 Ops.push_back(Op);
2965 }
2966
Duncan Sands92c43912008-06-06 12:08:01 +00002967 std::vector<MVT> VTs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002968 if (I.getType() != Type::VoidTy) {
Duncan Sands92c43912008-06-06 12:08:01 +00002969 MVT VT = TLI.getValueType(I.getType());
2970 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002971 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands92c43912008-06-06 12:08:01 +00002972 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002973
Duncan Sands92c43912008-06-06 12:08:01 +00002974 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002975 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2976 }
2977
2978 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2979 VTs.push_back(VT);
2980 }
2981 if (HasChain)
2982 VTs.push_back(MVT::Other);
2983
Duncan Sands92c43912008-06-06 12:08:01 +00002984 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002985
2986 // Create the node.
2987 SDOperand Result;
2988 if (!HasChain)
2989 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2990 &Ops[0], Ops.size());
2991 else if (I.getType() != Type::VoidTy)
2992 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2993 &Ops[0], Ops.size());
2994 else
2995 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
2996 &Ops[0], Ops.size());
2997
2998 if (HasChain) {
2999 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
3000 if (OnlyLoad)
3001 PendingLoads.push_back(Chain);
3002 else
3003 DAG.setRoot(Chain);
3004 }
3005 if (I.getType() != Type::VoidTy) {
3006 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands92c43912008-06-06 12:08:01 +00003007 MVT VT = TLI.getValueType(PTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003008 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
3009 }
3010 setValue(&I, Result);
3011 }
3012}
3013
3014/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
3015static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov48fc88f2008-05-07 22:54:15 +00003016 V = V->stripPointerCasts();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003017 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov53422f62008-02-20 11:10:28 +00003018 assert ((GV || isa<ConstantPointerNull>(V)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003019 "TypeInfo must be a global variable or NULL");
3020 return GV;
3021}
3022
3023/// addCatchInfo - Extract the personality and type infos from an eh.selector
3024/// call, and add them to the specified machine basic block.
3025static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3026 MachineBasicBlock *MBB) {
3027 // Inform the MachineModuleInfo of the personality for this landing pad.
3028 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3029 assert(CE->getOpcode() == Instruction::BitCast &&
3030 isa<Function>(CE->getOperand(0)) &&
3031 "Personality should be a function");
3032 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3033
3034 // Gather all the type infos for this landing pad and pass them along to
3035 // MachineModuleInfo.
3036 std::vector<GlobalVariable *> TyInfo;
3037 unsigned N = I.getNumOperands();
3038
3039 for (unsigned i = N - 1; i > 2; --i) {
3040 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3041 unsigned FilterLength = CI->getZExtValue();
Duncan Sands923fdb12007-08-27 15:47:50 +00003042 unsigned FirstCatch = i + FilterLength + !FilterLength;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003043 assert (FirstCatch <= N && "Invalid filter length");
3044
3045 if (FirstCatch < N) {
3046 TyInfo.reserve(N - FirstCatch);
3047 for (unsigned j = FirstCatch; j < N; ++j)
3048 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3049 MMI->addCatchTypeInfo(MBB, TyInfo);
3050 TyInfo.clear();
3051 }
3052
Duncan Sands923fdb12007-08-27 15:47:50 +00003053 if (!FilterLength) {
3054 // Cleanup.
3055 MMI->addCleanup(MBB);
3056 } else {
3057 // Filter.
3058 TyInfo.reserve(FilterLength - 1);
3059 for (unsigned j = i + 1; j < FirstCatch; ++j)
3060 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3061 MMI->addFilterTypeInfo(MBB, TyInfo);
3062 TyInfo.clear();
3063 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003064
3065 N = i;
3066 }
3067 }
3068
3069 if (N > 3) {
3070 TyInfo.reserve(N - 3);
3071 for (unsigned j = 3; j < N; ++j)
3072 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3073 MMI->addCatchTypeInfo(MBB, TyInfo);
3074 }
3075}
3076
Mon P Wang078a62d2008-05-05 19:05:59 +00003077
3078/// Inlined utility function to implement binary input atomic intrinsics for
3079// visitIntrinsicCall: I is a call instruction
3080// Op is the associated NodeType for I
3081const char *
3082SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
3083 SDOperand Root = getRoot();
Mon P Wang078a62d2008-05-05 19:05:59 +00003084 SDOperand L = DAG.getAtomic(Op, Root,
3085 getValue(I.getOperand(1)),
Dan Gohmanc70fa752008-06-25 16:07:49 +00003086 getValue(I.getOperand(2)),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003087 I.getOperand(1));
Mon P Wang078a62d2008-05-05 19:05:59 +00003088 setValue(&I, L);
3089 DAG.setRoot(L.getValue(1));
3090 return 0;
3091}
3092
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003093/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3094/// we want to emit this as a call to a named external function, return the name
3095/// otherwise lower it and return null.
3096const char *
3097SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3098 switch (Intrinsic) {
3099 default:
3100 // By default, turn this into a target intrinsic node.
3101 visitTargetIntrinsic(I, Intrinsic);
3102 return 0;
3103 case Intrinsic::vastart: visitVAStart(I); return 0;
3104 case Intrinsic::vaend: visitVAEnd(I); return 0;
3105 case Intrinsic::vacopy: visitVACopy(I); return 0;
3106 case Intrinsic::returnaddress:
3107 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3108 getValue(I.getOperand(1))));
3109 return 0;
3110 case Intrinsic::frameaddress:
3111 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3112 getValue(I.getOperand(1))));
3113 return 0;
3114 case Intrinsic::setjmp:
3115 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3116 break;
3117 case Intrinsic::longjmp:
3118 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3119 break;
3120 case Intrinsic::memcpy_i32:
Dan Gohmane8b391e2008-04-12 04:36:06 +00003121 case Intrinsic::memcpy_i64: {
3122 SDOperand Op1 = getValue(I.getOperand(1));
3123 SDOperand Op2 = getValue(I.getOperand(2));
3124 SDOperand Op3 = getValue(I.getOperand(3));
3125 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3126 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3127 I.getOperand(1), 0, I.getOperand(2), 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003128 return 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00003129 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003130 case Intrinsic::memset_i32:
Dan Gohmane8b391e2008-04-12 04:36:06 +00003131 case Intrinsic::memset_i64: {
3132 SDOperand Op1 = getValue(I.getOperand(1));
3133 SDOperand Op2 = getValue(I.getOperand(2));
3134 SDOperand Op3 = getValue(I.getOperand(3));
3135 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3136 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3137 I.getOperand(1), 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003138 return 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00003139 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003140 case Intrinsic::memmove_i32:
Dan Gohmane8b391e2008-04-12 04:36:06 +00003141 case Intrinsic::memmove_i64: {
3142 SDOperand Op1 = getValue(I.getOperand(1));
3143 SDOperand Op2 = getValue(I.getOperand(2));
3144 SDOperand Op3 = getValue(I.getOperand(3));
3145 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3146
3147 // If the source and destination are known to not be aliases, we can
3148 // lower memmove as memcpy.
3149 uint64_t Size = -1ULL;
3150 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3151 Size = C->getValue();
3152 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3153 AliasAnalysis::NoAlias) {
3154 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3155 I.getOperand(1), 0, I.getOperand(2), 0));
3156 return 0;
3157 }
3158
3159 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3160 I.getOperand(1), 0, I.getOperand(2), 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003161 return 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00003162 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003163 case Intrinsic::dbg_stoppoint: {
3164 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3165 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
3166 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003167 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
3168 assert(DD && "Not a debug information descriptor");
Dan Gohman472d12c2008-06-30 20:59:49 +00003169 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3170 SPI.getLine(),
3171 SPI.getColumn(),
3172 cast<CompileUnitDesc>(DD)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003173 }
3174
3175 return 0;
3176 }
3177 case Intrinsic::dbg_region_start: {
3178 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3179 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
3180 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3181 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Dan Gohmanfa607c92008-07-01 00:05:16 +00003182 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003183 }
3184
3185 return 0;
3186 }
3187 case Intrinsic::dbg_region_end: {
3188 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3189 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
3190 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3191 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Dan Gohmanfa607c92008-07-01 00:05:16 +00003192 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003193 }
3194
3195 return 0;
3196 }
3197 case Intrinsic::dbg_func_start: {
3198 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Chenga53c40a2008-02-01 09:10:45 +00003199 if (!MMI) return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003200 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Chenga53c40a2008-02-01 09:10:45 +00003201 Value *SP = FSI.getSubprogram();
3202 if (SP && MMI->Verify(SP)) {
3203 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3204 // what (most?) gdb expects.
3205 DebugInfoDesc *DD = MMI->getDescFor(SP);
3206 assert(DD && "Not a debug information descriptor");
3207 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3208 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
Dan Gohman0849b9e2008-06-30 22:21:03 +00003209 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Evan Chenga53c40a2008-02-01 09:10:45 +00003210 // Record the source line but does create a label. It will be emitted
3211 // at asm emission time.
3212 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003213 }
3214
3215 return 0;
3216 }
3217 case Intrinsic::dbg_declare: {
3218 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3219 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Cheng2e28d622008-02-02 04:07:54 +00003220 Value *Variable = DI.getVariable();
3221 if (MMI && Variable && MMI->Verify(Variable))
3222 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3223 getValue(DI.getAddress()), getValue(Variable)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003224 return 0;
3225 }
3226
3227 case Intrinsic::eh_exception: {
Dale Johannesen85535762008-04-02 00:25:04 +00003228 if (!CurMBB->isLandingPad()) {
3229 // FIXME: Mark exception register as live in. Hack for PR1508.
3230 unsigned Reg = TLI.getExceptionAddressRegister();
3231 if (Reg) CurMBB->addLiveIn(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003232 }
Dale Johannesen85535762008-04-02 00:25:04 +00003233 // Insert the EXCEPTIONADDR instruction.
3234 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3235 SDOperand Ops[1];
3236 Ops[0] = DAG.getRoot();
3237 SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
3238 setValue(&I, Op);
3239 DAG.setRoot(Op.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003240 return 0;
3241 }
3242
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003243 case Intrinsic::eh_selector_i32:
3244 case Intrinsic::eh_selector_i64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003245 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands92c43912008-06-06 12:08:01 +00003246 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003247 MVT::i32 : MVT::i64);
3248
Dale Johannesen85535762008-04-02 00:25:04 +00003249 if (MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003250 if (CurMBB->isLandingPad())
3251 addCatchInfo(I, MMI, CurMBB);
3252 else {
3253#ifndef NDEBUG
3254 FuncInfo.CatchInfoLost.insert(&I);
3255#endif
3256 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3257 unsigned Reg = TLI.getExceptionSelectorRegister();
3258 if (Reg) CurMBB->addLiveIn(Reg);
3259 }
3260
3261 // Insert the EHSELECTION instruction.
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003262 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003263 SDOperand Ops[2];
3264 Ops[0] = getValue(I.getOperand(1));
3265 Ops[1] = getRoot();
3266 SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
3267 setValue(&I, Op);
3268 DAG.setRoot(Op.getValue(1));
3269 } else {
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003270 setValue(&I, DAG.getConstant(0, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003271 }
3272
3273 return 0;
3274 }
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003275
3276 case Intrinsic::eh_typeid_for_i32:
3277 case Intrinsic::eh_typeid_for_i64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003278 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands92c43912008-06-06 12:08:01 +00003279 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003280 MVT::i32 : MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003281
3282 if (MMI) {
3283 // Find the type id for the given typeinfo.
3284 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
3285
3286 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003287 setValue(&I, DAG.getConstant(TypeID, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003288 } else {
3289 // Return something different to eh_selector.
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003290 setValue(&I, DAG.getConstant(1, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003291 }
3292
3293 return 0;
3294 }
3295
3296 case Intrinsic::eh_return: {
3297 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3298
Dale Johannesen85535762008-04-02 00:25:04 +00003299 if (MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003300 MMI->setCallsEHReturn(true);
3301 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3302 MVT::Other,
Dan Gohman9fe5bd62008-03-27 19:56:19 +00003303 getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003304 getValue(I.getOperand(1)),
3305 getValue(I.getOperand(2))));
3306 } else {
3307 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3308 }
3309
3310 return 0;
3311 }
3312
3313 case Intrinsic::eh_unwind_init: {
3314 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3315 MMI->setCallsUnwindInit(true);
3316 }
3317
3318 return 0;
3319 }
3320
3321 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands92c43912008-06-06 12:08:01 +00003322 MVT VT = getValue(I.getOperand(1)).getValueType();
Dale Johannesen85535762008-04-02 00:25:04 +00003323 SDOperand CfaArg;
Duncan Sandsec142ee2008-06-08 20:54:56 +00003324 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen85535762008-04-02 00:25:04 +00003325 CfaArg = DAG.getNode(ISD::TRUNCATE,
3326 TLI.getPointerTy(), getValue(I.getOperand(1)));
3327 else
3328 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3329 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003330
Dale Johannesen85535762008-04-02 00:25:04 +00003331 SDOperand Offset = DAG.getNode(ISD::ADD,
3332 TLI.getPointerTy(),
3333 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3334 TLI.getPointerTy()),
3335 CfaArg);
3336 setValue(&I, DAG.getNode(ISD::ADD,
3337 TLI.getPointerTy(),
3338 DAG.getNode(ISD::FRAMEADDR,
3339 TLI.getPointerTy(),
3340 DAG.getConstant(0,
3341 TLI.getPointerTy())),
3342 Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003343 return 0;
3344 }
3345
Dale Johannesenc339d8e2007-10-02 17:43:59 +00003346 case Intrinsic::sqrt:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003347 setValue(&I, DAG.getNode(ISD::FSQRT,
3348 getValue(I.getOperand(1)).getValueType(),
3349 getValue(I.getOperand(1))));
3350 return 0;
Dale Johannesenc339d8e2007-10-02 17:43:59 +00003351 case Intrinsic::powi:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003352 setValue(&I, DAG.getNode(ISD::FPOWI,
3353 getValue(I.getOperand(1)).getValueType(),
3354 getValue(I.getOperand(1)),
3355 getValue(I.getOperand(2))));
3356 return 0;
Dan Gohmane1bb8c12007-10-12 00:01:22 +00003357 case Intrinsic::sin:
3358 setValue(&I, DAG.getNode(ISD::FSIN,
3359 getValue(I.getOperand(1)).getValueType(),
3360 getValue(I.getOperand(1))));
3361 return 0;
3362 case Intrinsic::cos:
3363 setValue(&I, DAG.getNode(ISD::FCOS,
3364 getValue(I.getOperand(1)).getValueType(),
3365 getValue(I.getOperand(1))));
3366 return 0;
3367 case Intrinsic::pow:
3368 setValue(&I, DAG.getNode(ISD::FPOW,
3369 getValue(I.getOperand(1)).getValueType(),
3370 getValue(I.getOperand(1)),
3371 getValue(I.getOperand(2))));
3372 return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003373 case Intrinsic::pcmarker: {
3374 SDOperand Tmp = getValue(I.getOperand(1));
3375 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3376 return 0;
3377 }
3378 case Intrinsic::readcyclecounter: {
3379 SDOperand Op = getRoot();
3380 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
3381 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3382 &Op, 1);
3383 setValue(&I, Tmp);
3384 DAG.setRoot(Tmp.getValue(1));
3385 return 0;
3386 }
3387 case Intrinsic::part_select: {
3388 // Currently not implemented: just abort
3389 assert(0 && "part_select intrinsic not implemented");
3390 abort();
3391 }
3392 case Intrinsic::part_set: {
3393 // Currently not implemented: just abort
3394 assert(0 && "part_set intrinsic not implemented");
3395 abort();
3396 }
3397 case Intrinsic::bswap:
3398 setValue(&I, DAG.getNode(ISD::BSWAP,
3399 getValue(I.getOperand(1)).getValueType(),
3400 getValue(I.getOperand(1))));
3401 return 0;
3402 case Intrinsic::cttz: {
3403 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00003404 MVT Ty = Arg.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003405 SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003406 setValue(&I, result);
3407 return 0;
3408 }
3409 case Intrinsic::ctlz: {
3410 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00003411 MVT Ty = Arg.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003412 SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003413 setValue(&I, result);
3414 return 0;
3415 }
3416 case Intrinsic::ctpop: {
3417 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00003418 MVT Ty = Arg.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003419 SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003420 setValue(&I, result);
3421 return 0;
3422 }
3423 case Intrinsic::stacksave: {
3424 SDOperand Op = getRoot();
3425 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
3426 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
3427 setValue(&I, Tmp);
3428 DAG.setRoot(Tmp.getValue(1));
3429 return 0;
3430 }
3431 case Intrinsic::stackrestore: {
3432 SDOperand Tmp = getValue(I.getOperand(1));
3433 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
3434 return 0;
3435 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003436 case Intrinsic::var_annotation:
3437 // Discard annotate attributes
3438 return 0;
Duncan Sands38947cd2007-07-27 12:58:54 +00003439
Duncan Sands38947cd2007-07-27 12:58:54 +00003440 case Intrinsic::init_trampoline: {
Anton Korobeynikov48fc88f2008-05-07 22:54:15 +00003441 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands38947cd2007-07-27 12:58:54 +00003442
3443 SDOperand Ops[6];
3444 Ops[0] = getRoot();
3445 Ops[1] = getValue(I.getOperand(1));
3446 Ops[2] = getValue(I.getOperand(2));
3447 Ops[3] = getValue(I.getOperand(3));
3448 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3449 Ops[5] = DAG.getSrcValue(F);
3450
Duncan Sands7407a9f2007-09-11 14:10:23 +00003451 SDOperand Tmp = DAG.getNode(ISD::TRAMPOLINE,
3452 DAG.getNodeValueTypes(TLI.getPointerTy(),
3453 MVT::Other), 2,
3454 Ops, 6);
3455
3456 setValue(&I, Tmp);
3457 DAG.setRoot(Tmp.getValue(1));
Duncan Sands38947cd2007-07-27 12:58:54 +00003458 return 0;
3459 }
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00003460
3461 case Intrinsic::gcroot:
3462 if (GCI) {
3463 Value *Alloca = I.getOperand(1);
3464 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3465
3466 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3467 GCI->addStackRoot(FI->getIndex(), TypeMap);
3468 }
3469 return 0;
3470
3471 case Intrinsic::gcread:
3472 case Intrinsic::gcwrite:
3473 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3474 return 0;
3475
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003476 case Intrinsic::flt_rounds: {
Dan Gohman819574c2008-01-31 00:41:03 +00003477 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003478 return 0;
3479 }
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003480
3481 case Intrinsic::trap: {
3482 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3483 return 0;
3484 }
Evan Chengd1d68072008-03-08 00:58:38 +00003485 case Intrinsic::prefetch: {
3486 SDOperand Ops[4];
3487 Ops[0] = getRoot();
3488 Ops[1] = getValue(I.getOperand(1));
3489 Ops[2] = getValue(I.getOperand(2));
3490 Ops[3] = getValue(I.getOperand(3));
3491 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3492 return 0;
3493 }
3494
Andrew Lenharth785610d2008-02-16 01:24:58 +00003495 case Intrinsic::memory_barrier: {
3496 SDOperand Ops[6];
3497 Ops[0] = getRoot();
3498 for (int x = 1; x < 6; ++x)
3499 Ops[x] = getValue(I.getOperand(x));
3500
3501 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3502 return 0;
3503 }
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003504 case Intrinsic::atomic_cmp_swap: {
Andrew Lenharthe44f3902008-02-21 06:45:13 +00003505 SDOperand Root = getRoot();
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003506 SDOperand L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthe44f3902008-02-21 06:45:13 +00003507 getValue(I.getOperand(1)),
3508 getValue(I.getOperand(2)),
Dan Gohmanc70fa752008-06-25 16:07:49 +00003509 getValue(I.getOperand(3)),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003510 I.getOperand(1));
Andrew Lenharthe44f3902008-02-21 06:45:13 +00003511 setValue(&I, L);
3512 DAG.setRoot(L.getValue(1));
3513 return 0;
3514 }
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003515 case Intrinsic::atomic_load_add:
3516 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3517 case Intrinsic::atomic_load_sub:
3518 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang078a62d2008-05-05 19:05:59 +00003519 case Intrinsic::atomic_load_and:
3520 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3521 case Intrinsic::atomic_load_or:
3522 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3523 case Intrinsic::atomic_load_xor:
3524 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00003525 case Intrinsic::atomic_load_nand:
3526 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang078a62d2008-05-05 19:05:59 +00003527 case Intrinsic::atomic_load_min:
3528 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3529 case Intrinsic::atomic_load_max:
3530 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3531 case Intrinsic::atomic_load_umin:
3532 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3533 case Intrinsic::atomic_load_umax:
3534 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3535 case Intrinsic::atomic_swap:
3536 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003537 }
3538}
3539
3540
Duncan Sandse9bc9132007-12-19 09:48:52 +00003541void SelectionDAGLowering::LowerCallTo(CallSite CS, SDOperand Callee,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003542 bool IsTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003543 MachineBasicBlock *LandingPad) {
Duncan Sandse9bc9132007-12-19 09:48:52 +00003544 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003545 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003546 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3547 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sandse9bc9132007-12-19 09:48:52 +00003548
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003549 TargetLowering::ArgListTy Args;
3550 TargetLowering::ArgListEntry Entry;
Duncan Sandse9bc9132007-12-19 09:48:52 +00003551 Args.reserve(CS.arg_size());
3552 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3553 i != e; ++i) {
3554 SDOperand ArgNode = getValue(*i);
3555 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003556
Duncan Sandse9bc9132007-12-19 09:48:52 +00003557 unsigned attrInd = i - CS.arg_begin() + 1;
3558 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3559 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3560 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3561 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3562 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3563 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen9b398782008-02-22 17:49:45 +00003564 Entry.Alignment = CS.getParamAlignment(attrInd);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003565 Args.push_back(Entry);
3566 }
3567
Dale Johannesen85535762008-04-02 00:25:04 +00003568 if (LandingPad && MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003569 // Insert a label before the invoke call to mark the try range. This can be
3570 // used to detect deletion of the invoke via the MachineModuleInfo.
3571 BeginLabel = MMI->NextLabelID();
Dale Johannesen1f68ca82008-04-04 23:48:31 +00003572 // Both PendingLoads and PendingExports must be flushed here;
3573 // this call might not return.
3574 (void)getRoot();
Dan Gohmanfa607c92008-07-01 00:05:16 +00003575 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003576 }
Duncan Sandse9bc9132007-12-19 09:48:52 +00003577
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003578 std::pair<SDOperand,SDOperand> Result =
Duncan Sandse9bc9132007-12-19 09:48:52 +00003579 TLI.LowerCallTo(getRoot(), CS.getType(),
3580 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sandsead972e2008-02-14 17:28:50 +00003581 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sandse9bc9132007-12-19 09:48:52 +00003582 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003583 Callee, Args, DAG);
Duncan Sandse9bc9132007-12-19 09:48:52 +00003584 if (CS.getType() != Type::VoidTy)
3585 setValue(CS.getInstruction(), Result.first);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003586 DAG.setRoot(Result.second);
3587
Dale Johannesen85535762008-04-02 00:25:04 +00003588 if (LandingPad && MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003589 // Insert a label at the end of the invoke call to mark the try range. This
3590 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3591 EndLabel = MMI->NextLabelID();
Dan Gohmanfa607c92008-07-01 00:05:16 +00003592 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003593
Duncan Sandse9bc9132007-12-19 09:48:52 +00003594 // Inform MachineModuleInfo of range.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003595 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3596 }
3597}
3598
3599
3600void SelectionDAGLowering::visitCall(CallInst &I) {
3601 const char *RenameFn = 0;
3602 if (Function *F = I.getCalledFunction()) {
Chris Lattner3687e342007-09-10 21:15:22 +00003603 if (F->isDeclaration()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003604 if (unsigned IID = F->getIntrinsicID()) {
3605 RenameFn = visitIntrinsicCall(I, IID);
3606 if (!RenameFn)
3607 return;
Chris Lattner3687e342007-09-10 21:15:22 +00003608 }
3609 }
3610
3611 // Check for well-known libc/libm calls. If the function is internal, it
3612 // can't be a library call.
3613 unsigned NameLen = F->getNameLen();
3614 if (!F->hasInternalLinkage() && NameLen) {
3615 const char *NameStr = F->getNameStart();
3616 if (NameStr[0] == 'c' &&
3617 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3618 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3619 if (I.getNumOperands() == 3 && // Basic sanity checks.
3620 I.getOperand(1)->getType()->isFloatingPoint() &&
3621 I.getType() == I.getOperand(1)->getType() &&
3622 I.getType() == I.getOperand(2)->getType()) {
3623 SDOperand LHS = getValue(I.getOperand(1));
3624 SDOperand RHS = getValue(I.getOperand(2));
3625 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3626 LHS, RHS));
3627 return;
3628 }
3629 } else if (NameStr[0] == 'f' &&
3630 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen7f1076b2007-09-26 21:10:55 +00003631 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3632 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner3687e342007-09-10 21:15:22 +00003633 if (I.getNumOperands() == 2 && // Basic sanity checks.
3634 I.getOperand(1)->getType()->isFloatingPoint() &&
3635 I.getType() == I.getOperand(1)->getType()) {
3636 SDOperand Tmp = getValue(I.getOperand(1));
3637 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3638 return;
3639 }
3640 } else if (NameStr[0] == 's' &&
3641 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen7f1076b2007-09-26 21:10:55 +00003642 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3643 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner3687e342007-09-10 21:15:22 +00003644 if (I.getNumOperands() == 2 && // Basic sanity checks.
3645 I.getOperand(1)->getType()->isFloatingPoint() &&
3646 I.getType() == I.getOperand(1)->getType()) {
3647 SDOperand Tmp = getValue(I.getOperand(1));
3648 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3649 return;
3650 }
3651 } else if (NameStr[0] == 'c' &&
3652 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen7f1076b2007-09-26 21:10:55 +00003653 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3654 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner3687e342007-09-10 21:15:22 +00003655 if (I.getNumOperands() == 2 && // Basic sanity checks.
3656 I.getOperand(1)->getType()->isFloatingPoint() &&
3657 I.getType() == I.getOperand(1)->getType()) {
3658 SDOperand Tmp = getValue(I.getOperand(1));
3659 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3660 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003661 }
3662 }
Chris Lattner3687e342007-09-10 21:15:22 +00003663 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003664 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sands1c5526c2007-12-17 18:08:19 +00003665 visitInlineAsm(&I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003666 return;
3667 }
3668
3669 SDOperand Callee;
3670 if (!RenameFn)
3671 Callee = getValue(I.getOperand(0));
3672 else
3673 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
3674
Duncan Sandse9bc9132007-12-19 09:48:52 +00003675 LowerCallTo(&I, Callee, I.isTailCall());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003676}
3677
3678
Dan Gohman3fdea2e2008-03-11 21:11:25 +00003679void SelectionDAGLowering::visitGetResult(GetResultInst &I) {
Dan Gohman6b852432008-04-23 20:25:16 +00003680 if (isa<UndefValue>(I.getOperand(0))) {
Dan Gohman10e4bdf2008-04-23 20:21:29 +00003681 SDOperand Undef = DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()));
3682 setValue(&I, Undef);
Chris Lattner02d73b32008-04-28 07:16:35 +00003683 return;
Dan Gohman10e4bdf2008-04-23 20:21:29 +00003684 }
Chris Lattner02d73b32008-04-28 07:16:35 +00003685
3686 // To add support for individual return values with aggregate types,
3687 // we'd need a way to take a getresult index and determine which
3688 // values of the Call SDNode are associated with it.
3689 assert(TLI.getValueType(I.getType(), true) != MVT::Other &&
3690 "Individual return values must not be aggregates!");
3691
3692 SDOperand Call = getValue(I.getOperand(0));
3693 setValue(&I, SDOperand(Call.Val, I.getIndex()));
Dan Gohman3fdea2e2008-03-11 21:11:25 +00003694}
3695
3696
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003697/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3698/// this value and returns the result as a ValueVT value. This uses
3699/// Chain/Flag as the input and updates them for the output Chain/Flag.
3700/// If the Flag pointer is NULL, no flag is used.
Chris Lattner68068cc2008-06-17 06:09:18 +00003701SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner02d73b32008-04-28 07:16:35 +00003702 SDOperand &Chain,
3703 SDOperand *Flag) const {
Dan Gohman30a71f52008-04-25 18:27:55 +00003704 // Assemble the legal parts into the final values.
3705 SmallVector<SDOperand, 4> Values(ValueVTs.size());
Chris Lattner02d73b32008-04-28 07:16:35 +00003706 SmallVector<SDOperand, 8> Parts;
3707 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman30a71f52008-04-25 18:27:55 +00003708 // Copy the legal parts from the registers.
Duncan Sands92c43912008-06-06 12:08:01 +00003709 MVT ValueVT = ValueVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003710 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands92c43912008-06-06 12:08:01 +00003711 MVT RegisterVT = RegVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003712
Chris Lattner02d73b32008-04-28 07:16:35 +00003713 Parts.resize(NumRegs);
Dan Gohman30a71f52008-04-25 18:27:55 +00003714 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner02d73b32008-04-28 07:16:35 +00003715 SDOperand P;
3716 if (Flag == 0)
3717 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3718 else {
3719 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman30a71f52008-04-25 18:27:55 +00003720 *Flag = P.getValue(2);
Chris Lattner02d73b32008-04-28 07:16:35 +00003721 }
3722 Chain = P.getValue(1);
Chris Lattner68068cc2008-06-17 06:09:18 +00003723
3724 // If the source register was virtual and if we know something about it,
3725 // add an assert node.
3726 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3727 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3728 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3729 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3730 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3731 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3732
3733 unsigned RegSize = RegisterVT.getSizeInBits();
3734 unsigned NumSignBits = LOI.NumSignBits;
3735 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3736
3737 // FIXME: We capture more information than the dag can represent. For
3738 // now, just use the tightest assertzext/assertsext possible.
3739 bool isSExt = true;
3740 MVT FromVT(MVT::Other);
3741 if (NumSignBits == RegSize)
3742 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3743 else if (NumZeroBits >= RegSize-1)
3744 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3745 else if (NumSignBits > RegSize-8)
3746 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3747 else if (NumZeroBits >= RegSize-9)
3748 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3749 else if (NumSignBits > RegSize-16)
3750 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3751 else if (NumZeroBits >= RegSize-17)
3752 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3753 else if (NumSignBits > RegSize-32)
3754 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3755 else if (NumZeroBits >= RegSize-33)
3756 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3757
3758 if (FromVT != MVT::Other) {
3759 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3760 RegisterVT, P, DAG.getValueType(FromVT));
3761
3762 }
3763 }
3764 }
3765
Dan Gohman30a71f52008-04-25 18:27:55 +00003766 Parts[Part+i] = P;
3767 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003768
Dan Gohman30a71f52008-04-25 18:27:55 +00003769 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3770 ValueVT);
3771 Part += NumRegs;
3772 }
Chris Lattner02d73b32008-04-28 07:16:35 +00003773
3774 if (ValueVTs.size() == 1)
3775 return Values[0];
3776
Duncan Sandsf19591c2008-06-30 10:19:09 +00003777 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3778 &Values[0], ValueVTs.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003779}
3780
3781/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3782/// specified value into the registers specified by this object. This uses
3783/// Chain/Flag as the input and updates them for the output Chain/Flag.
3784/// If the Flag pointer is NULL, no flag is used.
3785void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
3786 SDOperand &Chain, SDOperand *Flag) const {
3787 // Get the list of the values's legal parts.
Dan Gohman30a71f52008-04-25 18:27:55 +00003788 unsigned NumRegs = Regs.size();
3789 SmallVector<SDOperand, 8> Parts(NumRegs);
Chris Lattner02d73b32008-04-28 07:16:35 +00003790 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands92c43912008-06-06 12:08:01 +00003791 MVT ValueVT = ValueVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003792 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands92c43912008-06-06 12:08:01 +00003793 MVT RegisterVT = RegVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003794
3795 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3796 &Parts[Part], NumParts, RegisterVT);
3797 Part += NumParts;
3798 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003799
3800 // Copy the parts into the registers.
Dan Gohman30a71f52008-04-25 18:27:55 +00003801 SmallVector<SDOperand, 8> Chains(NumRegs);
3802 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner02d73b32008-04-28 07:16:35 +00003803 SDOperand Part;
3804 if (Flag == 0)
3805 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3806 else {
3807 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003808 *Flag = Part.getValue(1);
Chris Lattner02d73b32008-04-28 07:16:35 +00003809 }
3810 Chains[i] = Part.getValue(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003811 }
Chris Lattner02d73b32008-04-28 07:16:35 +00003812
Evan Cheng80cb49e2008-04-28 22:07:13 +00003813 if (NumRegs == 1 || Flag)
3814 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3815 // flagged to it. That is the CopyToReg nodes and the user are considered
3816 // a single scheduling unit. If we create a TokenFactor and return it as
3817 // chain, then the TokenFactor is both a predecessor (operand) of the
3818 // user as well as a successor (the TF operands are flagged to the user).
3819 // c1, f1 = CopyToReg
3820 // c2, f2 = CopyToReg
3821 // c3 = TokenFactor c1, c2
3822 // ...
3823 // = op c3, ..., f2
3824 Chain = Chains[NumRegs-1];
Chris Lattner02d73b32008-04-28 07:16:35 +00003825 else
3826 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003827}
3828
3829/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3830/// operand list. This adds the code marker and includes the number of
3831/// values added into it.
3832void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
3833 std::vector<SDOperand> &Ops) const {
Duncan Sands92c43912008-06-06 12:08:01 +00003834 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003835 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner02d73b32008-04-28 07:16:35 +00003836 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3837 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands92c43912008-06-06 12:08:01 +00003838 MVT RegisterVT = RegVTs[Value];
Chris Lattner02d73b32008-04-28 07:16:35 +00003839 for (unsigned i = 0; i != NumRegs; ++i)
3840 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman30a71f52008-04-25 18:27:55 +00003841 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003842}
3843
3844/// isAllocatableRegister - If the specified register is safe to allocate,
3845/// i.e. it isn't a stack pointer or some other special register, return the
3846/// register class for the register. Otherwise, return null.
3847static const TargetRegisterClass *
3848isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman1e57df32008-02-10 18:45:23 +00003849 const TargetLowering &TLI,
3850 const TargetRegisterInfo *TRI) {
Duncan Sands92c43912008-06-06 12:08:01 +00003851 MVT FoundVT = MVT::Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003852 const TargetRegisterClass *FoundRC = 0;
Dan Gohman1e57df32008-02-10 18:45:23 +00003853 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3854 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands92c43912008-06-06 12:08:01 +00003855 MVT ThisVT = MVT::Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003856
3857 const TargetRegisterClass *RC = *RCI;
3858 // If none of the the value types for this register class are valid, we
3859 // can't use it. For example, 64-bit reg classes on 32-bit targets.
3860 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3861 I != E; ++I) {
3862 if (TLI.isTypeLegal(*I)) {
3863 // If we have already found this register in a different register class,
3864 // choose the one with the largest VT specified. For example, on
3865 // PowerPC, we favor f64 register classes over f32.
Duncan Sandsec142ee2008-06-08 20:54:56 +00003866 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003867 ThisVT = *I;
3868 break;
3869 }
3870 }
3871 }
3872
3873 if (ThisVT == MVT::Other) continue;
3874
3875 // NOTE: This isn't ideal. In particular, this might allocate the
3876 // frame pointer in functions that need it (due to them not being taken
3877 // out of allocation, because a variable sized allocation hasn't been seen
3878 // yet). This is a slight code pessimization, but should still work.
3879 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3880 E = RC->allocation_order_end(MF); I != E; ++I)
3881 if (*I == Reg) {
3882 // We found a matching register class. Keep looking at others in case
3883 // we find one with larger registers that this physreg is also in.
3884 FoundRC = RC;
3885 FoundVT = ThisVT;
3886 break;
3887 }
3888 }
3889 return FoundRC;
3890}
3891
3892
3893namespace {
3894/// AsmOperandInfo - This contains information for each constraint that we are
3895/// lowering.
Evan Chengbcd66442008-02-26 02:33:44 +00003896struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3897 /// CallOperand - If this is the result output operand or a clobber
3898 /// this is null, otherwise it is the incoming operand to the CallInst.
3899 /// This gets modified as the asm is processed.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003900 SDOperand CallOperand;
Evan Chengbcd66442008-02-26 02:33:44 +00003901
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003902 /// AssignedRegs - If this is a register or register class operand, this
3903 /// contains the set of register corresponding to the operand.
3904 RegsForValue AssignedRegs;
3905
Dan Gohman30a71f52008-04-25 18:27:55 +00003906 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Chengbcd66442008-02-26 02:33:44 +00003907 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003908 }
3909
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003910 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3911 /// busy in OutputRegs/InputRegs.
3912 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3913 std::set<unsigned> &OutputRegs,
Chris Lattnerbd0818b2008-02-21 04:55:52 +00003914 std::set<unsigned> &InputRegs,
3915 const TargetRegisterInfo &TRI) const {
3916 if (isOutReg) {
3917 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3918 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3919 }
3920 if (isInReg) {
3921 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3922 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3923 }
3924 }
3925
3926private:
3927 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3928 /// specified set.
3929 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3930 const TargetRegisterInfo &TRI) {
3931 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3932 Regs.insert(Reg);
3933 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3934 for (; *Aliases; ++Aliases)
3935 Regs.insert(*Aliases);
3936 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003937};
3938} // end anon namespace.
3939
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003940
Chris Lattner75a19162008-02-21 19:43:13 +00003941/// GetRegistersForValue - Assign registers (virtual or physical) for the
3942/// specified operand. We prefer to assign virtual registers, to allow the
3943/// register allocator handle the assignment process. However, if the asm uses
3944/// features that we can't model on machineinstrs, we have SDISel do the
3945/// allocation. This produces generally horrible, but correct, code.
3946///
3947/// OpInfo describes the operand.
3948/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3949/// or any explicitly clobbered registers.
3950/// Input and OutputRegs are the set of already allocated physical registers.
3951///
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003952void SelectionDAGLowering::
Evan Chengbcd66442008-02-26 02:33:44 +00003953GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003954 std::set<unsigned> &OutputRegs,
3955 std::set<unsigned> &InputRegs) {
3956 // Compute whether this value requires an input register, an output register,
3957 // or both.
3958 bool isOutReg = false;
3959 bool isInReg = false;
3960 switch (OpInfo.Type) {
3961 case InlineAsm::isOutput:
3962 isOutReg = true;
3963
3964 // If this is an early-clobber output, or if there is an input
3965 // constraint that matches this, we need to reserve the input register
3966 // so no other inputs allocate to it.
3967 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3968 break;
3969 case InlineAsm::isInput:
3970 isInReg = true;
3971 isOutReg = false;
3972 break;
3973 case InlineAsm::isClobber:
3974 isOutReg = true;
3975 isInReg = true;
3976 break;
3977 }
3978
3979
3980 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner622811e2008-04-28 06:44:42 +00003981 SmallVector<unsigned, 4> Regs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003982
3983 // If this is a constraint for a single physreg, or a constraint for a
3984 // register class, find it.
3985 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
3986 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3987 OpInfo.ConstraintVT);
3988
3989 unsigned NumRegs = 1;
3990 if (OpInfo.ConstraintVT != MVT::Other)
3991 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands92c43912008-06-06 12:08:01 +00003992 MVT RegVT;
3993 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003994
3995
3996 // If this is a constraint for a specific physical register, like {r17},
3997 // assign it now.
3998 if (PhysReg.first) {
3999 if (OpInfo.ConstraintVT == MVT::Other)
4000 ValueVT = *PhysReg.second->vt_begin();
4001
4002 // Get the actual register value type. This is important, because the user
4003 // may have asked for (e.g.) the AX register in i32 type. We need to
4004 // remember that AX is actually i16 to get the right extension.
4005 RegVT = *PhysReg.second->vt_begin();
4006
4007 // This is a explicit reference to a physical register.
4008 Regs.push_back(PhysReg.first);
4009
4010 // If this is an expanded reference, add the rest of the regs to Regs.
4011 if (NumRegs != 1) {
4012 TargetRegisterClass::iterator I = PhysReg.second->begin();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004013 for (; *I != PhysReg.first; ++I)
Evan Chengaaa364e2008-05-14 20:07:51 +00004014 assert(I != PhysReg.second->end() && "Didn't find reg!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004015
4016 // Already added the first reg.
4017 --NumRegs; ++I;
4018 for (; NumRegs; --NumRegs, ++I) {
Evan Chengaaa364e2008-05-14 20:07:51 +00004019 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004020 Regs.push_back(*I);
4021 }
4022 }
Dan Gohman30a71f52008-04-25 18:27:55 +00004023 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnerbd0818b2008-02-21 04:55:52 +00004024 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4025 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004026 return;
4027 }
4028
4029 // Otherwise, if this was a reference to an LLVM register class, create vregs
4030 // for this reference.
4031 std::vector<unsigned> RegClassRegs;
4032 const TargetRegisterClass *RC = PhysReg.second;
4033 if (RC) {
4034 // If this is an early clobber or tied register, our regalloc doesn't know
4035 // how to maintain the constraint. If it isn't, go ahead and create vreg
4036 // and let the regalloc do the right thing.
4037 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4038 // If there is some other early clobber and this is an input register,
4039 // then we are forced to pre-allocate the input reg so it doesn't
4040 // conflict with the earlyclobber.
4041 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
4042 RegVT = *PhysReg.second->vt_begin();
4043
4044 if (OpInfo.ConstraintVT == MVT::Other)
4045 ValueVT = RegVT;
4046
4047 // Create the appropriate number of virtual registers.
Chris Lattner1b989192007-12-31 04:13:23 +00004048 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004049 for (; NumRegs; --NumRegs)
Chris Lattner1b989192007-12-31 04:13:23 +00004050 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004051
Dan Gohman30a71f52008-04-25 18:27:55 +00004052 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004053 return;
4054 }
4055
4056 // Otherwise, we can't allocate it. Let the code below figure out how to
4057 // maintain these constraints.
4058 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4059
4060 } else {
4061 // This is a reference to a register class that doesn't directly correspond
4062 // to an LLVM register class. Allocate NumRegs consecutive, available,
4063 // registers from the class.
4064 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4065 OpInfo.ConstraintVT);
4066 }
4067
Dan Gohman1e57df32008-02-10 18:45:23 +00004068 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004069 unsigned NumAllocated = 0;
4070 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4071 unsigned Reg = RegClassRegs[i];
4072 // See if this register is available.
4073 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4074 (isInReg && InputRegs.count(Reg))) { // Already used.
4075 // Make sure we find consecutive registers.
4076 NumAllocated = 0;
4077 continue;
4078 }
4079
4080 // Check to see if this register is allocatable (i.e. don't give out the
4081 // stack pointer).
4082 if (RC == 0) {
Dan Gohman1e57df32008-02-10 18:45:23 +00004083 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004084 if (!RC) { // Couldn't allocate this register.
4085 // Reset NumAllocated to make sure we return consecutive registers.
4086 NumAllocated = 0;
4087 continue;
4088 }
4089 }
4090
4091 // Okay, this register is good, we can use it.
4092 ++NumAllocated;
4093
4094 // If we allocated enough consecutive registers, succeed.
4095 if (NumAllocated == NumRegs) {
4096 unsigned RegStart = (i-NumAllocated)+1;
4097 unsigned RegEnd = i+1;
4098 // Mark all of the allocated registers used.
4099 for (unsigned i = RegStart; i != RegEnd; ++i)
4100 Regs.push_back(RegClassRegs[i]);
4101
Dan Gohman30a71f52008-04-25 18:27:55 +00004102 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004103 OpInfo.ConstraintVT);
Chris Lattnerbd0818b2008-02-21 04:55:52 +00004104 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004105 return;
4106 }
4107 }
4108
4109 // Otherwise, we couldn't allocate enough registers for this.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004110}
4111
4112
4113/// visitInlineAsm - Handle a call to an InlineAsm object.
4114///
Duncan Sands1c5526c2007-12-17 18:08:19 +00004115void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4116 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004117
4118 /// ConstraintOperands - Information about all of the constraints.
Evan Chengbcd66442008-02-26 02:33:44 +00004119 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004120
4121 SDOperand Chain = getRoot();
4122 SDOperand Flag;
4123
4124 std::set<unsigned> OutputRegs, InputRegs;
4125
4126 // Do a prepass over the constraints, canonicalizing them, and building up the
4127 // ConstraintOperands list.
4128 std::vector<InlineAsm::ConstraintInfo>
4129 ConstraintInfos = IA->ParseConstraints();
4130
4131 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4132 // constraint. If so, we can't let the register allocator allocate any input
4133 // registers, because it will not know to avoid the earlyclobbered output reg.
4134 bool SawEarlyClobber = false;
4135
Duncan Sands1c5526c2007-12-17 18:08:19 +00004136 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattner5f323302008-04-27 23:44:28 +00004137 unsigned ResNo = 0; // ResNo - The result number of the next output.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004138 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Chengbcd66442008-02-26 02:33:44 +00004139 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4140 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004141
Duncan Sands92c43912008-06-06 12:08:01 +00004142 MVT OpVT = MVT::Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004143
4144 // Compute the value type for each operand.
4145 switch (OpInfo.Type) {
4146 case InlineAsm::isOutput:
Chris Lattner5f323302008-04-27 23:44:28 +00004147 // Indirect outputs just consume an argument.
4148 if (OpInfo.isIndirect) {
Duncan Sands1c5526c2007-12-17 18:08:19 +00004149 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner5f323302008-04-27 23:44:28 +00004150 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004151 }
Chris Lattner5f323302008-04-27 23:44:28 +00004152 // The return value of the call is this value. As such, there is no
4153 // corresponding argument.
4154 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4155 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4156 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4157 } else {
4158 assert(ResNo == 0 && "Asm only has one result!");
4159 OpVT = TLI.getValueType(CS.getType());
4160 }
4161 ++ResNo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004162 break;
4163 case InlineAsm::isInput:
Duncan Sands1c5526c2007-12-17 18:08:19 +00004164 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004165 break;
4166 case InlineAsm::isClobber:
4167 // Nothing to do.
4168 break;
4169 }
4170
4171 // If this is an input or an indirect output, process the call argument.
Dale Johannesencfb19e62007-11-05 21:20:28 +00004172 // BasicBlocks are labels, currently appearing only in asm's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004173 if (OpInfo.CallOperandVal) {
Chris Lattner786c4282008-04-27 00:16:18 +00004174 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4175 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johannesencfb19e62007-11-05 21:20:28 +00004176 else {
4177 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4178 const Type *OpTy = OpInfo.CallOperandVal->getType();
4179 // If this is an indirect operand, the operand is a pointer to the
4180 // accessed type.
4181 if (OpInfo.isIndirect)
4182 OpTy = cast<PointerType>(OpTy)->getElementType();
4183
Dan Gohmanf9a85a32008-05-23 00:34:04 +00004184 // If OpTy is not a single value, it may be a struct/union that we
Dale Johannesencfb19e62007-11-05 21:20:28 +00004185 // can tile with integers.
Dan Gohmanf9a85a32008-05-23 00:34:04 +00004186 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johannesencfb19e62007-11-05 21:20:28 +00004187 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4188 switch (BitSize) {
4189 default: break;
4190 case 1:
4191 case 8:
4192 case 16:
4193 case 32:
4194 case 64:
4195 OpTy = IntegerType::get(BitSize);
4196 break;
4197 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004198 }
Dale Johannesencfb19e62007-11-05 21:20:28 +00004199
4200 OpVT = TLI.getValueType(OpTy, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004201 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004202 }
4203
4204 OpInfo.ConstraintVT = OpVT;
4205
4206 // Compute the constraint code and ConstraintType to use.
Chris Lattner4486c2e2008-04-27 00:37:18 +00004207 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004208
4209 // Keep track of whether we see an earlyclobber.
4210 SawEarlyClobber |= OpInfo.isEarlyClobber;
4211
Chris Lattner75a19162008-02-21 19:43:13 +00004212 // If we see a clobber of a register, it is an early clobber.
Chris Lattner17ac4312008-02-21 20:54:31 +00004213 if (!SawEarlyClobber &&
4214 OpInfo.Type == InlineAsm::isClobber &&
4215 OpInfo.ConstraintType == TargetLowering::C_Register) {
4216 // Note that we want to ignore things that we don't trick here, like
4217 // dirflag, fpsr, flags, etc.
4218 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4219 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4220 OpInfo.ConstraintVT);
4221 if (PhysReg.first || PhysReg.second) {
4222 // This is a register we know of.
4223 SawEarlyClobber = true;
4224 }
4225 }
Chris Lattner75a19162008-02-21 19:43:13 +00004226
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004227 // If this is a memory input, and if the operand is not indirect, do what we
4228 // need to to provide an address for the memory input.
4229 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4230 !OpInfo.isIndirect) {
4231 assert(OpInfo.Type == InlineAsm::isInput &&
4232 "Can only indirectify direct input operands!");
4233
4234 // Memory operands really want the address of the value. If we don't have
4235 // an indirect input, put it in the constpool if we can, otherwise spill
4236 // it to a stack slot.
4237
4238 // If the operand is a float, integer, or vector constant, spill to a
4239 // constant pool entry to get its address.
4240 Value *OpVal = OpInfo.CallOperandVal;
4241 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4242 isa<ConstantVector>(OpVal)) {
4243 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4244 TLI.getPointerTy());
4245 } else {
4246 // Otherwise, create a stack slot and emit a store to it before the
4247 // asm.
4248 const Type *Ty = OpVal->getType();
Duncan Sandsf99fdc62007-11-01 20:53:16 +00004249 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004250 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4251 MachineFunction &MF = DAG.getMachineFunction();
4252 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
4253 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4254 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4255 OpInfo.CallOperand = StackSlot;
4256 }
4257
4258 // There is no longer a Value* corresponding to this operand.
4259 OpInfo.CallOperandVal = 0;
4260 // It is now an indirect operand.
4261 OpInfo.isIndirect = true;
4262 }
4263
4264 // If this constraint is for a specific register, allocate it before
4265 // anything else.
4266 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4267 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4268 }
4269 ConstraintInfos.clear();
4270
4271
4272 // Second pass - Loop over all of the operands, assigning virtual or physregs
4273 // to registerclass operands.
4274 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Chengbcd66442008-02-26 02:33:44 +00004275 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004276
4277 // C_Register operands have already been allocated, Other/Memory don't need
4278 // to be.
4279 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4280 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4281 }
4282
4283 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
4284 std::vector<SDOperand> AsmNodeOperands;
4285 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
4286 AsmNodeOperands.push_back(
4287 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4288
4289
4290 // Loop over all of the inputs, copying the operand values into the
4291 // appropriate registers and processing the output regs.
4292 RegsForValue RetValRegs;
Chris Lattner08bbcb82008-04-29 04:29:54 +00004293
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004294 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4295 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4296
4297 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Chengbcd66442008-02-26 02:33:44 +00004298 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004299
4300 switch (OpInfo.Type) {
4301 case InlineAsm::isOutput: {
4302 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4303 OpInfo.ConstraintType != TargetLowering::C_Register) {
4304 // Memory output, or 'other' output (e.g. 'X' constraint).
4305 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
4306
4307 // Add information to the INLINEASM node to know about this output.
4308 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4309 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4310 TLI.getPointerTy()));
4311 AsmNodeOperands.push_back(OpInfo.CallOperand);
4312 break;
4313 }
4314
4315 // Otherwise, this is a register or register class output.
4316
4317 // Copy the output from the appropriate register. Find a register that
4318 // we can use.
4319 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sands10fbb352008-06-17 03:24:13 +00004320 cerr << "Couldn't allocate output reg for constraint '"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004321 << OpInfo.ConstraintCode << "'!\n";
4322 exit(1);
4323 }
4324
Chris Lattner08bbcb82008-04-29 04:29:54 +00004325 // If this is an indirect operand, store through the pointer after the
4326 // asm.
4327 if (OpInfo.isIndirect) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004328 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
4329 OpInfo.CallOperandVal));
Chris Lattner08bbcb82008-04-29 04:29:54 +00004330 } else {
4331 // This is the result value of the call.
4332 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4333 // Concatenate this output onto the outputs list.
4334 RetValRegs.append(OpInfo.AssignedRegs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004335 }
4336
4337 // Add information to the INLINEASM node to know that this register is
4338 // set.
4339 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4340 AsmNodeOperands);
4341 break;
4342 }
4343 case InlineAsm::isInput: {
4344 SDOperand InOperandVal = OpInfo.CallOperand;
4345
4346 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
4347 // If this is required to match an output register we have already set,
4348 // just use its register.
4349 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
4350
4351 // Scan until we find the definition we already emitted of this operand.
4352 // When we find it, create a RegsForValue operand.
4353 unsigned CurOp = 2; // The first operand.
4354 for (; OperandNo; --OperandNo) {
4355 // Advance to the next operand.
4356 unsigned NumOps =
4357 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
4358 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4359 (NumOps & 7) == 4 /*MEM*/) &&
4360 "Skipped past definitions?");
4361 CurOp += (NumOps>>3)+1;
4362 }
4363
4364 unsigned NumOps =
4365 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
4366 if ((NumOps & 7) == 2 /*REGDEF*/) {
4367 // Add NumOps>>3 registers to MatchedRegs.
4368 RegsForValue MatchedRegs;
Dan Gohman30a71f52008-04-25 18:27:55 +00004369 MatchedRegs.TLI = &TLI;
Dan Gohman111e04e2008-05-02 00:03:54 +00004370 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4371 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004372 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4373 unsigned Reg =
4374 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4375 MatchedRegs.Regs.push_back(Reg);
4376 }
4377
4378 // Use the produced MatchedRegs object to
4379 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
4380 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4381 break;
4382 } else {
4383 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattner58d032b2008-02-21 05:27:19 +00004384 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4385 // Add information to the INLINEASM node to know about this input.
4386 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4387 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4388 TLI.getPointerTy()));
4389 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4390 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004391 }
4392 }
4393
4394 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
4395 assert(!OpInfo.isIndirect &&
4396 "Don't know how to handle indirect other inputs yet!");
4397
Chris Lattnera531abc2007-08-25 00:47:38 +00004398 std::vector<SDOperand> Ops;
4399 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4400 Ops, DAG);
4401 if (Ops.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004402 cerr << "Invalid operand for inline asm constraint '"
4403 << OpInfo.ConstraintCode << "'!\n";
4404 exit(1);
4405 }
4406
4407 // Add information to the INLINEASM node to know about this input.
Chris Lattnera531abc2007-08-25 00:47:38 +00004408 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004409 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4410 TLI.getPointerTy()));
Chris Lattnera531abc2007-08-25 00:47:38 +00004411 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004412 break;
4413 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
4414 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
4415 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4416 "Memory operands expect pointer values");
4417
4418 // Add information to the INLINEASM node to know about this input.
4419 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4420 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4421 TLI.getPointerTy()));
4422 AsmNodeOperands.push_back(InOperandVal);
4423 break;
4424 }
4425
4426 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4427 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4428 "Unknown constraint type!");
4429 assert(!OpInfo.isIndirect &&
4430 "Don't know how to handle indirect register inputs yet!");
4431
4432 // Copy the input into the appropriate registers.
4433 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4434 "Couldn't allocate input reg!");
4435
4436 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
4437
4438 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4439 AsmNodeOperands);
4440 break;
4441 }
4442 case InlineAsm::isClobber: {
4443 // Add the clobbered value to the operand list, so that the register
4444 // allocator is aware that the physreg got clobbered.
4445 if (!OpInfo.AssignedRegs.Regs.empty())
4446 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4447 AsmNodeOperands);
4448 break;
4449 }
4450 }
4451 }
4452
4453 // Finish up input operands.
4454 AsmNodeOperands[0] = Chain;
4455 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4456
4457 Chain = DAG.getNode(ISD::INLINEASM,
4458 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
4459 &AsmNodeOperands[0], AsmNodeOperands.size());
4460 Flag = Chain.getValue(1);
4461
4462 // If this asm returns a register value, copy the result from that register
4463 // and set it as the value of the call.
4464 if (!RetValRegs.Regs.empty()) {
4465 SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner626164a2008-04-29 04:48:56 +00004466
4467 // If any of the results of the inline asm is a vector, it may have the
4468 // wrong width/num elts. This can happen for register classes that can
4469 // contain multiple different value types. The preg or vreg allocated may
4470 // not have the same VT as was expected. Convert it to the right type with
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004471 // bit_convert.
Chris Lattner626164a2008-04-29 04:48:56 +00004472 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4473 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00004474 if (Val.Val->getValueType(i).isVector())
Chris Lattner626164a2008-04-29 04:48:56 +00004475 Val = DAG.getNode(ISD::BIT_CONVERT,
4476 TLI.getValueType(ResSTy->getElementType(i)), Val);
4477 }
4478 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00004479 if (Val.getValueType().isVector())
Chris Lattner626164a2008-04-29 04:48:56 +00004480 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4481 Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004482 }
Chris Lattner626164a2008-04-29 04:48:56 +00004483
Duncan Sands1c5526c2007-12-17 18:08:19 +00004484 setValue(CS.getInstruction(), Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004485 }
4486
4487 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
4488
4489 // Process indirect outputs, first output all of the flagged copies out of
4490 // physregs.
4491 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
4492 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
4493 Value *Ptr = IndirectStoresToEmit[i].second;
4494 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
4495 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
4496 }
4497
4498 // Emit the non-flagged stores from the physregs.
4499 SmallVector<SDOperand, 8> OutChains;
4500 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
4501 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
4502 getValue(StoresToEmit[i].second),
4503 StoresToEmit[i].second, 0));
4504 if (!OutChains.empty())
4505 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4506 &OutChains[0], OutChains.size());
4507 DAG.setRoot(Chain);
4508}
4509
4510
4511void SelectionDAGLowering::visitMalloc(MallocInst &I) {
4512 SDOperand Src = getValue(I.getOperand(0));
4513
Duncan Sands92c43912008-06-06 12:08:01 +00004514 MVT IntPtr = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004515
Duncan Sandsec142ee2008-06-08 20:54:56 +00004516 if (IntPtr.bitsLT(Src.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004517 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sandsec142ee2008-06-08 20:54:56 +00004518 else if (IntPtr.bitsGT(Src.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004519 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
4520
4521 // Scale the source by the type size.
Duncan Sandsf99fdc62007-11-01 20:53:16 +00004522 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004523 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner5872a362008-01-17 07:00:52 +00004524 Src, DAG.getIntPtrConstant(ElementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004525
4526 TargetLowering::ArgListTy Args;
4527 TargetLowering::ArgListEntry Entry;
4528 Entry.Node = Src;
4529 Entry.Ty = TLI.getTargetData()->getIntPtrType();
4530 Args.push_back(Entry);
4531
4532 std::pair<SDOperand,SDOperand> Result =
Duncan Sandsead972e2008-02-14 17:28:50 +00004533 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4534 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004535 setValue(&I, Result.first); // Pointers always fit in registers
4536 DAG.setRoot(Result.second);
4537}
4538
4539void SelectionDAGLowering::visitFree(FreeInst &I) {
4540 TargetLowering::ArgListTy Args;
4541 TargetLowering::ArgListEntry Entry;
4542 Entry.Node = getValue(I.getOperand(0));
4543 Entry.Ty = TLI.getTargetData()->getIntPtrType();
4544 Args.push_back(Entry);
Duncan Sands92c43912008-06-06 12:08:01 +00004545 MVT IntPtr = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004546 std::pair<SDOperand,SDOperand> Result =
Duncan Sandsead972e2008-02-14 17:28:50 +00004547 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4548 CallingConv::C, true,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004549 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4550 DAG.setRoot(Result.second);
4551}
4552
Evan Chenge637db12008-01-30 18:18:23 +00004553// EmitInstrWithCustomInserter - This method should be implemented by targets
4554// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004555// instructions are special in various ways, which require special support to
4556// insert. The specified MachineInstr is created but not inserted into any
4557// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chenge637db12008-01-30 18:18:23 +00004558MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004559 MachineBasicBlock *MBB) {
4560 cerr << "If a target marks an instruction with "
4561 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chenge637db12008-01-30 18:18:23 +00004562 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004563 abort();
4564 return 0;
4565}
4566
4567void SelectionDAGLowering::visitVAStart(CallInst &I) {
4568 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4569 getValue(I.getOperand(1)),
4570 DAG.getSrcValue(I.getOperand(1))));
4571}
4572
4573void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
4574 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
4575 getValue(I.getOperand(0)),
4576 DAG.getSrcValue(I.getOperand(0)));
4577 setValue(&I, V);
4578 DAG.setRoot(V.getValue(1));
4579}
4580
4581void SelectionDAGLowering::visitVAEnd(CallInst &I) {
4582 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4583 getValue(I.getOperand(1)),
4584 DAG.getSrcValue(I.getOperand(1))));
4585}
4586
4587void SelectionDAGLowering::visitVACopy(CallInst &I) {
4588 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4589 getValue(I.getOperand(1)),
4590 getValue(I.getOperand(2)),
4591 DAG.getSrcValue(I.getOperand(1)),
4592 DAG.getSrcValue(I.getOperand(2))));
4593}
4594
4595/// TargetLowering::LowerArguments - This is the default LowerArguments
4596/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
4597/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4598/// integrated into SDISel.
Dan Gohmane0208142008-06-30 20:31:15 +00004599void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
4600 SmallVectorImpl<SDOperand> &ArgValues) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004601 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
Dan Gohmane0208142008-06-30 20:31:15 +00004602 SmallVector<SDOperand, 3+16> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004603 Ops.push_back(DAG.getRoot());
4604 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4605 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4606
4607 // Add one result value for each formal argument.
Dan Gohmane0208142008-06-30 20:31:15 +00004608 SmallVector<MVT, 16> RetVals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004609 unsigned j = 1;
4610 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4611 I != E; ++I, ++j) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004612 SmallVector<MVT, 4> ValueVTs;
4613 ComputeValueVTs(*this, I->getType(), ValueVTs);
4614 for (unsigned Value = 0, NumValues = ValueVTs.size();
4615 Value != NumValues; ++Value) {
4616 MVT VT = ValueVTs[Value];
4617 const Type *ArgTy = VT.getTypeForMVT();
4618 ISD::ArgFlagsTy Flags;
4619 unsigned OriginalAlignment =
4620 getTargetData()->getABITypeAlignment(ArgTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004621
Dan Gohman1bb94262008-06-09 21:19:23 +00004622 if (F.paramHasAttr(j, ParamAttr::ZExt))
4623 Flags.setZExt();
4624 if (F.paramHasAttr(j, ParamAttr::SExt))
4625 Flags.setSExt();
4626 if (F.paramHasAttr(j, ParamAttr::InReg))
4627 Flags.setInReg();
4628 if (F.paramHasAttr(j, ParamAttr::StructRet))
4629 Flags.setSRet();
4630 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4631 Flags.setByVal();
4632 const PointerType *Ty = cast<PointerType>(I->getType());
4633 const Type *ElementTy = Ty->getElementType();
4634 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4635 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4636 // For ByVal, alignment should be passed from FE. BE will guess if
4637 // this info is not there but there are cases it cannot get right.
4638 if (F.getParamAlignment(j))
4639 FrameAlign = F.getParamAlignment(j);
4640 Flags.setByValAlign(FrameAlign);
4641 Flags.setByValSize(FrameSize);
4642 }
4643 if (F.paramHasAttr(j, ParamAttr::Nest))
4644 Flags.setNest();
4645 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandse111ce82008-02-11 20:58:28 +00004646
Dan Gohman1bb94262008-06-09 21:19:23 +00004647 MVT RegisterVT = getRegisterType(VT);
4648 unsigned NumRegs = getNumRegisters(VT);
4649 for (unsigned i = 0; i != NumRegs; ++i) {
4650 RetVals.push_back(RegisterVT);
4651 ISD::ArgFlagsTy MyFlags = Flags;
4652 if (NumRegs > 1 && i == 0)
4653 MyFlags.setSplit();
4654 // if it isn't first piece, alignment must be 1
4655 else if (i > 0)
4656 MyFlags.setOrigAlign(1);
4657 Ops.push_back(DAG.getArgFlags(MyFlags));
4658 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004659 }
4660 }
4661
4662 RetVals.push_back(MVT::Other);
4663
4664 // Create the node.
4665 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner5cb5add2008-02-13 07:39:09 +00004666 DAG.getVTList(&RetVals[0], RetVals.size()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004667 &Ops[0], Ops.size()).Val;
Chris Lattner5cb5add2008-02-13 07:39:09 +00004668
4669 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4670 // allows exposing the loads that may be part of the argument access to the
4671 // first DAGCombiner pass.
4672 SDOperand TmpRes = LowerOperation(SDOperand(Result, 0), DAG);
4673
4674 // The number of results should match up, except that the lowered one may have
4675 // an extra flag result.
4676 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4677 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4678 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4679 && "Lowering produced unexpected number of results!");
4680 Result = TmpRes.Val;
4681
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004682 unsigned NumArgRegs = Result->getNumValues() - 1;
4683 DAG.setRoot(SDOperand(Result, NumArgRegs));
4684
4685 // Set up the return result vector.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004686 unsigned i = 0;
4687 unsigned Idx = 1;
4688 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4689 ++I, ++Idx) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004690 SmallVector<MVT, 4> ValueVTs;
4691 ComputeValueVTs(*this, I->getType(), ValueVTs);
4692 for (unsigned Value = 0, NumValues = ValueVTs.size();
4693 Value != NumValues; ++Value) {
4694 MVT VT = ValueVTs[Value];
4695 MVT PartVT = getRegisterType(VT);
Duncan Sandse111ce82008-02-11 20:58:28 +00004696
Dan Gohman1bb94262008-06-09 21:19:23 +00004697 unsigned NumParts = getNumRegisters(VT);
4698 SmallVector<SDOperand, 4> Parts(NumParts);
4699 for (unsigned j = 0; j != NumParts; ++j)
4700 Parts[j] = SDOperand(Result, i++);
Duncan Sandse111ce82008-02-11 20:58:28 +00004701
Dan Gohman1bb94262008-06-09 21:19:23 +00004702 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4703 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4704 AssertOp = ISD::AssertSext;
4705 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4706 AssertOp = ISD::AssertZext;
Duncan Sandse111ce82008-02-11 20:58:28 +00004707
Dan Gohmane0208142008-06-30 20:31:15 +00004708 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4709 AssertOp));
Dan Gohman1bb94262008-06-09 21:19:23 +00004710 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004711 }
4712 assert(i == NumArgRegs && "Argument register count mismatch!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004713}
4714
4715
4716/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4717/// implementation, which just inserts an ISD::CALL node, which is later custom
4718/// lowered by the target to something concrete. FIXME: When all targets are
4719/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
4720std::pair<SDOperand, SDOperand>
Duncan Sandsead972e2008-02-14 17:28:50 +00004721TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
4722 bool RetSExt, bool RetZExt, bool isVarArg,
4723 unsigned CallingConv, bool isTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004724 SDOperand Callee,
4725 ArgListTy &Args, SelectionDAG &DAG) {
4726 SmallVector<SDOperand, 32> Ops;
4727 Ops.push_back(Chain); // Op#0 - Chain
4728 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4729 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4730 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4731 Ops.push_back(Callee);
4732
4733 // Handle all of the outgoing arguments.
4734 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004735 SmallVector<MVT, 4> ValueVTs;
4736 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4737 for (unsigned Value = 0, NumValues = ValueVTs.size();
4738 Value != NumValues; ++Value) {
4739 MVT VT = ValueVTs[Value];
4740 const Type *ArgTy = VT.getTypeForMVT();
4741 SDOperand Op = SDOperand(Args[i].Node.Val, Args[i].Node.ResNo + Value);
4742 ISD::ArgFlagsTy Flags;
4743 unsigned OriginalAlignment =
4744 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sandsc93fae32008-03-21 09:14:45 +00004745
Dan Gohman1bb94262008-06-09 21:19:23 +00004746 if (Args[i].isZExt)
4747 Flags.setZExt();
4748 if (Args[i].isSExt)
4749 Flags.setSExt();
4750 if (Args[i].isInReg)
4751 Flags.setInReg();
4752 if (Args[i].isSRet)
4753 Flags.setSRet();
4754 if (Args[i].isByVal) {
4755 Flags.setByVal();
4756 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4757 const Type *ElementTy = Ty->getElementType();
4758 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4759 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4760 // For ByVal, alignment should come from FE. BE will guess if this
4761 // info is not there but there are cases it cannot get right.
4762 if (Args[i].Alignment)
4763 FrameAlign = Args[i].Alignment;
4764 Flags.setByValAlign(FrameAlign);
4765 Flags.setByValSize(FrameSize);
4766 }
4767 if (Args[i].isNest)
4768 Flags.setNest();
4769 Flags.setOrigAlign(OriginalAlignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004770
Dan Gohman1bb94262008-06-09 21:19:23 +00004771 MVT PartVT = getRegisterType(VT);
4772 unsigned NumParts = getNumRegisters(VT);
4773 SmallVector<SDOperand, 4> Parts(NumParts);
4774 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandse111ce82008-02-11 20:58:28 +00004775
Dan Gohman1bb94262008-06-09 21:19:23 +00004776 if (Args[i].isSExt)
4777 ExtendKind = ISD::SIGN_EXTEND;
4778 else if (Args[i].isZExt)
4779 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandse111ce82008-02-11 20:58:28 +00004780
Dan Gohman1bb94262008-06-09 21:19:23 +00004781 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandse111ce82008-02-11 20:58:28 +00004782
Dan Gohman1bb94262008-06-09 21:19:23 +00004783 for (unsigned i = 0; i != NumParts; ++i) {
4784 // if it isn't first piece, alignment must be 1
4785 ISD::ArgFlagsTy MyFlags = Flags;
4786 if (NumParts > 1 && i == 0)
4787 MyFlags.setSplit();
4788 else if (i != 0)
4789 MyFlags.setOrigAlign(1);
Duncan Sandse111ce82008-02-11 20:58:28 +00004790
Dan Gohman1bb94262008-06-09 21:19:23 +00004791 Ops.push_back(Parts[i]);
4792 Ops.push_back(DAG.getArgFlags(MyFlags));
4793 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004794 }
4795 }
4796
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004797 // Figure out the result value types. We start by making a list of
Dan Gohman30a71f52008-04-25 18:27:55 +00004798 // the potentially illegal return value types.
Duncan Sands92c43912008-06-06 12:08:01 +00004799 SmallVector<MVT, 4> LoweredRetTys;
4800 SmallVector<MVT, 4> RetTys;
Dan Gohman30a71f52008-04-25 18:27:55 +00004801 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004802
Dan Gohman30a71f52008-04-25 18:27:55 +00004803 // Then we translate that to a list of legal types.
4804 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands92c43912008-06-06 12:08:01 +00004805 MVT VT = RetTys[I];
4806 MVT RegisterVT = getRegisterType(VT);
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004807 unsigned NumRegs = getNumRegisters(VT);
4808 for (unsigned i = 0; i != NumRegs; ++i)
4809 LoweredRetTys.push_back(RegisterVT);
4810 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004811
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004812 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004813
4814 // Create the CALL node.
4815 SDOperand Res = DAG.getNode(ISD::CALL,
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004816 DAG.getVTList(&LoweredRetTys[0],
4817 LoweredRetTys.size()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004818 &Ops[0], Ops.size());
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004819 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004820
4821 // Gather up the call result into a single value.
4822 if (RetTy != Type::VoidTy) {
Duncan Sandsead972e2008-02-14 17:28:50 +00004823 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4824
4825 if (RetSExt)
4826 AssertOp = ISD::AssertSext;
4827 else if (RetZExt)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004828 AssertOp = ISD::AssertZext;
Duncan Sandsead972e2008-02-14 17:28:50 +00004829
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004830 SmallVector<SDOperand, 4> ReturnValues;
4831 unsigned RegNo = 0;
Dan Gohman30a71f52008-04-25 18:27:55 +00004832 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands92c43912008-06-06 12:08:01 +00004833 MVT VT = RetTys[I];
4834 MVT RegisterVT = getRegisterType(VT);
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004835 unsigned NumRegs = getNumRegisters(VT);
4836 unsigned RegNoEnd = NumRegs + RegNo;
4837 SmallVector<SDOperand, 4> Results;
4838 for (; RegNo != RegNoEnd; ++RegNo)
4839 Results.push_back(Res.getValue(RegNo));
4840 SDOperand ReturnValue =
4841 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4842 AssertOp);
4843 ReturnValues.push_back(ReturnValue);
4844 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00004845 Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4846 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004847 }
4848
4849 return std::make_pair(Res, Chain);
4850}
4851
4852SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
4853 assert(0 && "LowerOperation not implemented for this target!");
4854 abort();
4855 return SDOperand();
4856}
4857
4858SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
4859 SelectionDAG &DAG) {
4860 assert(0 && "CustomPromoteOperation not implemented for this target!");
4861 abort();
4862 return SDOperand();
4863}
4864
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004865//===----------------------------------------------------------------------===//
4866// SelectionDAGISel code
4867//===----------------------------------------------------------------------===//
4868
Duncan Sands92c43912008-06-06 12:08:01 +00004869unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner1b989192007-12-31 04:13:23 +00004870 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004871}
4872
4873void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
4874 AU.addRequired<AliasAnalysis>();
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00004875 AU.addRequired<CollectorModuleMetadata>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004876 AU.setPreservesAll();
4877}
4878
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004879bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohmancc863aa2007-08-27 16:26:13 +00004880 // Get alias analysis for load/store combining.
4881 AA = &getAnalysis<AliasAnalysis>();
4882
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004883 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00004884 if (MF.getFunction()->hasCollector())
4885 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4886 else
4887 GCI = 0;
Chris Lattner1b989192007-12-31 04:13:23 +00004888 RegInfo = &MF.getRegInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004889 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
4890
4891 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4892
Dale Johannesen85535762008-04-02 00:25:04 +00004893 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4894 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4895 // Mark landing pad.
4896 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004897
4898 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4899 SelectBasicBlock(I, MF, FuncInfo);
4900
4901 // Add function live-ins to entry block live-in set.
4902 BasicBlock *EntryBB = &Fn.getEntryBlock();
4903 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner1b989192007-12-31 04:13:23 +00004904 if (!RegInfo->livein_empty())
4905 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4906 E = RegInfo->livein_end(); I != E; ++I)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004907 BB->addLiveIn(I->first);
4908
4909#ifndef NDEBUG
4910 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4911 "Not all catch info was assigned to a landing pad!");
4912#endif
4913
4914 return true;
4915}
4916
Chris Lattner02d73b32008-04-28 07:16:35 +00004917void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004918 SDOperand Op = getValue(V);
4919 assert((Op.getOpcode() != ISD::CopyFromReg ||
4920 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
4921 "Copy from a reg to the same reg!");
Dan Gohman9fe5bd62008-03-27 19:56:19 +00004922 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004923
Dan Gohman30a71f52008-04-25 18:27:55 +00004924 RegsForValue RFV(TLI, Reg, V->getType());
4925 SDOperand Chain = DAG.getEntryNode();
4926 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4927 PendingExports.push_back(Chain);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004928}
4929
4930void SelectionDAGISel::
Dan Gohman9fe5bd62008-03-27 19:56:19 +00004931LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004932 // If this is the entry block, emit arguments.
4933 Function &F = *LLVMBB->getParent();
4934 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
4935 SDOperand OldRoot = SDL.DAG.getRoot();
Dan Gohmane0208142008-06-30 20:31:15 +00004936 SmallVector<SDOperand, 16> Args;
4937 TLI.LowerArguments(F, SDL.DAG, Args);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004938
4939 unsigned a = 0;
4940 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohman1bb94262008-06-09 21:19:23 +00004941 AI != E; ++AI) {
4942 SmallVector<MVT, 4> ValueVTs;
4943 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4944 unsigned NumValues = ValueVTs.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004945 if (!AI->use_empty()) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004946 SmallVector<MVT, 4> LegalValueVTs(NumValues);
4947 for (unsigned VI = 0; VI != NumValues; ++VI)
4948 LegalValueVTs[VI] = Args[a + VI].getValueType();
Duncan Sandsf19591c2008-06-30 10:19:09 +00004949 SDL.setValue(AI,
4950 SDL.DAG.getMergeValues(SDL.DAG.getVTList(&LegalValueVTs[0],
4951 NumValues),
4952 &Args[a], NumValues));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004953 // If this argument is live outside of the entry block, insert a copy from
4954 // whereever we got it to the vreg that other BB's will reference it as.
4955 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4956 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman9fe5bd62008-03-27 19:56:19 +00004957 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004958 }
4959 }
Dan Gohman1bb94262008-06-09 21:19:23 +00004960 a += NumValues;
4961 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004962
4963 // Finally, if the target has anything special to do, allow it to do so.
4964 // FIXME: this should insert code into the DAG!
4965 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
4966}
4967
4968static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4969 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004970 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
4971 if (isSelector(I)) {
4972 // Apply the catch info to DestBB.
4973 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4974#ifndef NDEBUG
Duncan Sands9b7e1482007-11-15 09:54:37 +00004975 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4976 FLI.CatchInfoFound.insert(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004977#endif
4978 }
4979}
4980
Arnold Schwaighofera0032722008-04-30 09:16:33 +00004981/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4982/// whether object offset >= 0.
4983static bool
4984IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDOperand Op) {
4985 if (!isa<FrameIndexSDNode>(Op)) return false;
4986
4987 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
4988 int FrameIdx = FrameIdxNode->getIndex();
4989 return MFI->isFixedObjectIndex(FrameIdx) &&
4990 MFI->getObjectOffset(FrameIdx) >= 0;
4991}
4992
4993/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
4994/// possibly be overwritten when lowering the outgoing arguments in a tail
4995/// call. Currently the implementation of this call is very conservative and
4996/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
4997/// virtual registers would be overwritten by direct lowering.
4998static bool IsPossiblyOverwrittenArgumentOfTailCall(SDOperand Op,
4999 MachineFrameInfo * MFI) {
5000 RegisterSDNode * OpReg = NULL;
5001 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
5002 (Op.getOpcode()== ISD::CopyFromReg &&
5003 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
5004 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
5005 (Op.getOpcode() == ISD::LOAD &&
5006 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
5007 (Op.getOpcode() == ISD::MERGE_VALUES &&
5008 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5009 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5010 getOperand(1))))
5011 return true;
5012 return false;
5013}
5014
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005015/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00005016/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005017static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5018 TargetLowering& TLI) {
5019 SDNode * Ret = NULL;
5020 SDOperand Terminator = DAG.getRoot();
5021
5022 // Find RET node.
5023 if (Terminator.getOpcode() == ISD::RET) {
5024 Ret = Terminator.Val;
5025 }
5026
5027 // Fix tail call attribute of CALL nodes.
5028 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
5029 BI = prior(DAG.allnodes_end()); BI != BE; --BI) {
5030 if (BI->getOpcode() == ISD::CALL) {
5031 SDOperand OpRet(Ret, 0);
5032 SDOperand OpCall(static_cast<SDNode*>(BI), 0);
5033 bool isMarkedTailCall =
5034 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5035 // If CALL node has tail call attribute set to true and the call is not
5036 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00005037 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005038 // must correctly identify tail call optimizable calls.
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005039 if (!isMarkedTailCall) continue;
5040 if (Ret==NULL ||
5041 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5042 // Not eligible. Mark CALL node as non tail call.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005043 SmallVector<SDOperand, 32> Ops;
5044 unsigned idx=0;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005045 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5046 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005047 if (idx!=3)
5048 Ops.push_back(*I);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005049 else
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005050 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5051 }
5052 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005053 } else {
5054 // Look for tail call clobbered arguments. Emit a series of
5055 // copyto/copyfrom virtual register nodes to protect them.
5056 SmallVector<SDOperand, 32> Ops;
5057 SDOperand Chain = OpCall.getOperand(0), InFlag;
5058 unsigned idx=0;
5059 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5060 E = OpCall.Val->op_end(); I != E; I++, idx++) {
5061 SDOperand Arg = *I;
5062 if (idx > 4 && (idx % 2)) {
5063 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5064 getArgFlags().isByVal();
5065 MachineFunction &MF = DAG.getMachineFunction();
5066 MachineFrameInfo *MFI = MF.getFrameInfo();
5067 if (!isByVal &&
5068 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands92c43912008-06-06 12:08:01 +00005069 MVT VT = Arg.getValueType();
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005070 unsigned VReg = MF.getRegInfo().
5071 createVirtualRegister(TLI.getRegClassFor(VT));
5072 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5073 InFlag = Chain.getValue(1);
5074 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5075 Chain = Arg.getValue(1);
5076 InFlag = Arg.getValue(2);
5077 }
5078 }
5079 Ops.push_back(Arg);
5080 }
5081 // Link in chain of CopyTo/CopyFromReg.
5082 Ops[0] = Chain;
5083 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005084 }
5085 }
5086 }
5087}
5088
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005089void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5090 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
5091 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005092 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005093
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005094 // Lower any arguments needed in this block if this is the entry block.
5095 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005096 LowerArguments(LLVMBB, SDL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005097
5098 BB = FuncInfo.MBBMap[LLVMBB];
5099 SDL.setCurrentBasicBlock(BB);
5100
5101 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
5102
Dale Johannesen85535762008-04-02 00:25:04 +00005103 if (MMI && BB->isLandingPad()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005104 // Add a label to mark the beginning of the landing pad. Deletion of the
5105 // landing pad can thus be detected via the MachineModuleInfo.
5106 unsigned LabelID = MMI->addLandingPad(BB);
Dan Gohmanfa607c92008-07-01 00:05:16 +00005107 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, DAG.getEntryNode(), LabelID));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005108
5109 // Mark exception register as live in.
5110 unsigned Reg = TLI.getExceptionAddressRegister();
5111 if (Reg) BB->addLiveIn(Reg);
5112
5113 // Mark exception selector register as live in.
5114 Reg = TLI.getExceptionSelectorRegister();
5115 if (Reg) BB->addLiveIn(Reg);
5116
5117 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5118 // function and list of typeids logically belong to the invoke (or, if you
5119 // like, the basic block containing the invoke), and need to be associated
5120 // with it in the dwarf exception handling tables. Currently however the
5121 // information is provided by an intrinsic (eh.selector) that can be moved
5122 // to unexpected places by the optimizers: if the unwind edge is critical,
5123 // then breaking it can result in the intrinsics being in the successor of
5124 // the landing pad, not the landing pad itself. This results in exceptions
5125 // not being caught because no typeids are associated with the invoke.
5126 // This may not be the only way things can go wrong, but it is the only way
5127 // we try to work around for the moment.
5128 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5129
5130 if (Br && Br->isUnconditional()) { // Critical edge?
5131 BasicBlock::iterator I, E;
5132 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
5133 if (isSelector(I))
5134 break;
5135
5136 if (I == E)
5137 // No catch info found - try to extract some from the successor.
5138 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
5139 }
5140 }
5141
5142 // Lower all of the non-terminator instructions.
5143 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5144 I != E; ++I)
5145 SDL.visit(*I);
5146
5147 // Ensure that all instructions which are used outside of their defining
5148 // blocks are available as virtual registers. Invoke is handled elsewhere.
5149 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
5150 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
5151 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
5152 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005153 SDL.CopyValueToVirtualRegister(I, VMI->second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005154 }
5155
5156 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5157 // ensure constants are generated when needed. Remember the virtual registers
5158 // that need to be added to the Machine PHI nodes as input. We cannot just
5159 // directly add them, because expansion might result in multiple MBB's for one
5160 // BB. As such, the start of the BB might correspond to a different MBB than
5161 // the end.
5162 //
5163 TerminatorInst *TI = LLVMBB->getTerminator();
5164
5165 // Emit constants only once even if used by multiple PHI nodes.
5166 std::map<Constant*, unsigned> ConstantsOut;
5167
5168 // Vector bool would be better, but vector<bool> is really slow.
5169 std::vector<unsigned char> SuccsHandled;
5170 if (TI->getNumSuccessors())
5171 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5172
5173 // Check successor nodes' PHI nodes that expect a constant to be available
5174 // from this block.
5175 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5176 BasicBlock *SuccBB = TI->getSuccessor(succ);
5177 if (!isa<PHINode>(SuccBB->begin())) continue;
5178 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
5179
5180 // If this terminator has multiple identical successors (common for
5181 // switches), only handle each succ once.
5182 unsigned SuccMBBNo = SuccMBB->getNumber();
5183 if (SuccsHandled[SuccMBBNo]) continue;
5184 SuccsHandled[SuccMBBNo] = true;
5185
5186 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5187 PHINode *PN;
5188
5189 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5190 // nodes and Machine PHI nodes, but the incoming operands have not been
5191 // emitted yet.
5192 for (BasicBlock::iterator I = SuccBB->begin();
5193 (PN = dyn_cast<PHINode>(I)); ++I) {
5194 // Ignore dead phi's.
5195 if (PN->use_empty()) continue;
5196
5197 unsigned Reg;
5198 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5199
5200 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5201 unsigned &RegOut = ConstantsOut[C];
5202 if (RegOut == 0) {
5203 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005204 SDL.CopyValueToVirtualRegister(C, RegOut);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005205 }
5206 Reg = RegOut;
5207 } else {
5208 Reg = FuncInfo.ValueMap[PHIOp];
5209 if (Reg == 0) {
5210 assert(isa<AllocaInst>(PHIOp) &&
5211 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5212 "Didn't codegen value into a register!??");
5213 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005214 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005215 }
5216 }
5217
5218 // Remember that this register needs to added to the machine PHI node as
5219 // the input for this MBB.
Duncan Sands92c43912008-06-06 12:08:01 +00005220 MVT VT = TLI.getValueType(PN->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005221 unsigned NumRegisters = TLI.getNumRegisters(VT);
5222 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5223 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5224 }
5225 }
5226 ConstantsOut.clear();
5227
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005228 // Lower the terminator after the copies are emitted.
5229 SDL.visit(*LLVMBB->getTerminator());
5230
5231 // Copy over any CaseBlock records that may now exist due to SwitchInst
5232 // lowering, as well as any jump table information.
5233 SwitchCases.clear();
5234 SwitchCases = SDL.SwitchCases;
5235 JTCases.clear();
5236 JTCases = SDL.JTCases;
5237 BitTestCases.clear();
5238 BitTestCases = SDL.BitTestCases;
5239
5240 // Make sure the root of the DAG is up-to-date.
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005241 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005242
5243 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5244 // with correct tailcall attribute so that the target can rely on the tailcall
5245 // attribute indicating whether the call is really eligible for tail call
5246 // optimization.
5247 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005248}
5249
Chris Lattner68068cc2008-06-17 06:09:18 +00005250void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5251 SmallPtrSet<SDNode*, 128> VisitedNodes;
5252 SmallVector<SDNode*, 128> Worklist;
5253
5254 Worklist.push_back(DAG.getRoot().Val);
5255
5256 APInt Mask;
5257 APInt KnownZero;
5258 APInt KnownOne;
5259
5260 while (!Worklist.empty()) {
5261 SDNode *N = Worklist.back();
5262 Worklist.pop_back();
5263
5264 // If we've already seen this node, ignore it.
5265 if (!VisitedNodes.insert(N))
5266 continue;
5267
5268 // Otherwise, add all chain operands to the worklist.
5269 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5270 if (N->getOperand(i).getValueType() == MVT::Other)
5271 Worklist.push_back(N->getOperand(i).Val);
5272
5273 // If this is a CopyToReg with a vreg dest, process it.
5274 if (N->getOpcode() != ISD::CopyToReg)
5275 continue;
5276
5277 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5278 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5279 continue;
5280
5281 // Ignore non-scalar or non-integer values.
5282 SDOperand Src = N->getOperand(2);
5283 MVT SrcVT = Src.getValueType();
5284 if (!SrcVT.isInteger() || SrcVT.isVector())
5285 continue;
5286
5287 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5288 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5289 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5290
5291 // Only install this information if it tells us something.
5292 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5293 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5294 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5295 if (DestReg >= FLI.LiveOutRegInfo.size())
5296 FLI.LiveOutRegInfo.resize(DestReg+1);
5297 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5298 LOI.NumSignBits = NumSignBits;
5299 LOI.KnownOne = NumSignBits;
5300 LOI.KnownZero = NumSignBits;
5301 }
5302 }
5303}
5304
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005305void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005306 DOUT << "Lowered selection DAG:\n";
5307 DEBUG(DAG.dump());
5308
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005309 // Run the DAG combiner in pre-legalize mode.
Evan Cheng19733c42008-07-01 17:59:20 +00005310 if (TimePassesIsEnabled) {
5311 NamedRegionTimer T("DAG Combining 1");
5312 DAG.Combine(false, *AA);
5313 } else {
5314 DAG.Combine(false, *AA);
5315 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005316
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005317 DOUT << "Optimized lowered selection DAG:\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005318 DEBUG(DAG.dump());
5319
5320 // Second step, hack on the DAG until it only uses operations and types that
5321 // the target supports.
Chris Lattner8a258202007-10-15 06:10:22 +00005322#if 0 // Enable this some day.
5323 DAG.LegalizeTypes();
5324 // Someday even later, enable a dag combine pass here.
5325#endif
Evan Cheng19733c42008-07-01 17:59:20 +00005326 if (TimePassesIsEnabled) {
5327 NamedRegionTimer T("DAG Legalization");
5328 DAG.Legalize();
5329 } else {
5330 DAG.Legalize();
5331 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005332
5333 DOUT << "Legalized selection DAG:\n";
5334 DEBUG(DAG.dump());
5335
5336 // Run the DAG combiner in post-legalize mode.
Evan Cheng19733c42008-07-01 17:59:20 +00005337 if (TimePassesIsEnabled) {
5338 NamedRegionTimer T("DAG Combining 2");
5339 DAG.Combine(true, *AA);
5340 } else {
5341 DAG.Combine(true, *AA);
5342 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005343
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005344 DOUT << "Optimized legalized selection DAG:\n";
5345 DEBUG(DAG.dump());
5346
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005347 if (ViewISelDAGs) DAG.viewGraph();
Chris Lattner68068cc2008-06-17 06:09:18 +00005348
5349 if (EnableValueProp) // FIXME: Only do this if !fast.
5350 ComputeLiveOutVRegInfo(DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005351
5352 // Third, instruction select all of the operations to machine code, adding the
5353 // code to the MachineBasicBlock.
Evan Cheng19733c42008-07-01 17:59:20 +00005354 if (TimePassesIsEnabled) {
5355 NamedRegionTimer T("Instruction Selection");
5356 InstructionSelect(DAG);
5357 } else {
5358 InstructionSelect(DAG);
5359 }
Evan Cheng34fd4f32008-06-30 20:45:06 +00005360
5361 // Emit machine code to BB. This can change 'BB' to the last block being
5362 // inserted into.
Evan Cheng19733c42008-07-01 17:59:20 +00005363 if (TimePassesIsEnabled) {
5364 NamedRegionTimer T("Instruction Scheduling");
5365 ScheduleAndEmitDAG(DAG);
5366 } else {
5367 ScheduleAndEmitDAG(DAG);
5368 }
Evan Cheng34fd4f32008-06-30 20:45:06 +00005369
5370 // Perform target specific isel post processing.
Evan Cheng19733c42008-07-01 17:59:20 +00005371 if (TimePassesIsEnabled) {
5372 NamedRegionTimer T("Instruction Selection Post Processing");
5373 InstructionSelectPostProcessing(DAG);
5374 } else {
5375 InstructionSelectPostProcessing(DAG);
5376 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005377
5378 DOUT << "Selected machine code:\n";
5379 DEBUG(BB->dump());
5380}
5381
5382void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5383 FunctionLoweringInfo &FuncInfo) {
5384 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5385 {
Chris Lattner68068cc2008-06-17 06:09:18 +00005386 SelectionDAG DAG(TLI, MF, FuncInfo,
5387 getAnalysisToUpdate<MachineModuleInfo>());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005388 CurDAG = &DAG;
5389
5390 // First step, lower LLVM code to some DAG. This DAG may use operations and
5391 // types that are not supported by the target.
5392 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5393
5394 // Second step, emit the lowered DAG as machine code.
5395 CodeGenAndEmitDAG(DAG);
5396 }
5397
5398 DOUT << "Total amount of phi nodes to update: "
5399 << PHINodesToUpdate.size() << "\n";
5400 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5401 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5402 << ", " << PHINodesToUpdate[i].second << ")\n";);
5403
5404 // Next, now that we know what the last MBB the LLVM BB expanded is, update
5405 // PHI nodes in successors.
5406 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
5407 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5408 MachineInstr *PHI = PHINodesToUpdate[i].first;
5409 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5410 "This is not a machine PHI node that we are updating!");
Chris Lattnere44906f2007-12-30 00:57:42 +00005411 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5412 false));
5413 PHI->addOperand(MachineOperand::CreateMBB(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005414 }
5415 return;
5416 }
5417
5418 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5419 // Lower header first, if it wasn't already lowered
5420 if (!BitTestCases[i].Emitted) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005421 SelectionDAG HSDAG(TLI, MF, FuncInfo,
5422 getAnalysisToUpdate<MachineModuleInfo>());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005423 CurDAG = &HSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005424 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005425 // Set the current basic block to the mbb we wish to insert the code into
5426 BB = BitTestCases[i].Parent;
5427 HSDL.setCurrentBasicBlock(BB);
5428 // Emit the code
5429 HSDL.visitBitTestHeader(BitTestCases[i]);
5430 HSDAG.setRoot(HSDL.getRoot());
5431 CodeGenAndEmitDAG(HSDAG);
5432 }
5433
5434 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005435 SelectionDAG BSDAG(TLI, MF, FuncInfo,
5436 getAnalysisToUpdate<MachineModuleInfo>());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005437 CurDAG = &BSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005438 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005439 // Set the current basic block to the mbb we wish to insert the code into
5440 BB = BitTestCases[i].Cases[j].ThisBB;
5441 BSDL.setCurrentBasicBlock(BB);
5442 // Emit the code
5443 if (j+1 != ej)
5444 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5445 BitTestCases[i].Reg,
5446 BitTestCases[i].Cases[j]);
5447 else
5448 BSDL.visitBitTestCase(BitTestCases[i].Default,
5449 BitTestCases[i].Reg,
5450 BitTestCases[i].Cases[j]);
5451
5452
5453 BSDAG.setRoot(BSDL.getRoot());
5454 CodeGenAndEmitDAG(BSDAG);
5455 }
5456
5457 // Update PHI Nodes
5458 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5459 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5460 MachineBasicBlock *PHIBB = PHI->getParent();
5461 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5462 "This is not a machine PHI node that we are updating!");
5463 // This is "default" BB. We have two jumps to it. From "header" BB and
5464 // from last "case" BB.
5465 if (PHIBB == BitTestCases[i].Default) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005466 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5467 false));
5468 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5469 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5470 false));
5471 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5472 back().ThisBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005473 }
5474 // One of "cases" BB.
5475 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5476 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5477 if (cBB->succ_end() !=
5478 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005479 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5480 false));
5481 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005482 }
5483 }
5484 }
5485 }
5486
5487 // If the JumpTable record is filled in, then we need to emit a jump table.
5488 // Updating the PHI nodes is tricky in this case, since we need to determine
5489 // whether the PHI is a successor of the range check MBB or the jump table MBB
5490 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5491 // Lower header first, if it wasn't already lowered
5492 if (!JTCases[i].first.Emitted) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005493 SelectionDAG HSDAG(TLI, MF, FuncInfo,
5494 getAnalysisToUpdate<MachineModuleInfo>());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005495 CurDAG = &HSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005496 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005497 // Set the current basic block to the mbb we wish to insert the code into
5498 BB = JTCases[i].first.HeaderBB;
5499 HSDL.setCurrentBasicBlock(BB);
5500 // Emit the code
5501 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5502 HSDAG.setRoot(HSDL.getRoot());
5503 CodeGenAndEmitDAG(HSDAG);
5504 }
5505
Chris Lattner68068cc2008-06-17 06:09:18 +00005506 SelectionDAG JSDAG(TLI, MF, FuncInfo,
5507 getAnalysisToUpdate<MachineModuleInfo>());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005508 CurDAG = &JSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005509 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005510 // Set the current basic block to the mbb we wish to insert the code into
5511 BB = JTCases[i].second.MBB;
5512 JSDL.setCurrentBasicBlock(BB);
5513 // Emit the code
5514 JSDL.visitJumpTable(JTCases[i].second);
5515 JSDAG.setRoot(JSDL.getRoot());
5516 CodeGenAndEmitDAG(JSDAG);
5517
5518 // Update PHI Nodes
5519 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5520 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5521 MachineBasicBlock *PHIBB = PHI->getParent();
5522 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5523 "This is not a machine PHI node that we are updating!");
5524 // "default" BB. We can go there only from header BB.
5525 if (PHIBB == JTCases[i].second.Default) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005526 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5527 false));
5528 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005529 }
5530 // JT BB. Just iterate over successors here
5531 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005532 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5533 false));
5534 PHI->addOperand(MachineOperand::CreateMBB(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005535 }
5536 }
5537 }
5538
5539 // If the switch block involved a branch to one of the actual successors, we
5540 // need to update PHI nodes in that block.
5541 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5542 MachineInstr *PHI = PHINodesToUpdate[i].first;
5543 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5544 "This is not a machine PHI node that we are updating!");
5545 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005546 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5547 false));
5548 PHI->addOperand(MachineOperand::CreateMBB(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005549 }
5550 }
5551
5552 // If we generated any switch lowering information, build and codegen any
5553 // additional DAGs necessary.
5554 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005555 SelectionDAG SDAG(TLI, MF, FuncInfo,
5556 getAnalysisToUpdate<MachineModuleInfo>());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005557 CurDAG = &SDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005558 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005559
5560 // Set the current basic block to the mbb we wish to insert the code into
5561 BB = SwitchCases[i].ThisBB;
5562 SDL.setCurrentBasicBlock(BB);
5563
5564 // Emit the code
5565 SDL.visitSwitchCase(SwitchCases[i]);
5566 SDAG.setRoot(SDL.getRoot());
5567 CodeGenAndEmitDAG(SDAG);
5568
5569 // Handle any PHI nodes in successors of this chunk, as if we were coming
5570 // from the original BB before switch expansion. Note that PHI nodes can
5571 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5572 // handle them the right number of times.
5573 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
5574 for (MachineBasicBlock::iterator Phi = BB->begin();
5575 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5576 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5577 for (unsigned pn = 0; ; ++pn) {
5578 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5579 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005580 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5581 second, false));
5582 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005583 break;
5584 }
5585 }
5586 }
5587
5588 // Don't process RHS if same block as LHS.
5589 if (BB == SwitchCases[i].FalseBB)
5590 SwitchCases[i].FalseBB = 0;
5591
5592 // If we haven't handled the RHS, do so now. Otherwise, we're done.
5593 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
5594 SwitchCases[i].FalseBB = 0;
5595 }
5596 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
5597 }
5598}
5599
5600
5601//===----------------------------------------------------------------------===//
5602/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
5603/// target node in the graph.
5604void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
5605 if (ViewSchedDAGs) DAG.viewGraph();
5606
5607 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
5608
5609 if (!Ctor) {
5610 Ctor = ISHeuristic;
5611 RegisterScheduler::setDefault(Ctor);
5612 }
5613
5614 ScheduleDAG *SL = Ctor(this, &DAG, BB);
5615 BB = SL->Run();
Dan Gohman134c5b62007-08-28 20:32:58 +00005616
5617 if (ViewSUnitDAGs) SL->viewGraph();
5618
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005619 delete SL;
5620}
5621
5622
5623HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5624 return new HazardRecognizer();
5625}
5626
5627//===----------------------------------------------------------------------===//
5628// Helper functions used by the generated instruction selector.
5629//===----------------------------------------------------------------------===//
5630// Calls to these methods are generated by tblgen.
5631
5632/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5633/// the dag combiner simplified the 255, we still want to match. RHS is the
5634/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5635/// specified in the .td file (e.g. 255).
5636bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmand6098272007-07-24 23:00:27 +00005637 int64_t DesiredMaskS) const {
Dan Gohman07961cd2008-02-25 21:11:39 +00005638 const APInt &ActualMask = RHS->getAPIntValue();
5639 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005640
5641 // If the actual mask exactly matches, success!
5642 if (ActualMask == DesiredMask)
5643 return true;
5644
5645 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman07961cd2008-02-25 21:11:39 +00005646 if (ActualMask.intersects(~DesiredMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005647 return false;
5648
5649 // Otherwise, the DAG Combiner may have proven that the value coming in is
5650 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman07961cd2008-02-25 21:11:39 +00005651 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005652 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
5653 return true;
5654
5655 // TODO: check to see if missing bits are just not demanded.
5656
5657 // Otherwise, this pattern doesn't match.
5658 return false;
5659}
5660
5661/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5662/// the dag combiner simplified the 255, we still want to match. RHS is the
5663/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5664/// specified in the .td file (e.g. 255).
5665bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohman07961cd2008-02-25 21:11:39 +00005666 int64_t DesiredMaskS) const {
5667 const APInt &ActualMask = RHS->getAPIntValue();
5668 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005669
5670 // If the actual mask exactly matches, success!
5671 if (ActualMask == DesiredMask)
5672 return true;
5673
5674 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman07961cd2008-02-25 21:11:39 +00005675 if (ActualMask.intersects(~DesiredMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005676 return false;
5677
5678 // Otherwise, the DAG Combiner may have proven that the value coming in is
5679 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman07961cd2008-02-25 21:11:39 +00005680 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005681
Dan Gohman07961cd2008-02-25 21:11:39 +00005682 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005683 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
5684
5685 // If all the missing bits in the or are already known to be set, match!
5686 if ((NeededMask & KnownOne) == NeededMask)
5687 return true;
5688
5689 // TODO: check to see if missing bits are just not demanded.
5690
5691 // Otherwise, this pattern doesn't match.
5692 return false;
5693}
5694
5695
5696/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5697/// by tblgen. Others should not call it.
5698void SelectionDAGISel::
5699SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
5700 std::vector<SDOperand> InOps;
5701 std::swap(InOps, Ops);
5702
5703 Ops.push_back(InOps[0]); // input chain.
5704 Ops.push_back(InOps[1]); // input asm string.
5705
5706 unsigned i = 2, e = InOps.size();
5707 if (InOps[e-1].getValueType() == MVT::Flag)
5708 --e; // Don't process a flag operand if it is here.
5709
5710 while (i != e) {
5711 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5712 if ((Flags & 7) != 4 /*MEM*/) {
5713 // Just skip over this operand, copying the operands verbatim.
5714 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5715 i += (Flags >> 3) + 1;
5716 } else {
5717 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5718 // Otherwise, this is a memory operand. Ask the target to select it.
5719 std::vector<SDOperand> SelOps;
5720 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
5721 cerr << "Could not match memory address. Inline asm failure!\n";
5722 exit(1);
5723 }
5724
5725 // Add this to the output node.
Duncan Sands92c43912008-06-06 12:08:01 +00005726 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005727 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
5728 IntPtrTy));
5729 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5730 i += 2;
5731 }
5732 }
5733
5734 // Add the flag input back if present.
5735 if (e != InOps.size())
5736 Ops.push_back(InOps.back());
5737}
5738
5739char SelectionDAGISel::ID = 0;