blob: ef90400023c5117990af51f80952129678e93830 [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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner1b989192007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineJumpTableInfo.h"
34#include "llvm/CodeGen/MachineModuleInfo.h"
35#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/CodeGen/SchedulerRegistry.h"
37#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000038#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039#include "llvm/Target/TargetData.h"
40#include "llvm/Target/TargetFrameInfo.h"
41#include "llvm/Target/TargetInstrInfo.h"
42#include "llvm/Target/TargetLowering.h"
43#include "llvm/Target/TargetMachine.h"
44#include "llvm/Target/TargetOptions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045#include "llvm/Support/Compiler.h"
Evan Cheng34fd4f32008-06-30 20:45:06 +000046#include "llvm/Support/Debug.h"
47#include "llvm/Support/MathExtras.h"
48#include "llvm/Support/Timer.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049#include <algorithm>
50using namespace llvm;
51
Chris Lattner68068cc2008-06-17 06:09:18 +000052static cl::opt<bool>
Chris Lattnerb29a6a42008-07-10 23:37:50 +000053EnableValueProp("enable-value-prop", cl::Hidden);
54static cl::opt<bool>
Duncan Sands31ddf4c2008-07-17 17:06:03 +000055EnableLegalizeTypes("enable-legalize-types", cl::Hidden);
Chris Lattner68068cc2008-06-17 06:09:18 +000056
57
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058#ifndef NDEBUG
59static cl::opt<bool>
Dan Gohmanb552df72008-07-21 20:00:07 +000060ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
61 cl::desc("Pop up a window to show dags before the first "
62 "dag combine pass"));
63static cl::opt<bool>
64ViewLegalizeTypesDAGs("view-legalize-types-dags", cl::Hidden,
65 cl::desc("Pop up a window to show dags before legalize types"));
66static cl::opt<bool>
67ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
68 cl::desc("Pop up a window to show dags before legalize"));
69static cl::opt<bool>
70ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
71 cl::desc("Pop up a window to show dags before the second "
72 "dag combine pass"));
73static cl::opt<bool>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074ViewISelDAGs("view-isel-dags", cl::Hidden,
75 cl::desc("Pop up a window to show isel dags as they are selected"));
76static cl::opt<bool>
77ViewSchedDAGs("view-sched-dags", cl::Hidden,
78 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman134c5b62007-08-28 20:32:58 +000079static cl::opt<bool>
80ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner2f69f132008-01-25 17:24:52 +000081 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082#else
Dan Gohmanb552df72008-07-21 20:00:07 +000083static const bool ViewDAGCombine1 = false,
84 ViewLegalizeTypesDAGs = false, ViewLegalizeDAGs = false,
85 ViewDAGCombine2 = false,
86 ViewISelDAGs = false, ViewSchedDAGs = false,
87 ViewSUnitDAGs = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000088#endif
89
90//===---------------------------------------------------------------------===//
91///
92/// RegisterScheduler class - Track the registration of instruction schedulers.
93///
94//===---------------------------------------------------------------------===//
95MachinePassRegistry RegisterScheduler::Registry;
96
97//===---------------------------------------------------------------------===//
98///
99/// ISHeuristic command line option for instruction schedulers.
100///
101//===---------------------------------------------------------------------===//
Dan Gohman089efff2008-05-13 00:00:25 +0000102static cl::opt<RegisterScheduler::FunctionPassCtor, false,
103 RegisterPassParser<RegisterScheduler> >
104ISHeuristic("pre-RA-sched",
105 cl::init(&createDefaultScheduler),
106 cl::desc("Instruction schedulers available (before register"
107 " allocation):"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108
Dan Gohman089efff2008-05-13 00:00:25 +0000109static RegisterScheduler
110defaultListDAGScheduler("default", " Best scheduler for the target",
111 createDefaultScheduler);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112
Evan Chengbcd66442008-02-26 02:33:44 +0000113namespace { struct SDISelAsmOperandInfo; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000114
Dan Gohman012bf582008-06-07 02:02:36 +0000115/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
116/// insertvalue or extractvalue indices that identify a member, return
117/// the linearized index of the start of the member.
118///
119static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
120 const unsigned *Indices,
121 const unsigned *IndicesEnd,
122 unsigned CurIndex = 0) {
123 // Base case: We're done.
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000124 if (Indices && Indices == IndicesEnd)
Dan Gohman012bf582008-06-07 02:02:36 +0000125 return CurIndex;
126
Chris Lattner5f2006e2008-04-27 23:48:12 +0000127 // Given a struct type, recursively traverse the elements.
128 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000129 for (StructType::element_iterator EB = STy->element_begin(),
130 EI = EB,
Dan Gohman012bf582008-06-07 02:02:36 +0000131 EE = STy->element_end();
132 EI != EE; ++EI) {
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000133 if (Indices && *Indices == unsigned(EI - EB))
134 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
135 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
Dan Gohman012bf582008-06-07 02:02:36 +0000136 }
137 }
138 // Given an array type, recursively traverse the elements.
139 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
140 const Type *EltTy = ATy->getElementType();
141 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000142 if (Indices && *Indices == i)
143 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
144 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
Dan Gohman012bf582008-06-07 02:02:36 +0000145 }
146 }
147 // We haven't found the type we're looking for, so keep searching.
Dan Gohmanb23f4f12008-06-20 00:53:00 +0000148 return CurIndex + 1;
Dan Gohman012bf582008-06-07 02:02:36 +0000149}
150
151/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
152/// MVTs that represent all the individual underlying
153/// non-aggregate types that comprise it.
154///
155/// If Offsets is non-null, it points to a vector to be filled in
156/// with the in-memory offsets of each of the individual values.
157///
158static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
159 SmallVectorImpl<MVT> &ValueVTs,
160 SmallVectorImpl<uint64_t> *Offsets = 0,
161 uint64_t StartingOffset = 0) {
162 // Given a struct type, recursively traverse the elements.
163 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
164 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
165 for (StructType::element_iterator EB = STy->element_begin(),
166 EI = EB,
167 EE = STy->element_end();
168 EI != EE; ++EI)
169 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
170 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattner5f2006e2008-04-27 23:48:12 +0000171 return;
Dan Gohman30a71f52008-04-25 18:27:55 +0000172 }
Chris Lattner5f2006e2008-04-27 23:48:12 +0000173 // Given an array type, recursively traverse the elements.
174 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
175 const Type *EltTy = ATy->getElementType();
Dan Gohman012bf582008-06-07 02:02:36 +0000176 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattner5f2006e2008-04-27 23:48:12 +0000177 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman012bf582008-06-07 02:02:36 +0000178 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
179 StartingOffset + i * EltSize);
Chris Lattner5f2006e2008-04-27 23:48:12 +0000180 return;
181 }
Duncan Sands92c43912008-06-06 12:08:01 +0000182 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattner5f2006e2008-04-27 23:48:12 +0000183 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman012bf582008-06-07 02:02:36 +0000184 if (Offsets)
185 Offsets->push_back(StartingOffset);
Chris Lattner5f2006e2008-04-27 23:48:12 +0000186}
Dan Gohman30a71f52008-04-25 18:27:55 +0000187
Chris Lattner5f2006e2008-04-27 23:48:12 +0000188namespace {
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000189 /// RegsForValue - This struct represents the registers (physical or virtual)
190 /// that a particular set of values is assigned, and the type information about
191 /// the value. The most common situation is to represent one value at a time,
192 /// but struct or array values are handled element-wise as multiple values.
193 /// The splitting of aggregates is performed recursively, so that we never
194 /// have aggregate-typed registers. The values at this point do not necessarily
195 /// have legal types, so each value may require one or more registers of some
196 /// legal type.
197 ///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000198 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman30a71f52008-04-25 18:27:55 +0000199 /// TLI - The TargetLowering object.
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000200 ///
Dan Gohman30a71f52008-04-25 18:27:55 +0000201 const TargetLowering *TLI;
202
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000203 /// ValueVTs - The value types of the values, which may not be legal, and
204 /// may need be promoted or synthesized from one or more registers.
205 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000206 SmallVector<MVT, 4> ValueVTs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000208 /// RegVTs - The value types of the registers. This is the same size as
209 /// ValueVTs and it records, for each value, what the type of the assigned
210 /// register or registers are. (Individual values are never synthesized
211 /// from more than one type of register.)
212 ///
213 /// With virtual registers, the contents of RegVTs is redundant with TLI's
214 /// getRegisterType member function, however when with physical registers
215 /// it is necessary to have a separate record of the types.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000217 SmallVector<MVT, 4> RegVTs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000218
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000219 /// Regs - This list holds the registers assigned to the values.
220 /// Each legal or promoted value requires one register, and each
221 /// expanded value requires multiple registers.
222 ///
223 SmallVector<unsigned, 4> Regs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224
Dan Gohman30a71f52008-04-25 18:27:55 +0000225 RegsForValue() : TLI(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226
Dan Gohman30a71f52008-04-25 18:27:55 +0000227 RegsForValue(const TargetLowering &tli,
Chris Lattner622811e2008-04-28 06:44:42 +0000228 const SmallVector<unsigned, 4> &regs,
Duncan Sands92c43912008-06-06 12:08:01 +0000229 MVT regvt, MVT valuevt)
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000230 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman30a71f52008-04-25 18:27:55 +0000231 RegsForValue(const TargetLowering &tli,
Chris Lattner622811e2008-04-28 06:44:42 +0000232 const SmallVector<unsigned, 4> &regs,
Duncan Sands92c43912008-06-06 12:08:01 +0000233 const SmallVector<MVT, 4> &regvts,
234 const SmallVector<MVT, 4> &valuevts)
Dan Gohman65b2f4c2008-04-28 18:10:39 +0000235 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman30a71f52008-04-25 18:27:55 +0000236 RegsForValue(const TargetLowering &tli,
237 unsigned Reg, const Type *Ty) : TLI(&tli) {
238 ComputeValueVTs(tli, Ty, ValueVTs);
239
Dan Gohman3a163d22008-04-28 17:42:03 +0000240 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands92c43912008-06-06 12:08:01 +0000241 MVT ValueVT = ValueVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +0000242 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands92c43912008-06-06 12:08:01 +0000243 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman30a71f52008-04-25 18:27:55 +0000244 for (unsigned i = 0; i != NumRegs; ++i)
245 Regs.push_back(Reg + i);
246 RegVTs.push_back(RegisterVT);
247 Reg += NumRegs;
248 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 }
250
Chris Lattner08bbcb82008-04-29 04:29:54 +0000251 /// append - Add the specified values to this one.
252 void append(const RegsForValue &RHS) {
253 TLI = RHS.TLI;
254 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
255 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
256 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
257 }
258
259
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman30a71f52008-04-25 18:27:55 +0000261 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262 /// Chain/Flag as the input and updates them for the output Chain/Flag.
263 /// If the Flag pointer is NULL, no flag is used.
Dan Gohman8181bd12008-07-27 21:46:04 +0000264 SDValue getCopyFromRegs(SelectionDAG &DAG,
265 SDValue &Chain, SDValue *Flag) const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266
267 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
268 /// specified value into the registers specified by this object. This uses
269 /// Chain/Flag as the input and updates them for the output Chain/Flag.
270 /// If the Flag pointer is NULL, no flag is used.
Dan Gohman8181bd12008-07-27 21:46:04 +0000271 void getCopyToRegs(SDValue Val, SelectionDAG &DAG,
272 SDValue &Chain, SDValue *Flag) const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000273
274 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
275 /// operand list. This adds the code marker and includes the number of
276 /// values added into it.
277 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +0000278 std::vector<SDValue> &Ops) const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279 };
280}
281
282namespace llvm {
283 //===--------------------------------------------------------------------===//
284 /// createDefaultScheduler - This creates an instruction scheduler appropriate
285 /// for the target.
286 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
287 SelectionDAG *DAG,
Evan Cheng9b77cae2008-07-01 18:05:03 +0000288 MachineBasicBlock *BB,
289 bool Fast) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000290 TargetLowering &TLI = IS->getTargetLowering();
291
292 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
Evan Cheng9b77cae2008-07-01 18:05:03 +0000293 return createTDListDAGScheduler(IS, DAG, BB, Fast);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294 } else {
295 assert(TLI.getSchedulingPreference() ==
296 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng9b77cae2008-07-01 18:05:03 +0000297 return createBURRListDAGScheduler(IS, DAG, BB, Fast);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000298 }
299 }
300
301
302 //===--------------------------------------------------------------------===//
303 /// FunctionLoweringInfo - This contains information that is global to a
304 /// function that is used when lowering a region of the function.
305 class FunctionLoweringInfo {
306 public:
307 TargetLowering &TLI;
308 Function &Fn;
309 MachineFunction &MF;
Chris Lattner1b989192007-12-31 04:13:23 +0000310 MachineRegisterInfo &RegInfo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311
312 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
313
314 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
315 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
316
317 /// ValueMap - Since we emit code for the function a basic block at a time,
318 /// we must remember which virtual registers hold the values for
319 /// cross-basic-block values.
320 DenseMap<const Value*, unsigned> ValueMap;
321
322 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
323 /// the entry block. This allows the allocas to be efficiently referenced
324 /// anywhere in the function.
325 std::map<const AllocaInst*, int> StaticAllocaMap;
326
327#ifndef NDEBUG
328 SmallSet<Instruction*, 8> CatchInfoLost;
329 SmallSet<Instruction*, 8> CatchInfoFound;
330#endif
331
Duncan Sands92c43912008-06-06 12:08:01 +0000332 unsigned MakeReg(MVT VT) {
Chris Lattner1b989192007-12-31 04:13:23 +0000333 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000334 }
335
336 /// isExportedInst - Return true if the specified value is an instruction
337 /// exported from its block.
338 bool isExportedInst(const Value *V) {
339 return ValueMap.count(V);
340 }
341
342 unsigned CreateRegForValue(const Value *V);
343
344 unsigned InitializeRegForValue(const Value *V) {
345 unsigned &R = ValueMap[V];
346 assert(R == 0 && "Already initialized this value register!");
347 return R = CreateRegForValue(V);
348 }
Chris Lattner68068cc2008-06-17 06:09:18 +0000349
350 struct LiveOutInfo {
351 unsigned NumSignBits;
352 APInt KnownOne, KnownZero;
353 LiveOutInfo() : NumSignBits(0) {}
354 };
355
356 /// LiveOutRegInfo - Information about live out vregs, indexed by their
357 /// register number offset by 'FirstVirtualRegister'.
358 std::vector<LiveOutInfo> LiveOutRegInfo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359 };
360}
361
362/// isSelector - Return true if this instruction is a call to the
363/// eh.selector intrinsic.
364static bool isSelector(Instruction *I) {
365 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov94c46a02007-09-07 11:39:35 +0000366 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
367 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 return false;
369}
370
371/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
372/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000373/// switch or atomic instruction, which may expand to multiple basic blocks.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
375 if (isa<PHINode>(I)) return true;
376 BasicBlock *BB = I->getParent();
377 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
378 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
379 // FIXME: Remove switchinst special case.
380 isa<SwitchInst>(*UI))
381 return true;
382 return false;
383}
384
385/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
386/// entry block, return true. This includes arguments used by switches, since
387/// the switch may expand into multiple basic blocks.
388static bool isOnlyUsedInEntryBlock(Argument *A) {
389 BasicBlock *Entry = A->getParent()->begin();
390 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
391 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
392 return false; // Use not in entry block.
393 return true;
394}
395
396FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
397 Function &fn, MachineFunction &mf)
Chris Lattner1b989192007-12-31 04:13:23 +0000398 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399
400 // Create a vreg for each argument register that is not dead and is used
401 // outside of the entry block for the function.
402 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
403 AI != E; ++AI)
404 if (!isOnlyUsedInEntryBlock(AI))
405 InitializeRegForValue(AI);
406
407 // Initialize the mapping of values to registers. This is only set up for
408 // instruction values that are used outside of the block that defines
409 // them.
410 Function::iterator BB = Fn.begin(), EB = Fn.end();
411 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
412 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
413 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
414 const Type *Ty = AI->getAllocatedType();
Duncan Sandsf99fdc62007-11-01 20:53:16 +0000415 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 unsigned Align =
417 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
418 AI->getAlignment());
419
420 TySize *= CUI->getZExtValue(); // Get total allocated size.
421 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
422 StaticAllocaMap[AI] =
423 MF.getFrameInfo()->CreateStackObject(TySize, Align);
424 }
425
426 for (; BB != EB; ++BB)
427 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
428 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
429 if (!isa<AllocaInst>(I) ||
430 !StaticAllocaMap.count(cast<AllocaInst>(I)))
431 InitializeRegForValue(I);
432
433 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
434 // also creates the initial PHI MachineInstrs, though none of the input
435 // operands are populated.
436 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Dan Gohmaned825d12008-07-07 23:02:41 +0000437 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000438 MBBMap[BB] = MBB;
Dan Gohmaned825d12008-07-07 23:02:41 +0000439 MF.push_back(MBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440
441 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
442 // appropriate.
443 PHINode *PN;
444 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
445 if (PN->use_empty()) continue;
446
Duncan Sands92c43912008-06-06 12:08:01 +0000447 MVT VT = TLI.getValueType(PN->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448 unsigned NumRegisters = TLI.getNumRegisters(VT);
449 unsigned PHIReg = ValueMap[PN];
450 assert(PHIReg && "PHI node does not have an assigned virtual register!");
451 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
452 for (unsigned i = 0; i != NumRegisters; ++i)
453 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
454 }
455 }
456}
457
458/// CreateRegForValue - Allocate the appropriate number of virtual registers of
459/// the correctly promoted or expanded types. Assign these registers
460/// consecutive vreg numbers and return the first assigned number.
Dan Gohmanb9018812008-04-28 18:19:43 +0000461///
462/// In the case that the given value has struct or array type, this function
463/// will assign registers for each member or element.
464///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands92c43912008-06-06 12:08:01 +0000466 SmallVector<MVT, 4> ValueVTs;
Chris Lattner622811e2008-04-28 06:44:42 +0000467 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468
Dan Gohman30a71f52008-04-25 18:27:55 +0000469 unsigned FirstReg = 0;
Dan Gohman3a163d22008-04-28 17:42:03 +0000470 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands92c43912008-06-06 12:08:01 +0000471 MVT ValueVT = ValueVTs[Value];
472 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473
Chris Lattner622811e2008-04-28 06:44:42 +0000474 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman30a71f52008-04-25 18:27:55 +0000475 for (unsigned i = 0; i != NumRegs; ++i) {
476 unsigned R = MakeReg(RegisterVT);
477 if (!FirstReg) FirstReg = R;
478 }
479 }
480 return FirstReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481}
482
483//===----------------------------------------------------------------------===//
484/// SelectionDAGLowering - This is the common target-independent lowering
485/// implementation that is parameterized by a TargetLowering object.
486/// Also, targets can overload any lowering method.
487///
488namespace llvm {
489class SelectionDAGLowering {
490 MachineBasicBlock *CurMBB;
491
Dan Gohman8181bd12008-07-27 21:46:04 +0000492 DenseMap<const Value*, SDValue> NodeMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493
494 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
495 /// them up and then emit token factor nodes when possible. This allows us to
496 /// get simple disambiguation between loads without worrying about alias
497 /// analysis.
Dan Gohman8181bd12008-07-27 21:46:04 +0000498 SmallVector<SDValue, 8> PendingLoads;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000500 /// PendingExports - CopyToReg nodes that copy values to virtual registers
501 /// for export to other blocks need to be emitted before any terminator
502 /// instruction, but they have no other ordering requirements. We bunch them
503 /// up and the emit a single tokenfactor for them just before terminator
504 /// instructions.
Dan Gohman8181bd12008-07-27 21:46:04 +0000505 std::vector<SDValue> PendingExports;
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000506
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507 /// Case - A struct to record the Value for a switch case, and the
508 /// case's target basic block.
509 struct Case {
510 Constant* Low;
511 Constant* High;
512 MachineBasicBlock* BB;
513
514 Case() : Low(0), High(0), BB(0) { }
515 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
516 Low(low), High(high), BB(bb) { }
517 uint64_t size() const {
518 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
519 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
520 return (rHigh - rLow + 1ULL);
521 }
522 };
523
524 struct CaseBits {
525 uint64_t Mask;
526 MachineBasicBlock* BB;
527 unsigned Bits;
528
529 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
530 Mask(mask), BB(bb), Bits(bits) { }
531 };
532
533 typedef std::vector<Case> CaseVector;
534 typedef std::vector<CaseBits> CaseBitsVector;
535 typedef CaseVector::iterator CaseItr;
536 typedef std::pair<CaseItr, CaseItr> CaseRange;
537
538 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
539 /// of conditional branches.
540 struct CaseRec {
541 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
542 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
543
544 /// CaseBB - The MBB in which to emit the compare and branch
545 MachineBasicBlock *CaseBB;
546 /// LT, GE - If nonzero, we know the current case value must be less-than or
547 /// greater-than-or-equal-to these Constants.
548 Constant *LT;
549 Constant *GE;
550 /// Range - A pair of iterators representing the range of case values to be
551 /// processed at this point in the binary search tree.
552 CaseRange Range;
553 };
554
555 typedef std::vector<CaseRec> CaseRecVector;
556
557 /// The comparison function for sorting the switch case values in the vector.
558 /// WARNING: Case ranges should be disjoint!
559 struct CaseCmp {
560 bool operator () (const Case& C1, const Case& C2) {
561 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
562 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
563 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
564 return CI1->getValue().slt(CI2->getValue());
565 }
566 };
567
568 struct CaseBitsCmp {
569 bool operator () (const CaseBits& C1, const CaseBits& C2) {
570 return C1.Bits > C2.Bits;
571 }
572 };
573
574 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
575
576public:
577 // TLI - This is information that describes the available target features we
578 // need for lowering. This indicates when operations are unavailable,
579 // implemented with a libcall, etc.
580 TargetLowering &TLI;
581 SelectionDAG &DAG;
582 const TargetData *TD;
Dan Gohmancc863aa2007-08-27 16:26:13 +0000583 AliasAnalysis &AA;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584
585 /// SwitchCases - Vector of CaseBlock structures used to communicate
586 /// SwitchInst code generation information.
587 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
588 /// JTCases - Vector of JumpTable structures used to communicate
589 /// SwitchInst code generation information.
590 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
591 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
592
593 /// FuncInfo - Information about the function as a whole.
594 ///
595 FunctionLoweringInfo &FuncInfo;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000596
597 /// GCI - Garbage collection metadata for the function.
598 CollectorMetadata *GCI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599
600 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohmancc863aa2007-08-27 16:26:13 +0000601 AliasAnalysis &aa,
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000602 FunctionLoweringInfo &funcinfo,
603 CollectorMetadata *gci)
Dan Gohmancc863aa2007-08-27 16:26:13 +0000604 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000605 FuncInfo(funcinfo), GCI(gci) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606 }
607
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000608 /// getRoot - Return the current virtual root of the Selection DAG,
609 /// flushing any PendingLoad items. This must be done before emitting
610 /// a store or any other node that may need to be ordered after any
611 /// prior load instructions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612 ///
Dan Gohman8181bd12008-07-27 21:46:04 +0000613 SDValue getRoot() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614 if (PendingLoads.empty())
615 return DAG.getRoot();
616
617 if (PendingLoads.size() == 1) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000618 SDValue Root = PendingLoads[0];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 DAG.setRoot(Root);
620 PendingLoads.clear();
621 return Root;
622 }
623
624 // Otherwise, we have to make a token factor node.
Dan Gohman8181bd12008-07-27 21:46:04 +0000625 SDValue Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000626 &PendingLoads[0], PendingLoads.size());
627 PendingLoads.clear();
628 DAG.setRoot(Root);
629 return Root;
630 }
631
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000632 /// getControlRoot - Similar to getRoot, but instead of flushing all the
633 /// PendingLoad items, flush all the PendingExports items. It is necessary
634 /// to do this before emitting a terminator instruction.
635 ///
Dan Gohman8181bd12008-07-27 21:46:04 +0000636 SDValue getControlRoot() {
637 SDValue Root = DAG.getRoot();
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000638
639 if (PendingExports.empty())
640 return Root;
641
642 // Turn all of the CopyToReg chains into one factored node.
643 if (Root.getOpcode() != ISD::EntryToken) {
644 unsigned i = 0, e = PendingExports.size();
645 for (; i != e; ++i) {
646 assert(PendingExports[i].Val->getNumOperands() > 1);
647 if (PendingExports[i].Val->getOperand(0) == Root)
648 break; // Don't add the root if we already indirectly depend on it.
649 }
650
651 if (i == e)
652 PendingExports.push_back(Root);
653 }
654
655 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
656 &PendingExports[0],
657 PendingExports.size());
658 PendingExports.clear();
659 DAG.setRoot(Root);
660 return Root;
661 }
662
663 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000664
665 void visit(Instruction &I) { visit(I.getOpcode(), I); }
666
667 void visit(unsigned Opcode, User &I) {
668 // Note: this doesn't use InstVisitor, because it has to work with
669 // ConstantExpr's in addition to instructions.
670 switch (Opcode) {
671 default: assert(0 && "Unknown instruction type encountered!");
672 abort();
673 // Build the switch statement using the Instruction.def file.
674#define HANDLE_INST(NUM, OPCODE, CLASS) \
675 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
676#include "llvm/Instruction.def"
677 }
678 }
679
680 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
681
Dan Gohman8181bd12008-07-27 21:46:04 +0000682 SDValue getValue(const Value *V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683
Dan Gohman8181bd12008-07-27 21:46:04 +0000684 void setValue(const Value *V, SDValue NewN) {
685 SDValue &N = NodeMap[V];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000686 assert(N.Val == 0 && "Already set a value for this node!");
687 N = NewN;
688 }
689
Evan Chengbcd66442008-02-26 02:33:44 +0000690 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691 std::set<unsigned> &OutputRegs,
692 std::set<unsigned> &InputRegs);
693
694 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
695 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
696 unsigned Opc);
697 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
698 void ExportFromCurrentBlock(Value *V);
Dan Gohman8181bd12008-07-27 21:46:04 +0000699 void LowerCallTo(CallSite CS, SDValue Callee, bool IsTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000700 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsf5588dc2007-11-27 13:23:08 +0000701
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 // Terminator instructions.
703 void visitRet(ReturnInst &I);
704 void visitBr(BranchInst &I);
705 void visitSwitch(SwitchInst &I);
706 void visitUnreachable(UnreachableInst &I) { /* noop */ }
707
708 // Helpers for visitSwitch
709 bool handleSmallSwitchRange(CaseRec& CR,
710 CaseRecVector& WorkList,
711 Value* SV,
712 MachineBasicBlock* Default);
713 bool handleJTSwitchCase(CaseRec& CR,
714 CaseRecVector& WorkList,
715 Value* SV,
716 MachineBasicBlock* Default);
717 bool handleBTSplitSwitchCase(CaseRec& CR,
718 CaseRecVector& WorkList,
719 Value* SV,
720 MachineBasicBlock* Default);
721 bool handleBitTestsSwitchCase(CaseRec& CR,
722 CaseRecVector& WorkList,
723 Value* SV,
724 MachineBasicBlock* Default);
725 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
726 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
727 void visitBitTestCase(MachineBasicBlock* NextMBB,
728 unsigned Reg,
729 SelectionDAGISel::BitTestCase &B);
730 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
731 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
732 SelectionDAGISel::JumpTableHeader &JTH);
733
734 // These all get lowered before this pass.
735 void visitInvoke(InvokeInst &I);
736 void visitUnwind(UnwindInst &I);
737
738 void visitBinary(User &I, unsigned OpCode);
739 void visitShift(User &I, unsigned Opcode);
740 void visitAdd(User &I) {
741 if (I.getType()->isFPOrFPVector())
742 visitBinary(I, ISD::FADD);
743 else
744 visitBinary(I, ISD::ADD);
745 }
746 void visitSub(User &I);
747 void visitMul(User &I) {
748 if (I.getType()->isFPOrFPVector())
749 visitBinary(I, ISD::FMUL);
750 else
751 visitBinary(I, ISD::MUL);
752 }
753 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
754 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
755 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
756 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
757 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
758 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
759 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
760 void visitOr (User &I) { visitBinary(I, ISD::OR); }
761 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
762 void visitShl (User &I) { visitShift(I, ISD::SHL); }
763 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
764 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
765 void visitICmp(User &I);
766 void visitFCmp(User &I);
Nate Begeman9a1ce152008-05-12 19:40:03 +0000767 void visitVICmp(User &I);
768 void visitVFCmp(User &I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769 // Visit the conversion instructions
770 void visitTrunc(User &I);
771 void visitZExt(User &I);
772 void visitSExt(User &I);
773 void visitFPTrunc(User &I);
774 void visitFPExt(User &I);
775 void visitFPToUI(User &I);
776 void visitFPToSI(User &I);
777 void visitUIToFP(User &I);
778 void visitSIToFP(User &I);
779 void visitPtrToInt(User &I);
780 void visitIntToPtr(User &I);
781 void visitBitCast(User &I);
782
783 void visitExtractElement(User &I);
784 void visitInsertElement(User &I);
785 void visitShuffleVector(User &I);
786
Dan Gohman012bf582008-06-07 02:02:36 +0000787 void visitExtractValue(ExtractValueInst &I);
788 void visitInsertValue(InsertValueInst &I);
Dan Gohman8055f772008-05-15 19:50:34 +0000789
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000790 void visitGetElementPtr(User &I);
791 void visitSelect(User &I);
792
793 void visitMalloc(MallocInst &I);
794 void visitFree(FreeInst &I);
795 void visitAlloca(AllocaInst &I);
796 void visitLoad(LoadInst &I);
797 void visitStore(StoreInst &I);
798 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
799 void visitCall(CallInst &I);
Duncan Sands1c5526c2007-12-17 18:08:19 +0000800 void visitInlineAsm(CallSite CS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000801 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
802 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
803
804 void visitVAStart(CallInst &I);
805 void visitVAArg(VAArgInst &I);
806 void visitVAEnd(CallInst &I);
807 void visitVACopy(CallInst &I);
808
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809 void visitUserOp1(Instruction &I) {
810 assert(0 && "UserOp1 should not exist at instruction selection time!");
811 abort();
812 }
813 void visitUserOp2(Instruction &I) {
814 assert(0 && "UserOp2 should not exist at instruction selection time!");
815 abort();
816 }
Mon P Wang078a62d2008-05-05 19:05:59 +0000817
818private:
819 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
820
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000821};
822} // end namespace llvm
823
824
Duncan Sandse111ce82008-02-11 20:58:28 +0000825/// getCopyFromParts - Create a value that contains the specified legal parts
826/// combined into the value they represent. If the parts combine to a type
827/// larger then ValueVT then AssertOp can be used to specify whether the extra
828/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattnera7355b62008-03-09 09:38:46 +0000829/// (ISD::AssertSext).
Dan Gohman8181bd12008-07-27 21:46:04 +0000830static SDValue getCopyFromParts(SelectionDAG &DAG,
831 const SDValue *Parts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000832 unsigned NumParts,
Duncan Sands92c43912008-06-06 12:08:01 +0000833 MVT PartVT,
834 MVT ValueVT,
Chris Lattnera7355b62008-03-09 09:38:46 +0000835 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000836 assert(NumParts > 0 && "No parts to assemble!");
837 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman8181bd12008-07-27 21:46:04 +0000838 SDValue Val = Parts[0];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000840 if (NumParts > 1) {
841 // Assemble the value from multiple parts.
Duncan Sands92c43912008-06-06 12:08:01 +0000842 if (!ValueVT.isVector()) {
843 unsigned PartBits = PartVT.getSizeInBits();
844 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000846 // Assemble the power of 2 part.
847 unsigned RoundParts = NumParts & (NumParts - 1) ?
848 1 << Log2_32(NumParts) : NumParts;
849 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands92c43912008-06-06 12:08:01 +0000850 MVT RoundVT = RoundBits == ValueBits ?
851 ValueVT : MVT::getIntegerVT(RoundBits);
Dan Gohman8181bd12008-07-27 21:46:04 +0000852 SDValue Lo, Hi;
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000853
854 if (RoundParts > 2) {
Duncan Sands92c43912008-06-06 12:08:01 +0000855 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000856 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
857 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
858 PartVT, HalfVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000859 } else {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000860 Lo = Parts[0];
861 Hi = Parts[1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000863 if (TLI.isBigEndian())
864 std::swap(Lo, Hi);
865 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
866
867 if (RoundParts < NumParts) {
868 // Assemble the trailing non-power-of-2 part.
869 unsigned OddParts = NumParts - RoundParts;
Duncan Sands92c43912008-06-06 12:08:01 +0000870 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000871 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
872
873 // Combine the round and odd parts.
874 Lo = Val;
875 if (TLI.isBigEndian())
876 std::swap(Lo, Hi);
Duncan Sands92c43912008-06-06 12:08:01 +0000877 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000878 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
879 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands92c43912008-06-06 12:08:01 +0000880 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000881 TLI.getShiftAmountTy()));
882 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
883 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
884 }
885 } else {
886 // Handle a multi-element vector.
Duncan Sands92c43912008-06-06 12:08:01 +0000887 MVT IntermediateVT, RegisterVT;
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000888 unsigned NumIntermediates;
889 unsigned NumRegs =
890 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
891 RegisterVT);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000892 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng11193be2008-05-14 20:29:30 +0000893 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000894 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
895 assert(RegisterVT == Parts[0].getValueType() &&
896 "Part type doesn't match part!");
897
898 // Assemble the parts into intermediate operands.
Dan Gohman8181bd12008-07-27 21:46:04 +0000899 SmallVector<SDValue, 8> Ops(NumIntermediates);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000900 if (NumIntermediates == NumParts) {
901 // If the register was not expanded, truncate or copy the value,
902 // as appropriate.
903 for (unsigned i = 0; i != NumParts; ++i)
904 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
905 PartVT, IntermediateVT);
906 } else if (NumParts > 0) {
907 // If the intermediate type was expanded, build the intermediate operands
908 // from the parts.
909 assert(NumParts % NumIntermediates == 0 &&
910 "Must expand into a divisible number of parts!");
911 unsigned Factor = NumParts / NumIntermediates;
912 for (unsigned i = 0; i != NumIntermediates; ++i)
913 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
914 PartVT, IntermediateVT);
915 }
916
917 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
918 // operands.
Duncan Sands92c43912008-06-06 12:08:01 +0000919 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000920 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
921 ValueVT, &Ops[0], NumIntermediates);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000922 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000923 }
924
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000925 // There is now one part, held in Val. Correct it to match ValueVT.
926 PartVT = Val.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000928 if (PartVT == ValueVT)
929 return Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000930
Duncan Sands92c43912008-06-06 12:08:01 +0000931 if (PartVT.isVector()) {
932 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000933 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000934 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000935
Duncan Sands92c43912008-06-06 12:08:01 +0000936 if (ValueVT.isVector()) {
937 assert(ValueVT.getVectorElementType() == PartVT &&
938 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000939 "Only trivial scalar-to-vector conversions should get here!");
940 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
941 }
942
Duncan Sands92c43912008-06-06 12:08:01 +0000943 if (PartVT.isInteger() &&
944 ValueVT.isInteger()) {
Duncan Sandsec142ee2008-06-08 20:54:56 +0000945 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000946 // For a truncate, see if we have any information to
947 // indicate whether the truncated bits will always be
948 // zero or sign-extension.
949 if (AssertOp != ISD::DELETED_NODE)
950 Val = DAG.getNode(AssertOp, PartVT, Val,
951 DAG.getValueType(ValueVT));
952 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
953 } else {
954 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
955 }
956 }
957
Duncan Sands92c43912008-06-06 12:08:01 +0000958 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sandsec142ee2008-06-08 20:54:56 +0000959 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattnera7355b62008-03-09 09:38:46 +0000960 // FP_ROUND's are always exact here.
Chris Lattnerf8eb9e82008-03-09 07:47:22 +0000961 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattnera7355b62008-03-09 09:38:46 +0000962 DAG.getIntPtrConstant(1));
Chris Lattnerf8eb9e82008-03-09 07:47:22 +0000963 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
964 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000965
Duncan Sands92c43912008-06-06 12:08:01 +0000966 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000967 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
968
969 assert(0 && "Unknown mismatch!");
Dan Gohman8181bd12008-07-27 21:46:04 +0000970 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971}
972
Duncan Sandse111ce82008-02-11 20:58:28 +0000973/// getCopyToParts - Create a series of nodes that contain the specified value
974/// split into legal parts. If the parts contain more bits than Val, then, for
975/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976static void getCopyToParts(SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +0000977 SDValue Val,
978 SDValue *Parts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 unsigned NumParts,
Duncan Sands92c43912008-06-06 12:08:01 +0000980 MVT PartVT,
Duncan Sandse111ce82008-02-11 20:58:28 +0000981 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmanf7b05132007-08-10 14:59:38 +0000982 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands92c43912008-06-06 12:08:01 +0000983 MVT PtrVT = TLI.getPointerTy();
984 MVT ValueVT = Val.getValueType();
985 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000986 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000988 if (!NumParts)
989 return;
990
Duncan Sands92c43912008-06-06 12:08:01 +0000991 if (!ValueVT.isVector()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000992 if (PartVT == ValueVT) {
993 assert(NumParts == 1 && "No-op copy with multiple parts!");
994 Parts[0] = Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000995 return;
996 }
997
Duncan Sands92c43912008-06-06 12:08:01 +0000998 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000999 // If the parts cover more bits than the value has, promote the value.
Duncan Sands92c43912008-06-06 12:08:01 +00001000 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001001 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001002 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands92c43912008-06-06 12:08:01 +00001003 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
1004 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001005 Val = DAG.getNode(ExtendKind, ValueVT, Val);
1006 } else {
1007 assert(0 && "Unknown mismatch!");
1008 }
Duncan Sands92c43912008-06-06 12:08:01 +00001009 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001010 // Different types of the same size.
1011 assert(NumParts == 1 && PartVT != ValueVT);
1012 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands92c43912008-06-06 12:08:01 +00001013 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001014 // If the parts cover less bits than value has, truncate the value.
Duncan Sands92c43912008-06-06 12:08:01 +00001015 if (PartVT.isInteger() && ValueVT.isInteger()) {
1016 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001017 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001018 } else {
1019 assert(0 && "Unknown mismatch!");
1020 }
1021 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001022
1023 // The value may have changed - recompute ValueVT.
1024 ValueVT = Val.getValueType();
Duncan Sands92c43912008-06-06 12:08:01 +00001025 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001026 "Failed to tile the value with PartVT!");
1027
1028 if (NumParts == 1) {
1029 assert(PartVT == ValueVT && "Type conversion failed!");
1030 Parts[0] = Val;
1031 return;
1032 }
1033
1034 // Expand the value into multiple parts.
1035 if (NumParts & (NumParts - 1)) {
1036 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands92c43912008-06-06 12:08:01 +00001037 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001038 "Do not know what to expand to!");
1039 unsigned RoundParts = 1 << Log2_32(NumParts);
1040 unsigned RoundBits = RoundParts * PartBits;
1041 unsigned OddParts = NumParts - RoundParts;
Dan Gohman8181bd12008-07-27 21:46:04 +00001042 SDValue OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001043 DAG.getConstant(RoundBits,
1044 TLI.getShiftAmountTy()));
1045 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1046 if (TLI.isBigEndian())
1047 // The odd parts were reversed by getCopyToParts - unreverse them.
1048 std::reverse(Parts + RoundParts, Parts + NumParts);
1049 NumParts = RoundParts;
Duncan Sands92c43912008-06-06 12:08:01 +00001050 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001051 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1052 }
1053
1054 // The number of parts is a power of 2. Repeatedly bisect the value using
1055 // EXTRACT_ELEMENT.
Duncan Sandsc4d85172008-03-12 20:30:08 +00001056 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands92c43912008-06-06 12:08:01 +00001057 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sandsc4d85172008-03-12 20:30:08 +00001058 Val);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001059 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1060 for (unsigned i = 0; i < NumParts; i += StepSize) {
1061 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands92c43912008-06-06 12:08:01 +00001062 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Dan Gohman8181bd12008-07-27 21:46:04 +00001063 SDValue &Part0 = Parts[i];
1064 SDValue &Part1 = Parts[i+StepSize/2];
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001065
Duncan Sandsc4d85172008-03-12 20:30:08 +00001066 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1067 DAG.getConstant(1, PtrVT));
1068 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1069 DAG.getConstant(0, PtrVT));
1070
1071 if (ThisBits == PartBits && ThisVT != PartVT) {
1072 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1073 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1074 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001075 }
1076 }
1077
1078 if (TLI.isBigEndian())
1079 std::reverse(Parts, Parts + NumParts);
1080
1081 return;
1082 }
1083
1084 // Vector ValueVT.
1085 if (NumParts == 1) {
1086 if (PartVT != ValueVT) {
Duncan Sands92c43912008-06-06 12:08:01 +00001087 if (PartVT.isVector()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001088 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1089 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00001090 assert(ValueVT.getVectorElementType() == PartVT &&
1091 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001092 "Only trivial vector-to-scalar conversions should get here!");
1093 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1094 DAG.getConstant(0, PtrVT));
1095 }
1096 }
1097
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098 Parts[0] = Val;
1099 return;
1100 }
1101
1102 // Handle a multi-element vector.
Duncan Sands92c43912008-06-06 12:08:01 +00001103 MVT IntermediateVT, RegisterVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104 unsigned NumIntermediates;
1105 unsigned NumRegs =
1106 DAG.getTargetLoweringInfo()
1107 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1108 RegisterVT);
Duncan Sands92c43912008-06-06 12:08:01 +00001109 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110
1111 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng11193be2008-05-14 20:29:30 +00001112 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1114
1115 // Split the vector into intermediate operands.
Dan Gohman8181bd12008-07-27 21:46:04 +00001116 SmallVector<SDValue, 8> Ops(NumIntermediates);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands92c43912008-06-06 12:08:01 +00001118 if (IntermediateVT.isVector())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1120 IntermediateVT, Val,
1121 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohmanf7b05132007-08-10 14:59:38 +00001122 PtrVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123 else
1124 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1125 IntermediateVT, Val,
Dan Gohmanf7b05132007-08-10 14:59:38 +00001126 DAG.getConstant(i, PtrVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127
1128 // Split the intermediate operands into legal parts.
1129 if (NumParts == NumIntermediates) {
1130 // If the register was not expanded, promote or copy the value,
1131 // as appropriate.
1132 for (unsigned i = 0; i != NumParts; ++i)
1133 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
1134 } else if (NumParts > 0) {
1135 // If the intermediate type was expanded, split each the value into
1136 // legal parts.
1137 assert(NumParts % NumIntermediates == 0 &&
1138 "Must expand into a divisible number of parts!");
1139 unsigned Factor = NumParts / NumIntermediates;
1140 for (unsigned i = 0; i != NumIntermediates; ++i)
1141 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
1142 }
1143}
1144
1145
Dan Gohman8181bd12008-07-27 21:46:04 +00001146SDValue SelectionDAGLowering::getValue(const Value *V) {
1147 SDValue &N = NodeMap[V];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001148 if (N.Val) return N;
1149
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001150 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands92c43912008-06-06 12:08:01 +00001151 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattner622811e2008-04-28 06:44:42 +00001152
1153 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1154 return N = DAG.getConstant(CI->getValue(), VT);
1155
1156 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001157 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattner622811e2008-04-28 06:44:42 +00001158
1159 if (isa<ConstantPointerNull>(C))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001160 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattner622811e2008-04-28 06:44:42 +00001161
1162 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1163 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1164
Dan Gohman012bf582008-06-07 02:02:36 +00001165 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1166 !V->getType()->isAggregateType())
Chris Lattner02d73b32008-04-28 07:16:35 +00001167 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattner622811e2008-04-28 06:44:42 +00001168
1169 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1170 visit(CE->getOpcode(), *CE);
Dan Gohman8181bd12008-07-27 21:46:04 +00001171 SDValue N1 = NodeMap[V];
Chris Lattner622811e2008-04-28 06:44:42 +00001172 assert(N1.Val && "visit didn't populate the ValueMap!");
1173 return N1;
1174 }
1175
Dan Gohman012bf582008-06-07 02:02:36 +00001176 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001177 SmallVector<SDValue, 4> Constants;
Dan Gohman012bf582008-06-07 02:02:36 +00001178 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1179 OI != OE; ++OI) {
1180 SDNode *Val = getValue(*OI).Val;
Duncan Sands698842f2008-07-02 17:40:58 +00001181 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00001182 Constants.push_back(SDValue(Val, i));
Dan Gohman012bf582008-06-07 02:02:36 +00001183 }
Duncan Sands698842f2008-07-02 17:40:58 +00001184 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman012bf582008-06-07 02:02:36 +00001185 }
1186
1187 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1188 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1189 "Unknown array constant!");
1190 unsigned NumElts = ATy->getNumElements();
Dan Gohman9115c7e2008-06-09 15:21:47 +00001191 if (NumElts == 0)
Dan Gohman8181bd12008-07-27 21:46:04 +00001192 return SDValue(); // empty array
Dan Gohman012bf582008-06-07 02:02:36 +00001193 MVT EltVT = TLI.getValueType(ATy->getElementType());
Dan Gohman8181bd12008-07-27 21:46:04 +00001194 SmallVector<SDValue, 4> Constants(NumElts);
Dan Gohman012bf582008-06-07 02:02:36 +00001195 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1196 if (isa<UndefValue>(C))
1197 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1198 else if (EltVT.isFloatingPoint())
1199 Constants[i] = DAG.getConstantFP(0, EltVT);
1200 else
1201 Constants[i] = DAG.getConstant(0, EltVT);
1202 }
Duncan Sands698842f2008-07-02 17:40:58 +00001203 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman012bf582008-06-07 02:02:36 +00001204 }
1205
1206 if (const StructType *STy = dyn_cast<StructType>(C->getType())) {
1207 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1208 "Unknown struct constant!");
1209 unsigned NumElts = STy->getNumElements();
Dan Gohman9115c7e2008-06-09 15:21:47 +00001210 if (NumElts == 0)
Dan Gohman8181bd12008-07-27 21:46:04 +00001211 return SDValue(); // empty struct
1212 SmallVector<SDValue, 4> Constants(NumElts);
Dan Gohman012bf582008-06-07 02:02:36 +00001213 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1214 MVT EltVT = TLI.getValueType(STy->getElementType(i));
Dan Gohman012bf582008-06-07 02:02:36 +00001215 if (isa<UndefValue>(C))
1216 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1217 else if (EltVT.isFloatingPoint())
1218 Constants[i] = DAG.getConstantFP(0, EltVT);
1219 else
1220 Constants[i] = DAG.getConstant(0, EltVT);
1221 }
Duncan Sands698842f2008-07-02 17:40:58 +00001222 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman012bf582008-06-07 02:02:36 +00001223 }
1224
Chris Lattner02d73b32008-04-28 07:16:35 +00001225 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattner622811e2008-04-28 06:44:42 +00001226 unsigned NumElements = VecTy->getNumElements();
Chris Lattner622811e2008-04-28 06:44:42 +00001227
Chris Lattner02d73b32008-04-28 07:16:35 +00001228 // Now that we know the number and type of the elements, get that number of
1229 // elements into the Ops array based on what kind of constant it is.
Dan Gohman8181bd12008-07-27 21:46:04 +00001230 SmallVector<SDValue, 16> Ops;
Chris Lattner622811e2008-04-28 06:44:42 +00001231 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1232 for (unsigned i = 0; i != NumElements; ++i)
1233 Ops.push_back(getValue(CP->getOperand(i)));
1234 } else {
Chris Lattner02d73b32008-04-28 07:16:35 +00001235 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1236 "Unknown vector constant!");
Duncan Sands92c43912008-06-06 12:08:01 +00001237 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner02d73b32008-04-28 07:16:35 +00001238
Dan Gohman8181bd12008-07-27 21:46:04 +00001239 SDValue Op;
Chris Lattner02d73b32008-04-28 07:16:35 +00001240 if (isa<UndefValue>(C))
1241 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands92c43912008-06-06 12:08:01 +00001242 else if (EltVT.isFloatingPoint())
Chris Lattner02d73b32008-04-28 07:16:35 +00001243 Op = DAG.getConstantFP(0, EltVT);
Chris Lattner622811e2008-04-28 06:44:42 +00001244 else
Chris Lattner02d73b32008-04-28 07:16:35 +00001245 Op = DAG.getConstant(0, EltVT);
Chris Lattner622811e2008-04-28 06:44:42 +00001246 Ops.assign(NumElements, Op);
1247 }
1248
1249 // Create a BUILD_VECTOR node.
1250 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001251 }
1252
Chris Lattner622811e2008-04-28 06:44:42 +00001253 // If this is a static alloca, generate it as the frameindex instead of
1254 // computation.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001255 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1256 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattner622811e2008-04-28 06:44:42 +00001257 FuncInfo.StaticAllocaMap.find(AI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001258 if (SI != FuncInfo.StaticAllocaMap.end())
1259 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1260 }
1261
1262 unsigned InReg = FuncInfo.ValueMap[V];
1263 assert(InReg && "Value not in map!");
1264
Chris Lattner02d73b32008-04-28 07:16:35 +00001265 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohman8181bd12008-07-27 21:46:04 +00001266 SDValue Chain = DAG.getEntryNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001267 return RFV.getCopyFromRegs(DAG, Chain, NULL);
1268}
1269
1270
1271void SelectionDAGLowering::visitRet(ReturnInst &I) {
1272 if (I.getNumOperands() == 0) {
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001273 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001274 return;
1275 }
Chris Lattner622811e2008-04-28 06:44:42 +00001276
Dan Gohman8181bd12008-07-27 21:46:04 +00001277 SmallVector<SDValue, 8> NewValues;
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001278 NewValues.push_back(getControlRoot());
1279 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001280 SDValue RetOp = getValue(I.getOperand(i));
Duncan Sandse111ce82008-02-11 20:58:28 +00001281
Dan Gohman4f4a3492008-06-20 01:29:26 +00001282 SmallVector<MVT, 4> ValueVTs;
1283 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1284 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1285 MVT VT = ValueVTs[j];
Duncan Sandse111ce82008-02-11 20:58:28 +00001286
Dan Gohman4f4a3492008-06-20 01:29:26 +00001287 // FIXME: C calling convention requires the return type to be promoted to
1288 // at least 32-bit. But this is not necessary for non-C calling conventions.
1289 if (VT.isInteger()) {
1290 MVT MinVT = TLI.getRegisterType(MVT::i32);
1291 if (VT.bitsLT(MinVT))
1292 VT = MinVT;
1293 }
Duncan Sandse111ce82008-02-11 20:58:28 +00001294
Dan Gohman4f4a3492008-06-20 01:29:26 +00001295 unsigned NumParts = TLI.getNumRegisters(VT);
1296 MVT PartVT = TLI.getRegisterType(VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00001297 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohman4f4a3492008-06-20 01:29:26 +00001298 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1299
1300 const Function *F = I.getParent()->getParent();
1301 if (F->paramHasAttr(0, ParamAttr::SExt))
1302 ExtendKind = ISD::SIGN_EXTEND;
1303 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1304 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandse111ce82008-02-11 20:58:28 +00001305
Dan Gohman8181bd12008-07-27 21:46:04 +00001306 getCopyToParts(DAG, SDValue(RetOp.Val, RetOp.ResNo + j),
Dan Gohman4f4a3492008-06-20 01:29:26 +00001307 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandse111ce82008-02-11 20:58:28 +00001308
Dan Gohman4f4a3492008-06-20 01:29:26 +00001309 for (unsigned i = 0; i < NumParts; ++i) {
1310 NewValues.push_back(Parts[i]);
1311 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1312 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001313 }
1314 }
1315 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1316 &NewValues[0], NewValues.size()));
1317}
1318
1319/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1320/// the current basic block, add it to ValueMap now so that we'll get a
1321/// CopyTo/FromReg.
1322void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1323 // No need to export constants.
1324 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1325
1326 // Already exported?
1327 if (FuncInfo.isExportedInst(V)) return;
1328
1329 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001330 CopyValueToVirtualRegister(V, Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001331}
1332
1333bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1334 const BasicBlock *FromBB) {
1335 // The operands of the setcc have to be in this block. We don't know
1336 // how to export them from some other block.
1337 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1338 // Can export from current BB.
1339 if (VI->getParent() == FromBB)
1340 return true;
1341
1342 // Is already exported, noop.
1343 return FuncInfo.isExportedInst(V);
1344 }
1345
1346 // If this is an argument, we can export it if the BB is the entry block or
1347 // if it is already exported.
1348 if (isa<Argument>(V)) {
1349 if (FromBB == &FromBB->getParent()->getEntryBlock())
1350 return true;
1351
1352 // Otherwise, can only export this if it is already exported.
1353 return FuncInfo.isExportedInst(V);
1354 }
1355
1356 // Otherwise, constants can always be exported.
1357 return true;
1358}
1359
1360static bool InBlock(const Value *V, const BasicBlock *BB) {
1361 if (const Instruction *I = dyn_cast<Instruction>(V))
1362 return I->getParent() == BB;
1363 return true;
1364}
1365
1366/// FindMergedConditions - If Cond is an expression like
1367void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1368 MachineBasicBlock *TBB,
1369 MachineBasicBlock *FBB,
1370 MachineBasicBlock *CurBB,
1371 unsigned Opc) {
1372 // If this node is not part of the or/and tree, emit it as a branch.
1373 Instruction *BOp = dyn_cast<Instruction>(Cond);
1374
1375 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1376 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1377 BOp->getParent() != CurBB->getBasicBlock() ||
1378 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1379 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1380 const BasicBlock *BB = CurBB->getBasicBlock();
1381
1382 // If the leaf of the tree is a comparison, merge the condition into
1383 // the caseblock.
1384 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1385 // The operands of the cmp have to be in this block. We don't know
1386 // how to export them from some other block. If this is the first block
1387 // of the sequence, no exporting is needed.
1388 (CurBB == CurMBB ||
1389 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1390 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
1391 BOp = cast<Instruction>(Cond);
1392 ISD::CondCode Condition;
1393 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1394 switch (IC->getPredicate()) {
1395 default: assert(0 && "Unknown icmp predicate opcode!");
1396 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1397 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1398 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1399 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1400 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1401 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1402 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1403 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1404 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1405 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1406 }
1407 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1408 ISD::CondCode FPC, FOC;
1409 switch (FC->getPredicate()) {
1410 default: assert(0 && "Unknown fcmp predicate opcode!");
1411 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1412 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1413 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1414 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1415 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1416 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1417 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner98deeca2008-05-01 07:26:11 +00001418 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1419 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001420 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1421 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1422 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1423 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1424 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1425 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1426 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1427 }
1428 if (FiniteOnlyFPMath())
1429 Condition = FOC;
1430 else
1431 Condition = FPC;
1432 } else {
1433 Condition = ISD::SETEQ; // silence warning.
1434 assert(0 && "Unknown compare instruction");
1435 }
1436
1437 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
1438 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1439 SwitchCases.push_back(CB);
1440 return;
1441 }
1442
1443 // Create a CaseBlock record representing this branch.
1444 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1445 NULL, TBB, FBB, CurBB);
1446 SwitchCases.push_back(CB);
1447 return;
1448 }
1449
1450
1451 // Create TmpBB after CurBB.
1452 MachineFunction::iterator BBI = CurBB;
Dan Gohmaned825d12008-07-07 23:02:41 +00001453 MachineFunction &MF = DAG.getMachineFunction();
1454 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1455 CurBB->getParent()->insert(++BBI, TmpBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001456
1457 if (Opc == Instruction::Or) {
1458 // Codegen X | Y as:
1459 // jmp_if_X TBB
1460 // jmp TmpBB
1461 // TmpBB:
1462 // jmp_if_Y TBB
1463 // jmp FBB
1464 //
1465
1466 // Emit the LHS condition.
1467 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1468
1469 // Emit the RHS condition into TmpBB.
1470 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1471 } else {
1472 assert(Opc == Instruction::And && "Unknown merge op!");
1473 // Codegen X & Y as:
1474 // jmp_if_X TmpBB
1475 // jmp FBB
1476 // TmpBB:
1477 // jmp_if_Y TBB
1478 // jmp FBB
1479 //
1480 // This requires creation of TmpBB after CurBB.
1481
1482 // Emit the LHS condition.
1483 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1484
1485 // Emit the RHS condition into TmpBB.
1486 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1487 }
1488}
1489
1490/// If the set of cases should be emitted as a series of branches, return true.
1491/// If we should emit this as a bunch of and/or'd together conditions, return
1492/// false.
1493static bool
1494ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1495 if (Cases.size() != 2) return true;
1496
1497 // If this is two comparisons of the same values or'd or and'd together, they
1498 // will get folded into a single comparison, so don't emit two blocks.
1499 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1500 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1501 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1502 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1503 return false;
1504 }
1505
1506 return true;
1507}
1508
1509void SelectionDAGLowering::visitBr(BranchInst &I) {
1510 // Update machine-CFG edges.
1511 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1512
1513 // Figure out which block is immediately after the current one.
1514 MachineBasicBlock *NextBlock = 0;
1515 MachineFunction::iterator BBI = CurMBB;
1516 if (++BBI != CurMBB->getParent()->end())
1517 NextBlock = BBI;
1518
1519 if (I.isUnconditional()) {
Owen Anderson451a1122008-06-07 00:00:23 +00001520 // Update machine-CFG edges.
1521 CurMBB->addSuccessor(Succ0MBB);
1522
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001523 // If this is not a fall-through branch, emit the branch.
1524 if (Succ0MBB != NextBlock)
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001525 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001526 DAG.getBasicBlock(Succ0MBB)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001527 return;
1528 }
1529
1530 // If this condition is one of the special cases we handle, do special stuff
1531 // now.
1532 Value *CondVal = I.getCondition();
1533 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1534
1535 // If this is a series of conditions that are or'd or and'd together, emit
1536 // this as a sequence of branches instead of setcc's with and/or operations.
1537 // For example, instead of something like:
1538 // cmp A, B
1539 // C = seteq
1540 // cmp D, E
1541 // F = setle
1542 // or C, F
1543 // jnz foo
1544 // Emit:
1545 // cmp A, B
1546 // je foo
1547 // cmp D, E
1548 // jle foo
1549 //
1550 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1551 if (BOp->hasOneUse() &&
1552 (BOp->getOpcode() == Instruction::And ||
1553 BOp->getOpcode() == Instruction::Or)) {
1554 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1555 // If the compares in later blocks need to use values not currently
1556 // exported from this block, export them now. This block should always
1557 // be the first entry.
1558 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1559
1560 // Allow some cases to be rejected.
1561 if (ShouldEmitAsBranches(SwitchCases)) {
1562 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1563 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1564 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1565 }
1566
1567 // Emit the branch for this block.
1568 visitSwitchCase(SwitchCases[0]);
1569 SwitchCases.erase(SwitchCases.begin());
1570 return;
1571 }
1572
1573 // Okay, we decided not to do this, remove any inserted MBB's and clear
1574 // SwitchCases.
1575 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohmaned825d12008-07-07 23:02:41 +00001576 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001577
1578 SwitchCases.clear();
1579 }
1580 }
1581
1582 // Create a CaseBlock record representing this branch.
1583 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1584 NULL, Succ0MBB, Succ1MBB, CurMBB);
1585 // Use visitSwitchCase to actually insert the fast branch sequence for this
1586 // cond branch.
1587 visitSwitchCase(CB);
1588}
1589
1590/// visitSwitchCase - Emits the necessary code to represent a single node in
1591/// the binary search tree resulting from lowering a switch instruction.
1592void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001593 SDValue Cond;
1594 SDValue CondLHS = getValue(CB.CmpLHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001595
1596 // Build the setcc now.
1597 if (CB.CmpMHS == NULL) {
1598 // Fold "(X == true)" to X and "(X == false)" to !X to
1599 // handle common cases produced by branch lowering.
1600 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1601 Cond = CondLHS;
1602 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001603 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001604 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1605 } else
1606 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1607 } else {
1608 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1609
1610 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1611 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1612
Dan Gohman8181bd12008-07-27 21:46:04 +00001613 SDValue CmpOp = getValue(CB.CmpMHS);
Duncan Sands92c43912008-06-06 12:08:01 +00001614 MVT VT = CmpOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001615
1616 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1617 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1618 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001619 SDValue SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001620 Cond = DAG.getSetCC(MVT::i1, SUB,
1621 DAG.getConstant(High-Low, VT), ISD::SETULE);
1622 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001623 }
1624
Owen Anderson451a1122008-06-07 00:00:23 +00001625 // Update successor info
1626 CurMBB->addSuccessor(CB.TrueBB);
1627 CurMBB->addSuccessor(CB.FalseBB);
1628
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001629 // Set NextBlock to be the MBB immediately after the current one, if any.
1630 // This is used to avoid emitting unnecessary branches to the next block.
1631 MachineBasicBlock *NextBlock = 0;
1632 MachineFunction::iterator BBI = CurMBB;
1633 if (++BBI != CurMBB->getParent()->end())
1634 NextBlock = BBI;
1635
1636 // If the lhs block is the next block, invert the condition so that we can
1637 // fall through to the lhs instead of the rhs block.
1638 if (CB.TrueBB == NextBlock) {
1639 std::swap(CB.TrueBB, CB.FalseBB);
Dan Gohman8181bd12008-07-27 21:46:04 +00001640 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001641 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1642 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001643 SDValue BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001644 DAG.getBasicBlock(CB.TrueBB));
1645 if (CB.FalseBB == NextBlock)
1646 DAG.setRoot(BrCond);
1647 else
1648 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
1649 DAG.getBasicBlock(CB.FalseBB)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001650}
1651
1652/// visitJumpTable - Emit JumpTable node in the current MBB
1653void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
1654 // Emit the code for the jump table
1655 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands92c43912008-06-06 12:08:01 +00001656 MVT PTy = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00001657 SDValue Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
1658 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001659 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1660 Table, Index));
1661 return;
1662}
1663
1664/// visitJumpTableHeader - This function emits necessary code to produce index
1665/// in the JumpTable from switch case.
1666void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1667 SelectionDAGISel::JumpTableHeader &JTH) {
1668 // Subtract the lowest switch case value from the value being switched on
1669 // and conditional branch to default mbb if the result is greater than the
1670 // difference between smallest and largest cases.
Dan Gohman8181bd12008-07-27 21:46:04 +00001671 SDValue SwitchOp = getValue(JTH.SValue);
Duncan Sands92c43912008-06-06 12:08:01 +00001672 MVT VT = SwitchOp.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00001673 SDValue SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001674 DAG.getConstant(JTH.First, VT));
1675
1676 // The SDNode we just created, which holds the value being switched on
1677 // minus the the smallest case value, needs to be copied to a virtual
1678 // register so it can be used as an index into the jump table in a
1679 // subsequent basic block. This value may be smaller or larger than the
1680 // target's pointer type, and therefore require extension or truncating.
Duncan Sandsec142ee2008-06-08 20:54:56 +00001681 if (VT.bitsGT(TLI.getPointerTy()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001682 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1683 else
1684 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1685
1686 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman8181bd12008-07-27 21:46:04 +00001687 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001688 JT.Reg = JumpTableReg;
1689
1690 // Emit the range check for the jump table, and branch to the default
1691 // block for the switch statement if the value being switched on exceeds
1692 // the largest case in the switch.
Dan Gohman8181bd12008-07-27 21:46:04 +00001693 SDValue CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001694 DAG.getConstant(JTH.Last-JTH.First,VT),
1695 ISD::SETUGT);
1696
1697 // Set NextBlock to be the MBB immediately after the current one, if any.
1698 // This is used to avoid emitting unnecessary branches to the next block.
1699 MachineBasicBlock *NextBlock = 0;
1700 MachineFunction::iterator BBI = CurMBB;
1701 if (++BBI != CurMBB->getParent()->end())
1702 NextBlock = BBI;
1703
Dan Gohman8181bd12008-07-27 21:46:04 +00001704 SDValue BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001705 DAG.getBasicBlock(JT.Default));
1706
1707 if (JT.MBB == NextBlock)
1708 DAG.setRoot(BrCond);
1709 else
1710 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
1711 DAG.getBasicBlock(JT.MBB)));
1712
1713 return;
1714}
1715
1716/// visitBitTestHeader - This function emits necessary code to produce value
1717/// suitable for "bit tests"
1718void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1719 // Subtract the minimum value
Dan Gohman8181bd12008-07-27 21:46:04 +00001720 SDValue SwitchOp = getValue(B.SValue);
Duncan Sands92c43912008-06-06 12:08:01 +00001721 MVT VT = SwitchOp.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00001722 SDValue SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001723 DAG.getConstant(B.First, VT));
1724
1725 // Check range
Dan Gohman8181bd12008-07-27 21:46:04 +00001726 SDValue RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001727 DAG.getConstant(B.Range, VT),
1728 ISD::SETUGT);
1729
Dan Gohman8181bd12008-07-27 21:46:04 +00001730 SDValue ShiftOp;
Duncan Sandsec142ee2008-06-08 20:54:56 +00001731 if (VT.bitsGT(TLI.getShiftAmountTy()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001732 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1733 else
1734 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1735
1736 // Make desired shift
Dan Gohman8181bd12008-07-27 21:46:04 +00001737 SDValue SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001738 DAG.getConstant(1, TLI.getPointerTy()),
1739 ShiftOp);
1740
1741 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman8181bd12008-07-27 21:46:04 +00001742 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001743 B.Reg = SwitchReg;
1744
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001745 // Set NextBlock to be the MBB immediately after the current one, if any.
1746 // This is used to avoid emitting unnecessary branches to the next block.
1747 MachineBasicBlock *NextBlock = 0;
1748 MachineFunction::iterator BBI = CurMBB;
1749 if (++BBI != CurMBB->getParent()->end())
1750 NextBlock = BBI;
1751
1752 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson451a1122008-06-07 00:00:23 +00001753
1754 CurMBB->addSuccessor(B.Default);
1755 CurMBB->addSuccessor(MBB);
1756
Dan Gohman8181bd12008-07-27 21:46:04 +00001757 SDValue BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
Owen Anderson451a1122008-06-07 00:00:23 +00001758 DAG.getBasicBlock(B.Default));
1759
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001760 if (MBB == NextBlock)
1761 DAG.setRoot(BrRange);
1762 else
1763 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1764 DAG.getBasicBlock(MBB)));
1765
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001766 return;
1767}
1768
1769/// visitBitTestCase - this function produces one "bit test"
1770void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1771 unsigned Reg,
1772 SelectionDAGISel::BitTestCase &B) {
1773 // Emit bit tests and jumps
Dan Gohman8181bd12008-07-27 21:46:04 +00001774 SDValue SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
Chris Lattner68068cc2008-06-17 06:09:18 +00001775 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001776
Dan Gohman8181bd12008-07-27 21:46:04 +00001777 SDValue AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
Chris Lattner68068cc2008-06-17 06:09:18 +00001778 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dan Gohman8181bd12008-07-27 21:46:04 +00001779 SDValue AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001780 DAG.getConstant(0, TLI.getPointerTy()),
1781 ISD::SETNE);
Owen Anderson451a1122008-06-07 00:00:23 +00001782
1783 CurMBB->addSuccessor(B.TargetBB);
1784 CurMBB->addSuccessor(NextMBB);
1785
Dan Gohman8181bd12008-07-27 21:46:04 +00001786 SDValue BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001787 AndCmp, DAG.getBasicBlock(B.TargetBB));
1788
1789 // Set NextBlock to be the MBB immediately after the current one, if any.
1790 // This is used to avoid emitting unnecessary branches to the next block.
1791 MachineBasicBlock *NextBlock = 0;
1792 MachineFunction::iterator BBI = CurMBB;
1793 if (++BBI != CurMBB->getParent()->end())
1794 NextBlock = BBI;
1795
1796 if (NextMBB == NextBlock)
1797 DAG.setRoot(BrAnd);
1798 else
1799 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1800 DAG.getBasicBlock(NextMBB)));
1801
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001802 return;
1803}
1804
1805void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1806 // Retrieve successors.
1807 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1808 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1809
Duncan Sands1c5526c2007-12-17 18:08:19 +00001810 if (isa<InlineAsm>(I.getCalledValue()))
1811 visitInlineAsm(&I);
1812 else
Duncan Sandse9bc9132007-12-19 09:48:52 +00001813 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001814
1815 // If the value of the invoke is used outside of its defining block, make it
1816 // available as a virtual register.
1817 if (!I.use_empty()) {
1818 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1819 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001820 CopyValueToVirtualRegister(&I, VMI->second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001821 }
1822
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001823 // Update successor info
1824 CurMBB->addSuccessor(Return);
1825 CurMBB->addSuccessor(LandingPad);
Owen Anderson451a1122008-06-07 00:00:23 +00001826
1827 // Drop into normal successor.
1828 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1829 DAG.getBasicBlock(Return)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001830}
1831
1832void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1833}
1834
1835/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1836/// small case ranges).
1837bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1838 CaseRecVector& WorkList,
1839 Value* SV,
1840 MachineBasicBlock* Default) {
1841 Case& BackCase = *(CR.Range.second-1);
1842
1843 // Size is the number of Cases represented by this range.
1844 unsigned Size = CR.Range.second - CR.Range.first;
1845 if (Size > 3)
1846 return false;
1847
1848 // Get the MachineFunction which holds the current MBB. This is used when
1849 // inserting any additional MBBs necessary to represent the switch.
1850 MachineFunction *CurMF = CurMBB->getParent();
1851
1852 // Figure out which block is immediately after the current one.
1853 MachineBasicBlock *NextBlock = 0;
1854 MachineFunction::iterator BBI = CR.CaseBB;
1855
1856 if (++BBI != CurMBB->getParent()->end())
1857 NextBlock = BBI;
1858
1859 // TODO: If any two of the cases has the same destination, and if one value
1860 // is the same as the other, but has one bit unset that the other has set,
1861 // use bit manipulation to do two compares at once. For example:
1862 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1863
1864 // Rearrange the case blocks so that the last one falls through if possible.
1865 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1866 // The last case block won't fall through into 'NextBlock' if we emit the
1867 // branches in this order. See if rearranging a case value would help.
1868 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1869 if (I->BB == NextBlock) {
1870 std::swap(*I, BackCase);
1871 break;
1872 }
1873 }
1874 }
1875
1876 // Create a CaseBlock record representing a conditional branch to
1877 // the Case's target mbb if the value being switched on SV is equal
1878 // to C.
1879 MachineBasicBlock *CurBlock = CR.CaseBB;
1880 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1881 MachineBasicBlock *FallThrough;
1882 if (I != E-1) {
Dan Gohmaned825d12008-07-07 23:02:41 +00001883 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1884 CurMF->insert(BBI, FallThrough);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001885 } else {
1886 // If the last case doesn't match, go to the default block.
1887 FallThrough = Default;
1888 }
1889
1890 Value *RHS, *LHS, *MHS;
1891 ISD::CondCode CC;
1892 if (I->High == I->Low) {
1893 // This is just small small case range :) containing exactly 1 case
1894 CC = ISD::SETEQ;
1895 LHS = SV; RHS = I->High; MHS = NULL;
1896 } else {
1897 CC = ISD::SETLE;
1898 LHS = I->Low; MHS = SV; RHS = I->High;
1899 }
1900 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1901 I->BB, FallThrough, CurBlock);
1902
1903 // If emitting the first comparison, just call visitSwitchCase to emit the
1904 // code into the current block. Otherwise, push the CaseBlock onto the
1905 // vector to be later processed by SDISel, and insert the node's MBB
1906 // before the next MBB.
1907 if (CurBlock == CurMBB)
1908 visitSwitchCase(CB);
1909 else
1910 SwitchCases.push_back(CB);
1911
1912 CurBlock = FallThrough;
1913 }
1914
1915 return true;
1916}
1917
1918static inline bool areJTsAllowed(const TargetLowering &TLI) {
Dale Johannesen493492f2008-07-31 18:13:12 +00001919 return !DisableJumpTables &&
1920 (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1921 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001922}
1923
1924/// handleJTSwitchCase - Emit jumptable for current switch case range
1925bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1926 CaseRecVector& WorkList,
1927 Value* SV,
1928 MachineBasicBlock* Default) {
1929 Case& FrontCase = *CR.Range.first;
1930 Case& BackCase = *(CR.Range.second-1);
1931
1932 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1933 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1934
1935 uint64_t TSize = 0;
1936 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1937 I!=E; ++I)
1938 TSize += I->size();
1939
1940 if (!areJTsAllowed(TLI) || TSize <= 3)
1941 return false;
1942
1943 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1944 if (Density < 0.4)
1945 return false;
1946
1947 DOUT << "Lowering jump table\n"
1948 << "First entry: " << First << ". Last entry: " << Last << "\n"
1949 << "Size: " << TSize << ". Density: " << Density << "\n\n";
1950
1951 // Get the MachineFunction which holds the current MBB. This is used when
1952 // inserting any additional MBBs necessary to represent the switch.
1953 MachineFunction *CurMF = CurMBB->getParent();
1954
1955 // Figure out which block is immediately after the current one.
1956 MachineBasicBlock *NextBlock = 0;
1957 MachineFunction::iterator BBI = CR.CaseBB;
1958
1959 if (++BBI != CurMBB->getParent()->end())
1960 NextBlock = BBI;
1961
1962 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1963
1964 // Create a new basic block to hold the code for loading the address
1965 // of the jump table, and jumping to it. Update successor information;
1966 // we will either branch to the default case for the switch, or the jump
1967 // table.
Dan Gohmaned825d12008-07-07 23:02:41 +00001968 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1969 CurMF->insert(BBI, JumpTableBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001970 CR.CaseBB->addSuccessor(Default);
1971 CR.CaseBB->addSuccessor(JumpTableBB);
1972
1973 // Build a vector of destination BBs, corresponding to each target
1974 // of the jump table. If the value of the jump table slot corresponds to
1975 // a case statement, push the case's BB onto the vector, otherwise, push
1976 // the default BB.
1977 std::vector<MachineBasicBlock*> DestBBs;
1978 int64_t TEI = First;
1979 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1980 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1981 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1982
1983 if ((Low <= TEI) && (TEI <= High)) {
1984 DestBBs.push_back(I->BB);
1985 if (TEI==High)
1986 ++I;
1987 } else {
1988 DestBBs.push_back(Default);
1989 }
1990 }
1991
1992 // Update successor info. Add one edge to each unique successor.
1993 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1994 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1995 E = DestBBs.end(); I != E; ++I) {
1996 if (!SuccsHandled[(*I)->getNumber()]) {
1997 SuccsHandled[(*I)->getNumber()] = true;
1998 JumpTableBB->addSuccessor(*I);
1999 }
2000 }
2001
2002 // Create a jump table index for this jump table, or return an existing
2003 // one.
2004 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
2005
2006 // Set the jump table information so that we can codegen it as a second
2007 // MachineBasicBlock
2008 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
2009 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
2010 (CR.CaseBB == CurMBB));
2011 if (CR.CaseBB == CurMBB)
2012 visitJumpTableHeader(JT, JTH);
2013
2014 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
2015
2016 return true;
2017}
2018
2019/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2020/// 2 subtrees.
2021bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
2022 CaseRecVector& WorkList,
2023 Value* SV,
2024 MachineBasicBlock* Default) {
2025 // Get the MachineFunction which holds the current MBB. This is used when
2026 // inserting any additional MBBs necessary to represent the switch.
2027 MachineFunction *CurMF = CurMBB->getParent();
2028
2029 // Figure out which block is immediately after the current one.
2030 MachineBasicBlock *NextBlock = 0;
2031 MachineFunction::iterator BBI = CR.CaseBB;
2032
2033 if (++BBI != CurMBB->getParent()->end())
2034 NextBlock = BBI;
2035
2036 Case& FrontCase = *CR.Range.first;
2037 Case& BackCase = *(CR.Range.second-1);
2038 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2039
2040 // Size is the number of Cases represented by this range.
2041 unsigned Size = CR.Range.second - CR.Range.first;
2042
2043 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2044 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
2045 double FMetric = 0;
2046 CaseItr Pivot = CR.Range.first + Size/2;
2047
2048 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2049 // (heuristically) allow us to emit JumpTable's later.
2050 uint64_t TSize = 0;
2051 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2052 I!=E; ++I)
2053 TSize += I->size();
2054
2055 uint64_t LSize = FrontCase.size();
2056 uint64_t RSize = TSize-LSize;
2057 DOUT << "Selecting best pivot: \n"
2058 << "First: " << First << ", Last: " << Last <<"\n"
2059 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
2060 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
2061 J!=E; ++I, ++J) {
2062 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2063 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
2064 assert((RBegin-LEnd>=1) && "Invalid case distance");
2065 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2066 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
2067 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
2068 // Should always split in some non-trivial place
2069 DOUT <<"=>Step\n"
2070 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2071 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2072 << "Metric: " << Metric << "\n";
2073 if (FMetric < Metric) {
2074 Pivot = J;
2075 FMetric = Metric;
2076 DOUT << "Current metric set to: " << FMetric << "\n";
2077 }
2078
2079 LSize += J->size();
2080 RSize -= J->size();
2081 }
2082 if (areJTsAllowed(TLI)) {
2083 // If our case is dense we *really* should handle it earlier!
2084 assert((FMetric > 0) && "Should handle dense range earlier!");
2085 } else {
2086 Pivot = CR.Range.first + Size/2;
2087 }
2088
2089 CaseRange LHSR(CR.Range.first, Pivot);
2090 CaseRange RHSR(Pivot, CR.Range.second);
2091 Constant *C = Pivot->Low;
2092 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2093
2094 // We know that we branch to the LHS if the Value being switched on is
2095 // less than the Pivot value, C. We use this to optimize our binary
2096 // tree a bit, by recognizing that if SV is greater than or equal to the
2097 // LHS's Case Value, and that Case Value is exactly one less than the
2098 // Pivot's Value, then we can branch directly to the LHS's Target,
2099 // rather than creating a leaf node for it.
2100 if ((LHSR.second - LHSR.first) == 1 &&
2101 LHSR.first->High == CR.GE &&
2102 cast<ConstantInt>(C)->getSExtValue() ==
2103 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2104 TrueBB = LHSR.first->BB;
2105 } else {
Dan Gohmaned825d12008-07-07 23:02:41 +00002106 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2107 CurMF->insert(BBI, TrueBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002108 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2109 }
2110
2111 // Similar to the optimization above, if the Value being switched on is
2112 // known to be less than the Constant CR.LT, and the current Case Value
2113 // is CR.LT - 1, then we can branch directly to the target block for
2114 // the current Case Value, rather than emitting a RHS leaf node for it.
2115 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
2116 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2117 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2118 FalseBB = RHSR.first->BB;
2119 } else {
Dan Gohmaned825d12008-07-07 23:02:41 +00002120 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2121 CurMF->insert(BBI, FalseBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002122 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2123 }
2124
2125 // Create a CaseBlock record representing a conditional branch to
2126 // the LHS node if the value being switched on SV is less than C.
2127 // Otherwise, branch to LHS.
2128 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2129 TrueBB, FalseBB, CR.CaseBB);
2130
2131 if (CR.CaseBB == CurMBB)
2132 visitSwitchCase(CB);
2133 else
2134 SwitchCases.push_back(CB);
2135
2136 return true;
2137}
2138
2139/// handleBitTestsSwitchCase - if current case range has few destination and
2140/// range span less, than machine word bitwidth, encode case range into series
2141/// of masks and emit bit tests with these masks.
2142bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2143 CaseRecVector& WorkList,
2144 Value* SV,
2145 MachineBasicBlock* Default){
Duncan Sands92c43912008-06-06 12:08:01 +00002146 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002147
2148 Case& FrontCase = *CR.Range.first;
2149 Case& BackCase = *(CR.Range.second-1);
2150
2151 // Get the MachineFunction which holds the current MBB. This is used when
2152 // inserting any additional MBBs necessary to represent the switch.
2153 MachineFunction *CurMF = CurMBB->getParent();
2154
2155 unsigned numCmps = 0;
2156 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2157 I!=E; ++I) {
2158 // Single case counts one, case range - two.
2159 if (I->Low == I->High)
2160 numCmps +=1;
2161 else
2162 numCmps +=2;
2163 }
2164
2165 // Count unique destinations
2166 SmallSet<MachineBasicBlock*, 4> Dests;
2167 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2168 Dests.insert(I->BB);
2169 if (Dests.size() > 3)
2170 // Don't bother the code below, if there are too much unique destinations
2171 return false;
2172 }
2173 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2174 << "Total number of comparisons: " << numCmps << "\n";
2175
2176 // Compute span of values.
2177 Constant* minValue = FrontCase.Low;
2178 Constant* maxValue = BackCase.High;
2179 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2180 cast<ConstantInt>(minValue)->getSExtValue();
2181 DOUT << "Compare range: " << range << "\n"
2182 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2183 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2184
2185 if (range>=IntPtrBits ||
2186 (!(Dests.size() == 1 && numCmps >= 3) &&
2187 !(Dests.size() == 2 && numCmps >= 5) &&
2188 !(Dests.size() >= 3 && numCmps >= 6)))
2189 return false;
2190
2191 DOUT << "Emitting bit tests\n";
2192 int64_t lowBound = 0;
2193
2194 // Optimize the case where all the case values fit in a
2195 // word without having to subtract minValue. In this case,
2196 // we can optimize away the subtraction.
2197 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
2198 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
2199 range = cast<ConstantInt>(maxValue)->getSExtValue();
2200 } else {
2201 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2202 }
2203
2204 CaseBitsVector CasesBits;
2205 unsigned i, count = 0;
2206
2207 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2208 MachineBasicBlock* Dest = I->BB;
2209 for (i = 0; i < count; ++i)
2210 if (Dest == CasesBits[i].BB)
2211 break;
2212
2213 if (i == count) {
2214 assert((count < 3) && "Too much destinations to test!");
2215 CasesBits.push_back(CaseBits(0, Dest, 0));
2216 count++;
2217 }
2218
2219 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2220 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2221
2222 for (uint64_t j = lo; j <= hi; j++) {
2223 CasesBits[i].Mask |= 1ULL << j;
2224 CasesBits[i].Bits++;
2225 }
2226
2227 }
2228 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2229
2230 SelectionDAGISel::BitTestInfo BTC;
2231
2232 // Figure out which block is immediately after the current one.
2233 MachineFunction::iterator BBI = CR.CaseBB;
2234 ++BBI;
2235
2236 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2237
2238 DOUT << "Cases:\n";
2239 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2240 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2241 << ", BB: " << CasesBits[i].BB << "\n";
2242
Dan Gohmaned825d12008-07-07 23:02:41 +00002243 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2244 CurMF->insert(BBI, CaseBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002245 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2246 CaseBB,
2247 CasesBits[i].BB));
2248 }
2249
2250 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
2251 -1U, (CR.CaseBB == CurMBB),
2252 CR.CaseBB, Default, BTC);
2253
2254 if (CR.CaseBB == CurMBB)
2255 visitBitTestHeader(BTB);
2256
2257 BitTestCases.push_back(BTB);
2258
2259 return true;
2260}
2261
2262
Dan Gohman9fe5bd62008-03-27 19:56:19 +00002263/// Clusterify - Transform simple list of Cases into list of CaseRange's
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002264unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2265 const SwitchInst& SI) {
2266 unsigned numCmps = 0;
2267
2268 // Start with "simple" cases
2269 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2270 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2271 Cases.push_back(Case(SI.getSuccessorValue(i),
2272 SI.getSuccessorValue(i),
2273 SMBB));
2274 }
Chris Lattner5624ae42007-11-27 06:14:32 +00002275 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002276
2277 // Merge case into clusters
2278 if (Cases.size()>=2)
2279 // Must recompute end() each iteration because it may be
2280 // invalidated by erase if we hold on to it
Chris Lattnerdfb947d2007-11-24 07:07:01 +00002281 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002282 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2283 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2284 MachineBasicBlock* nextBB = J->BB;
2285 MachineBasicBlock* currentBB = I->BB;
2286
2287 // If the two neighboring cases go to the same destination, merge them
2288 // into a single case.
2289 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2290 I->High = J->High;
2291 J = Cases.erase(J);
2292 } else {
2293 I = J++;
2294 }
2295 }
2296
2297 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2298 if (I->Low != I->High)
2299 // A range counts double, since it requires two compares.
2300 ++numCmps;
2301 }
2302
2303 return numCmps;
2304}
2305
2306void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
2307 // Figure out which block is immediately after the current one.
2308 MachineBasicBlock *NextBlock = 0;
2309 MachineFunction::iterator BBI = CurMBB;
2310
2311 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2312
2313 // If there is only the default destination, branch to it if it is not the
2314 // next basic block. Otherwise, just fall through.
2315 if (SI.getNumOperands() == 2) {
2316 // Update machine-CFG edges.
2317
2318 // If this is not a fall-through branch, emit the branch.
Owen Anderson451a1122008-06-07 00:00:23 +00002319 CurMBB->addSuccessor(Default);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002320 if (Default != NextBlock)
Dan Gohman9fe5bd62008-03-27 19:56:19 +00002321 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002322 DAG.getBasicBlock(Default)));
Owen Anderson451a1122008-06-07 00:00:23 +00002323
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002324 return;
2325 }
2326
2327 // If there are any non-default case statements, create a vector of Cases
2328 // representing each one, and sort the vector so that we can efficiently
2329 // create a binary search tree from them.
2330 CaseVector Cases;
2331 unsigned numCmps = Clusterify(Cases, SI);
2332 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2333 << ". Total compares: " << numCmps << "\n";
2334
2335 // Get the Value to be switched on and default basic blocks, which will be
2336 // inserted into CaseBlock records, representing basic blocks in the binary
2337 // search tree.
2338 Value *SV = SI.getOperand(0);
2339
2340 // Push the initial CaseRec onto the worklist
2341 CaseRecVector WorkList;
2342 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2343
2344 while (!WorkList.empty()) {
2345 // Grab a record representing a case range to process off the worklist
2346 CaseRec CR = WorkList.back();
2347 WorkList.pop_back();
2348
2349 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2350 continue;
2351
2352 // If the range has few cases (two or less) emit a series of specific
2353 // tests.
2354 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2355 continue;
2356
2357 // If the switch has more than 5 blocks, and at least 40% dense, and the
2358 // target supports indirect branches, then emit a jump table rather than
2359 // lowering the switch to a binary tree of conditional branches.
2360 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2361 continue;
2362
2363 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2364 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2365 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2366 }
2367}
2368
2369
2370void SelectionDAGLowering::visitSub(User &I) {
2371 // -0.0 - X --> fneg
2372 const Type *Ty = I.getType();
2373 if (isa<VectorType>(Ty)) {
2374 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2375 const VectorType *DestTy = cast<VectorType>(I.getType());
2376 const Type *ElTy = DestTy->getElementType();
2377 if (ElTy->isFloatingPoint()) {
2378 unsigned VL = DestTy->getNumElements();
Dale Johannesen2fc20782007-09-14 22:26:36 +00002379 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002380 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2381 if (CV == CNZ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002382 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002383 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2384 return;
2385 }
2386 }
2387 }
2388 }
2389 if (Ty->isFloatingPoint()) {
2390 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen2fc20782007-09-14 22:26:36 +00002391 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002392 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002393 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2394 return;
2395 }
2396 }
2397
2398 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2399}
2400
2401void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002402 SDValue Op1 = getValue(I.getOperand(0));
2403 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002404
2405 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
2406}
2407
2408void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002409 SDValue Op1 = getValue(I.getOperand(0));
2410 SDValue Op2 = getValue(I.getOperand(1));
Nate Begemanbb1ce942008-07-29 15:49:41 +00002411 if (!isa<VectorType>(I.getType())) {
2412 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
2413 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
2414 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2415 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
2416 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002417
2418 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2419}
2420
2421void SelectionDAGLowering::visitICmp(User &I) {
2422 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2423 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2424 predicate = IC->getPredicate();
2425 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2426 predicate = ICmpInst::Predicate(IC->getPredicate());
Dan Gohman8181bd12008-07-27 21:46:04 +00002427 SDValue Op1 = getValue(I.getOperand(0));
2428 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002429 ISD::CondCode Opcode;
2430 switch (predicate) {
2431 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2432 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2433 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2434 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2435 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2436 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2437 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2438 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2439 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2440 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2441 default:
2442 assert(!"Invalid ICmp predicate value");
2443 Opcode = ISD::SETEQ;
2444 break;
2445 }
2446 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2447}
2448
2449void SelectionDAGLowering::visitFCmp(User &I) {
2450 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2451 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2452 predicate = FC->getPredicate();
2453 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2454 predicate = FCmpInst::Predicate(FC->getPredicate());
Dan Gohman8181bd12008-07-27 21:46:04 +00002455 SDValue Op1 = getValue(I.getOperand(0));
2456 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002457 ISD::CondCode Condition, FOC, FPC;
2458 switch (predicate) {
2459 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2460 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2461 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2462 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2463 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2464 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2465 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmanfc28db22008-05-01 23:40:44 +00002466 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2467 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002468 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2469 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2470 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2471 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2472 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2473 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2474 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2475 default:
2476 assert(!"Invalid FCmp predicate value");
2477 FOC = FPC = ISD::SETFALSE;
2478 break;
2479 }
2480 if (FiniteOnlyFPMath())
2481 Condition = FOC;
2482 else
2483 Condition = FPC;
2484 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
2485}
2486
Nate Begeman9a1ce152008-05-12 19:40:03 +00002487void SelectionDAGLowering::visitVICmp(User &I) {
2488 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2489 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2490 predicate = IC->getPredicate();
2491 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2492 predicate = ICmpInst::Predicate(IC->getPredicate());
Dan Gohman8181bd12008-07-27 21:46:04 +00002493 SDValue Op1 = getValue(I.getOperand(0));
2494 SDValue Op2 = getValue(I.getOperand(1));
Nate Begeman9a1ce152008-05-12 19:40:03 +00002495 ISD::CondCode Opcode;
2496 switch (predicate) {
2497 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2498 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2499 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2500 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2501 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2502 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2503 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2504 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2505 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2506 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2507 default:
2508 assert(!"Invalid ICmp predicate value");
2509 Opcode = ISD::SETEQ;
2510 break;
2511 }
2512 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2513}
2514
2515void SelectionDAGLowering::visitVFCmp(User &I) {
2516 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2517 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2518 predicate = FC->getPredicate();
2519 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2520 predicate = FCmpInst::Predicate(FC->getPredicate());
Dan Gohman8181bd12008-07-27 21:46:04 +00002521 SDValue Op1 = getValue(I.getOperand(0));
2522 SDValue Op2 = getValue(I.getOperand(1));
Nate Begeman9a1ce152008-05-12 19:40:03 +00002523 ISD::CondCode Condition, FOC, FPC;
2524 switch (predicate) {
2525 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2526 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2527 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2528 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2529 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2530 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2531 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2532 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2533 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2534 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2535 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2536 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2537 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2538 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2539 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2540 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2541 default:
2542 assert(!"Invalid VFCmp predicate value");
2543 FOC = FPC = ISD::SETFALSE;
2544 break;
2545 }
2546 if (FiniteOnlyFPMath())
2547 Condition = FOC;
2548 else
2549 Condition = FPC;
2550
Duncan Sands92c43912008-06-06 12:08:01 +00002551 MVT DestVT = TLI.getValueType(I.getType());
Nate Begeman9a1ce152008-05-12 19:40:03 +00002552
2553 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2554}
2555
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002556void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002557 SDValue Cond = getValue(I.getOperand(0));
2558 SDValue TrueVal = getValue(I.getOperand(1));
2559 SDValue FalseVal = getValue(I.getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002560 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2561 TrueVal, FalseVal));
2562}
2563
2564
2565void SelectionDAGLowering::visitTrunc(User &I) {
2566 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
Dan Gohman8181bd12008-07-27 21:46:04 +00002567 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002568 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002569 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2570}
2571
2572void SelectionDAGLowering::visitZExt(User &I) {
2573 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2574 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
Dan Gohman8181bd12008-07-27 21:46:04 +00002575 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002576 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002577 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2578}
2579
2580void SelectionDAGLowering::visitSExt(User &I) {
2581 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2582 // SExt also can't be a cast to bool for same reason. So, nothing much to do
Dan Gohman8181bd12008-07-27 21:46:04 +00002583 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002584 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002585 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2586}
2587
2588void SelectionDAGLowering::visitFPTrunc(User &I) {
2589 // FPTrunc is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002590 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002591 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner5872a362008-01-17 07:00:52 +00002592 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002593}
2594
2595void SelectionDAGLowering::visitFPExt(User &I){
2596 // FPTrunc is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002597 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002598 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002599 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2600}
2601
2602void SelectionDAGLowering::visitFPToUI(User &I) {
2603 // FPToUI is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002604 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002605 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002606 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2607}
2608
2609void SelectionDAGLowering::visitFPToSI(User &I) {
2610 // FPToSI is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002611 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002612 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002613 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2614}
2615
2616void SelectionDAGLowering::visitUIToFP(User &I) {
2617 // UIToFP is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002618 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002619 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002620 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2621}
2622
2623void SelectionDAGLowering::visitSIToFP(User &I){
2624 // UIToFP is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002625 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002626 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002627 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2628}
2629
2630void SelectionDAGLowering::visitPtrToInt(User &I) {
2631 // What to do depends on the size of the integer and the size of the pointer.
2632 // We can either truncate, zero extend, or no-op, accordingly.
Dan Gohman8181bd12008-07-27 21:46:04 +00002633 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002634 MVT SrcVT = N.getValueType();
2635 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohman8181bd12008-07-27 21:46:04 +00002636 SDValue Result;
Duncan Sandsec142ee2008-06-08 20:54:56 +00002637 if (DestVT.bitsLT(SrcVT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002638 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2639 else
2640 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2641 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2642 setValue(&I, Result);
2643}
2644
2645void SelectionDAGLowering::visitIntToPtr(User &I) {
2646 // What to do depends on the size of the integer and the size of the pointer.
2647 // We can either truncate, zero extend, or no-op, accordingly.
Dan Gohman8181bd12008-07-27 21:46:04 +00002648 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002649 MVT SrcVT = N.getValueType();
2650 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sandsec142ee2008-06-08 20:54:56 +00002651 if (DestVT.bitsLT(SrcVT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002652 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2653 else
2654 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2655 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2656}
2657
2658void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002659 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002660 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002661
2662 // BitCast assures us that source and destination are the same size so this
2663 // is either a BIT_CONVERT or a no-op.
2664 if (DestVT != N.getValueType())
2665 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2666 else
2667 setValue(&I, N); // noop cast.
2668}
2669
2670void SelectionDAGLowering::visitInsertElement(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002671 SDValue InVec = getValue(I.getOperand(0));
2672 SDValue InVal = getValue(I.getOperand(1));
2673 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002674 getValue(I.getOperand(2)));
2675
2676 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2677 TLI.getValueType(I.getType()),
2678 InVec, InVal, InIdx));
2679}
2680
2681void SelectionDAGLowering::visitExtractElement(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002682 SDValue InVec = getValue(I.getOperand(0));
2683 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002684 getValue(I.getOperand(1)));
2685 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
2686 TLI.getValueType(I.getType()), InVec, InIdx));
2687}
2688
2689void SelectionDAGLowering::visitShuffleVector(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002690 SDValue V1 = getValue(I.getOperand(0));
2691 SDValue V2 = getValue(I.getOperand(1));
2692 SDValue Mask = getValue(I.getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002693
2694 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2695 TLI.getValueType(I.getType()),
2696 V1, V2, Mask));
2697}
2698
Dan Gohman012bf582008-06-07 02:02:36 +00002699void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2700 const Value *Op0 = I.getOperand(0);
2701 const Value *Op1 = I.getOperand(1);
2702 const Type *AggTy = I.getType();
2703 const Type *ValTy = Op1->getType();
2704 bool IntoUndef = isa<UndefValue>(Op0);
2705 bool FromUndef = isa<UndefValue>(Op1);
2706
2707 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2708 I.idx_begin(), I.idx_end());
2709
2710 SmallVector<MVT, 4> AggValueVTs;
2711 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2712 SmallVector<MVT, 4> ValValueVTs;
2713 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2714
2715 unsigned NumAggValues = AggValueVTs.size();
2716 unsigned NumValValues = ValValueVTs.size();
Dan Gohman8181bd12008-07-27 21:46:04 +00002717 SmallVector<SDValue, 4> Values(NumAggValues);
Dan Gohman012bf582008-06-07 02:02:36 +00002718
Dan Gohman8181bd12008-07-27 21:46:04 +00002719 SDValue Agg = getValue(Op0);
2720 SDValue Val = getValue(Op1);
Dan Gohman012bf582008-06-07 02:02:36 +00002721 unsigned i = 0;
2722 // Copy the beginning value(s) from the original aggregate.
2723 for (; i != LinearIndex; ++i)
2724 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman8181bd12008-07-27 21:46:04 +00002725 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman012bf582008-06-07 02:02:36 +00002726 // Copy values from the inserted value(s).
2727 for (; i != LinearIndex + NumValValues; ++i)
2728 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman8181bd12008-07-27 21:46:04 +00002729 SDValue(Val.Val, Val.ResNo + i - LinearIndex);
Dan Gohman012bf582008-06-07 02:02:36 +00002730 // Copy remaining value(s) from the original aggregate.
2731 for (; i != NumAggValues; ++i)
2732 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman8181bd12008-07-27 21:46:04 +00002733 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman012bf582008-06-07 02:02:36 +00002734
Duncan Sandsf19591c2008-06-30 10:19:09 +00002735 setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2736 &Values[0], NumAggValues));
Dan Gohman8055f772008-05-15 19:50:34 +00002737}
2738
Dan Gohman012bf582008-06-07 02:02:36 +00002739void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2740 const Value *Op0 = I.getOperand(0);
2741 const Type *AggTy = Op0->getType();
2742 const Type *ValTy = I.getType();
2743 bool OutOfUndef = isa<UndefValue>(Op0);
2744
2745 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2746 I.idx_begin(), I.idx_end());
2747
2748 SmallVector<MVT, 4> ValValueVTs;
2749 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2750
2751 unsigned NumValValues = ValValueVTs.size();
Dan Gohman8181bd12008-07-27 21:46:04 +00002752 SmallVector<SDValue, 4> Values(NumValValues);
Dan Gohman012bf582008-06-07 02:02:36 +00002753
Dan Gohman8181bd12008-07-27 21:46:04 +00002754 SDValue Agg = getValue(Op0);
Dan Gohman012bf582008-06-07 02:02:36 +00002755 // Copy out the selected value(s).
2756 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2757 Values[i - LinearIndex] =
Dan Gohman4ec23c42008-06-20 00:54:19 +00002758 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
Dan Gohman8181bd12008-07-27 21:46:04 +00002759 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman012bf582008-06-07 02:02:36 +00002760
Duncan Sandsf19591c2008-06-30 10:19:09 +00002761 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2762 &Values[0], NumValValues));
Dan Gohman8055f772008-05-15 19:50:34 +00002763}
2764
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002765
2766void SelectionDAGLowering::visitGetElementPtr(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002767 SDValue N = getValue(I.getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002768 const Type *Ty = I.getOperand(0)->getType();
2769
2770 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2771 OI != E; ++OI) {
2772 Value *Idx = *OI;
2773 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2774 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2775 if (Field) {
2776 // N = N + Offset
2777 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
2778 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner5872a362008-01-17 07:00:52 +00002779 DAG.getIntPtrConstant(Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002780 }
2781 Ty = StTy->getElementType(Field);
2782 } else {
2783 Ty = cast<SequentialType>(Ty)->getElementType();
2784
2785 // If this is a constant subscript, handle it quickly.
2786 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2787 if (CI->getZExtValue() == 0) continue;
2788 uint64_t Offs =
Dale Johannesen5ec2e732007-10-01 23:08:35 +00002789 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner5872a362008-01-17 07:00:52 +00002790 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2791 DAG.getIntPtrConstant(Offs));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002792 continue;
2793 }
2794
2795 // N = N + Idx * ElementSize;
Dale Johannesen5ec2e732007-10-01 23:08:35 +00002796 uint64_t ElementSize = TD->getABITypeSize(Ty);
Dan Gohman8181bd12008-07-27 21:46:04 +00002797 SDValue IdxN = getValue(Idx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002798
2799 // If the index is smaller or larger than intptr_t, truncate or extend
2800 // it.
Duncan Sandsec142ee2008-06-08 20:54:56 +00002801 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002802 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002803 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002804 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2805
2806 // If this is a multiply by a power of two, turn it into a shl
2807 // immediately. This is a very common case.
2808 if (isPowerOf2_64(ElementSize)) {
2809 unsigned Amt = Log2_64(ElementSize);
2810 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
2811 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
2812 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2813 continue;
2814 }
2815
Dan Gohman8181bd12008-07-27 21:46:04 +00002816 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002817 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2818 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2819 }
2820 }
2821 setValue(&I, N);
2822}
2823
2824void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2825 // If this is a fixed sized alloca in the entry block of the function,
2826 // allocate it statically on the stack.
2827 if (FuncInfo.StaticAllocaMap.count(&I))
2828 return; // getValue will auto-populate this.
2829
2830 const Type *Ty = I.getAllocatedType();
Duncan Sandsf99fdc62007-11-01 20:53:16 +00002831 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002832 unsigned Align =
2833 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2834 I.getAlignment());
2835
Dan Gohman8181bd12008-07-27 21:46:04 +00002836 SDValue AllocSize = getValue(I.getArraySize());
Duncan Sands92c43912008-06-06 12:08:01 +00002837 MVT IntPtr = TLI.getPointerTy();
Duncan Sandsec142ee2008-06-08 20:54:56 +00002838 if (IntPtr.bitsLT(AllocSize.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002839 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002840 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002841 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
2842
2843 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner5872a362008-01-17 07:00:52 +00002844 DAG.getIntPtrConstant(TySize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002845
Evan Chenga31dc752007-08-16 23:46:29 +00002846 // Handle alignment. If the requested alignment is less than or equal to
2847 // the stack alignment, ignore it. If the size is greater than or equal to
2848 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002849 unsigned StackAlign =
2850 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Chenga31dc752007-08-16 23:46:29 +00002851 if (Align <= StackAlign)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002852 Align = 0;
Evan Chenga31dc752007-08-16 23:46:29 +00002853
2854 // Round the size of the allocation up to the stack alignment size
2855 // by add SA-1 to the size.
2856 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner5872a362008-01-17 07:00:52 +00002857 DAG.getIntPtrConstant(StackAlign-1));
Evan Chenga31dc752007-08-16 23:46:29 +00002858 // Mask out the low bits for alignment purposes.
2859 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner5872a362008-01-17 07:00:52 +00002860 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002861
Dan Gohman8181bd12008-07-27 21:46:04 +00002862 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands92c43912008-06-06 12:08:01 +00002863 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002864 MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00002865 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002866 setValue(&I, DSA);
2867 DAG.setRoot(DSA.getValue(1));
2868
2869 // Inform the Frame Information that we have just allocated a variable-sized
2870 // object.
2871 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2872}
2873
2874void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman9115c7e2008-06-09 15:21:47 +00002875 const Value *SV = I.getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00002876 SDValue Ptr = getValue(SV);
Dan Gohman9115c7e2008-06-09 15:21:47 +00002877
2878 const Type *Ty = I.getType();
2879 bool isVolatile = I.isVolatile();
2880 unsigned Alignment = I.getAlignment();
2881
2882 SmallVector<MVT, 4> ValueVTs;
2883 SmallVector<uint64_t, 4> Offsets;
2884 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2885 unsigned NumValues = ValueVTs.size();
2886 if (NumValues == 0)
2887 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002888
Dan Gohman8181bd12008-07-27 21:46:04 +00002889 SDValue Root;
Dan Gohmane45821b2008-07-25 00:04:14 +00002890 bool ConstantMemory = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002891 if (I.isVolatile())
Dan Gohmane45821b2008-07-25 00:04:14 +00002892 // Serialize volatile loads with other side effects.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002893 Root = getRoot();
Dan Gohmane45821b2008-07-25 00:04:14 +00002894 else if (AA.pointsToConstantMemory(SV)) {
2895 // Do not serialize (non-volatile) loads of constant memory with anything.
2896 Root = DAG.getEntryNode();
2897 ConstantMemory = true;
2898 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002899 // Do not serialize non-volatile loads against each other.
2900 Root = DAG.getRoot();
2901 }
2902
Dan Gohman8181bd12008-07-27 21:46:04 +00002903 SmallVector<SDValue, 4> Values(NumValues);
2904 SmallVector<SDValue, 4> Chains(NumValues);
Dan Gohman012bf582008-06-07 02:02:36 +00002905 MVT PtrVT = Ptr.getValueType();
2906 for (unsigned i = 0; i != NumValues; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002907 SDValue L = DAG.getLoad(ValueVTs[i], Root,
Dan Gohman012bf582008-06-07 02:02:36 +00002908 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2909 DAG.getConstant(Offsets[i], PtrVT)),
2910 SV, Offsets[i],
2911 isVolatile, Alignment);
2912 Values[i] = L;
2913 Chains[i] = L.getValue(1);
2914 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002915
Dan Gohmane45821b2008-07-25 00:04:14 +00002916 if (!ConstantMemory) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002917 SDValue Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
Dan Gohmane45821b2008-07-25 00:04:14 +00002918 &Chains[0], NumValues);
2919 if (isVolatile)
2920 DAG.setRoot(Chain);
2921 else
2922 PendingLoads.push_back(Chain);
2923 }
Dan Gohman012bf582008-06-07 02:02:36 +00002924
Duncan Sandsf19591c2008-06-30 10:19:09 +00002925 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2926 &Values[0], NumValues));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002927}
2928
2929
2930void SelectionDAGLowering::visitStore(StoreInst &I) {
2931 Value *SrcV = I.getOperand(0);
Dan Gohman012bf582008-06-07 02:02:36 +00002932 Value *PtrV = I.getOperand(1);
Dan Gohman012bf582008-06-07 02:02:36 +00002933
2934 SmallVector<MVT, 4> ValueVTs;
2935 SmallVector<uint64_t, 4> Offsets;
2936 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2937 unsigned NumValues = ValueVTs.size();
Dan Gohman9115c7e2008-06-09 15:21:47 +00002938 if (NumValues == 0)
2939 return;
Dan Gohman012bf582008-06-07 02:02:36 +00002940
Dan Gohman4a136fc2008-07-30 18:36:51 +00002941 // Get the lowered operands. Note that we do this after
2942 // checking if NumResults is zero, because with zero results
2943 // the operands won't have values in the map.
2944 SDValue Src = getValue(SrcV);
2945 SDValue Ptr = getValue(PtrV);
2946
Dan Gohman8181bd12008-07-27 21:46:04 +00002947 SDValue Root = getRoot();
2948 SmallVector<SDValue, 4> Chains(NumValues);
Dan Gohman012bf582008-06-07 02:02:36 +00002949 MVT PtrVT = Ptr.getValueType();
2950 bool isVolatile = I.isVolatile();
2951 unsigned Alignment = I.getAlignment();
2952 for (unsigned i = 0; i != NumValues; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00002953 Chains[i] = DAG.getStore(Root, SDValue(Src.Val, Src.ResNo + i),
Dan Gohman012bf582008-06-07 02:02:36 +00002954 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2955 DAG.getConstant(Offsets[i], PtrVT)),
2956 PtrV, Offsets[i],
2957 isVolatile, Alignment);
2958
2959 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002960}
2961
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002962/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2963/// node.
2964void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2965 unsigned Intrinsic) {
Duncan Sands79d28872007-12-03 20:06:50 +00002966 bool HasChain = !I.doesNotAccessMemory();
2967 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2968
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002969 // Build the operand list.
Dan Gohman8181bd12008-07-27 21:46:04 +00002970 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002971 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2972 if (OnlyLoad) {
2973 // We don't need to serialize loads against other loads.
2974 Ops.push_back(DAG.getRoot());
2975 } else {
2976 Ops.push_back(getRoot());
2977 }
2978 }
2979
2980 // Add the intrinsic ID as an integer operand.
2981 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2982
2983 // Add all operands of the call to the operand list.
2984 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002985 SDValue Op = getValue(I.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002986 assert(TLI.isTypeLegal(Op.getValueType()) &&
2987 "Intrinsic uses a non-legal type?");
2988 Ops.push_back(Op);
2989 }
2990
Duncan Sands92c43912008-06-06 12:08:01 +00002991 std::vector<MVT> VTs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002992 if (I.getType() != Type::VoidTy) {
Duncan Sands92c43912008-06-06 12:08:01 +00002993 MVT VT = TLI.getValueType(I.getType());
2994 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002995 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands92c43912008-06-06 12:08:01 +00002996 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002997
Duncan Sands92c43912008-06-06 12:08:01 +00002998 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002999 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
3000 }
3001
3002 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
3003 VTs.push_back(VT);
3004 }
3005 if (HasChain)
3006 VTs.push_back(MVT::Other);
3007
Duncan Sands92c43912008-06-06 12:08:01 +00003008 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003009
3010 // Create the node.
Dan Gohman8181bd12008-07-27 21:46:04 +00003011 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003012 if (!HasChain)
3013 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
3014 &Ops[0], Ops.size());
3015 else if (I.getType() != Type::VoidTy)
3016 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
3017 &Ops[0], Ops.size());
3018 else
3019 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
3020 &Ops[0], Ops.size());
3021
3022 if (HasChain) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003023 SDValue Chain = Result.getValue(Result.Val->getNumValues()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003024 if (OnlyLoad)
3025 PendingLoads.push_back(Chain);
3026 else
3027 DAG.setRoot(Chain);
3028 }
3029 if (I.getType() != Type::VoidTy) {
3030 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands92c43912008-06-06 12:08:01 +00003031 MVT VT = TLI.getValueType(PTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003032 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
3033 }
3034 setValue(&I, Result);
3035 }
3036}
3037
3038/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
3039static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov48fc88f2008-05-07 22:54:15 +00003040 V = V->stripPointerCasts();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003041 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov53422f62008-02-20 11:10:28 +00003042 assert ((GV || isa<ConstantPointerNull>(V)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003043 "TypeInfo must be a global variable or NULL");
3044 return GV;
3045}
3046
3047/// addCatchInfo - Extract the personality and type infos from an eh.selector
3048/// call, and add them to the specified machine basic block.
3049static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3050 MachineBasicBlock *MBB) {
3051 // Inform the MachineModuleInfo of the personality for this landing pad.
3052 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3053 assert(CE->getOpcode() == Instruction::BitCast &&
3054 isa<Function>(CE->getOperand(0)) &&
3055 "Personality should be a function");
3056 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3057
3058 // Gather all the type infos for this landing pad and pass them along to
3059 // MachineModuleInfo.
3060 std::vector<GlobalVariable *> TyInfo;
3061 unsigned N = I.getNumOperands();
3062
3063 for (unsigned i = N - 1; i > 2; --i) {
3064 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3065 unsigned FilterLength = CI->getZExtValue();
Duncan Sands923fdb12007-08-27 15:47:50 +00003066 unsigned FirstCatch = i + FilterLength + !FilterLength;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003067 assert (FirstCatch <= N && "Invalid filter length");
3068
3069 if (FirstCatch < N) {
3070 TyInfo.reserve(N - FirstCatch);
3071 for (unsigned j = FirstCatch; j < N; ++j)
3072 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3073 MMI->addCatchTypeInfo(MBB, TyInfo);
3074 TyInfo.clear();
3075 }
3076
Duncan Sands923fdb12007-08-27 15:47:50 +00003077 if (!FilterLength) {
3078 // Cleanup.
3079 MMI->addCleanup(MBB);
3080 } else {
3081 // Filter.
3082 TyInfo.reserve(FilterLength - 1);
3083 for (unsigned j = i + 1; j < FirstCatch; ++j)
3084 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3085 MMI->addFilterTypeInfo(MBB, TyInfo);
3086 TyInfo.clear();
3087 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003088
3089 N = i;
3090 }
3091 }
3092
3093 if (N > 3) {
3094 TyInfo.reserve(N - 3);
3095 for (unsigned j = 3; j < N; ++j)
3096 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3097 MMI->addCatchTypeInfo(MBB, TyInfo);
3098 }
3099}
3100
Mon P Wang078a62d2008-05-05 19:05:59 +00003101
3102/// Inlined utility function to implement binary input atomic intrinsics for
3103// visitIntrinsicCall: I is a call instruction
3104// Op is the associated NodeType for I
3105const char *
3106SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003107 SDValue Root = getRoot();
3108 SDValue L = DAG.getAtomic(Op, Root,
Mon P Wang078a62d2008-05-05 19:05:59 +00003109 getValue(I.getOperand(1)),
Dan Gohmanc70fa752008-06-25 16:07:49 +00003110 getValue(I.getOperand(2)),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003111 I.getOperand(1));
Mon P Wang078a62d2008-05-05 19:05:59 +00003112 setValue(&I, L);
3113 DAG.setRoot(L.getValue(1));
3114 return 0;
3115}
3116
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003117/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3118/// we want to emit this as a call to a named external function, return the name
3119/// otherwise lower it and return null.
3120const char *
3121SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3122 switch (Intrinsic) {
3123 default:
3124 // By default, turn this into a target intrinsic node.
3125 visitTargetIntrinsic(I, Intrinsic);
3126 return 0;
3127 case Intrinsic::vastart: visitVAStart(I); return 0;
3128 case Intrinsic::vaend: visitVAEnd(I); return 0;
3129 case Intrinsic::vacopy: visitVACopy(I); return 0;
3130 case Intrinsic::returnaddress:
3131 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3132 getValue(I.getOperand(1))));
3133 return 0;
3134 case Intrinsic::frameaddress:
3135 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3136 getValue(I.getOperand(1))));
3137 return 0;
3138 case Intrinsic::setjmp:
3139 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3140 break;
3141 case Intrinsic::longjmp:
3142 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3143 break;
3144 case Intrinsic::memcpy_i32:
Dan Gohmane8b391e2008-04-12 04:36:06 +00003145 case Intrinsic::memcpy_i64: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003146 SDValue Op1 = getValue(I.getOperand(1));
3147 SDValue Op2 = getValue(I.getOperand(2));
3148 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohmane8b391e2008-04-12 04:36:06 +00003149 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3150 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3151 I.getOperand(1), 0, I.getOperand(2), 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003152 return 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00003153 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003154 case Intrinsic::memset_i32:
Dan Gohmane8b391e2008-04-12 04:36:06 +00003155 case Intrinsic::memset_i64: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003156 SDValue Op1 = getValue(I.getOperand(1));
3157 SDValue Op2 = getValue(I.getOperand(2));
3158 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohmane8b391e2008-04-12 04:36:06 +00003159 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3160 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3161 I.getOperand(1), 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003162 return 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00003163 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003164 case Intrinsic::memmove_i32:
Dan Gohmane8b391e2008-04-12 04:36:06 +00003165 case Intrinsic::memmove_i64: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003166 SDValue Op1 = getValue(I.getOperand(1));
3167 SDValue Op2 = getValue(I.getOperand(2));
3168 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohmane8b391e2008-04-12 04:36:06 +00003169 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3170
3171 // If the source and destination are known to not be aliases, we can
3172 // lower memmove as memcpy.
3173 uint64_t Size = -1ULL;
3174 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3175 Size = C->getValue();
3176 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3177 AliasAnalysis::NoAlias) {
3178 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3179 I.getOperand(1), 0, I.getOperand(2), 0));
3180 return 0;
3181 }
3182
3183 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3184 I.getOperand(1), 0, I.getOperand(2), 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003185 return 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00003186 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003187 case Intrinsic::dbg_stoppoint: {
3188 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3189 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
3190 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003191 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
3192 assert(DD && "Not a debug information descriptor");
Dan Gohman472d12c2008-06-30 20:59:49 +00003193 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3194 SPI.getLine(),
3195 SPI.getColumn(),
3196 cast<CompileUnitDesc>(DD)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003197 }
3198
3199 return 0;
3200 }
3201 case Intrinsic::dbg_region_start: {
3202 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3203 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
3204 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3205 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Dan Gohmanfa607c92008-07-01 00:05:16 +00003206 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003207 }
3208
3209 return 0;
3210 }
3211 case Intrinsic::dbg_region_end: {
3212 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3213 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
3214 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3215 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Dan Gohmanfa607c92008-07-01 00:05:16 +00003216 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003217 }
3218
3219 return 0;
3220 }
3221 case Intrinsic::dbg_func_start: {
3222 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Chenga53c40a2008-02-01 09:10:45 +00003223 if (!MMI) return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003224 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Chenga53c40a2008-02-01 09:10:45 +00003225 Value *SP = FSI.getSubprogram();
3226 if (SP && MMI->Verify(SP)) {
3227 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3228 // what (most?) gdb expects.
3229 DebugInfoDesc *DD = MMI->getDescFor(SP);
3230 assert(DD && "Not a debug information descriptor");
3231 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3232 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
Dan Gohman0849b9e2008-06-30 22:21:03 +00003233 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Evan Chenga53c40a2008-02-01 09:10:45 +00003234 // Record the source line but does create a label. It will be emitted
3235 // at asm emission time.
3236 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003237 }
3238
3239 return 0;
3240 }
3241 case Intrinsic::dbg_declare: {
3242 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3243 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Cheng2e28d622008-02-02 04:07:54 +00003244 Value *Variable = DI.getVariable();
3245 if (MMI && Variable && MMI->Verify(Variable))
3246 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3247 getValue(DI.getAddress()), getValue(Variable)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003248 return 0;
3249 }
3250
3251 case Intrinsic::eh_exception: {
Dale Johannesen85535762008-04-02 00:25:04 +00003252 if (!CurMBB->isLandingPad()) {
3253 // FIXME: Mark exception register as live in. Hack for PR1508.
3254 unsigned Reg = TLI.getExceptionAddressRegister();
3255 if (Reg) CurMBB->addLiveIn(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003256 }
Dale Johannesen85535762008-04-02 00:25:04 +00003257 // Insert the EXCEPTIONADDR instruction.
3258 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00003259 SDValue Ops[1];
Dale Johannesen85535762008-04-02 00:25:04 +00003260 Ops[0] = DAG.getRoot();
Dan Gohman8181bd12008-07-27 21:46:04 +00003261 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
Dale Johannesen85535762008-04-02 00:25:04 +00003262 setValue(&I, Op);
3263 DAG.setRoot(Op.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003264 return 0;
3265 }
3266
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003267 case Intrinsic::eh_selector_i32:
3268 case Intrinsic::eh_selector_i64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003269 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands92c43912008-06-06 12:08:01 +00003270 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003271 MVT::i32 : MVT::i64);
3272
Dale Johannesen85535762008-04-02 00:25:04 +00003273 if (MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003274 if (CurMBB->isLandingPad())
3275 addCatchInfo(I, MMI, CurMBB);
3276 else {
3277#ifndef NDEBUG
3278 FuncInfo.CatchInfoLost.insert(&I);
3279#endif
3280 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3281 unsigned Reg = TLI.getExceptionSelectorRegister();
3282 if (Reg) CurMBB->addLiveIn(Reg);
3283 }
3284
3285 // Insert the EHSELECTION instruction.
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003286 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00003287 SDValue Ops[2];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003288 Ops[0] = getValue(I.getOperand(1));
3289 Ops[1] = getRoot();
Dan Gohman8181bd12008-07-27 21:46:04 +00003290 SDValue Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003291 setValue(&I, Op);
3292 DAG.setRoot(Op.getValue(1));
3293 } else {
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003294 setValue(&I, DAG.getConstant(0, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003295 }
3296
3297 return 0;
3298 }
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003299
3300 case Intrinsic::eh_typeid_for_i32:
3301 case Intrinsic::eh_typeid_for_i64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003302 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands92c43912008-06-06 12:08:01 +00003303 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003304 MVT::i32 : MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003305
3306 if (MMI) {
3307 // Find the type id for the given typeinfo.
3308 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
3309
3310 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003311 setValue(&I, DAG.getConstant(TypeID, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003312 } else {
3313 // Return something different to eh_selector.
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003314 setValue(&I, DAG.getConstant(1, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003315 }
3316
3317 return 0;
3318 }
3319
3320 case Intrinsic::eh_return: {
3321 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3322
Dale Johannesen85535762008-04-02 00:25:04 +00003323 if (MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003324 MMI->setCallsEHReturn(true);
3325 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3326 MVT::Other,
Dan Gohman9fe5bd62008-03-27 19:56:19 +00003327 getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003328 getValue(I.getOperand(1)),
3329 getValue(I.getOperand(2))));
3330 } else {
3331 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3332 }
3333
3334 return 0;
3335 }
3336
3337 case Intrinsic::eh_unwind_init: {
3338 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3339 MMI->setCallsUnwindInit(true);
3340 }
3341
3342 return 0;
3343 }
3344
3345 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands92c43912008-06-06 12:08:01 +00003346 MVT VT = getValue(I.getOperand(1)).getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003347 SDValue CfaArg;
Duncan Sandsec142ee2008-06-08 20:54:56 +00003348 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen85535762008-04-02 00:25:04 +00003349 CfaArg = DAG.getNode(ISD::TRUNCATE,
3350 TLI.getPointerTy(), getValue(I.getOperand(1)));
3351 else
3352 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3353 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003354
Dan Gohman8181bd12008-07-27 21:46:04 +00003355 SDValue Offset = DAG.getNode(ISD::ADD,
Dale Johannesen85535762008-04-02 00:25:04 +00003356 TLI.getPointerTy(),
3357 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3358 TLI.getPointerTy()),
3359 CfaArg);
3360 setValue(&I, DAG.getNode(ISD::ADD,
3361 TLI.getPointerTy(),
3362 DAG.getNode(ISD::FRAMEADDR,
3363 TLI.getPointerTy(),
3364 DAG.getConstant(0,
3365 TLI.getPointerTy())),
3366 Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003367 return 0;
3368 }
3369
Dale Johannesenc339d8e2007-10-02 17:43:59 +00003370 case Intrinsic::sqrt:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003371 setValue(&I, DAG.getNode(ISD::FSQRT,
3372 getValue(I.getOperand(1)).getValueType(),
3373 getValue(I.getOperand(1))));
3374 return 0;
Dale Johannesenc339d8e2007-10-02 17:43:59 +00003375 case Intrinsic::powi:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003376 setValue(&I, DAG.getNode(ISD::FPOWI,
3377 getValue(I.getOperand(1)).getValueType(),
3378 getValue(I.getOperand(1)),
3379 getValue(I.getOperand(2))));
3380 return 0;
Dan Gohmane1bb8c12007-10-12 00:01:22 +00003381 case Intrinsic::sin:
3382 setValue(&I, DAG.getNode(ISD::FSIN,
3383 getValue(I.getOperand(1)).getValueType(),
3384 getValue(I.getOperand(1))));
3385 return 0;
3386 case Intrinsic::cos:
3387 setValue(&I, DAG.getNode(ISD::FCOS,
3388 getValue(I.getOperand(1)).getValueType(),
3389 getValue(I.getOperand(1))));
3390 return 0;
3391 case Intrinsic::pow:
3392 setValue(&I, DAG.getNode(ISD::FPOW,
3393 getValue(I.getOperand(1)).getValueType(),
3394 getValue(I.getOperand(1)),
3395 getValue(I.getOperand(2))));
3396 return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003397 case Intrinsic::pcmarker: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003398 SDValue Tmp = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003399 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3400 return 0;
3401 }
3402 case Intrinsic::readcyclecounter: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003403 SDValue Op = getRoot();
3404 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003405 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3406 &Op, 1);
3407 setValue(&I, Tmp);
3408 DAG.setRoot(Tmp.getValue(1));
3409 return 0;
3410 }
3411 case Intrinsic::part_select: {
3412 // Currently not implemented: just abort
3413 assert(0 && "part_select intrinsic not implemented");
3414 abort();
3415 }
3416 case Intrinsic::part_set: {
3417 // Currently not implemented: just abort
3418 assert(0 && "part_set intrinsic not implemented");
3419 abort();
3420 }
3421 case Intrinsic::bswap:
3422 setValue(&I, DAG.getNode(ISD::BSWAP,
3423 getValue(I.getOperand(1)).getValueType(),
3424 getValue(I.getOperand(1))));
3425 return 0;
3426 case Intrinsic::cttz: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003427 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00003428 MVT Ty = Arg.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003429 SDValue result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003430 setValue(&I, result);
3431 return 0;
3432 }
3433 case Intrinsic::ctlz: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003434 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00003435 MVT Ty = Arg.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003436 SDValue result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003437 setValue(&I, result);
3438 return 0;
3439 }
3440 case Intrinsic::ctpop: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003441 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00003442 MVT Ty = Arg.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003443 SDValue result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003444 setValue(&I, result);
3445 return 0;
3446 }
3447 case Intrinsic::stacksave: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003448 SDValue Op = getRoot();
3449 SDValue Tmp = DAG.getNode(ISD::STACKSAVE,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003450 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
3451 setValue(&I, Tmp);
3452 DAG.setRoot(Tmp.getValue(1));
3453 return 0;
3454 }
3455 case Intrinsic::stackrestore: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003456 SDValue Tmp = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003457 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
3458 return 0;
3459 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003460 case Intrinsic::var_annotation:
3461 // Discard annotate attributes
3462 return 0;
Duncan Sands38947cd2007-07-27 12:58:54 +00003463
Duncan Sands38947cd2007-07-27 12:58:54 +00003464 case Intrinsic::init_trampoline: {
Anton Korobeynikov48fc88f2008-05-07 22:54:15 +00003465 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands38947cd2007-07-27 12:58:54 +00003466
Dan Gohman8181bd12008-07-27 21:46:04 +00003467 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00003468 Ops[0] = getRoot();
3469 Ops[1] = getValue(I.getOperand(1));
3470 Ops[2] = getValue(I.getOperand(2));
3471 Ops[3] = getValue(I.getOperand(3));
3472 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3473 Ops[5] = DAG.getSrcValue(F);
3474
Dan Gohman8181bd12008-07-27 21:46:04 +00003475 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE,
Duncan Sands7407a9f2007-09-11 14:10:23 +00003476 DAG.getNodeValueTypes(TLI.getPointerTy(),
3477 MVT::Other), 2,
3478 Ops, 6);
3479
3480 setValue(&I, Tmp);
3481 DAG.setRoot(Tmp.getValue(1));
Duncan Sands38947cd2007-07-27 12:58:54 +00003482 return 0;
3483 }
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00003484
3485 case Intrinsic::gcroot:
3486 if (GCI) {
3487 Value *Alloca = I.getOperand(1);
3488 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3489
3490 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3491 GCI->addStackRoot(FI->getIndex(), TypeMap);
3492 }
3493 return 0;
3494
3495 case Intrinsic::gcread:
3496 case Intrinsic::gcwrite:
3497 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3498 return 0;
3499
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003500 case Intrinsic::flt_rounds: {
Dan Gohman819574c2008-01-31 00:41:03 +00003501 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003502 return 0;
3503 }
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003504
3505 case Intrinsic::trap: {
3506 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3507 return 0;
3508 }
Evan Chengd1d68072008-03-08 00:58:38 +00003509 case Intrinsic::prefetch: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003510 SDValue Ops[4];
Evan Chengd1d68072008-03-08 00:58:38 +00003511 Ops[0] = getRoot();
3512 Ops[1] = getValue(I.getOperand(1));
3513 Ops[2] = getValue(I.getOperand(2));
3514 Ops[3] = getValue(I.getOperand(3));
3515 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3516 return 0;
3517 }
3518
Andrew Lenharth785610d2008-02-16 01:24:58 +00003519 case Intrinsic::memory_barrier: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003520 SDValue Ops[6];
Andrew Lenharth785610d2008-02-16 01:24:58 +00003521 Ops[0] = getRoot();
3522 for (int x = 1; x < 6; ++x)
3523 Ops[x] = getValue(I.getOperand(x));
3524
3525 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3526 return 0;
3527 }
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003528 case Intrinsic::atomic_cmp_swap: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003529 SDValue Root = getRoot();
3530 SDValue L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthe44f3902008-02-21 06:45:13 +00003531 getValue(I.getOperand(1)),
3532 getValue(I.getOperand(2)),
Dan Gohmanc70fa752008-06-25 16:07:49 +00003533 getValue(I.getOperand(3)),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003534 I.getOperand(1));
Andrew Lenharthe44f3902008-02-21 06:45:13 +00003535 setValue(&I, L);
3536 DAG.setRoot(L.getValue(1));
3537 return 0;
3538 }
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003539 case Intrinsic::atomic_load_add:
3540 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3541 case Intrinsic::atomic_load_sub:
3542 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang078a62d2008-05-05 19:05:59 +00003543 case Intrinsic::atomic_load_and:
3544 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3545 case Intrinsic::atomic_load_or:
3546 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3547 case Intrinsic::atomic_load_xor:
3548 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00003549 case Intrinsic::atomic_load_nand:
3550 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang078a62d2008-05-05 19:05:59 +00003551 case Intrinsic::atomic_load_min:
3552 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3553 case Intrinsic::atomic_load_max:
3554 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3555 case Intrinsic::atomic_load_umin:
3556 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3557 case Intrinsic::atomic_load_umax:
3558 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3559 case Intrinsic::atomic_swap:
3560 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003561 }
3562}
3563
3564
Dan Gohman8181bd12008-07-27 21:46:04 +00003565void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003566 bool IsTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003567 MachineBasicBlock *LandingPad) {
Duncan Sandse9bc9132007-12-19 09:48:52 +00003568 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003569 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003570 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3571 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sandse9bc9132007-12-19 09:48:52 +00003572
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003573 TargetLowering::ArgListTy Args;
3574 TargetLowering::ArgListEntry Entry;
Duncan Sandse9bc9132007-12-19 09:48:52 +00003575 Args.reserve(CS.arg_size());
3576 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3577 i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003578 SDValue ArgNode = getValue(*i);
Duncan Sandse9bc9132007-12-19 09:48:52 +00003579 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003580
Duncan Sandse9bc9132007-12-19 09:48:52 +00003581 unsigned attrInd = i - CS.arg_begin() + 1;
3582 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3583 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3584 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3585 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3586 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3587 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen9b398782008-02-22 17:49:45 +00003588 Entry.Alignment = CS.getParamAlignment(attrInd);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003589 Args.push_back(Entry);
3590 }
3591
Dale Johannesen85535762008-04-02 00:25:04 +00003592 if (LandingPad && MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003593 // Insert a label before the invoke call to mark the try range. This can be
3594 // used to detect deletion of the invoke via the MachineModuleInfo.
3595 BeginLabel = MMI->NextLabelID();
Dale Johannesen1f68ca82008-04-04 23:48:31 +00003596 // Both PendingLoads and PendingExports must be flushed here;
3597 // this call might not return.
3598 (void)getRoot();
Dan Gohmanfa607c92008-07-01 00:05:16 +00003599 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003600 }
Duncan Sandse9bc9132007-12-19 09:48:52 +00003601
Dan Gohman8181bd12008-07-27 21:46:04 +00003602 std::pair<SDValue,SDValue> Result =
Duncan Sandse9bc9132007-12-19 09:48:52 +00003603 TLI.LowerCallTo(getRoot(), CS.getType(),
3604 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sandsead972e2008-02-14 17:28:50 +00003605 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sandse9bc9132007-12-19 09:48:52 +00003606 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003607 Callee, Args, DAG);
Duncan Sandse9bc9132007-12-19 09:48:52 +00003608 if (CS.getType() != Type::VoidTy)
3609 setValue(CS.getInstruction(), Result.first);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003610 DAG.setRoot(Result.second);
3611
Dale Johannesen85535762008-04-02 00:25:04 +00003612 if (LandingPad && MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003613 // Insert a label at the end of the invoke call to mark the try range. This
3614 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3615 EndLabel = MMI->NextLabelID();
Dan Gohmanfa607c92008-07-01 00:05:16 +00003616 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003617
Duncan Sandse9bc9132007-12-19 09:48:52 +00003618 // Inform MachineModuleInfo of range.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003619 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3620 }
3621}
3622
3623
3624void SelectionDAGLowering::visitCall(CallInst &I) {
3625 const char *RenameFn = 0;
3626 if (Function *F = I.getCalledFunction()) {
Chris Lattner3687e342007-09-10 21:15:22 +00003627 if (F->isDeclaration()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003628 if (unsigned IID = F->getIntrinsicID()) {
3629 RenameFn = visitIntrinsicCall(I, IID);
3630 if (!RenameFn)
3631 return;
Chris Lattner3687e342007-09-10 21:15:22 +00003632 }
3633 }
3634
3635 // Check for well-known libc/libm calls. If the function is internal, it
3636 // can't be a library call.
3637 unsigned NameLen = F->getNameLen();
3638 if (!F->hasInternalLinkage() && NameLen) {
3639 const char *NameStr = F->getNameStart();
3640 if (NameStr[0] == 'c' &&
3641 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3642 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3643 if (I.getNumOperands() == 3 && // Basic sanity checks.
3644 I.getOperand(1)->getType()->isFloatingPoint() &&
3645 I.getType() == I.getOperand(1)->getType() &&
3646 I.getType() == I.getOperand(2)->getType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003647 SDValue LHS = getValue(I.getOperand(1));
3648 SDValue RHS = getValue(I.getOperand(2));
Chris Lattner3687e342007-09-10 21:15:22 +00003649 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3650 LHS, RHS));
3651 return;
3652 }
3653 } else if (NameStr[0] == 'f' &&
3654 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen7f1076b2007-09-26 21:10:55 +00003655 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3656 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner3687e342007-09-10 21:15:22 +00003657 if (I.getNumOperands() == 2 && // Basic sanity checks.
3658 I.getOperand(1)->getType()->isFloatingPoint() &&
3659 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003660 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner3687e342007-09-10 21:15:22 +00003661 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3662 return;
3663 }
3664 } else if (NameStr[0] == 's' &&
3665 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen7f1076b2007-09-26 21:10:55 +00003666 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3667 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner3687e342007-09-10 21:15:22 +00003668 if (I.getNumOperands() == 2 && // Basic sanity checks.
3669 I.getOperand(1)->getType()->isFloatingPoint() &&
3670 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003671 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner3687e342007-09-10 21:15:22 +00003672 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3673 return;
3674 }
3675 } else if (NameStr[0] == 'c' &&
3676 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen7f1076b2007-09-26 21:10:55 +00003677 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3678 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner3687e342007-09-10 21:15:22 +00003679 if (I.getNumOperands() == 2 && // Basic sanity checks.
3680 I.getOperand(1)->getType()->isFloatingPoint() &&
3681 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003682 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner3687e342007-09-10 21:15:22 +00003683 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3684 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003685 }
3686 }
Chris Lattner3687e342007-09-10 21:15:22 +00003687 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003688 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sands1c5526c2007-12-17 18:08:19 +00003689 visitInlineAsm(&I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003690 return;
3691 }
3692
Dan Gohman8181bd12008-07-27 21:46:04 +00003693 SDValue Callee;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003694 if (!RenameFn)
3695 Callee = getValue(I.getOperand(0));
3696 else
3697 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
3698
Duncan Sandse9bc9132007-12-19 09:48:52 +00003699 LowerCallTo(&I, Callee, I.isTailCall());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003700}
3701
3702
3703/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3704/// this value and returns the result as a ValueVT value. This uses
3705/// Chain/Flag as the input and updates them for the output Chain/Flag.
3706/// If the Flag pointer is NULL, no flag is used.
Dan Gohman8181bd12008-07-27 21:46:04 +00003707SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
3708 SDValue &Chain,
3709 SDValue *Flag) const {
Dan Gohman30a71f52008-04-25 18:27:55 +00003710 // Assemble the legal parts into the final values.
Dan Gohman8181bd12008-07-27 21:46:04 +00003711 SmallVector<SDValue, 4> Values(ValueVTs.size());
3712 SmallVector<SDValue, 8> Parts;
Chris Lattner02d73b32008-04-28 07:16:35 +00003713 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman30a71f52008-04-25 18:27:55 +00003714 // Copy the legal parts from the registers.
Duncan Sands92c43912008-06-06 12:08:01 +00003715 MVT ValueVT = ValueVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003716 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands92c43912008-06-06 12:08:01 +00003717 MVT RegisterVT = RegVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003718
Chris Lattner02d73b32008-04-28 07:16:35 +00003719 Parts.resize(NumRegs);
Dan Gohman30a71f52008-04-25 18:27:55 +00003720 for (unsigned i = 0; i != NumRegs; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003721 SDValue P;
Chris Lattner02d73b32008-04-28 07:16:35 +00003722 if (Flag == 0)
3723 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3724 else {
3725 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman30a71f52008-04-25 18:27:55 +00003726 *Flag = P.getValue(2);
Chris Lattner02d73b32008-04-28 07:16:35 +00003727 }
3728 Chain = P.getValue(1);
Chris Lattner68068cc2008-06-17 06:09:18 +00003729
3730 // If the source register was virtual and if we know something about it,
3731 // add an assert node.
3732 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3733 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3734 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3735 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3736 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3737 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3738
3739 unsigned RegSize = RegisterVT.getSizeInBits();
3740 unsigned NumSignBits = LOI.NumSignBits;
3741 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3742
3743 // FIXME: We capture more information than the dag can represent. For
3744 // now, just use the tightest assertzext/assertsext possible.
3745 bool isSExt = true;
3746 MVT FromVT(MVT::Other);
3747 if (NumSignBits == RegSize)
3748 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3749 else if (NumZeroBits >= RegSize-1)
3750 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3751 else if (NumSignBits > RegSize-8)
3752 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3753 else if (NumZeroBits >= RegSize-9)
3754 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3755 else if (NumSignBits > RegSize-16)
3756 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3757 else if (NumZeroBits >= RegSize-17)
3758 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3759 else if (NumSignBits > RegSize-32)
3760 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3761 else if (NumZeroBits >= RegSize-33)
3762 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3763
3764 if (FromVT != MVT::Other) {
3765 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3766 RegisterVT, P, DAG.getValueType(FromVT));
3767
3768 }
3769 }
3770 }
3771
Dan Gohman30a71f52008-04-25 18:27:55 +00003772 Parts[Part+i] = P;
3773 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003774
Dan Gohman30a71f52008-04-25 18:27:55 +00003775 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3776 ValueVT);
3777 Part += NumRegs;
3778 }
Duncan Sands698842f2008-07-02 17:40:58 +00003779
Duncan Sandsf19591c2008-06-30 10:19:09 +00003780 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3781 &Values[0], ValueVTs.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003782}
3783
3784/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3785/// specified value into the registers specified by this object. This uses
3786/// Chain/Flag as the input and updates them for the output Chain/Flag.
3787/// If the Flag pointer is NULL, no flag is used.
Dan Gohman8181bd12008-07-27 21:46:04 +00003788void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG,
3789 SDValue &Chain, SDValue *Flag) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003790 // Get the list of the values's legal parts.
Dan Gohman30a71f52008-04-25 18:27:55 +00003791 unsigned NumRegs = Regs.size();
Dan Gohman8181bd12008-07-27 21:46:04 +00003792 SmallVector<SDValue, 8> Parts(NumRegs);
Chris Lattner02d73b32008-04-28 07:16:35 +00003793 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands92c43912008-06-06 12:08:01 +00003794 MVT ValueVT = ValueVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003795 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands92c43912008-06-06 12:08:01 +00003796 MVT RegisterVT = RegVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003797
3798 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3799 &Parts[Part], NumParts, RegisterVT);
3800 Part += NumParts;
3801 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003802
3803 // Copy the parts into the registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00003804 SmallVector<SDValue, 8> Chains(NumRegs);
Dan Gohman30a71f52008-04-25 18:27:55 +00003805 for (unsigned i = 0; i != NumRegs; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003806 SDValue Part;
Chris Lattner02d73b32008-04-28 07:16:35 +00003807 if (Flag == 0)
3808 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3809 else {
3810 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003811 *Flag = Part.getValue(1);
Chris Lattner02d73b32008-04-28 07:16:35 +00003812 }
3813 Chains[i] = Part.getValue(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003814 }
Chris Lattner02d73b32008-04-28 07:16:35 +00003815
Evan Cheng80cb49e2008-04-28 22:07:13 +00003816 if (NumRegs == 1 || Flag)
3817 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3818 // flagged to it. That is the CopyToReg nodes and the user are considered
3819 // a single scheduling unit. If we create a TokenFactor and return it as
3820 // chain, then the TokenFactor is both a predecessor (operand) of the
3821 // user as well as a successor (the TF operands are flagged to the user).
3822 // c1, f1 = CopyToReg
3823 // c2, f2 = CopyToReg
3824 // c3 = TokenFactor c1, c2
3825 // ...
3826 // = op c3, ..., f2
3827 Chain = Chains[NumRegs-1];
Chris Lattner02d73b32008-04-28 07:16:35 +00003828 else
3829 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003830}
3831
3832/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3833/// operand list. This adds the code marker and includes the number of
3834/// values added into it.
3835void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00003836 std::vector<SDValue> &Ops) const {
Duncan Sands92c43912008-06-06 12:08:01 +00003837 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003838 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner02d73b32008-04-28 07:16:35 +00003839 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3840 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands92c43912008-06-06 12:08:01 +00003841 MVT RegisterVT = RegVTs[Value];
Chris Lattner02d73b32008-04-28 07:16:35 +00003842 for (unsigned i = 0; i != NumRegs; ++i)
3843 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman30a71f52008-04-25 18:27:55 +00003844 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003845}
3846
3847/// isAllocatableRegister - If the specified register is safe to allocate,
3848/// i.e. it isn't a stack pointer or some other special register, return the
3849/// register class for the register. Otherwise, return null.
3850static const TargetRegisterClass *
3851isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman1e57df32008-02-10 18:45:23 +00003852 const TargetLowering &TLI,
3853 const TargetRegisterInfo *TRI) {
Duncan Sands92c43912008-06-06 12:08:01 +00003854 MVT FoundVT = MVT::Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003855 const TargetRegisterClass *FoundRC = 0;
Dan Gohman1e57df32008-02-10 18:45:23 +00003856 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3857 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands92c43912008-06-06 12:08:01 +00003858 MVT ThisVT = MVT::Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003859
3860 const TargetRegisterClass *RC = *RCI;
3861 // If none of the the value types for this register class are valid, we
3862 // can't use it. For example, 64-bit reg classes on 32-bit targets.
3863 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3864 I != E; ++I) {
3865 if (TLI.isTypeLegal(*I)) {
3866 // If we have already found this register in a different register class,
3867 // choose the one with the largest VT specified. For example, on
3868 // PowerPC, we favor f64 register classes over f32.
Duncan Sandsec142ee2008-06-08 20:54:56 +00003869 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003870 ThisVT = *I;
3871 break;
3872 }
3873 }
3874 }
3875
3876 if (ThisVT == MVT::Other) continue;
3877
3878 // NOTE: This isn't ideal. In particular, this might allocate the
3879 // frame pointer in functions that need it (due to them not being taken
3880 // out of allocation, because a variable sized allocation hasn't been seen
3881 // yet). This is a slight code pessimization, but should still work.
3882 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3883 E = RC->allocation_order_end(MF); I != E; ++I)
3884 if (*I == Reg) {
3885 // We found a matching register class. Keep looking at others in case
3886 // we find one with larger registers that this physreg is also in.
3887 FoundRC = RC;
3888 FoundVT = ThisVT;
3889 break;
3890 }
3891 }
3892 return FoundRC;
3893}
3894
3895
3896namespace {
3897/// AsmOperandInfo - This contains information for each constraint that we are
3898/// lowering.
Evan Chengbcd66442008-02-26 02:33:44 +00003899struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3900 /// CallOperand - If this is the result output operand or a clobber
3901 /// this is null, otherwise it is the incoming operand to the CallInst.
3902 /// This gets modified as the asm is processed.
Dan Gohman8181bd12008-07-27 21:46:04 +00003903 SDValue CallOperand;
Evan Chengbcd66442008-02-26 02:33:44 +00003904
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003905 /// AssignedRegs - If this is a register or register class operand, this
3906 /// contains the set of register corresponding to the operand.
3907 RegsForValue AssignedRegs;
3908
Dan Gohman30a71f52008-04-25 18:27:55 +00003909 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Chengbcd66442008-02-26 02:33:44 +00003910 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003911 }
3912
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003913 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3914 /// busy in OutputRegs/InputRegs.
3915 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3916 std::set<unsigned> &OutputRegs,
Chris Lattnerbd0818b2008-02-21 04:55:52 +00003917 std::set<unsigned> &InputRegs,
3918 const TargetRegisterInfo &TRI) const {
3919 if (isOutReg) {
3920 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3921 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3922 }
3923 if (isInReg) {
3924 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3925 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3926 }
3927 }
3928
3929private:
3930 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3931 /// specified set.
3932 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3933 const TargetRegisterInfo &TRI) {
3934 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3935 Regs.insert(Reg);
3936 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3937 for (; *Aliases; ++Aliases)
3938 Regs.insert(*Aliases);
3939 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003940};
3941} // end anon namespace.
3942
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003943
Chris Lattner75a19162008-02-21 19:43:13 +00003944/// GetRegistersForValue - Assign registers (virtual or physical) for the
3945/// specified operand. We prefer to assign virtual registers, to allow the
3946/// register allocator handle the assignment process. However, if the asm uses
3947/// features that we can't model on machineinstrs, we have SDISel do the
3948/// allocation. This produces generally horrible, but correct, code.
3949///
3950/// OpInfo describes the operand.
3951/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3952/// or any explicitly clobbered registers.
3953/// Input and OutputRegs are the set of already allocated physical registers.
3954///
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003955void SelectionDAGLowering::
Evan Chengbcd66442008-02-26 02:33:44 +00003956GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003957 std::set<unsigned> &OutputRegs,
3958 std::set<unsigned> &InputRegs) {
3959 // Compute whether this value requires an input register, an output register,
3960 // or both.
3961 bool isOutReg = false;
3962 bool isInReg = false;
3963 switch (OpInfo.Type) {
3964 case InlineAsm::isOutput:
3965 isOutReg = true;
3966
3967 // If this is an early-clobber output, or if there is an input
3968 // constraint that matches this, we need to reserve the input register
3969 // so no other inputs allocate to it.
3970 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3971 break;
3972 case InlineAsm::isInput:
3973 isInReg = true;
3974 isOutReg = false;
3975 break;
3976 case InlineAsm::isClobber:
3977 isOutReg = true;
3978 isInReg = true;
3979 break;
3980 }
3981
3982
3983 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner622811e2008-04-28 06:44:42 +00003984 SmallVector<unsigned, 4> Regs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003985
3986 // If this is a constraint for a single physreg, or a constraint for a
3987 // register class, find it.
3988 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
3989 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3990 OpInfo.ConstraintVT);
3991
3992 unsigned NumRegs = 1;
3993 if (OpInfo.ConstraintVT != MVT::Other)
3994 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands92c43912008-06-06 12:08:01 +00003995 MVT RegVT;
3996 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003997
3998
3999 // If this is a constraint for a specific physical register, like {r17},
4000 // assign it now.
4001 if (PhysReg.first) {
4002 if (OpInfo.ConstraintVT == MVT::Other)
4003 ValueVT = *PhysReg.second->vt_begin();
4004
4005 // Get the actual register value type. This is important, because the user
4006 // may have asked for (e.g.) the AX register in i32 type. We need to
4007 // remember that AX is actually i16 to get the right extension.
4008 RegVT = *PhysReg.second->vt_begin();
4009
4010 // This is a explicit reference to a physical register.
4011 Regs.push_back(PhysReg.first);
4012
4013 // If this is an expanded reference, add the rest of the regs to Regs.
4014 if (NumRegs != 1) {
4015 TargetRegisterClass::iterator I = PhysReg.second->begin();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004016 for (; *I != PhysReg.first; ++I)
Evan Chengaaa364e2008-05-14 20:07:51 +00004017 assert(I != PhysReg.second->end() && "Didn't find reg!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004018
4019 // Already added the first reg.
4020 --NumRegs; ++I;
4021 for (; NumRegs; --NumRegs, ++I) {
Evan Chengaaa364e2008-05-14 20:07:51 +00004022 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004023 Regs.push_back(*I);
4024 }
4025 }
Dan Gohman30a71f52008-04-25 18:27:55 +00004026 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnerbd0818b2008-02-21 04:55:52 +00004027 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4028 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004029 return;
4030 }
4031
4032 // Otherwise, if this was a reference to an LLVM register class, create vregs
4033 // for this reference.
4034 std::vector<unsigned> RegClassRegs;
4035 const TargetRegisterClass *RC = PhysReg.second;
4036 if (RC) {
4037 // If this is an early clobber or tied register, our regalloc doesn't know
4038 // how to maintain the constraint. If it isn't, go ahead and create vreg
4039 // and let the regalloc do the right thing.
4040 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4041 // If there is some other early clobber and this is an input register,
4042 // then we are forced to pre-allocate the input reg so it doesn't
4043 // conflict with the earlyclobber.
4044 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
4045 RegVT = *PhysReg.second->vt_begin();
4046
4047 if (OpInfo.ConstraintVT == MVT::Other)
4048 ValueVT = RegVT;
4049
4050 // Create the appropriate number of virtual registers.
Chris Lattner1b989192007-12-31 04:13:23 +00004051 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004052 for (; NumRegs; --NumRegs)
Chris Lattner1b989192007-12-31 04:13:23 +00004053 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004054
Dan Gohman30a71f52008-04-25 18:27:55 +00004055 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004056 return;
4057 }
4058
4059 // Otherwise, we can't allocate it. Let the code below figure out how to
4060 // maintain these constraints.
4061 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4062
4063 } else {
4064 // This is a reference to a register class that doesn't directly correspond
4065 // to an LLVM register class. Allocate NumRegs consecutive, available,
4066 // registers from the class.
4067 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4068 OpInfo.ConstraintVT);
4069 }
4070
Dan Gohman1e57df32008-02-10 18:45:23 +00004071 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004072 unsigned NumAllocated = 0;
4073 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4074 unsigned Reg = RegClassRegs[i];
4075 // See if this register is available.
4076 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4077 (isInReg && InputRegs.count(Reg))) { // Already used.
4078 // Make sure we find consecutive registers.
4079 NumAllocated = 0;
4080 continue;
4081 }
4082
4083 // Check to see if this register is allocatable (i.e. don't give out the
4084 // stack pointer).
4085 if (RC == 0) {
Dan Gohman1e57df32008-02-10 18:45:23 +00004086 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004087 if (!RC) { // Couldn't allocate this register.
4088 // Reset NumAllocated to make sure we return consecutive registers.
4089 NumAllocated = 0;
4090 continue;
4091 }
4092 }
4093
4094 // Okay, this register is good, we can use it.
4095 ++NumAllocated;
4096
4097 // If we allocated enough consecutive registers, succeed.
4098 if (NumAllocated == NumRegs) {
4099 unsigned RegStart = (i-NumAllocated)+1;
4100 unsigned RegEnd = i+1;
4101 // Mark all of the allocated registers used.
4102 for (unsigned i = RegStart; i != RegEnd; ++i)
4103 Regs.push_back(RegClassRegs[i]);
4104
Dan Gohman30a71f52008-04-25 18:27:55 +00004105 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004106 OpInfo.ConstraintVT);
Chris Lattnerbd0818b2008-02-21 04:55:52 +00004107 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004108 return;
4109 }
4110 }
4111
4112 // Otherwise, we couldn't allocate enough registers for this.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004113}
4114
4115
4116/// visitInlineAsm - Handle a call to an InlineAsm object.
4117///
Duncan Sands1c5526c2007-12-17 18:08:19 +00004118void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4119 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004120
4121 /// ConstraintOperands - Information about all of the constraints.
Evan Chengbcd66442008-02-26 02:33:44 +00004122 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004123
Dan Gohman8181bd12008-07-27 21:46:04 +00004124 SDValue Chain = getRoot();
4125 SDValue Flag;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004126
4127 std::set<unsigned> OutputRegs, InputRegs;
4128
4129 // Do a prepass over the constraints, canonicalizing them, and building up the
4130 // ConstraintOperands list.
4131 std::vector<InlineAsm::ConstraintInfo>
4132 ConstraintInfos = IA->ParseConstraints();
4133
4134 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4135 // constraint. If so, we can't let the register allocator allocate any input
4136 // registers, because it will not know to avoid the earlyclobbered output reg.
4137 bool SawEarlyClobber = false;
4138
Duncan Sands1c5526c2007-12-17 18:08:19 +00004139 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattner5f323302008-04-27 23:44:28 +00004140 unsigned ResNo = 0; // ResNo - The result number of the next output.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004141 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Chengbcd66442008-02-26 02:33:44 +00004142 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4143 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004144
Duncan Sands92c43912008-06-06 12:08:01 +00004145 MVT OpVT = MVT::Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004146
4147 // Compute the value type for each operand.
4148 switch (OpInfo.Type) {
4149 case InlineAsm::isOutput:
Chris Lattner5f323302008-04-27 23:44:28 +00004150 // Indirect outputs just consume an argument.
4151 if (OpInfo.isIndirect) {
Duncan Sands1c5526c2007-12-17 18:08:19 +00004152 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner5f323302008-04-27 23:44:28 +00004153 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004154 }
Chris Lattner5f323302008-04-27 23:44:28 +00004155 // The return value of the call is this value. As such, there is no
4156 // corresponding argument.
4157 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4158 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4159 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4160 } else {
4161 assert(ResNo == 0 && "Asm only has one result!");
4162 OpVT = TLI.getValueType(CS.getType());
4163 }
4164 ++ResNo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004165 break;
4166 case InlineAsm::isInput:
Duncan Sands1c5526c2007-12-17 18:08:19 +00004167 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004168 break;
4169 case InlineAsm::isClobber:
4170 // Nothing to do.
4171 break;
4172 }
4173
4174 // If this is an input or an indirect output, process the call argument.
Dale Johannesencfb19e62007-11-05 21:20:28 +00004175 // BasicBlocks are labels, currently appearing only in asm's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004176 if (OpInfo.CallOperandVal) {
Chris Lattner786c4282008-04-27 00:16:18 +00004177 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4178 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johannesencfb19e62007-11-05 21:20:28 +00004179 else {
4180 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4181 const Type *OpTy = OpInfo.CallOperandVal->getType();
4182 // If this is an indirect operand, the operand is a pointer to the
4183 // accessed type.
4184 if (OpInfo.isIndirect)
4185 OpTy = cast<PointerType>(OpTy)->getElementType();
4186
Dan Gohmanf9a85a32008-05-23 00:34:04 +00004187 // If OpTy is not a single value, it may be a struct/union that we
Dale Johannesencfb19e62007-11-05 21:20:28 +00004188 // can tile with integers.
Dan Gohmanf9a85a32008-05-23 00:34:04 +00004189 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johannesencfb19e62007-11-05 21:20:28 +00004190 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4191 switch (BitSize) {
4192 default: break;
4193 case 1:
4194 case 8:
4195 case 16:
4196 case 32:
4197 case 64:
4198 OpTy = IntegerType::get(BitSize);
4199 break;
4200 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004201 }
Dale Johannesencfb19e62007-11-05 21:20:28 +00004202
4203 OpVT = TLI.getValueType(OpTy, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004204 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004205 }
4206
4207 OpInfo.ConstraintVT = OpVT;
4208
4209 // Compute the constraint code and ConstraintType to use.
Chris Lattner4486c2e2008-04-27 00:37:18 +00004210 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004211
4212 // Keep track of whether we see an earlyclobber.
4213 SawEarlyClobber |= OpInfo.isEarlyClobber;
4214
Chris Lattner75a19162008-02-21 19:43:13 +00004215 // If we see a clobber of a register, it is an early clobber.
Chris Lattner17ac4312008-02-21 20:54:31 +00004216 if (!SawEarlyClobber &&
4217 OpInfo.Type == InlineAsm::isClobber &&
4218 OpInfo.ConstraintType == TargetLowering::C_Register) {
4219 // Note that we want to ignore things that we don't trick here, like
4220 // dirflag, fpsr, flags, etc.
4221 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4222 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4223 OpInfo.ConstraintVT);
4224 if (PhysReg.first || PhysReg.second) {
4225 // This is a register we know of.
4226 SawEarlyClobber = true;
4227 }
4228 }
Chris Lattner75a19162008-02-21 19:43:13 +00004229
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004230 // If this is a memory input, and if the operand is not indirect, do what we
4231 // need to to provide an address for the memory input.
4232 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4233 !OpInfo.isIndirect) {
4234 assert(OpInfo.Type == InlineAsm::isInput &&
4235 "Can only indirectify direct input operands!");
4236
4237 // Memory operands really want the address of the value. If we don't have
4238 // an indirect input, put it in the constpool if we can, otherwise spill
4239 // it to a stack slot.
4240
4241 // If the operand is a float, integer, or vector constant, spill to a
4242 // constant pool entry to get its address.
4243 Value *OpVal = OpInfo.CallOperandVal;
4244 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4245 isa<ConstantVector>(OpVal)) {
4246 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4247 TLI.getPointerTy());
4248 } else {
4249 // Otherwise, create a stack slot and emit a store to it before the
4250 // asm.
4251 const Type *Ty = OpVal->getType();
Duncan Sandsf99fdc62007-11-01 20:53:16 +00004252 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004253 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4254 MachineFunction &MF = DAG.getMachineFunction();
4255 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
Dan Gohman8181bd12008-07-27 21:46:04 +00004256 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004257 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4258 OpInfo.CallOperand = StackSlot;
4259 }
4260
4261 // There is no longer a Value* corresponding to this operand.
4262 OpInfo.CallOperandVal = 0;
4263 // It is now an indirect operand.
4264 OpInfo.isIndirect = true;
4265 }
4266
4267 // If this constraint is for a specific register, allocate it before
4268 // anything else.
4269 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4270 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4271 }
4272 ConstraintInfos.clear();
4273
4274
4275 // Second pass - Loop over all of the operands, assigning virtual or physregs
4276 // to registerclass operands.
4277 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Chengbcd66442008-02-26 02:33:44 +00004278 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004279
4280 // C_Register operands have already been allocated, Other/Memory don't need
4281 // to be.
4282 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4283 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4284 }
4285
4286 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
Dan Gohman8181bd12008-07-27 21:46:04 +00004287 std::vector<SDValue> AsmNodeOperands;
4288 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004289 AsmNodeOperands.push_back(
4290 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4291
4292
4293 // Loop over all of the inputs, copying the operand values into the
4294 // appropriate registers and processing the output regs.
4295 RegsForValue RetValRegs;
Chris Lattner08bbcb82008-04-29 04:29:54 +00004296
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004297 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4298 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4299
4300 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Chengbcd66442008-02-26 02:33:44 +00004301 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004302
4303 switch (OpInfo.Type) {
4304 case InlineAsm::isOutput: {
4305 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4306 OpInfo.ConstraintType != TargetLowering::C_Register) {
4307 // Memory output, or 'other' output (e.g. 'X' constraint).
4308 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
4309
4310 // Add information to the INLINEASM node to know about this output.
4311 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4312 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4313 TLI.getPointerTy()));
4314 AsmNodeOperands.push_back(OpInfo.CallOperand);
4315 break;
4316 }
4317
4318 // Otherwise, this is a register or register class output.
4319
4320 // Copy the output from the appropriate register. Find a register that
4321 // we can use.
4322 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sands10fbb352008-06-17 03:24:13 +00004323 cerr << "Couldn't allocate output reg for constraint '"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004324 << OpInfo.ConstraintCode << "'!\n";
4325 exit(1);
4326 }
4327
Chris Lattner08bbcb82008-04-29 04:29:54 +00004328 // If this is an indirect operand, store through the pointer after the
4329 // asm.
4330 if (OpInfo.isIndirect) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004331 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
4332 OpInfo.CallOperandVal));
Chris Lattner08bbcb82008-04-29 04:29:54 +00004333 } else {
4334 // This is the result value of the call.
4335 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4336 // Concatenate this output onto the outputs list.
4337 RetValRegs.append(OpInfo.AssignedRegs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004338 }
4339
4340 // Add information to the INLINEASM node to know that this register is
4341 // set.
4342 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4343 AsmNodeOperands);
4344 break;
4345 }
4346 case InlineAsm::isInput: {
Dan Gohman8181bd12008-07-27 21:46:04 +00004347 SDValue InOperandVal = OpInfo.CallOperand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004348
4349 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
4350 // If this is required to match an output register we have already set,
4351 // just use its register.
4352 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
4353
4354 // Scan until we find the definition we already emitted of this operand.
4355 // When we find it, create a RegsForValue operand.
4356 unsigned CurOp = 2; // The first operand.
4357 for (; OperandNo; --OperandNo) {
4358 // Advance to the next operand.
4359 unsigned NumOps =
4360 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
4361 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4362 (NumOps & 7) == 4 /*MEM*/) &&
4363 "Skipped past definitions?");
4364 CurOp += (NumOps>>3)+1;
4365 }
4366
4367 unsigned NumOps =
4368 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
4369 if ((NumOps & 7) == 2 /*REGDEF*/) {
4370 // Add NumOps>>3 registers to MatchedRegs.
4371 RegsForValue MatchedRegs;
Dan Gohman30a71f52008-04-25 18:27:55 +00004372 MatchedRegs.TLI = &TLI;
Dan Gohman111e04e2008-05-02 00:03:54 +00004373 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4374 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004375 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4376 unsigned Reg =
4377 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4378 MatchedRegs.Regs.push_back(Reg);
4379 }
4380
4381 // Use the produced MatchedRegs object to
4382 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
4383 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4384 break;
4385 } else {
4386 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattner58d032b2008-02-21 05:27:19 +00004387 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4388 // Add information to the INLINEASM node to know about this input.
4389 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4390 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4391 TLI.getPointerTy()));
4392 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4393 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004394 }
4395 }
4396
4397 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
4398 assert(!OpInfo.isIndirect &&
4399 "Don't know how to handle indirect other inputs yet!");
4400
Dan Gohman8181bd12008-07-27 21:46:04 +00004401 std::vector<SDValue> Ops;
Chris Lattnera531abc2007-08-25 00:47:38 +00004402 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4403 Ops, DAG);
4404 if (Ops.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004405 cerr << "Invalid operand for inline asm constraint '"
4406 << OpInfo.ConstraintCode << "'!\n";
4407 exit(1);
4408 }
4409
4410 // Add information to the INLINEASM node to know about this input.
Chris Lattnera531abc2007-08-25 00:47:38 +00004411 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004412 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4413 TLI.getPointerTy()));
Chris Lattnera531abc2007-08-25 00:47:38 +00004414 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004415 break;
4416 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
4417 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
4418 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4419 "Memory operands expect pointer values");
4420
4421 // Add information to the INLINEASM node to know about this input.
4422 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4423 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4424 TLI.getPointerTy()));
4425 AsmNodeOperands.push_back(InOperandVal);
4426 break;
4427 }
4428
4429 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4430 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4431 "Unknown constraint type!");
4432 assert(!OpInfo.isIndirect &&
4433 "Don't know how to handle indirect register inputs yet!");
4434
4435 // Copy the input into the appropriate registers.
4436 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4437 "Couldn't allocate input reg!");
4438
4439 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
4440
4441 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4442 AsmNodeOperands);
4443 break;
4444 }
4445 case InlineAsm::isClobber: {
4446 // Add the clobbered value to the operand list, so that the register
4447 // allocator is aware that the physreg got clobbered.
4448 if (!OpInfo.AssignedRegs.Regs.empty())
4449 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4450 AsmNodeOperands);
4451 break;
4452 }
4453 }
4454 }
4455
4456 // Finish up input operands.
4457 AsmNodeOperands[0] = Chain;
4458 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4459
4460 Chain = DAG.getNode(ISD::INLINEASM,
4461 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
4462 &AsmNodeOperands[0], AsmNodeOperands.size());
4463 Flag = Chain.getValue(1);
4464
4465 // If this asm returns a register value, copy the result from that register
4466 // and set it as the value of the call.
4467 if (!RetValRegs.Regs.empty()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004468 SDValue Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner626164a2008-04-29 04:48:56 +00004469
4470 // If any of the results of the inline asm is a vector, it may have the
4471 // wrong width/num elts. This can happen for register classes that can
4472 // contain multiple different value types. The preg or vreg allocated may
4473 // not have the same VT as was expected. Convert it to the right type with
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004474 // bit_convert.
Chris Lattner626164a2008-04-29 04:48:56 +00004475 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4476 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00004477 if (Val.Val->getValueType(i).isVector())
Chris Lattner626164a2008-04-29 04:48:56 +00004478 Val = DAG.getNode(ISD::BIT_CONVERT,
4479 TLI.getValueType(ResSTy->getElementType(i)), Val);
4480 }
4481 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00004482 if (Val.getValueType().isVector())
Chris Lattner626164a2008-04-29 04:48:56 +00004483 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4484 Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004485 }
Chris Lattner626164a2008-04-29 04:48:56 +00004486
Duncan Sands1c5526c2007-12-17 18:08:19 +00004487 setValue(CS.getInstruction(), Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004488 }
4489
Dan Gohman8181bd12008-07-27 21:46:04 +00004490 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004491
4492 // Process indirect outputs, first output all of the flagged copies out of
4493 // physregs.
4494 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
4495 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
4496 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohman8181bd12008-07-27 21:46:04 +00004497 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004498 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
4499 }
4500
4501 // Emit the non-flagged stores from the physregs.
Dan Gohman8181bd12008-07-27 21:46:04 +00004502 SmallVector<SDValue, 8> OutChains;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004503 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
4504 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
4505 getValue(StoresToEmit[i].second),
4506 StoresToEmit[i].second, 0));
4507 if (!OutChains.empty())
4508 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4509 &OutChains[0], OutChains.size());
4510 DAG.setRoot(Chain);
4511}
4512
4513
4514void SelectionDAGLowering::visitMalloc(MallocInst &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004515 SDValue Src = getValue(I.getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004516
Duncan Sands92c43912008-06-06 12:08:01 +00004517 MVT IntPtr = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004518
Duncan Sandsec142ee2008-06-08 20:54:56 +00004519 if (IntPtr.bitsLT(Src.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004520 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sandsec142ee2008-06-08 20:54:56 +00004521 else if (IntPtr.bitsGT(Src.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004522 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
4523
4524 // Scale the source by the type size.
Duncan Sandsf99fdc62007-11-01 20:53:16 +00004525 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004526 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner5872a362008-01-17 07:00:52 +00004527 Src, DAG.getIntPtrConstant(ElementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004528
4529 TargetLowering::ArgListTy Args;
4530 TargetLowering::ArgListEntry Entry;
4531 Entry.Node = Src;
4532 Entry.Ty = TLI.getTargetData()->getIntPtrType();
4533 Args.push_back(Entry);
4534
Dan Gohman8181bd12008-07-27 21:46:04 +00004535 std::pair<SDValue,SDValue> Result =
Duncan Sandsead972e2008-02-14 17:28:50 +00004536 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4537 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004538 setValue(&I, Result.first); // Pointers always fit in registers
4539 DAG.setRoot(Result.second);
4540}
4541
4542void SelectionDAGLowering::visitFree(FreeInst &I) {
4543 TargetLowering::ArgListTy Args;
4544 TargetLowering::ArgListEntry Entry;
4545 Entry.Node = getValue(I.getOperand(0));
4546 Entry.Ty = TLI.getTargetData()->getIntPtrType();
4547 Args.push_back(Entry);
Duncan Sands92c43912008-06-06 12:08:01 +00004548 MVT IntPtr = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00004549 std::pair<SDValue,SDValue> Result =
Duncan Sandsead972e2008-02-14 17:28:50 +00004550 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4551 CallingConv::C, true,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004552 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4553 DAG.setRoot(Result.second);
4554}
4555
Evan Chenge637db12008-01-30 18:18:23 +00004556// EmitInstrWithCustomInserter - This method should be implemented by targets
4557// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004558// instructions are special in various ways, which require special support to
4559// insert. The specified MachineInstr is created but not inserted into any
4560// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chenge637db12008-01-30 18:18:23 +00004561MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004562 MachineBasicBlock *MBB) {
4563 cerr << "If a target marks an instruction with "
4564 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chenge637db12008-01-30 18:18:23 +00004565 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004566 abort();
4567 return 0;
4568}
4569
4570void SelectionDAGLowering::visitVAStart(CallInst &I) {
4571 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4572 getValue(I.getOperand(1)),
4573 DAG.getSrcValue(I.getOperand(1))));
4574}
4575
4576void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004577 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004578 getValue(I.getOperand(0)),
4579 DAG.getSrcValue(I.getOperand(0)));
4580 setValue(&I, V);
4581 DAG.setRoot(V.getValue(1));
4582}
4583
4584void SelectionDAGLowering::visitVAEnd(CallInst &I) {
4585 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4586 getValue(I.getOperand(1)),
4587 DAG.getSrcValue(I.getOperand(1))));
4588}
4589
4590void SelectionDAGLowering::visitVACopy(CallInst &I) {
4591 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4592 getValue(I.getOperand(1)),
4593 getValue(I.getOperand(2)),
4594 DAG.getSrcValue(I.getOperand(1)),
4595 DAG.getSrcValue(I.getOperand(2))));
4596}
4597
4598/// TargetLowering::LowerArguments - This is the default LowerArguments
4599/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
4600/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4601/// integrated into SDISel.
Dan Gohmane0208142008-06-30 20:31:15 +00004602void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00004603 SmallVectorImpl<SDValue> &ArgValues) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004604 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
Dan Gohman8181bd12008-07-27 21:46:04 +00004605 SmallVector<SDValue, 3+16> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004606 Ops.push_back(DAG.getRoot());
4607 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4608 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4609
4610 // Add one result value for each formal argument.
Dan Gohmane0208142008-06-30 20:31:15 +00004611 SmallVector<MVT, 16> RetVals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004612 unsigned j = 1;
4613 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4614 I != E; ++I, ++j) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004615 SmallVector<MVT, 4> ValueVTs;
4616 ComputeValueVTs(*this, I->getType(), ValueVTs);
4617 for (unsigned Value = 0, NumValues = ValueVTs.size();
4618 Value != NumValues; ++Value) {
4619 MVT VT = ValueVTs[Value];
4620 const Type *ArgTy = VT.getTypeForMVT();
4621 ISD::ArgFlagsTy Flags;
4622 unsigned OriginalAlignment =
4623 getTargetData()->getABITypeAlignment(ArgTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004624
Dan Gohman1bb94262008-06-09 21:19:23 +00004625 if (F.paramHasAttr(j, ParamAttr::ZExt))
4626 Flags.setZExt();
4627 if (F.paramHasAttr(j, ParamAttr::SExt))
4628 Flags.setSExt();
4629 if (F.paramHasAttr(j, ParamAttr::InReg))
4630 Flags.setInReg();
4631 if (F.paramHasAttr(j, ParamAttr::StructRet))
4632 Flags.setSRet();
4633 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4634 Flags.setByVal();
4635 const PointerType *Ty = cast<PointerType>(I->getType());
4636 const Type *ElementTy = Ty->getElementType();
4637 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4638 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4639 // For ByVal, alignment should be passed from FE. BE will guess if
4640 // this info is not there but there are cases it cannot get right.
4641 if (F.getParamAlignment(j))
4642 FrameAlign = F.getParamAlignment(j);
4643 Flags.setByValAlign(FrameAlign);
4644 Flags.setByValSize(FrameSize);
4645 }
4646 if (F.paramHasAttr(j, ParamAttr::Nest))
4647 Flags.setNest();
4648 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandse111ce82008-02-11 20:58:28 +00004649
Dan Gohman1bb94262008-06-09 21:19:23 +00004650 MVT RegisterVT = getRegisterType(VT);
4651 unsigned NumRegs = getNumRegisters(VT);
4652 for (unsigned i = 0; i != NumRegs; ++i) {
4653 RetVals.push_back(RegisterVT);
4654 ISD::ArgFlagsTy MyFlags = Flags;
4655 if (NumRegs > 1 && i == 0)
4656 MyFlags.setSplit();
4657 // if it isn't first piece, alignment must be 1
4658 else if (i > 0)
4659 MyFlags.setOrigAlign(1);
4660 Ops.push_back(DAG.getArgFlags(MyFlags));
4661 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004662 }
4663 }
4664
4665 RetVals.push_back(MVT::Other);
4666
4667 // Create the node.
4668 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner5cb5add2008-02-13 07:39:09 +00004669 DAG.getVTList(&RetVals[0], RetVals.size()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004670 &Ops[0], Ops.size()).Val;
Chris Lattner5cb5add2008-02-13 07:39:09 +00004671
4672 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4673 // allows exposing the loads that may be part of the argument access to the
4674 // first DAGCombiner pass.
Dan Gohman8181bd12008-07-27 21:46:04 +00004675 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Chris Lattner5cb5add2008-02-13 07:39:09 +00004676
4677 // The number of results should match up, except that the lowered one may have
4678 // an extra flag result.
4679 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4680 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4681 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4682 && "Lowering produced unexpected number of results!");
Dan Gohman890404f2008-07-21 21:04:07 +00004683
4684 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
4685 if (Result != TmpRes.Val && Result->use_empty()) {
4686 HandleSDNode Dummy(DAG.getRoot());
4687 DAG.RemoveDeadNode(Result);
4688 }
4689
Chris Lattner5cb5add2008-02-13 07:39:09 +00004690 Result = TmpRes.Val;
4691
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004692 unsigned NumArgRegs = Result->getNumValues() - 1;
Dan Gohman8181bd12008-07-27 21:46:04 +00004693 DAG.setRoot(SDValue(Result, NumArgRegs));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004694
4695 // Set up the return result vector.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004696 unsigned i = 0;
4697 unsigned Idx = 1;
4698 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4699 ++I, ++Idx) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004700 SmallVector<MVT, 4> ValueVTs;
4701 ComputeValueVTs(*this, I->getType(), ValueVTs);
4702 for (unsigned Value = 0, NumValues = ValueVTs.size();
4703 Value != NumValues; ++Value) {
4704 MVT VT = ValueVTs[Value];
4705 MVT PartVT = getRegisterType(VT);
Duncan Sandse111ce82008-02-11 20:58:28 +00004706
Dan Gohman1bb94262008-06-09 21:19:23 +00004707 unsigned NumParts = getNumRegisters(VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00004708 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohman1bb94262008-06-09 21:19:23 +00004709 for (unsigned j = 0; j != NumParts; ++j)
Dan Gohman8181bd12008-07-27 21:46:04 +00004710 Parts[j] = SDValue(Result, i++);
Duncan Sandse111ce82008-02-11 20:58:28 +00004711
Dan Gohman1bb94262008-06-09 21:19:23 +00004712 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4713 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4714 AssertOp = ISD::AssertSext;
4715 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4716 AssertOp = ISD::AssertZext;
Duncan Sandse111ce82008-02-11 20:58:28 +00004717
Dan Gohmane0208142008-06-30 20:31:15 +00004718 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4719 AssertOp));
Dan Gohman1bb94262008-06-09 21:19:23 +00004720 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004721 }
4722 assert(i == NumArgRegs && "Argument register count mismatch!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004723}
4724
4725
4726/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4727/// implementation, which just inserts an ISD::CALL node, which is later custom
4728/// lowered by the target to something concrete. FIXME: When all targets are
4729/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
Dan Gohman8181bd12008-07-27 21:46:04 +00004730std::pair<SDValue, SDValue>
4731TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
Duncan Sandsead972e2008-02-14 17:28:50 +00004732 bool RetSExt, bool RetZExt, bool isVarArg,
4733 unsigned CallingConv, bool isTailCall,
Dan Gohman8181bd12008-07-27 21:46:04 +00004734 SDValue Callee,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004735 ArgListTy &Args, SelectionDAG &DAG) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004736 SmallVector<SDValue, 32> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004737 Ops.push_back(Chain); // Op#0 - Chain
4738 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4739 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4740 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4741 Ops.push_back(Callee);
4742
4743 // Handle all of the outgoing arguments.
4744 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004745 SmallVector<MVT, 4> ValueVTs;
4746 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4747 for (unsigned Value = 0, NumValues = ValueVTs.size();
4748 Value != NumValues; ++Value) {
4749 MVT VT = ValueVTs[Value];
4750 const Type *ArgTy = VT.getTypeForMVT();
Dan Gohman8181bd12008-07-27 21:46:04 +00004751 SDValue Op = SDValue(Args[i].Node.Val, Args[i].Node.ResNo + Value);
Dan Gohman1bb94262008-06-09 21:19:23 +00004752 ISD::ArgFlagsTy Flags;
4753 unsigned OriginalAlignment =
4754 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sandsc93fae32008-03-21 09:14:45 +00004755
Dan Gohman1bb94262008-06-09 21:19:23 +00004756 if (Args[i].isZExt)
4757 Flags.setZExt();
4758 if (Args[i].isSExt)
4759 Flags.setSExt();
4760 if (Args[i].isInReg)
4761 Flags.setInReg();
4762 if (Args[i].isSRet)
4763 Flags.setSRet();
4764 if (Args[i].isByVal) {
4765 Flags.setByVal();
4766 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4767 const Type *ElementTy = Ty->getElementType();
4768 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4769 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4770 // For ByVal, alignment should come from FE. BE will guess if this
4771 // info is not there but there are cases it cannot get right.
4772 if (Args[i].Alignment)
4773 FrameAlign = Args[i].Alignment;
4774 Flags.setByValAlign(FrameAlign);
4775 Flags.setByValSize(FrameSize);
4776 }
4777 if (Args[i].isNest)
4778 Flags.setNest();
4779 Flags.setOrigAlign(OriginalAlignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004780
Dan Gohman1bb94262008-06-09 21:19:23 +00004781 MVT PartVT = getRegisterType(VT);
4782 unsigned NumParts = getNumRegisters(VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00004783 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohman1bb94262008-06-09 21:19:23 +00004784 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandse111ce82008-02-11 20:58:28 +00004785
Dan Gohman1bb94262008-06-09 21:19:23 +00004786 if (Args[i].isSExt)
4787 ExtendKind = ISD::SIGN_EXTEND;
4788 else if (Args[i].isZExt)
4789 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandse111ce82008-02-11 20:58:28 +00004790
Dan Gohman1bb94262008-06-09 21:19:23 +00004791 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandse111ce82008-02-11 20:58:28 +00004792
Dan Gohman1bb94262008-06-09 21:19:23 +00004793 for (unsigned i = 0; i != NumParts; ++i) {
4794 // if it isn't first piece, alignment must be 1
4795 ISD::ArgFlagsTy MyFlags = Flags;
4796 if (NumParts > 1 && i == 0)
4797 MyFlags.setSplit();
4798 else if (i != 0)
4799 MyFlags.setOrigAlign(1);
Duncan Sandse111ce82008-02-11 20:58:28 +00004800
Dan Gohman1bb94262008-06-09 21:19:23 +00004801 Ops.push_back(Parts[i]);
4802 Ops.push_back(DAG.getArgFlags(MyFlags));
4803 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004804 }
4805 }
4806
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004807 // Figure out the result value types. We start by making a list of
Dan Gohman30a71f52008-04-25 18:27:55 +00004808 // the potentially illegal return value types.
Duncan Sands92c43912008-06-06 12:08:01 +00004809 SmallVector<MVT, 4> LoweredRetTys;
4810 SmallVector<MVT, 4> RetTys;
Dan Gohman30a71f52008-04-25 18:27:55 +00004811 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004812
Dan Gohman30a71f52008-04-25 18:27:55 +00004813 // Then we translate that to a list of legal types.
4814 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands92c43912008-06-06 12:08:01 +00004815 MVT VT = RetTys[I];
4816 MVT RegisterVT = getRegisterType(VT);
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004817 unsigned NumRegs = getNumRegisters(VT);
4818 for (unsigned i = 0; i != NumRegs; ++i)
4819 LoweredRetTys.push_back(RegisterVT);
4820 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004821
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004822 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004823
4824 // Create the CALL node.
Dan Gohman8181bd12008-07-27 21:46:04 +00004825 SDValue Res = DAG.getNode(ISD::CALL,
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004826 DAG.getVTList(&LoweredRetTys[0],
4827 LoweredRetTys.size()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004828 &Ops[0], Ops.size());
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004829 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004830
4831 // Gather up the call result into a single value.
4832 if (RetTy != Type::VoidTy) {
Duncan Sandsead972e2008-02-14 17:28:50 +00004833 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4834
4835 if (RetSExt)
4836 AssertOp = ISD::AssertSext;
4837 else if (RetZExt)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004838 AssertOp = ISD::AssertZext;
Duncan Sandsead972e2008-02-14 17:28:50 +00004839
Dan Gohman8181bd12008-07-27 21:46:04 +00004840 SmallVector<SDValue, 4> ReturnValues;
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004841 unsigned RegNo = 0;
Dan Gohman30a71f52008-04-25 18:27:55 +00004842 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands92c43912008-06-06 12:08:01 +00004843 MVT VT = RetTys[I];
4844 MVT RegisterVT = getRegisterType(VT);
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004845 unsigned NumRegs = getNumRegisters(VT);
4846 unsigned RegNoEnd = NumRegs + RegNo;
Dan Gohman8181bd12008-07-27 21:46:04 +00004847 SmallVector<SDValue, 4> Results;
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004848 for (; RegNo != RegNoEnd; ++RegNo)
4849 Results.push_back(Res.getValue(RegNo));
Dan Gohman8181bd12008-07-27 21:46:04 +00004850 SDValue ReturnValue =
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004851 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4852 AssertOp);
4853 ReturnValues.push_back(ReturnValue);
4854 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00004855 Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4856 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004857 }
4858
4859 return std::make_pair(Res, Chain);
4860}
4861
Dan Gohman8181bd12008-07-27 21:46:04 +00004862SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004863 assert(0 && "LowerOperation not implemented for this target!");
4864 abort();
Dan Gohman8181bd12008-07-27 21:46:04 +00004865 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004866}
4867
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004868
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004869//===----------------------------------------------------------------------===//
4870// SelectionDAGISel code
4871//===----------------------------------------------------------------------===//
4872
Duncan Sands92c43912008-06-06 12:08:01 +00004873unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner1b989192007-12-31 04:13:23 +00004874 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004875}
4876
4877void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
4878 AU.addRequired<AliasAnalysis>();
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00004879 AU.addRequired<CollectorModuleMetadata>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004880 AU.setPreservesAll();
4881}
4882
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004883bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohmancc863aa2007-08-27 16:26:13 +00004884 // Get alias analysis for load/store combining.
4885 AA = &getAnalysis<AliasAnalysis>();
4886
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004887 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00004888 if (MF.getFunction()->hasCollector())
4889 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4890 else
4891 GCI = 0;
Chris Lattner1b989192007-12-31 04:13:23 +00004892 RegInfo = &MF.getRegInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004893 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
4894
4895 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4896
Dale Johannesen85535762008-04-02 00:25:04 +00004897 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4898 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4899 // Mark landing pad.
4900 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004901
Dan Gohmaned825d12008-07-07 23:02:41 +00004902 SelectAllBasicBlocks(Fn, MF, FuncInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004903
4904 // Add function live-ins to entry block live-in set.
4905 BasicBlock *EntryBB = &Fn.getEntryBlock();
4906 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner1b989192007-12-31 04:13:23 +00004907 if (!RegInfo->livein_empty())
4908 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4909 E = RegInfo->livein_end(); I != E; ++I)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004910 BB->addLiveIn(I->first);
4911
4912#ifndef NDEBUG
4913 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4914 "Not all catch info was assigned to a landing pad!");
4915#endif
4916
4917 return true;
4918}
4919
Chris Lattner02d73b32008-04-28 07:16:35 +00004920void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004921 SDValue Op = getValue(V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004922 assert((Op.getOpcode() != ISD::CopyFromReg ||
4923 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
4924 "Copy from a reg to the same reg!");
Dan Gohman9fe5bd62008-03-27 19:56:19 +00004925 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004926
Dan Gohman30a71f52008-04-25 18:27:55 +00004927 RegsForValue RFV(TLI, Reg, V->getType());
Dan Gohman8181bd12008-07-27 21:46:04 +00004928 SDValue Chain = DAG.getEntryNode();
Dan Gohman30a71f52008-04-25 18:27:55 +00004929 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4930 PendingExports.push_back(Chain);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004931}
4932
4933void SelectionDAGISel::
Dan Gohman9fe5bd62008-03-27 19:56:19 +00004934LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004935 // If this is the entry block, emit arguments.
4936 Function &F = *LLVMBB->getParent();
4937 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Dan Gohman8181bd12008-07-27 21:46:04 +00004938 SDValue OldRoot = SDL.DAG.getRoot();
4939 SmallVector<SDValue, 16> Args;
Dan Gohmane0208142008-06-30 20:31:15 +00004940 TLI.LowerArguments(F, SDL.DAG, Args);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004941
4942 unsigned a = 0;
4943 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohman1bb94262008-06-09 21:19:23 +00004944 AI != E; ++AI) {
4945 SmallVector<MVT, 4> ValueVTs;
4946 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4947 unsigned NumValues = ValueVTs.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004948 if (!AI->use_empty()) {
Duncan Sands698842f2008-07-02 17:40:58 +00004949 SDL.setValue(AI, SDL.DAG.getMergeValues(&Args[a], NumValues));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004950 // If this argument is live outside of the entry block, insert a copy from
4951 // whereever we got it to the vreg that other BB's will reference it as.
4952 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4953 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman9fe5bd62008-03-27 19:56:19 +00004954 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004955 }
4956 }
Dan Gohman1bb94262008-06-09 21:19:23 +00004957 a += NumValues;
4958 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004959
4960 // Finally, if the target has anything special to do, allow it to do so.
4961 // FIXME: this should insert code into the DAG!
4962 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
4963}
4964
4965static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4966 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004967 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
4968 if (isSelector(I)) {
4969 // Apply the catch info to DestBB.
4970 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4971#ifndef NDEBUG
Duncan Sands9b7e1482007-11-15 09:54:37 +00004972 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4973 FLI.CatchInfoFound.insert(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004974#endif
4975 }
4976}
4977
Arnold Schwaighofera0032722008-04-30 09:16:33 +00004978/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4979/// whether object offset >= 0.
4980static bool
Dan Gohman8181bd12008-07-27 21:46:04 +00004981IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDValue Op) {
Arnold Schwaighofera0032722008-04-30 09:16:33 +00004982 if (!isa<FrameIndexSDNode>(Op)) return false;
4983
4984 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
4985 int FrameIdx = FrameIdxNode->getIndex();
4986 return MFI->isFixedObjectIndex(FrameIdx) &&
4987 MFI->getObjectOffset(FrameIdx) >= 0;
4988}
4989
4990/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
4991/// possibly be overwritten when lowering the outgoing arguments in a tail
4992/// call. Currently the implementation of this call is very conservative and
4993/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
4994/// virtual registers would be overwritten by direct lowering.
Dan Gohman8181bd12008-07-27 21:46:04 +00004995static bool IsPossiblyOverwrittenArgumentOfTailCall(SDValue Op,
Arnold Schwaighofera0032722008-04-30 09:16:33 +00004996 MachineFrameInfo * MFI) {
4997 RegisterSDNode * OpReg = NULL;
4998 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
4999 (Op.getOpcode()== ISD::CopyFromReg &&
5000 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
5001 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
5002 (Op.getOpcode() == ISD::LOAD &&
5003 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
5004 (Op.getOpcode() == ISD::MERGE_VALUES &&
5005 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5006 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5007 getOperand(1))))
5008 return true;
5009 return false;
5010}
5011
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005012/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00005013/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005014static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5015 TargetLowering& TLI) {
5016 SDNode * Ret = NULL;
Dan Gohman8181bd12008-07-27 21:46:04 +00005017 SDValue Terminator = DAG.getRoot();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005018
5019 // Find RET node.
5020 if (Terminator.getOpcode() == ISD::RET) {
5021 Ret = Terminator.Val;
5022 }
5023
5024 // Fix tail call attribute of CALL nodes.
5025 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
Dan Gohmaned825d12008-07-07 23:02:41 +00005026 BI = DAG.allnodes_end(); BI != BE; ) {
5027 --BI;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005028 if (BI->getOpcode() == ISD::CALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005029 SDValue OpRet(Ret, 0);
5030 SDValue OpCall(BI, 0);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005031 bool isMarkedTailCall =
5032 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5033 // If CALL node has tail call attribute set to true and the call is not
5034 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00005035 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005036 // must correctly identify tail call optimizable calls.
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005037 if (!isMarkedTailCall) continue;
5038 if (Ret==NULL ||
5039 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5040 // Not eligible. Mark CALL node as non tail call.
Dan Gohman8181bd12008-07-27 21:46:04 +00005041 SmallVector<SDValue, 32> Ops;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005042 unsigned idx=0;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005043 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5044 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005045 if (idx!=3)
5046 Ops.push_back(*I);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005047 else
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005048 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5049 }
5050 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005051 } else {
5052 // Look for tail call clobbered arguments. Emit a series of
5053 // copyto/copyfrom virtual register nodes to protect them.
Dan Gohman8181bd12008-07-27 21:46:04 +00005054 SmallVector<SDValue, 32> Ops;
5055 SDValue Chain = OpCall.getOperand(0), InFlag;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005056 unsigned idx=0;
5057 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5058 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005059 SDValue Arg = *I;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005060 if (idx > 4 && (idx % 2)) {
5061 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5062 getArgFlags().isByVal();
5063 MachineFunction &MF = DAG.getMachineFunction();
5064 MachineFrameInfo *MFI = MF.getFrameInfo();
5065 if (!isByVal &&
5066 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands92c43912008-06-06 12:08:01 +00005067 MVT VT = Arg.getValueType();
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005068 unsigned VReg = MF.getRegInfo().
5069 createVirtualRegister(TLI.getRegClassFor(VT));
5070 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5071 InFlag = Chain.getValue(1);
5072 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5073 Chain = Arg.getValue(1);
5074 InFlag = Arg.getValue(2);
5075 }
5076 }
5077 Ops.push_back(Arg);
5078 }
5079 // Link in chain of CopyTo/CopyFromReg.
5080 Ops[0] = Chain;
5081 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005082 }
5083 }
5084 }
5085}
5086
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005087void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5088 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
5089 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005090 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005091
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005092 // Lower any arguments needed in this block if this is the entry block.
5093 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005094 LowerArguments(LLVMBB, SDL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005095
5096 BB = FuncInfo.MBBMap[LLVMBB];
5097 SDL.setCurrentBasicBlock(BB);
5098
5099 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
5100
Dale Johannesen85535762008-04-02 00:25:04 +00005101 if (MMI && BB->isLandingPad()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005102 // Add a label to mark the beginning of the landing pad. Deletion of the
5103 // landing pad can thus be detected via the MachineModuleInfo.
5104 unsigned LabelID = MMI->addLandingPad(BB);
Dan Gohmanfa607c92008-07-01 00:05:16 +00005105 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, DAG.getEntryNode(), LabelID));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005106
5107 // Mark exception register as live in.
5108 unsigned Reg = TLI.getExceptionAddressRegister();
5109 if (Reg) BB->addLiveIn(Reg);
5110
5111 // Mark exception selector register as live in.
5112 Reg = TLI.getExceptionSelectorRegister();
5113 if (Reg) BB->addLiveIn(Reg);
5114
5115 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5116 // function and list of typeids logically belong to the invoke (or, if you
5117 // like, the basic block containing the invoke), and need to be associated
5118 // with it in the dwarf exception handling tables. Currently however the
5119 // information is provided by an intrinsic (eh.selector) that can be moved
5120 // to unexpected places by the optimizers: if the unwind edge is critical,
5121 // then breaking it can result in the intrinsics being in the successor of
5122 // the landing pad, not the landing pad itself. This results in exceptions
5123 // not being caught because no typeids are associated with the invoke.
5124 // This may not be the only way things can go wrong, but it is the only way
5125 // we try to work around for the moment.
5126 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5127
5128 if (Br && Br->isUnconditional()) { // Critical edge?
5129 BasicBlock::iterator I, E;
5130 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
5131 if (isSelector(I))
5132 break;
5133
5134 if (I == E)
5135 // No catch info found - try to extract some from the successor.
5136 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
5137 }
5138 }
5139
5140 // Lower all of the non-terminator instructions.
5141 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5142 I != E; ++I)
5143 SDL.visit(*I);
5144
5145 // Ensure that all instructions which are used outside of their defining
5146 // blocks are available as virtual registers. Invoke is handled elsewhere.
5147 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
5148 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
5149 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
5150 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005151 SDL.CopyValueToVirtualRegister(I, VMI->second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005152 }
5153
5154 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5155 // ensure constants are generated when needed. Remember the virtual registers
5156 // that need to be added to the Machine PHI nodes as input. We cannot just
5157 // directly add them, because expansion might result in multiple MBB's for one
5158 // BB. As such, the start of the BB might correspond to a different MBB than
5159 // the end.
5160 //
5161 TerminatorInst *TI = LLVMBB->getTerminator();
5162
5163 // Emit constants only once even if used by multiple PHI nodes.
5164 std::map<Constant*, unsigned> ConstantsOut;
5165
5166 // Vector bool would be better, but vector<bool> is really slow.
5167 std::vector<unsigned char> SuccsHandled;
5168 if (TI->getNumSuccessors())
5169 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5170
5171 // Check successor nodes' PHI nodes that expect a constant to be available
5172 // from this block.
5173 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5174 BasicBlock *SuccBB = TI->getSuccessor(succ);
5175 if (!isa<PHINode>(SuccBB->begin())) continue;
5176 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
5177
5178 // If this terminator has multiple identical successors (common for
5179 // switches), only handle each succ once.
5180 unsigned SuccMBBNo = SuccMBB->getNumber();
5181 if (SuccsHandled[SuccMBBNo]) continue;
5182 SuccsHandled[SuccMBBNo] = true;
5183
5184 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5185 PHINode *PN;
5186
5187 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5188 // nodes and Machine PHI nodes, but the incoming operands have not been
5189 // emitted yet.
5190 for (BasicBlock::iterator I = SuccBB->begin();
5191 (PN = dyn_cast<PHINode>(I)); ++I) {
5192 // Ignore dead phi's.
5193 if (PN->use_empty()) continue;
5194
5195 unsigned Reg;
5196 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5197
5198 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5199 unsigned &RegOut = ConstantsOut[C];
5200 if (RegOut == 0) {
5201 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005202 SDL.CopyValueToVirtualRegister(C, RegOut);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005203 }
5204 Reg = RegOut;
5205 } else {
5206 Reg = FuncInfo.ValueMap[PHIOp];
5207 if (Reg == 0) {
5208 assert(isa<AllocaInst>(PHIOp) &&
5209 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5210 "Didn't codegen value into a register!??");
5211 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005212 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005213 }
5214 }
5215
5216 // Remember that this register needs to added to the machine PHI node as
5217 // the input for this MBB.
Duncan Sands92c43912008-06-06 12:08:01 +00005218 MVT VT = TLI.getValueType(PN->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005219 unsigned NumRegisters = TLI.getNumRegisters(VT);
5220 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5221 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5222 }
5223 }
5224 ConstantsOut.clear();
5225
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005226 // Lower the terminator after the copies are emitted.
5227 SDL.visit(*LLVMBB->getTerminator());
5228
5229 // Copy over any CaseBlock records that may now exist due to SwitchInst
5230 // lowering, as well as any jump table information.
5231 SwitchCases.clear();
5232 SwitchCases = SDL.SwitchCases;
5233 JTCases.clear();
5234 JTCases = SDL.JTCases;
5235 BitTestCases.clear();
5236 BitTestCases = SDL.BitTestCases;
5237
5238 // Make sure the root of the DAG is up-to-date.
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005239 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005240
5241 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5242 // with correct tailcall attribute so that the target can rely on the tailcall
5243 // attribute indicating whether the call is really eligible for tail call
5244 // optimization.
5245 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005246}
5247
Chris Lattner68068cc2008-06-17 06:09:18 +00005248void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5249 SmallPtrSet<SDNode*, 128> VisitedNodes;
5250 SmallVector<SDNode*, 128> Worklist;
5251
5252 Worklist.push_back(DAG.getRoot().Val);
5253
5254 APInt Mask;
5255 APInt KnownZero;
5256 APInt KnownOne;
5257
5258 while (!Worklist.empty()) {
5259 SDNode *N = Worklist.back();
5260 Worklist.pop_back();
5261
5262 // If we've already seen this node, ignore it.
5263 if (!VisitedNodes.insert(N))
5264 continue;
5265
5266 // Otherwise, add all chain operands to the worklist.
5267 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5268 if (N->getOperand(i).getValueType() == MVT::Other)
5269 Worklist.push_back(N->getOperand(i).Val);
5270
5271 // If this is a CopyToReg with a vreg dest, process it.
5272 if (N->getOpcode() != ISD::CopyToReg)
5273 continue;
5274
5275 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5276 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5277 continue;
5278
5279 // Ignore non-scalar or non-integer values.
Dan Gohman8181bd12008-07-27 21:46:04 +00005280 SDValue Src = N->getOperand(2);
Chris Lattner68068cc2008-06-17 06:09:18 +00005281 MVT SrcVT = Src.getValueType();
5282 if (!SrcVT.isInteger() || SrcVT.isVector())
5283 continue;
5284
5285 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5286 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5287 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5288
5289 // Only install this information if it tells us something.
5290 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5291 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5292 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5293 if (DestReg >= FLI.LiveOutRegInfo.size())
5294 FLI.LiveOutRegInfo.resize(DestReg+1);
5295 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5296 LOI.NumSignBits = NumSignBits;
5297 LOI.KnownOne = NumSignBits;
5298 LOI.KnownZero = NumSignBits;
5299 }
5300 }
5301}
5302
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005303void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohmanb552df72008-07-21 20:00:07 +00005304 std::string GroupName;
5305 if (TimePassesIsEnabled)
5306 GroupName = "Instruction Selection and Scheduling";
5307 std::string BlockName;
5308 if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs ||
5309 ViewDAGCombine2 || ViewISelDAGs || ViewSchedDAGs || ViewSUnitDAGs)
5310 BlockName = DAG.getMachineFunction().getFunction()->getName() + ':' +
5311 BB->getBasicBlock()->getName();
5312
5313 DOUT << "Initial selection DAG:\n";
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005314 DEBUG(DAG.dump());
Dan Gohmanb552df72008-07-21 20:00:07 +00005315
5316 if (ViewDAGCombine1) DAG.viewGraph("dag-combine1 input for " + BlockName);
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005317
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005318 // Run the DAG combiner in pre-legalize mode.
Evan Cheng19733c42008-07-01 17:59:20 +00005319 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005320 NamedRegionTimer T("DAG Combining 1", GroupName);
Evan Cheng19733c42008-07-01 17:59:20 +00005321 DAG.Combine(false, *AA);
5322 } else {
5323 DAG.Combine(false, *AA);
5324 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005325
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005326 DOUT << "Optimized lowered selection DAG:\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005327 DEBUG(DAG.dump());
Duncan Sands31ddf4c2008-07-17 17:06:03 +00005328
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005329 // Second step, hack on the DAG until it only uses operations and types that
5330 // the target supports.
Duncan Sands31ddf4c2008-07-17 17:06:03 +00005331 if (EnableLegalizeTypes) {// Enable this some day.
Dan Gohmanb552df72008-07-21 20:00:07 +00005332 if (ViewLegalizeTypesDAGs) DAG.viewGraph("legalize-types input for " +
5333 BlockName);
5334
5335 if (TimePassesIsEnabled) {
5336 NamedRegionTimer T("Type Legalization", GroupName);
5337 DAG.LegalizeTypes();
5338 } else {
5339 DAG.LegalizeTypes();
5340 }
5341
5342 DOUT << "Type-legalized selection DAG:\n";
5343 DEBUG(DAG.dump());
5344
Chris Lattnerb29a6a42008-07-10 23:37:50 +00005345 // TODO: enable a dag combine pass here.
5346 }
Duncan Sands31ddf4c2008-07-17 17:06:03 +00005347
Dan Gohmanb552df72008-07-21 20:00:07 +00005348 if (ViewLegalizeDAGs) DAG.viewGraph("legalize input for " + BlockName);
5349
Evan Cheng19733c42008-07-01 17:59:20 +00005350 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005351 NamedRegionTimer T("DAG Legalization", GroupName);
Evan Cheng19733c42008-07-01 17:59:20 +00005352 DAG.Legalize();
5353 } else {
5354 DAG.Legalize();
5355 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005356
5357 DOUT << "Legalized selection DAG:\n";
5358 DEBUG(DAG.dump());
5359
Dan Gohmanb552df72008-07-21 20:00:07 +00005360 if (ViewDAGCombine2) DAG.viewGraph("dag-combine2 input for " + BlockName);
5361
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005362 // Run the DAG combiner in post-legalize mode.
Evan Cheng19733c42008-07-01 17:59:20 +00005363 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005364 NamedRegionTimer T("DAG Combining 2", GroupName);
Evan Cheng19733c42008-07-01 17:59:20 +00005365 DAG.Combine(true, *AA);
5366 } else {
5367 DAG.Combine(true, *AA);
5368 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005369
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005370 DOUT << "Optimized legalized selection DAG:\n";
5371 DEBUG(DAG.dump());
5372
Dan Gohmanb552df72008-07-21 20:00:07 +00005373 if (ViewISelDAGs) DAG.viewGraph("isel input for " + BlockName);
Chris Lattner68068cc2008-06-17 06:09:18 +00005374
Evan Cheng598f94d2008-07-01 18:15:04 +00005375 if (!FastISel && EnableValueProp)
Chris Lattner68068cc2008-06-17 06:09:18 +00005376 ComputeLiveOutVRegInfo(DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005377
5378 // Third, instruction select all of the operations to machine code, adding the
5379 // code to the MachineBasicBlock.
Evan Cheng19733c42008-07-01 17:59:20 +00005380 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005381 NamedRegionTimer T("Instruction Selection", GroupName);
Evan Cheng19733c42008-07-01 17:59:20 +00005382 InstructionSelect(DAG);
5383 } else {
5384 InstructionSelect(DAG);
5385 }
Evan Cheng34fd4f32008-06-30 20:45:06 +00005386
Dan Gohmanb552df72008-07-21 20:00:07 +00005387 DOUT << "Selected selection DAG:\n";
5388 DEBUG(DAG.dump());
5389
5390 if (ViewSchedDAGs) DAG.viewGraph("scheduler input for " + BlockName);
5391
Dan Gohman368a08b2008-07-14 18:19:29 +00005392 // Schedule machine code.
5393 ScheduleDAG *Scheduler;
5394 if (TimePassesIsEnabled) {
5395 NamedRegionTimer T("Instruction Scheduling", GroupName);
5396 Scheduler = Schedule(DAG);
5397 } else {
5398 Scheduler = Schedule(DAG);
5399 }
5400
Dan Gohmanb552df72008-07-21 20:00:07 +00005401 if (ViewSUnitDAGs) Scheduler->viewGraph();
5402
Evan Cheng34fd4f32008-06-30 20:45:06 +00005403 // Emit machine code to BB. This can change 'BB' to the last block being
5404 // inserted into.
Evan Cheng19733c42008-07-01 17:59:20 +00005405 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005406 NamedRegionTimer T("Instruction Creation", GroupName);
5407 BB = Scheduler->EmitSchedule();
Evan Cheng19733c42008-07-01 17:59:20 +00005408 } else {
Dan Gohman368a08b2008-07-14 18:19:29 +00005409 BB = Scheduler->EmitSchedule();
5410 }
5411
5412 // Free the scheduler state.
5413 if (TimePassesIsEnabled) {
5414 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName);
5415 delete Scheduler;
5416 } else {
5417 delete Scheduler;
Evan Cheng19733c42008-07-01 17:59:20 +00005418 }
Evan Cheng34fd4f32008-06-30 20:45:06 +00005419
5420 // Perform target specific isel post processing.
Evan Cheng19733c42008-07-01 17:59:20 +00005421 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005422 NamedRegionTimer T("Instruction Selection Post Processing", GroupName);
Dan Gohmanb552df72008-07-21 20:00:07 +00005423 InstructionSelectPostProcessing();
Evan Cheng19733c42008-07-01 17:59:20 +00005424 } else {
Dan Gohmanb552df72008-07-21 20:00:07 +00005425 InstructionSelectPostProcessing();
Evan Cheng19733c42008-07-01 17:59:20 +00005426 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005427
5428 DOUT << "Selected machine code:\n";
5429 DEBUG(BB->dump());
5430}
5431
Dan Gohmaned825d12008-07-07 23:02:41 +00005432void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF,
5433 FunctionLoweringInfo &FuncInfo) {
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005434 // Define NodeAllocator here so that memory allocation is reused for
Dan Gohmaned825d12008-07-07 23:02:41 +00005435 // each basic block.
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005436 NodeAllocatorType NodeAllocator;
Dan Gohmaned825d12008-07-07 23:02:41 +00005437
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005438 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
5439 SelectBasicBlock(I, MF, FuncInfo, NodeAllocator);
Dan Gohmaned825d12008-07-07 23:02:41 +00005440}
5441
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005442void
5443SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5444 FunctionLoweringInfo &FuncInfo,
5445 NodeAllocatorType &NodeAllocator) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005446 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5447 {
Chris Lattner68068cc2008-06-17 06:09:18 +00005448 SelectionDAG DAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005449 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005450 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005451 CurDAG = &DAG;
5452
5453 // First step, lower LLVM code to some DAG. This DAG may use operations and
5454 // types that are not supported by the target.
5455 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5456
5457 // Second step, emit the lowered DAG as machine code.
5458 CodeGenAndEmitDAG(DAG);
5459 }
5460
5461 DOUT << "Total amount of phi nodes to update: "
5462 << PHINodesToUpdate.size() << "\n";
5463 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5464 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5465 << ", " << PHINodesToUpdate[i].second << ")\n";);
5466
5467 // Next, now that we know what the last MBB the LLVM BB expanded is, update
5468 // PHI nodes in successors.
5469 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
5470 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5471 MachineInstr *PHI = PHINodesToUpdate[i].first;
5472 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5473 "This is not a machine PHI node that we are updating!");
Chris Lattnere44906f2007-12-30 00:57:42 +00005474 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5475 false));
5476 PHI->addOperand(MachineOperand::CreateMBB(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005477 }
5478 return;
5479 }
5480
5481 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5482 // Lower header first, if it wasn't already lowered
5483 if (!BitTestCases[i].Emitted) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005484 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005485 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005486 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005487 CurDAG = &HSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005488 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005489 // Set the current basic block to the mbb we wish to insert the code into
5490 BB = BitTestCases[i].Parent;
5491 HSDL.setCurrentBasicBlock(BB);
5492 // Emit the code
5493 HSDL.visitBitTestHeader(BitTestCases[i]);
5494 HSDAG.setRoot(HSDL.getRoot());
5495 CodeGenAndEmitDAG(HSDAG);
5496 }
5497
5498 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005499 SelectionDAG BSDAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005500 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005501 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005502 CurDAG = &BSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005503 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005504 // Set the current basic block to the mbb we wish to insert the code into
5505 BB = BitTestCases[i].Cases[j].ThisBB;
5506 BSDL.setCurrentBasicBlock(BB);
5507 // Emit the code
5508 if (j+1 != ej)
5509 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5510 BitTestCases[i].Reg,
5511 BitTestCases[i].Cases[j]);
5512 else
5513 BSDL.visitBitTestCase(BitTestCases[i].Default,
5514 BitTestCases[i].Reg,
5515 BitTestCases[i].Cases[j]);
5516
5517
5518 BSDAG.setRoot(BSDL.getRoot());
5519 CodeGenAndEmitDAG(BSDAG);
5520 }
5521
5522 // Update PHI Nodes
5523 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5524 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5525 MachineBasicBlock *PHIBB = PHI->getParent();
5526 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5527 "This is not a machine PHI node that we are updating!");
5528 // This is "default" BB. We have two jumps to it. From "header" BB and
5529 // from last "case" BB.
5530 if (PHIBB == BitTestCases[i].Default) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005531 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5532 false));
5533 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5534 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5535 false));
5536 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5537 back().ThisBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005538 }
5539 // One of "cases" BB.
5540 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5541 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5542 if (cBB->succ_end() !=
5543 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005544 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5545 false));
5546 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005547 }
5548 }
5549 }
5550 }
5551
5552 // If the JumpTable record is filled in, then we need to emit a jump table.
5553 // Updating the PHI nodes is tricky in this case, since we need to determine
5554 // whether the PHI is a successor of the range check MBB or the jump table MBB
5555 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5556 // Lower header first, if it wasn't already lowered
5557 if (!JTCases[i].first.Emitted) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005558 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005559 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005560 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005561 CurDAG = &HSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005562 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005563 // Set the current basic block to the mbb we wish to insert the code into
5564 BB = JTCases[i].first.HeaderBB;
5565 HSDL.setCurrentBasicBlock(BB);
5566 // Emit the code
5567 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5568 HSDAG.setRoot(HSDL.getRoot());
5569 CodeGenAndEmitDAG(HSDAG);
5570 }
5571
Chris Lattner68068cc2008-06-17 06:09:18 +00005572 SelectionDAG JSDAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005573 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005574 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005575 CurDAG = &JSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005576 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005577 // Set the current basic block to the mbb we wish to insert the code into
5578 BB = JTCases[i].second.MBB;
5579 JSDL.setCurrentBasicBlock(BB);
5580 // Emit the code
5581 JSDL.visitJumpTable(JTCases[i].second);
5582 JSDAG.setRoot(JSDL.getRoot());
5583 CodeGenAndEmitDAG(JSDAG);
5584
5585 // Update PHI Nodes
5586 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5587 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5588 MachineBasicBlock *PHIBB = PHI->getParent();
5589 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5590 "This is not a machine PHI node that we are updating!");
5591 // "default" BB. We can go there only from header BB.
5592 if (PHIBB == JTCases[i].second.Default) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005593 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5594 false));
5595 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005596 }
5597 // JT BB. Just iterate over successors here
5598 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005599 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5600 false));
5601 PHI->addOperand(MachineOperand::CreateMBB(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005602 }
5603 }
5604 }
5605
5606 // If the switch block involved a branch to one of the actual successors, we
5607 // need to update PHI nodes in that block.
5608 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5609 MachineInstr *PHI = PHINodesToUpdate[i].first;
5610 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5611 "This is not a machine PHI node that we are updating!");
5612 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005613 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5614 false));
5615 PHI->addOperand(MachineOperand::CreateMBB(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005616 }
5617 }
5618
5619 // If we generated any switch lowering information, build and codegen any
5620 // additional DAGs necessary.
5621 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005622 SelectionDAG SDAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005623 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005624 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005625 CurDAG = &SDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005626 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005627
5628 // Set the current basic block to the mbb we wish to insert the code into
5629 BB = SwitchCases[i].ThisBB;
5630 SDL.setCurrentBasicBlock(BB);
5631
5632 // Emit the code
5633 SDL.visitSwitchCase(SwitchCases[i]);
5634 SDAG.setRoot(SDL.getRoot());
5635 CodeGenAndEmitDAG(SDAG);
5636
5637 // Handle any PHI nodes in successors of this chunk, as if we were coming
5638 // from the original BB before switch expansion. Note that PHI nodes can
5639 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5640 // handle them the right number of times.
5641 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
5642 for (MachineBasicBlock::iterator Phi = BB->begin();
5643 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5644 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5645 for (unsigned pn = 0; ; ++pn) {
5646 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5647 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005648 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5649 second, false));
5650 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005651 break;
5652 }
5653 }
5654 }
5655
5656 // Don't process RHS if same block as LHS.
5657 if (BB == SwitchCases[i].FalseBB)
5658 SwitchCases[i].FalseBB = 0;
5659
5660 // If we haven't handled the RHS, do so now. Otherwise, we're done.
5661 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
5662 SwitchCases[i].FalseBB = 0;
5663 }
5664 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
5665 }
5666}
5667
5668
Dan Gohman368a08b2008-07-14 18:19:29 +00005669/// Schedule - Pick a safe ordering for instructions for each
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005670/// target node in the graph.
Dan Gohman368a08b2008-07-14 18:19:29 +00005671///
5672ScheduleDAG *SelectionDAGISel::Schedule(SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005673 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
5674
5675 if (!Ctor) {
5676 Ctor = ISHeuristic;
5677 RegisterScheduler::setDefault(Ctor);
5678 }
5679
Dan Gohman368a08b2008-07-14 18:19:29 +00005680 ScheduleDAG *Scheduler = Ctor(this, &DAG, BB, FastISel);
5681 Scheduler->Run();
Dan Gohman134c5b62007-08-28 20:32:58 +00005682
Dan Gohman368a08b2008-07-14 18:19:29 +00005683 return Scheduler;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005684}
5685
5686
5687HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5688 return new HazardRecognizer();
5689}
5690
5691//===----------------------------------------------------------------------===//
5692// Helper functions used by the generated instruction selector.
5693//===----------------------------------------------------------------------===//
5694// Calls to these methods are generated by tblgen.
5695
5696/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5697/// the dag combiner simplified the 255, we still want to match. RHS is the
5698/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5699/// specified in the .td file (e.g. 255).
Dan Gohman8181bd12008-07-27 21:46:04 +00005700bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohmand6098272007-07-24 23:00:27 +00005701 int64_t DesiredMaskS) const {
Dan Gohman07961cd2008-02-25 21:11:39 +00005702 const APInt &ActualMask = RHS->getAPIntValue();
5703 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005704
5705 // If the actual mask exactly matches, success!
5706 if (ActualMask == DesiredMask)
5707 return true;
5708
5709 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman07961cd2008-02-25 21:11:39 +00005710 if (ActualMask.intersects(~DesiredMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005711 return false;
5712
5713 // Otherwise, the DAG Combiner may have proven that the value coming in is
5714 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman07961cd2008-02-25 21:11:39 +00005715 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005716 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
5717 return true;
5718
5719 // TODO: check to see if missing bits are just not demanded.
5720
5721 // Otherwise, this pattern doesn't match.
5722 return false;
5723}
5724
5725/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5726/// the dag combiner simplified the 255, we still want to match. RHS is the
5727/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5728/// specified in the .td file (e.g. 255).
Dan Gohman8181bd12008-07-27 21:46:04 +00005729bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohman07961cd2008-02-25 21:11:39 +00005730 int64_t DesiredMaskS) const {
5731 const APInt &ActualMask = RHS->getAPIntValue();
5732 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005733
5734 // If the actual mask exactly matches, success!
5735 if (ActualMask == DesiredMask)
5736 return true;
5737
5738 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman07961cd2008-02-25 21:11:39 +00005739 if (ActualMask.intersects(~DesiredMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005740 return false;
5741
5742 // Otherwise, the DAG Combiner may have proven that the value coming in is
5743 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman07961cd2008-02-25 21:11:39 +00005744 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005745
Dan Gohman07961cd2008-02-25 21:11:39 +00005746 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005747 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
5748
5749 // If all the missing bits in the or are already known to be set, match!
5750 if ((NeededMask & KnownOne) == NeededMask)
5751 return true;
5752
5753 // TODO: check to see if missing bits are just not demanded.
5754
5755 // Otherwise, this pattern doesn't match.
5756 return false;
5757}
5758
5759
5760/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5761/// by tblgen. Others should not call it.
5762void SelectionDAGISel::
Dan Gohman8181bd12008-07-27 21:46:04 +00005763SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops, SelectionDAG &DAG) {
5764 std::vector<SDValue> InOps;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005765 std::swap(InOps, Ops);
5766
5767 Ops.push_back(InOps[0]); // input chain.
5768 Ops.push_back(InOps[1]); // input asm string.
5769
5770 unsigned i = 2, e = InOps.size();
5771 if (InOps[e-1].getValueType() == MVT::Flag)
5772 --e; // Don't process a flag operand if it is here.
5773
5774 while (i != e) {
5775 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5776 if ((Flags & 7) != 4 /*MEM*/) {
5777 // Just skip over this operand, copying the operands verbatim.
5778 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5779 i += (Flags >> 3) + 1;
5780 } else {
5781 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5782 // Otherwise, this is a memory operand. Ask the target to select it.
Dan Gohman8181bd12008-07-27 21:46:04 +00005783 std::vector<SDValue> SelOps;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005784 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
5785 cerr << "Could not match memory address. Inline asm failure!\n";
5786 exit(1);
5787 }
5788
5789 // Add this to the output node.
Duncan Sands92c43912008-06-06 12:08:01 +00005790 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005791 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
5792 IntPtrTy));
5793 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5794 i += 2;
5795 }
5796 }
5797
5798 // Add the flag input back if present.
5799 if (e != InOps.size())
5800 Ops.push_back(InOps.back());
5801}
5802
5803char SelectionDAGISel::ID = 0;