blob: ac30ff63b70fc883118dfbd3570e894e036cb249 [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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447 unsigned PHIReg = ValueMap[PN];
448 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Dan Gohman802a48a2008-08-04 23:42:46 +0000449
450 SmallVector<MVT, 4> ValueVTs;
451 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
452 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
453 MVT VT = ValueVTs[vti];
454 unsigned NumRegisters = TLI.getNumRegisters(VT);
455 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
456 for (unsigned i = 0; i != NumRegisters; ++i)
457 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
458 PHIReg += NumRegisters;
459 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460 }
461 }
462}
463
464/// CreateRegForValue - Allocate the appropriate number of virtual registers of
465/// the correctly promoted or expanded types. Assign these registers
466/// consecutive vreg numbers and return the first assigned number.
Dan Gohmanb9018812008-04-28 18:19:43 +0000467///
468/// In the case that the given value has struct or array type, this function
469/// will assign registers for each member or element.
470///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands92c43912008-06-06 12:08:01 +0000472 SmallVector<MVT, 4> ValueVTs;
Chris Lattner622811e2008-04-28 06:44:42 +0000473 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000474
Dan Gohman30a71f52008-04-25 18:27:55 +0000475 unsigned FirstReg = 0;
Dan Gohman3a163d22008-04-28 17:42:03 +0000476 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands92c43912008-06-06 12:08:01 +0000477 MVT ValueVT = ValueVTs[Value];
478 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479
Chris Lattner622811e2008-04-28 06:44:42 +0000480 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman30a71f52008-04-25 18:27:55 +0000481 for (unsigned i = 0; i != NumRegs; ++i) {
482 unsigned R = MakeReg(RegisterVT);
483 if (!FirstReg) FirstReg = R;
484 }
485 }
486 return FirstReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487}
488
489//===----------------------------------------------------------------------===//
490/// SelectionDAGLowering - This is the common target-independent lowering
491/// implementation that is parameterized by a TargetLowering object.
492/// Also, targets can overload any lowering method.
493///
494namespace llvm {
495class SelectionDAGLowering {
496 MachineBasicBlock *CurMBB;
497
Dan Gohman8181bd12008-07-27 21:46:04 +0000498 DenseMap<const Value*, SDValue> NodeMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499
500 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
501 /// them up and then emit token factor nodes when possible. This allows us to
502 /// get simple disambiguation between loads without worrying about alias
503 /// analysis.
Dan Gohman8181bd12008-07-27 21:46:04 +0000504 SmallVector<SDValue, 8> PendingLoads;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000505
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000506 /// PendingExports - CopyToReg nodes that copy values to virtual registers
507 /// for export to other blocks need to be emitted before any terminator
508 /// instruction, but they have no other ordering requirements. We bunch them
509 /// up and the emit a single tokenfactor for them just before terminator
510 /// instructions.
Dan Gohman8181bd12008-07-27 21:46:04 +0000511 std::vector<SDValue> PendingExports;
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000512
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000513 /// Case - A struct to record the Value for a switch case, and the
514 /// case's target basic block.
515 struct Case {
516 Constant* Low;
517 Constant* High;
518 MachineBasicBlock* BB;
519
520 Case() : Low(0), High(0), BB(0) { }
521 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
522 Low(low), High(high), BB(bb) { }
523 uint64_t size() const {
524 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
525 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
526 return (rHigh - rLow + 1ULL);
527 }
528 };
529
530 struct CaseBits {
531 uint64_t Mask;
532 MachineBasicBlock* BB;
533 unsigned Bits;
534
535 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
536 Mask(mask), BB(bb), Bits(bits) { }
537 };
538
539 typedef std::vector<Case> CaseVector;
540 typedef std::vector<CaseBits> CaseBitsVector;
541 typedef CaseVector::iterator CaseItr;
542 typedef std::pair<CaseItr, CaseItr> CaseRange;
543
544 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
545 /// of conditional branches.
546 struct CaseRec {
547 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
548 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
549
550 /// CaseBB - The MBB in which to emit the compare and branch
551 MachineBasicBlock *CaseBB;
552 /// LT, GE - If nonzero, we know the current case value must be less-than or
553 /// greater-than-or-equal-to these Constants.
554 Constant *LT;
555 Constant *GE;
556 /// Range - A pair of iterators representing the range of case values to be
557 /// processed at this point in the binary search tree.
558 CaseRange Range;
559 };
560
561 typedef std::vector<CaseRec> CaseRecVector;
562
563 /// The comparison function for sorting the switch case values in the vector.
564 /// WARNING: Case ranges should be disjoint!
565 struct CaseCmp {
566 bool operator () (const Case& C1, const Case& C2) {
567 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
568 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
569 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
570 return CI1->getValue().slt(CI2->getValue());
571 }
572 };
573
574 struct CaseBitsCmp {
575 bool operator () (const CaseBits& C1, const CaseBits& C2) {
576 return C1.Bits > C2.Bits;
577 }
578 };
579
580 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
581
582public:
583 // TLI - This is information that describes the available target features we
584 // need for lowering. This indicates when operations are unavailable,
585 // implemented with a libcall, etc.
586 TargetLowering &TLI;
587 SelectionDAG &DAG;
588 const TargetData *TD;
Dan Gohmancc863aa2007-08-27 16:26:13 +0000589 AliasAnalysis &AA;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590
591 /// SwitchCases - Vector of CaseBlock structures used to communicate
592 /// SwitchInst code generation information.
593 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
594 /// JTCases - Vector of JumpTable structures used to communicate
595 /// SwitchInst code generation information.
596 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
597 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
598
599 /// FuncInfo - Information about the function as a whole.
600 ///
601 FunctionLoweringInfo &FuncInfo;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000602
603 /// GCI - Garbage collection metadata for the function.
604 CollectorMetadata *GCI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605
606 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohmancc863aa2007-08-27 16:26:13 +0000607 AliasAnalysis &aa,
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000608 FunctionLoweringInfo &funcinfo,
609 CollectorMetadata *gci)
Dan Gohmancc863aa2007-08-27 16:26:13 +0000610 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000611 FuncInfo(funcinfo), GCI(gci) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612 }
613
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000614 /// getRoot - Return the current virtual root of the Selection DAG,
615 /// flushing any PendingLoad items. This must be done before emitting
616 /// a store or any other node that may need to be ordered after any
617 /// prior load instructions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618 ///
Dan Gohman8181bd12008-07-27 21:46:04 +0000619 SDValue getRoot() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620 if (PendingLoads.empty())
621 return DAG.getRoot();
622
623 if (PendingLoads.size() == 1) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000624 SDValue Root = PendingLoads[0];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 DAG.setRoot(Root);
626 PendingLoads.clear();
627 return Root;
628 }
629
630 // Otherwise, we have to make a token factor node.
Dan Gohman8181bd12008-07-27 21:46:04 +0000631 SDValue Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632 &PendingLoads[0], PendingLoads.size());
633 PendingLoads.clear();
634 DAG.setRoot(Root);
635 return Root;
636 }
637
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000638 /// getControlRoot - Similar to getRoot, but instead of flushing all the
639 /// PendingLoad items, flush all the PendingExports items. It is necessary
640 /// to do this before emitting a terminator instruction.
641 ///
Dan Gohman8181bd12008-07-27 21:46:04 +0000642 SDValue getControlRoot() {
643 SDValue Root = DAG.getRoot();
Dan Gohman9fe5bd62008-03-27 19:56:19 +0000644
645 if (PendingExports.empty())
646 return Root;
647
648 // Turn all of the CopyToReg chains into one factored node.
649 if (Root.getOpcode() != ISD::EntryToken) {
650 unsigned i = 0, e = PendingExports.size();
651 for (; i != e; ++i) {
652 assert(PendingExports[i].Val->getNumOperands() > 1);
653 if (PendingExports[i].Val->getOperand(0) == Root)
654 break; // Don't add the root if we already indirectly depend on it.
655 }
656
657 if (i == e)
658 PendingExports.push_back(Root);
659 }
660
661 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
662 &PendingExports[0],
663 PendingExports.size());
664 PendingExports.clear();
665 DAG.setRoot(Root);
666 return Root;
667 }
668
669 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670
671 void visit(Instruction &I) { visit(I.getOpcode(), I); }
672
673 void visit(unsigned Opcode, User &I) {
674 // Note: this doesn't use InstVisitor, because it has to work with
675 // ConstantExpr's in addition to instructions.
676 switch (Opcode) {
677 default: assert(0 && "Unknown instruction type encountered!");
678 abort();
679 // Build the switch statement using the Instruction.def file.
680#define HANDLE_INST(NUM, OPCODE, CLASS) \
681 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
682#include "llvm/Instruction.def"
683 }
684 }
685
686 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
687
Dan Gohman8181bd12008-07-27 21:46:04 +0000688 SDValue getValue(const Value *V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000689
Dan Gohman8181bd12008-07-27 21:46:04 +0000690 void setValue(const Value *V, SDValue NewN) {
691 SDValue &N = NodeMap[V];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692 assert(N.Val == 0 && "Already set a value for this node!");
693 N = NewN;
694 }
695
Evan Chengbcd66442008-02-26 02:33:44 +0000696 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697 std::set<unsigned> &OutputRegs,
698 std::set<unsigned> &InputRegs);
699
700 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
701 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
702 unsigned Opc);
703 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
704 void ExportFromCurrentBlock(Value *V);
Dan Gohman8181bd12008-07-27 21:46:04 +0000705 void LowerCallTo(CallSite CS, SDValue Callee, bool IsTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000706 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsf5588dc2007-11-27 13:23:08 +0000707
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708 // Terminator instructions.
709 void visitRet(ReturnInst &I);
710 void visitBr(BranchInst &I);
711 void visitSwitch(SwitchInst &I);
712 void visitUnreachable(UnreachableInst &I) { /* noop */ }
713
714 // Helpers for visitSwitch
715 bool handleSmallSwitchRange(CaseRec& CR,
716 CaseRecVector& WorkList,
717 Value* SV,
718 MachineBasicBlock* Default);
719 bool handleJTSwitchCase(CaseRec& CR,
720 CaseRecVector& WorkList,
721 Value* SV,
722 MachineBasicBlock* Default);
723 bool handleBTSplitSwitchCase(CaseRec& CR,
724 CaseRecVector& WorkList,
725 Value* SV,
726 MachineBasicBlock* Default);
727 bool handleBitTestsSwitchCase(CaseRec& CR,
728 CaseRecVector& WorkList,
729 Value* SV,
730 MachineBasicBlock* Default);
731 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
732 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
733 void visitBitTestCase(MachineBasicBlock* NextMBB,
734 unsigned Reg,
735 SelectionDAGISel::BitTestCase &B);
736 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
737 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
738 SelectionDAGISel::JumpTableHeader &JTH);
739
740 // These all get lowered before this pass.
741 void visitInvoke(InvokeInst &I);
742 void visitUnwind(UnwindInst &I);
743
744 void visitBinary(User &I, unsigned OpCode);
745 void visitShift(User &I, unsigned Opcode);
746 void visitAdd(User &I) {
747 if (I.getType()->isFPOrFPVector())
748 visitBinary(I, ISD::FADD);
749 else
750 visitBinary(I, ISD::ADD);
751 }
752 void visitSub(User &I);
753 void visitMul(User &I) {
754 if (I.getType()->isFPOrFPVector())
755 visitBinary(I, ISD::FMUL);
756 else
757 visitBinary(I, ISD::MUL);
758 }
759 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
760 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
761 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
762 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
763 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
764 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
765 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
766 void visitOr (User &I) { visitBinary(I, ISD::OR); }
767 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
768 void visitShl (User &I) { visitShift(I, ISD::SHL); }
769 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
770 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
771 void visitICmp(User &I);
772 void visitFCmp(User &I);
Nate Begeman9a1ce152008-05-12 19:40:03 +0000773 void visitVICmp(User &I);
774 void visitVFCmp(User &I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000775 // Visit the conversion instructions
776 void visitTrunc(User &I);
777 void visitZExt(User &I);
778 void visitSExt(User &I);
779 void visitFPTrunc(User &I);
780 void visitFPExt(User &I);
781 void visitFPToUI(User &I);
782 void visitFPToSI(User &I);
783 void visitUIToFP(User &I);
784 void visitSIToFP(User &I);
785 void visitPtrToInt(User &I);
786 void visitIntToPtr(User &I);
787 void visitBitCast(User &I);
788
789 void visitExtractElement(User &I);
790 void visitInsertElement(User &I);
791 void visitShuffleVector(User &I);
792
Dan Gohman012bf582008-06-07 02:02:36 +0000793 void visitExtractValue(ExtractValueInst &I);
794 void visitInsertValue(InsertValueInst &I);
Dan Gohman8055f772008-05-15 19:50:34 +0000795
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000796 void visitGetElementPtr(User &I);
797 void visitSelect(User &I);
798
799 void visitMalloc(MallocInst &I);
800 void visitFree(FreeInst &I);
801 void visitAlloca(AllocaInst &I);
802 void visitLoad(LoadInst &I);
803 void visitStore(StoreInst &I);
804 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
805 void visitCall(CallInst &I);
Duncan Sands1c5526c2007-12-17 18:08:19 +0000806 void visitInlineAsm(CallSite CS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000807 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
808 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
809
810 void visitVAStart(CallInst &I);
811 void visitVAArg(VAArgInst &I);
812 void visitVAEnd(CallInst &I);
813 void visitVACopy(CallInst &I);
814
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000815 void visitUserOp1(Instruction &I) {
816 assert(0 && "UserOp1 should not exist at instruction selection time!");
817 abort();
818 }
819 void visitUserOp2(Instruction &I) {
820 assert(0 && "UserOp2 should not exist at instruction selection time!");
821 abort();
822 }
Mon P Wang078a62d2008-05-05 19:05:59 +0000823
824private:
825 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
826
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827};
828} // end namespace llvm
829
830
Duncan Sandse111ce82008-02-11 20:58:28 +0000831/// getCopyFromParts - Create a value that contains the specified legal parts
832/// combined into the value they represent. If the parts combine to a type
833/// larger then ValueVT then AssertOp can be used to specify whether the extra
834/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattnera7355b62008-03-09 09:38:46 +0000835/// (ISD::AssertSext).
Dan Gohman8181bd12008-07-27 21:46:04 +0000836static SDValue getCopyFromParts(SelectionDAG &DAG,
837 const SDValue *Parts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 unsigned NumParts,
Duncan Sands92c43912008-06-06 12:08:01 +0000839 MVT PartVT,
840 MVT ValueVT,
Chris Lattnera7355b62008-03-09 09:38:46 +0000841 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000842 assert(NumParts > 0 && "No parts to assemble!");
843 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman8181bd12008-07-27 21:46:04 +0000844 SDValue Val = Parts[0];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000846 if (NumParts > 1) {
847 // Assemble the value from multiple parts.
Duncan Sands92c43912008-06-06 12:08:01 +0000848 if (!ValueVT.isVector()) {
849 unsigned PartBits = PartVT.getSizeInBits();
850 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000852 // Assemble the power of 2 part.
853 unsigned RoundParts = NumParts & (NumParts - 1) ?
854 1 << Log2_32(NumParts) : NumParts;
855 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands92c43912008-06-06 12:08:01 +0000856 MVT RoundVT = RoundBits == ValueBits ?
857 ValueVT : MVT::getIntegerVT(RoundBits);
Dan Gohman8181bd12008-07-27 21:46:04 +0000858 SDValue Lo, Hi;
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000859
860 if (RoundParts > 2) {
Duncan Sands92c43912008-06-06 12:08:01 +0000861 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000862 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
863 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
864 PartVT, HalfVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000865 } else {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000866 Lo = Parts[0];
867 Hi = Parts[1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000868 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000869 if (TLI.isBigEndian())
870 std::swap(Lo, Hi);
871 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
872
873 if (RoundParts < NumParts) {
874 // Assemble the trailing non-power-of-2 part.
875 unsigned OddParts = NumParts - RoundParts;
Duncan Sands92c43912008-06-06 12:08:01 +0000876 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000877 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
878
879 // Combine the round and odd parts.
880 Lo = Val;
881 if (TLI.isBigEndian())
882 std::swap(Lo, Hi);
Duncan Sands92c43912008-06-06 12:08:01 +0000883 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000884 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
885 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands92c43912008-06-06 12:08:01 +0000886 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000887 TLI.getShiftAmountTy()));
888 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
889 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
890 }
891 } else {
892 // Handle a multi-element vector.
Duncan Sands92c43912008-06-06 12:08:01 +0000893 MVT IntermediateVT, RegisterVT;
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000894 unsigned NumIntermediates;
895 unsigned NumRegs =
896 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
897 RegisterVT);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000898 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng11193be2008-05-14 20:29:30 +0000899 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000900 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
901 assert(RegisterVT == Parts[0].getValueType() &&
902 "Part type doesn't match part!");
903
904 // Assemble the parts into intermediate operands.
Dan Gohman8181bd12008-07-27 21:46:04 +0000905 SmallVector<SDValue, 8> Ops(NumIntermediates);
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000906 if (NumIntermediates == NumParts) {
907 // If the register was not expanded, truncate or copy the value,
908 // as appropriate.
909 for (unsigned i = 0; i != NumParts; ++i)
910 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
911 PartVT, IntermediateVT);
912 } else if (NumParts > 0) {
913 // If the intermediate type was expanded, build the intermediate operands
914 // from the parts.
915 assert(NumParts % NumIntermediates == 0 &&
916 "Must expand into a divisible number of parts!");
917 unsigned Factor = NumParts / NumIntermediates;
918 for (unsigned i = 0; i != NumIntermediates; ++i)
919 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
920 PartVT, IntermediateVT);
921 }
922
923 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
924 // operands.
Duncan Sands92c43912008-06-06 12:08:01 +0000925 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000926 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
927 ValueVT, &Ops[0], NumIntermediates);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000928 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000929 }
930
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000931 // There is now one part, held in Val. Correct it to match ValueVT.
932 PartVT = Val.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000933
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000934 if (PartVT == ValueVT)
935 return Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936
Duncan Sands92c43912008-06-06 12:08:01 +0000937 if (PartVT.isVector()) {
938 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000939 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000941
Duncan Sands92c43912008-06-06 12:08:01 +0000942 if (ValueVT.isVector()) {
943 assert(ValueVT.getVectorElementType() == PartVT &&
944 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000945 "Only trivial scalar-to-vector conversions should get here!");
946 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
947 }
948
Duncan Sands92c43912008-06-06 12:08:01 +0000949 if (PartVT.isInteger() &&
950 ValueVT.isInteger()) {
Duncan Sandsec142ee2008-06-08 20:54:56 +0000951 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000952 // For a truncate, see if we have any information to
953 // indicate whether the truncated bits will always be
954 // zero or sign-extension.
955 if (AssertOp != ISD::DELETED_NODE)
956 Val = DAG.getNode(AssertOp, PartVT, Val,
957 DAG.getValueType(ValueVT));
958 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
959 } else {
960 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
961 }
962 }
963
Duncan Sands92c43912008-06-06 12:08:01 +0000964 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sandsec142ee2008-06-08 20:54:56 +0000965 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattnera7355b62008-03-09 09:38:46 +0000966 // FP_ROUND's are always exact here.
Chris Lattnerf8eb9e82008-03-09 07:47:22 +0000967 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattnera7355b62008-03-09 09:38:46 +0000968 DAG.getIntPtrConstant(1));
Chris Lattnerf8eb9e82008-03-09 07:47:22 +0000969 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
970 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000971
Duncan Sands92c43912008-06-06 12:08:01 +0000972 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000973 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
974
975 assert(0 && "Unknown mismatch!");
Dan Gohman8181bd12008-07-27 21:46:04 +0000976 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000977}
978
Duncan Sandse111ce82008-02-11 20:58:28 +0000979/// getCopyToParts - Create a series of nodes that contain the specified value
980/// split into legal parts. If the parts contain more bits than Val, then, for
981/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000982static void getCopyToParts(SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +0000983 SDValue Val,
984 SDValue *Parts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000985 unsigned NumParts,
Duncan Sands92c43912008-06-06 12:08:01 +0000986 MVT PartVT,
Duncan Sandse111ce82008-02-11 20:58:28 +0000987 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmanf7b05132007-08-10 14:59:38 +0000988 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands92c43912008-06-06 12:08:01 +0000989 MVT PtrVT = TLI.getPointerTy();
990 MVT ValueVT = Val.getValueType();
991 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000992 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000993
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000994 if (!NumParts)
995 return;
996
Duncan Sands92c43912008-06-06 12:08:01 +0000997 if (!ValueVT.isVector()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +0000998 if (PartVT == ValueVT) {
999 assert(NumParts == 1 && "No-op copy with multiple parts!");
1000 Parts[0] = Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001001 return;
1002 }
1003
Duncan Sands92c43912008-06-06 12:08:01 +00001004 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001005 // If the parts cover more bits than the value has, promote the value.
Duncan Sands92c43912008-06-06 12:08:01 +00001006 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001007 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands92c43912008-06-06 12:08:01 +00001009 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
1010 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001011 Val = DAG.getNode(ExtendKind, ValueVT, Val);
1012 } else {
1013 assert(0 && "Unknown mismatch!");
1014 }
Duncan Sands92c43912008-06-06 12:08:01 +00001015 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001016 // Different types of the same size.
1017 assert(NumParts == 1 && PartVT != ValueVT);
1018 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands92c43912008-06-06 12:08:01 +00001019 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001020 // If the parts cover less bits than value has, truncate the value.
Duncan Sands92c43912008-06-06 12:08:01 +00001021 if (PartVT.isInteger() && ValueVT.isInteger()) {
1022 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001023 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001024 } else {
1025 assert(0 && "Unknown mismatch!");
1026 }
1027 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001028
1029 // The value may have changed - recompute ValueVT.
1030 ValueVT = Val.getValueType();
Duncan Sands92c43912008-06-06 12:08:01 +00001031 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001032 "Failed to tile the value with PartVT!");
1033
1034 if (NumParts == 1) {
1035 assert(PartVT == ValueVT && "Type conversion failed!");
1036 Parts[0] = Val;
1037 return;
1038 }
1039
1040 // Expand the value into multiple parts.
1041 if (NumParts & (NumParts - 1)) {
1042 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands92c43912008-06-06 12:08:01 +00001043 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001044 "Do not know what to expand to!");
1045 unsigned RoundParts = 1 << Log2_32(NumParts);
1046 unsigned RoundBits = RoundParts * PartBits;
1047 unsigned OddParts = NumParts - RoundParts;
Dan Gohman8181bd12008-07-27 21:46:04 +00001048 SDValue OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001049 DAG.getConstant(RoundBits,
1050 TLI.getShiftAmountTy()));
1051 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1052 if (TLI.isBigEndian())
1053 // The odd parts were reversed by getCopyToParts - unreverse them.
1054 std::reverse(Parts + RoundParts, Parts + NumParts);
1055 NumParts = RoundParts;
Duncan Sands92c43912008-06-06 12:08:01 +00001056 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001057 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1058 }
1059
1060 // The number of parts is a power of 2. Repeatedly bisect the value using
1061 // EXTRACT_ELEMENT.
Duncan Sandsc4d85172008-03-12 20:30:08 +00001062 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands92c43912008-06-06 12:08:01 +00001063 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sandsc4d85172008-03-12 20:30:08 +00001064 Val);
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001065 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1066 for (unsigned i = 0; i < NumParts; i += StepSize) {
1067 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands92c43912008-06-06 12:08:01 +00001068 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Dan Gohman8181bd12008-07-27 21:46:04 +00001069 SDValue &Part0 = Parts[i];
1070 SDValue &Part1 = Parts[i+StepSize/2];
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001071
Duncan Sandsc4d85172008-03-12 20:30:08 +00001072 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1073 DAG.getConstant(1, PtrVT));
1074 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1075 DAG.getConstant(0, PtrVT));
1076
1077 if (ThisBits == PartBits && ThisVT != PartVT) {
1078 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1079 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1080 }
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001081 }
1082 }
1083
1084 if (TLI.isBigEndian())
1085 std::reverse(Parts, Parts + NumParts);
1086
1087 return;
1088 }
1089
1090 // Vector ValueVT.
1091 if (NumParts == 1) {
1092 if (PartVT != ValueVT) {
Duncan Sands92c43912008-06-06 12:08:01 +00001093 if (PartVT.isVector()) {
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001094 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1095 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00001096 assert(ValueVT.getVectorElementType() == PartVT &&
1097 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands94f9e9a2008-02-12 20:46:31 +00001098 "Only trivial vector-to-scalar conversions should get here!");
1099 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1100 DAG.getConstant(0, PtrVT));
1101 }
1102 }
1103
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104 Parts[0] = Val;
1105 return;
1106 }
1107
1108 // Handle a multi-element vector.
Duncan Sands92c43912008-06-06 12:08:01 +00001109 MVT IntermediateVT, RegisterVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110 unsigned NumIntermediates;
1111 unsigned NumRegs =
1112 DAG.getTargetLoweringInfo()
1113 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1114 RegisterVT);
Duncan Sands92c43912008-06-06 12:08:01 +00001115 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001116
1117 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng11193be2008-05-14 20:29:30 +00001118 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1120
1121 // Split the vector into intermediate operands.
Dan Gohman8181bd12008-07-27 21:46:04 +00001122 SmallVector<SDValue, 8> Ops(NumIntermediates);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands92c43912008-06-06 12:08:01 +00001124 if (IntermediateVT.isVector())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001125 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1126 IntermediateVT, Val,
1127 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohmanf7b05132007-08-10 14:59:38 +00001128 PtrVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001129 else
1130 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1131 IntermediateVT, Val,
Dan Gohmanf7b05132007-08-10 14:59:38 +00001132 DAG.getConstant(i, PtrVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001133
1134 // Split the intermediate operands into legal parts.
1135 if (NumParts == NumIntermediates) {
1136 // If the register was not expanded, promote or copy the value,
1137 // as appropriate.
1138 for (unsigned i = 0; i != NumParts; ++i)
1139 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
1140 } else if (NumParts > 0) {
1141 // If the intermediate type was expanded, split each the value into
1142 // legal parts.
1143 assert(NumParts % NumIntermediates == 0 &&
1144 "Must expand into a divisible number of parts!");
1145 unsigned Factor = NumParts / NumIntermediates;
1146 for (unsigned i = 0; i != NumIntermediates; ++i)
1147 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
1148 }
1149}
1150
1151
Dan Gohman8181bd12008-07-27 21:46:04 +00001152SDValue SelectionDAGLowering::getValue(const Value *V) {
1153 SDValue &N = NodeMap[V];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001154 if (N.Val) return N;
1155
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands92c43912008-06-06 12:08:01 +00001157 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattner622811e2008-04-28 06:44:42 +00001158
1159 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1160 return N = DAG.getConstant(CI->getValue(), VT);
1161
1162 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattner622811e2008-04-28 06:44:42 +00001164
1165 if (isa<ConstantPointerNull>(C))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001166 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattner622811e2008-04-28 06:44:42 +00001167
1168 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1169 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1170
Dan Gohman012bf582008-06-07 02:02:36 +00001171 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1172 !V->getType()->isAggregateType())
Chris Lattner02d73b32008-04-28 07:16:35 +00001173 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattner622811e2008-04-28 06:44:42 +00001174
1175 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1176 visit(CE->getOpcode(), *CE);
Dan Gohman8181bd12008-07-27 21:46:04 +00001177 SDValue N1 = NodeMap[V];
Chris Lattner622811e2008-04-28 06:44:42 +00001178 assert(N1.Val && "visit didn't populate the ValueMap!");
1179 return N1;
1180 }
1181
Dan Gohman012bf582008-06-07 02:02:36 +00001182 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001183 SmallVector<SDValue, 4> Constants;
Dan Gohman012bf582008-06-07 02:02:36 +00001184 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1185 OI != OE; ++OI) {
1186 SDNode *Val = getValue(*OI).Val;
Duncan Sands698842f2008-07-02 17:40:58 +00001187 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00001188 Constants.push_back(SDValue(Val, i));
Dan Gohman012bf582008-06-07 02:02:36 +00001189 }
Duncan Sands698842f2008-07-02 17:40:58 +00001190 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman012bf582008-06-07 02:02:36 +00001191 }
1192
Dan Gohman89ce05f2008-08-04 23:30:41 +00001193 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
Dan Gohman012bf582008-06-07 02:02:36 +00001194 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
Dan Gohman89ce05f2008-08-04 23:30:41 +00001195 "Unknown struct or array constant!");
Dan Gohman012bf582008-06-07 02:02:36 +00001196
Dan Gohman89ce05f2008-08-04 23:30:41 +00001197 SmallVector<MVT, 4> ValueVTs;
1198 ComputeValueVTs(TLI, C->getType(), ValueVTs);
1199 unsigned NumElts = ValueVTs.size();
Dan Gohman9115c7e2008-06-09 15:21:47 +00001200 if (NumElts == 0)
Dan Gohman8181bd12008-07-27 21:46:04 +00001201 return SDValue(); // empty struct
1202 SmallVector<SDValue, 4> Constants(NumElts);
Dan Gohman89ce05f2008-08-04 23:30:41 +00001203 for (unsigned i = 0; i != NumElts; ++i) {
1204 MVT EltVT = ValueVTs[i];
Dan Gohman012bf582008-06-07 02:02:36 +00001205 if (isa<UndefValue>(C))
1206 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1207 else if (EltVT.isFloatingPoint())
1208 Constants[i] = DAG.getConstantFP(0, EltVT);
1209 else
1210 Constants[i] = DAG.getConstant(0, EltVT);
1211 }
Dan Gohman89ce05f2008-08-04 23:30:41 +00001212 return DAG.getMergeValues(&Constants[0], NumElts);
Dan Gohman012bf582008-06-07 02:02:36 +00001213 }
1214
Chris Lattner02d73b32008-04-28 07:16:35 +00001215 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattner622811e2008-04-28 06:44:42 +00001216 unsigned NumElements = VecTy->getNumElements();
Chris Lattner622811e2008-04-28 06:44:42 +00001217
Chris Lattner02d73b32008-04-28 07:16:35 +00001218 // Now that we know the number and type of the elements, get that number of
1219 // elements into the Ops array based on what kind of constant it is.
Dan Gohman8181bd12008-07-27 21:46:04 +00001220 SmallVector<SDValue, 16> Ops;
Chris Lattner622811e2008-04-28 06:44:42 +00001221 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1222 for (unsigned i = 0; i != NumElements; ++i)
1223 Ops.push_back(getValue(CP->getOperand(i)));
1224 } else {
Chris Lattner02d73b32008-04-28 07:16:35 +00001225 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1226 "Unknown vector constant!");
Duncan Sands92c43912008-06-06 12:08:01 +00001227 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner02d73b32008-04-28 07:16:35 +00001228
Dan Gohman8181bd12008-07-27 21:46:04 +00001229 SDValue Op;
Chris Lattner02d73b32008-04-28 07:16:35 +00001230 if (isa<UndefValue>(C))
1231 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands92c43912008-06-06 12:08:01 +00001232 else if (EltVT.isFloatingPoint())
Chris Lattner02d73b32008-04-28 07:16:35 +00001233 Op = DAG.getConstantFP(0, EltVT);
Chris Lattner622811e2008-04-28 06:44:42 +00001234 else
Chris Lattner02d73b32008-04-28 07:16:35 +00001235 Op = DAG.getConstant(0, EltVT);
Chris Lattner622811e2008-04-28 06:44:42 +00001236 Ops.assign(NumElements, Op);
1237 }
1238
1239 // Create a BUILD_VECTOR node.
1240 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001241 }
1242
Chris Lattner622811e2008-04-28 06:44:42 +00001243 // If this is a static alloca, generate it as the frameindex instead of
1244 // computation.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1246 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattner622811e2008-04-28 06:44:42 +00001247 FuncInfo.StaticAllocaMap.find(AI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001248 if (SI != FuncInfo.StaticAllocaMap.end())
1249 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1250 }
1251
1252 unsigned InReg = FuncInfo.ValueMap[V];
1253 assert(InReg && "Value not in map!");
1254
Chris Lattner02d73b32008-04-28 07:16:35 +00001255 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohman8181bd12008-07-27 21:46:04 +00001256 SDValue Chain = DAG.getEntryNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001257 return RFV.getCopyFromRegs(DAG, Chain, NULL);
1258}
1259
1260
1261void SelectionDAGLowering::visitRet(ReturnInst &I) {
1262 if (I.getNumOperands() == 0) {
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001263 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001264 return;
1265 }
Chris Lattner622811e2008-04-28 06:44:42 +00001266
Dan Gohman8181bd12008-07-27 21:46:04 +00001267 SmallVector<SDValue, 8> NewValues;
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001268 NewValues.push_back(getControlRoot());
1269 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001270 SDValue RetOp = getValue(I.getOperand(i));
Duncan Sandse111ce82008-02-11 20:58:28 +00001271
Dan Gohman4f4a3492008-06-20 01:29:26 +00001272 SmallVector<MVT, 4> ValueVTs;
1273 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1274 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1275 MVT VT = ValueVTs[j];
Duncan Sandse111ce82008-02-11 20:58:28 +00001276
Dan Gohman4f4a3492008-06-20 01:29:26 +00001277 // FIXME: C calling convention requires the return type to be promoted to
1278 // at least 32-bit. But this is not necessary for non-C calling conventions.
1279 if (VT.isInteger()) {
1280 MVT MinVT = TLI.getRegisterType(MVT::i32);
1281 if (VT.bitsLT(MinVT))
1282 VT = MinVT;
1283 }
Duncan Sandse111ce82008-02-11 20:58:28 +00001284
Dan Gohman4f4a3492008-06-20 01:29:26 +00001285 unsigned NumParts = TLI.getNumRegisters(VT);
1286 MVT PartVT = TLI.getRegisterType(VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00001287 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohman4f4a3492008-06-20 01:29:26 +00001288 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1289
1290 const Function *F = I.getParent()->getParent();
1291 if (F->paramHasAttr(0, ParamAttr::SExt))
1292 ExtendKind = ISD::SIGN_EXTEND;
1293 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1294 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandse111ce82008-02-11 20:58:28 +00001295
Dan Gohman8181bd12008-07-27 21:46:04 +00001296 getCopyToParts(DAG, SDValue(RetOp.Val, RetOp.ResNo + j),
Dan Gohman4f4a3492008-06-20 01:29:26 +00001297 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandse111ce82008-02-11 20:58:28 +00001298
Dan Gohman4f4a3492008-06-20 01:29:26 +00001299 for (unsigned i = 0; i < NumParts; ++i) {
1300 NewValues.push_back(Parts[i]);
1301 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1302 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001303 }
1304 }
1305 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1306 &NewValues[0], NewValues.size()));
1307}
1308
1309/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1310/// the current basic block, add it to ValueMap now so that we'll get a
1311/// CopyTo/FromReg.
1312void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1313 // No need to export constants.
1314 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1315
1316 // Already exported?
1317 if (FuncInfo.isExportedInst(V)) return;
1318
1319 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001320 CopyValueToVirtualRegister(V, Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001321}
1322
1323bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1324 const BasicBlock *FromBB) {
1325 // The operands of the setcc have to be in this block. We don't know
1326 // how to export them from some other block.
1327 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1328 // Can export from current BB.
1329 if (VI->getParent() == FromBB)
1330 return true;
1331
1332 // Is already exported, noop.
1333 return FuncInfo.isExportedInst(V);
1334 }
1335
1336 // If this is an argument, we can export it if the BB is the entry block or
1337 // if it is already exported.
1338 if (isa<Argument>(V)) {
1339 if (FromBB == &FromBB->getParent()->getEntryBlock())
1340 return true;
1341
1342 // Otherwise, can only export this if it is already exported.
1343 return FuncInfo.isExportedInst(V);
1344 }
1345
1346 // Otherwise, constants can always be exported.
1347 return true;
1348}
1349
1350static bool InBlock(const Value *V, const BasicBlock *BB) {
1351 if (const Instruction *I = dyn_cast<Instruction>(V))
1352 return I->getParent() == BB;
1353 return true;
1354}
1355
1356/// FindMergedConditions - If Cond is an expression like
1357void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1358 MachineBasicBlock *TBB,
1359 MachineBasicBlock *FBB,
1360 MachineBasicBlock *CurBB,
1361 unsigned Opc) {
1362 // If this node is not part of the or/and tree, emit it as a branch.
1363 Instruction *BOp = dyn_cast<Instruction>(Cond);
1364
1365 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1366 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1367 BOp->getParent() != CurBB->getBasicBlock() ||
1368 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1369 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1370 const BasicBlock *BB = CurBB->getBasicBlock();
1371
1372 // If the leaf of the tree is a comparison, merge the condition into
1373 // the caseblock.
1374 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1375 // The operands of the cmp have to be in this block. We don't know
1376 // how to export them from some other block. If this is the first block
1377 // of the sequence, no exporting is needed.
1378 (CurBB == CurMBB ||
1379 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1380 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
1381 BOp = cast<Instruction>(Cond);
1382 ISD::CondCode Condition;
1383 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1384 switch (IC->getPredicate()) {
1385 default: assert(0 && "Unknown icmp predicate opcode!");
1386 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1387 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1388 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1389 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1390 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1391 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1392 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1393 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1394 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1395 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1396 }
1397 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1398 ISD::CondCode FPC, FOC;
1399 switch (FC->getPredicate()) {
1400 default: assert(0 && "Unknown fcmp predicate opcode!");
1401 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1402 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1403 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1404 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1405 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1406 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1407 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner98deeca2008-05-01 07:26:11 +00001408 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1409 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001410 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1411 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1412 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1413 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1414 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1415 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1416 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1417 }
1418 if (FiniteOnlyFPMath())
1419 Condition = FOC;
1420 else
1421 Condition = FPC;
1422 } else {
1423 Condition = ISD::SETEQ; // silence warning.
1424 assert(0 && "Unknown compare instruction");
1425 }
1426
1427 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
1428 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1429 SwitchCases.push_back(CB);
1430 return;
1431 }
1432
1433 // Create a CaseBlock record representing this branch.
1434 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1435 NULL, TBB, FBB, CurBB);
1436 SwitchCases.push_back(CB);
1437 return;
1438 }
1439
1440
1441 // Create TmpBB after CurBB.
1442 MachineFunction::iterator BBI = CurBB;
Dan Gohmaned825d12008-07-07 23:02:41 +00001443 MachineFunction &MF = DAG.getMachineFunction();
1444 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1445 CurBB->getParent()->insert(++BBI, TmpBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001446
1447 if (Opc == Instruction::Or) {
1448 // Codegen X | Y as:
1449 // jmp_if_X TBB
1450 // jmp TmpBB
1451 // TmpBB:
1452 // jmp_if_Y TBB
1453 // jmp FBB
1454 //
1455
1456 // Emit the LHS condition.
1457 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1458
1459 // Emit the RHS condition into TmpBB.
1460 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1461 } else {
1462 assert(Opc == Instruction::And && "Unknown merge op!");
1463 // Codegen X & Y as:
1464 // jmp_if_X TmpBB
1465 // jmp FBB
1466 // TmpBB:
1467 // jmp_if_Y TBB
1468 // jmp FBB
1469 //
1470 // This requires creation of TmpBB after CurBB.
1471
1472 // Emit the LHS condition.
1473 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1474
1475 // Emit the RHS condition into TmpBB.
1476 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1477 }
1478}
1479
1480/// If the set of cases should be emitted as a series of branches, return true.
1481/// If we should emit this as a bunch of and/or'd together conditions, return
1482/// false.
1483static bool
1484ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1485 if (Cases.size() != 2) return true;
1486
1487 // If this is two comparisons of the same values or'd or and'd together, they
1488 // will get folded into a single comparison, so don't emit two blocks.
1489 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1490 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1491 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1492 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1493 return false;
1494 }
1495
1496 return true;
1497}
1498
1499void SelectionDAGLowering::visitBr(BranchInst &I) {
1500 // Update machine-CFG edges.
1501 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1502
1503 // Figure out which block is immediately after the current one.
1504 MachineBasicBlock *NextBlock = 0;
1505 MachineFunction::iterator BBI = CurMBB;
1506 if (++BBI != CurMBB->getParent()->end())
1507 NextBlock = BBI;
1508
1509 if (I.isUnconditional()) {
Owen Anderson451a1122008-06-07 00:00:23 +00001510 // Update machine-CFG edges.
1511 CurMBB->addSuccessor(Succ0MBB);
1512
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001513 // If this is not a fall-through branch, emit the branch.
1514 if (Succ0MBB != NextBlock)
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001515 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001516 DAG.getBasicBlock(Succ0MBB)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001517 return;
1518 }
1519
1520 // If this condition is one of the special cases we handle, do special stuff
1521 // now.
1522 Value *CondVal = I.getCondition();
1523 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1524
1525 // If this is a series of conditions that are or'd or and'd together, emit
1526 // this as a sequence of branches instead of setcc's with and/or operations.
1527 // For example, instead of something like:
1528 // cmp A, B
1529 // C = seteq
1530 // cmp D, E
1531 // F = setle
1532 // or C, F
1533 // jnz foo
1534 // Emit:
1535 // cmp A, B
1536 // je foo
1537 // cmp D, E
1538 // jle foo
1539 //
1540 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1541 if (BOp->hasOneUse() &&
1542 (BOp->getOpcode() == Instruction::And ||
1543 BOp->getOpcode() == Instruction::Or)) {
1544 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1545 // If the compares in later blocks need to use values not currently
1546 // exported from this block, export them now. This block should always
1547 // be the first entry.
1548 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1549
1550 // Allow some cases to be rejected.
1551 if (ShouldEmitAsBranches(SwitchCases)) {
1552 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1553 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1554 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1555 }
1556
1557 // Emit the branch for this block.
1558 visitSwitchCase(SwitchCases[0]);
1559 SwitchCases.erase(SwitchCases.begin());
1560 return;
1561 }
1562
1563 // Okay, we decided not to do this, remove any inserted MBB's and clear
1564 // SwitchCases.
1565 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohmaned825d12008-07-07 23:02:41 +00001566 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001567
1568 SwitchCases.clear();
1569 }
1570 }
1571
1572 // Create a CaseBlock record representing this branch.
1573 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1574 NULL, Succ0MBB, Succ1MBB, CurMBB);
1575 // Use visitSwitchCase to actually insert the fast branch sequence for this
1576 // cond branch.
1577 visitSwitchCase(CB);
1578}
1579
1580/// visitSwitchCase - Emits the necessary code to represent a single node in
1581/// the binary search tree resulting from lowering a switch instruction.
1582void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001583 SDValue Cond;
1584 SDValue CondLHS = getValue(CB.CmpLHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001585
1586 // Build the setcc now.
1587 if (CB.CmpMHS == NULL) {
1588 // Fold "(X == true)" to X and "(X == false)" to !X to
1589 // handle common cases produced by branch lowering.
1590 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1591 Cond = CondLHS;
1592 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001593 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001594 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1595 } else
1596 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1597 } else {
1598 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1599
1600 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1601 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1602
Dan Gohman8181bd12008-07-27 21:46:04 +00001603 SDValue CmpOp = getValue(CB.CmpMHS);
Duncan Sands92c43912008-06-06 12:08:01 +00001604 MVT VT = CmpOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001605
1606 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1607 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1608 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001609 SDValue SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001610 Cond = DAG.getSetCC(MVT::i1, SUB,
1611 DAG.getConstant(High-Low, VT), ISD::SETULE);
1612 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001613 }
1614
Owen Anderson451a1122008-06-07 00:00:23 +00001615 // Update successor info
1616 CurMBB->addSuccessor(CB.TrueBB);
1617 CurMBB->addSuccessor(CB.FalseBB);
1618
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001619 // Set NextBlock to be the MBB immediately after the current one, if any.
1620 // This is used to avoid emitting unnecessary branches to the next block.
1621 MachineBasicBlock *NextBlock = 0;
1622 MachineFunction::iterator BBI = CurMBB;
1623 if (++BBI != CurMBB->getParent()->end())
1624 NextBlock = BBI;
1625
1626 // If the lhs block is the next block, invert the condition so that we can
1627 // fall through to the lhs instead of the rhs block.
1628 if (CB.TrueBB == NextBlock) {
1629 std::swap(CB.TrueBB, CB.FalseBB);
Dan Gohman8181bd12008-07-27 21:46:04 +00001630 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001631 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1632 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001633 SDValue BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001634 DAG.getBasicBlock(CB.TrueBB));
Owen Andersonfb6914f2008-08-04 23:54:43 +00001635
1636 // If the branch was constant folded, fix up the CFG.
1637 if (BrCond.getOpcode() == ISD::BR) {
Owen Anderson2ddb96c2008-08-05 18:27:54 +00001638 CurMBB->removeSuccessor(CB.FalseBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001639 DAG.setRoot(BrCond);
Owen Andersonfb6914f2008-08-04 23:54:43 +00001640 } else {
1641 // Otherwise, go ahead and insert the false branch.
1642 if (BrCond == getControlRoot())
Owen Anderson2ddb96c2008-08-05 18:27:54 +00001643 CurMBB->removeSuccessor(CB.TrueBB);
Owen Andersonfb6914f2008-08-04 23:54:43 +00001644
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)));
1650 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001651}
1652
1653/// visitJumpTable - Emit JumpTable node in the current MBB
1654void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
1655 // Emit the code for the jump table
1656 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands92c43912008-06-06 12:08:01 +00001657 MVT PTy = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00001658 SDValue Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
1659 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001660 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1661 Table, Index));
1662 return;
1663}
1664
1665/// visitJumpTableHeader - This function emits necessary code to produce index
1666/// in the JumpTable from switch case.
1667void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1668 SelectionDAGISel::JumpTableHeader &JTH) {
1669 // Subtract the lowest switch case value from the value being switched on
1670 // and conditional branch to default mbb if the result is greater than the
1671 // difference between smallest and largest cases.
Dan Gohman8181bd12008-07-27 21:46:04 +00001672 SDValue SwitchOp = getValue(JTH.SValue);
Duncan Sands92c43912008-06-06 12:08:01 +00001673 MVT VT = SwitchOp.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00001674 SDValue SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001675 DAG.getConstant(JTH.First, VT));
1676
1677 // The SDNode we just created, which holds the value being switched on
1678 // minus the the smallest case value, needs to be copied to a virtual
1679 // register so it can be used as an index into the jump table in a
1680 // subsequent basic block. This value may be smaller or larger than the
1681 // target's pointer type, and therefore require extension or truncating.
Duncan Sandsec142ee2008-06-08 20:54:56 +00001682 if (VT.bitsGT(TLI.getPointerTy()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001683 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1684 else
1685 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1686
1687 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman8181bd12008-07-27 21:46:04 +00001688 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001689 JT.Reg = JumpTableReg;
1690
1691 // Emit the range check for the jump table, and branch to the default
1692 // block for the switch statement if the value being switched on exceeds
1693 // the largest case in the switch.
Dan Gohman8181bd12008-07-27 21:46:04 +00001694 SDValue CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001695 DAG.getConstant(JTH.Last-JTH.First,VT),
1696 ISD::SETUGT);
1697
1698 // Set NextBlock to be the MBB immediately after the current one, if any.
1699 // This is used to avoid emitting unnecessary branches to the next block.
1700 MachineBasicBlock *NextBlock = 0;
1701 MachineFunction::iterator BBI = CurMBB;
1702 if (++BBI != CurMBB->getParent()->end())
1703 NextBlock = BBI;
1704
Dan Gohman8181bd12008-07-27 21:46:04 +00001705 SDValue BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001706 DAG.getBasicBlock(JT.Default));
1707
1708 if (JT.MBB == NextBlock)
1709 DAG.setRoot(BrCond);
1710 else
1711 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
1712 DAG.getBasicBlock(JT.MBB)));
1713
1714 return;
1715}
1716
1717/// visitBitTestHeader - This function emits necessary code to produce value
1718/// suitable for "bit tests"
1719void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1720 // Subtract the minimum value
Dan Gohman8181bd12008-07-27 21:46:04 +00001721 SDValue SwitchOp = getValue(B.SValue);
Duncan Sands92c43912008-06-06 12:08:01 +00001722 MVT VT = SwitchOp.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00001723 SDValue SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001724 DAG.getConstant(B.First, VT));
1725
1726 // Check range
Dan Gohman8181bd12008-07-27 21:46:04 +00001727 SDValue RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001728 DAG.getConstant(B.Range, VT),
1729 ISD::SETUGT);
1730
Dan Gohman8181bd12008-07-27 21:46:04 +00001731 SDValue ShiftOp;
Duncan Sandsec142ee2008-06-08 20:54:56 +00001732 if (VT.bitsGT(TLI.getShiftAmountTy()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001733 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1734 else
1735 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1736
1737 // Make desired shift
Dan Gohman8181bd12008-07-27 21:46:04 +00001738 SDValue SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001739 DAG.getConstant(1, TLI.getPointerTy()),
1740 ShiftOp);
1741
1742 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman8181bd12008-07-27 21:46:04 +00001743 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001744 B.Reg = SwitchReg;
1745
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001746 // Set NextBlock to be the MBB immediately after the current one, if any.
1747 // This is used to avoid emitting unnecessary branches to the next block.
1748 MachineBasicBlock *NextBlock = 0;
1749 MachineFunction::iterator BBI = CurMBB;
1750 if (++BBI != CurMBB->getParent()->end())
1751 NextBlock = BBI;
1752
1753 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson451a1122008-06-07 00:00:23 +00001754
1755 CurMBB->addSuccessor(B.Default);
1756 CurMBB->addSuccessor(MBB);
1757
Dan Gohman8181bd12008-07-27 21:46:04 +00001758 SDValue BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
Owen Anderson451a1122008-06-07 00:00:23 +00001759 DAG.getBasicBlock(B.Default));
1760
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001761 if (MBB == NextBlock)
1762 DAG.setRoot(BrRange);
1763 else
1764 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1765 DAG.getBasicBlock(MBB)));
1766
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001767 return;
1768}
1769
1770/// visitBitTestCase - this function produces one "bit test"
1771void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1772 unsigned Reg,
1773 SelectionDAGISel::BitTestCase &B) {
1774 // Emit bit tests and jumps
Dan Gohman8181bd12008-07-27 21:46:04 +00001775 SDValue SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
Chris Lattner68068cc2008-06-17 06:09:18 +00001776 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001777
Dan Gohman8181bd12008-07-27 21:46:04 +00001778 SDValue AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
Chris Lattner68068cc2008-06-17 06:09:18 +00001779 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dan Gohman8181bd12008-07-27 21:46:04 +00001780 SDValue AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001781 DAG.getConstant(0, TLI.getPointerTy()),
1782 ISD::SETNE);
Owen Anderson451a1122008-06-07 00:00:23 +00001783
1784 CurMBB->addSuccessor(B.TargetBB);
1785 CurMBB->addSuccessor(NextMBB);
1786
Dan Gohman8181bd12008-07-27 21:46:04 +00001787 SDValue BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001788 AndCmp, DAG.getBasicBlock(B.TargetBB));
1789
1790 // Set NextBlock to be the MBB immediately after the current one, if any.
1791 // This is used to avoid emitting unnecessary branches to the next block.
1792 MachineBasicBlock *NextBlock = 0;
1793 MachineFunction::iterator BBI = CurMBB;
1794 if (++BBI != CurMBB->getParent()->end())
1795 NextBlock = BBI;
1796
1797 if (NextMBB == NextBlock)
1798 DAG.setRoot(BrAnd);
1799 else
1800 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1801 DAG.getBasicBlock(NextMBB)));
1802
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001803 return;
1804}
1805
1806void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1807 // Retrieve successors.
1808 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1809 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1810
Duncan Sands1c5526c2007-12-17 18:08:19 +00001811 if (isa<InlineAsm>(I.getCalledValue()))
1812 visitInlineAsm(&I);
1813 else
Duncan Sandse9bc9132007-12-19 09:48:52 +00001814 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001815
1816 // If the value of the invoke is used outside of its defining block, make it
1817 // available as a virtual register.
1818 if (!I.use_empty()) {
1819 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1820 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman9fe5bd62008-03-27 19:56:19 +00001821 CopyValueToVirtualRegister(&I, VMI->second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001822 }
1823
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001824 // Update successor info
1825 CurMBB->addSuccessor(Return);
1826 CurMBB->addSuccessor(LandingPad);
Owen Anderson451a1122008-06-07 00:00:23 +00001827
1828 // Drop into normal successor.
1829 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1830 DAG.getBasicBlock(Return)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001831}
1832
1833void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1834}
1835
1836/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1837/// small case ranges).
1838bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1839 CaseRecVector& WorkList,
1840 Value* SV,
1841 MachineBasicBlock* Default) {
1842 Case& BackCase = *(CR.Range.second-1);
1843
1844 // Size is the number of Cases represented by this range.
1845 unsigned Size = CR.Range.second - CR.Range.first;
1846 if (Size > 3)
1847 return false;
1848
1849 // Get the MachineFunction which holds the current MBB. This is used when
1850 // inserting any additional MBBs necessary to represent the switch.
1851 MachineFunction *CurMF = CurMBB->getParent();
1852
1853 // Figure out which block is immediately after the current one.
1854 MachineBasicBlock *NextBlock = 0;
1855 MachineFunction::iterator BBI = CR.CaseBB;
1856
1857 if (++BBI != CurMBB->getParent()->end())
1858 NextBlock = BBI;
1859
1860 // TODO: If any two of the cases has the same destination, and if one value
1861 // is the same as the other, but has one bit unset that the other has set,
1862 // use bit manipulation to do two compares at once. For example:
1863 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1864
1865 // Rearrange the case blocks so that the last one falls through if possible.
1866 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1867 // The last case block won't fall through into 'NextBlock' if we emit the
1868 // branches in this order. See if rearranging a case value would help.
1869 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1870 if (I->BB == NextBlock) {
1871 std::swap(*I, BackCase);
1872 break;
1873 }
1874 }
1875 }
1876
1877 // Create a CaseBlock record representing a conditional branch to
1878 // the Case's target mbb if the value being switched on SV is equal
1879 // to C.
1880 MachineBasicBlock *CurBlock = CR.CaseBB;
1881 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1882 MachineBasicBlock *FallThrough;
1883 if (I != E-1) {
Dan Gohmaned825d12008-07-07 23:02:41 +00001884 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1885 CurMF->insert(BBI, FallThrough);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001886 } else {
1887 // If the last case doesn't match, go to the default block.
1888 FallThrough = Default;
1889 }
1890
1891 Value *RHS, *LHS, *MHS;
1892 ISD::CondCode CC;
1893 if (I->High == I->Low) {
1894 // This is just small small case range :) containing exactly 1 case
1895 CC = ISD::SETEQ;
1896 LHS = SV; RHS = I->High; MHS = NULL;
1897 } else {
1898 CC = ISD::SETLE;
1899 LHS = I->Low; MHS = SV; RHS = I->High;
1900 }
1901 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1902 I->BB, FallThrough, CurBlock);
1903
1904 // If emitting the first comparison, just call visitSwitchCase to emit the
1905 // code into the current block. Otherwise, push the CaseBlock onto the
1906 // vector to be later processed by SDISel, and insert the node's MBB
1907 // before the next MBB.
1908 if (CurBlock == CurMBB)
1909 visitSwitchCase(CB);
1910 else
1911 SwitchCases.push_back(CB);
1912
1913 CurBlock = FallThrough;
1914 }
1915
1916 return true;
1917}
1918
1919static inline bool areJTsAllowed(const TargetLowering &TLI) {
Dale Johannesen493492f2008-07-31 18:13:12 +00001920 return !DisableJumpTables &&
1921 (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1922 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001923}
1924
1925/// handleJTSwitchCase - Emit jumptable for current switch case range
1926bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1927 CaseRecVector& WorkList,
1928 Value* SV,
1929 MachineBasicBlock* Default) {
1930 Case& FrontCase = *CR.Range.first;
1931 Case& BackCase = *(CR.Range.second-1);
1932
1933 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1934 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1935
1936 uint64_t TSize = 0;
1937 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1938 I!=E; ++I)
1939 TSize += I->size();
1940
1941 if (!areJTsAllowed(TLI) || TSize <= 3)
1942 return false;
1943
1944 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1945 if (Density < 0.4)
1946 return false;
1947
1948 DOUT << "Lowering jump table\n"
1949 << "First entry: " << First << ". Last entry: " << Last << "\n"
1950 << "Size: " << TSize << ". Density: " << Density << "\n\n";
1951
1952 // Get the MachineFunction which holds the current MBB. This is used when
1953 // inserting any additional MBBs necessary to represent the switch.
1954 MachineFunction *CurMF = CurMBB->getParent();
1955
1956 // Figure out which block is immediately after the current one.
1957 MachineBasicBlock *NextBlock = 0;
1958 MachineFunction::iterator BBI = CR.CaseBB;
1959
1960 if (++BBI != CurMBB->getParent()->end())
1961 NextBlock = BBI;
1962
1963 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1964
1965 // Create a new basic block to hold the code for loading the address
1966 // of the jump table, and jumping to it. Update successor information;
1967 // we will either branch to the default case for the switch, or the jump
1968 // table.
Dan Gohmaned825d12008-07-07 23:02:41 +00001969 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1970 CurMF->insert(BBI, JumpTableBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001971 CR.CaseBB->addSuccessor(Default);
1972 CR.CaseBB->addSuccessor(JumpTableBB);
1973
1974 // Build a vector of destination BBs, corresponding to each target
1975 // of the jump table. If the value of the jump table slot corresponds to
1976 // a case statement, push the case's BB onto the vector, otherwise, push
1977 // the default BB.
1978 std::vector<MachineBasicBlock*> DestBBs;
1979 int64_t TEI = First;
1980 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1981 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1982 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1983
1984 if ((Low <= TEI) && (TEI <= High)) {
1985 DestBBs.push_back(I->BB);
1986 if (TEI==High)
1987 ++I;
1988 } else {
1989 DestBBs.push_back(Default);
1990 }
1991 }
1992
1993 // Update successor info. Add one edge to each unique successor.
1994 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1995 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1996 E = DestBBs.end(); I != E; ++I) {
1997 if (!SuccsHandled[(*I)->getNumber()]) {
1998 SuccsHandled[(*I)->getNumber()] = true;
1999 JumpTableBB->addSuccessor(*I);
2000 }
2001 }
2002
2003 // Create a jump table index for this jump table, or return an existing
2004 // one.
2005 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
2006
2007 // Set the jump table information so that we can codegen it as a second
2008 // MachineBasicBlock
2009 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
2010 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
2011 (CR.CaseBB == CurMBB));
2012 if (CR.CaseBB == CurMBB)
2013 visitJumpTableHeader(JT, JTH);
2014
2015 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
2016
2017 return true;
2018}
2019
2020/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2021/// 2 subtrees.
2022bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
2023 CaseRecVector& WorkList,
2024 Value* SV,
2025 MachineBasicBlock* Default) {
2026 // Get the MachineFunction which holds the current MBB. This is used when
2027 // inserting any additional MBBs necessary to represent the switch.
2028 MachineFunction *CurMF = CurMBB->getParent();
2029
2030 // Figure out which block is immediately after the current one.
2031 MachineBasicBlock *NextBlock = 0;
2032 MachineFunction::iterator BBI = CR.CaseBB;
2033
2034 if (++BBI != CurMBB->getParent()->end())
2035 NextBlock = BBI;
2036
2037 Case& FrontCase = *CR.Range.first;
2038 Case& BackCase = *(CR.Range.second-1);
2039 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2040
2041 // Size is the number of Cases represented by this range.
2042 unsigned Size = CR.Range.second - CR.Range.first;
2043
2044 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2045 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
2046 double FMetric = 0;
2047 CaseItr Pivot = CR.Range.first + Size/2;
2048
2049 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2050 // (heuristically) allow us to emit JumpTable's later.
2051 uint64_t TSize = 0;
2052 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2053 I!=E; ++I)
2054 TSize += I->size();
2055
2056 uint64_t LSize = FrontCase.size();
2057 uint64_t RSize = TSize-LSize;
2058 DOUT << "Selecting best pivot: \n"
2059 << "First: " << First << ", Last: " << Last <<"\n"
2060 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
2061 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
2062 J!=E; ++I, ++J) {
2063 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2064 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
2065 assert((RBegin-LEnd>=1) && "Invalid case distance");
2066 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2067 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
2068 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
2069 // Should always split in some non-trivial place
2070 DOUT <<"=>Step\n"
2071 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2072 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2073 << "Metric: " << Metric << "\n";
2074 if (FMetric < Metric) {
2075 Pivot = J;
2076 FMetric = Metric;
2077 DOUT << "Current metric set to: " << FMetric << "\n";
2078 }
2079
2080 LSize += J->size();
2081 RSize -= J->size();
2082 }
2083 if (areJTsAllowed(TLI)) {
2084 // If our case is dense we *really* should handle it earlier!
2085 assert((FMetric > 0) && "Should handle dense range earlier!");
2086 } else {
2087 Pivot = CR.Range.first + Size/2;
2088 }
2089
2090 CaseRange LHSR(CR.Range.first, Pivot);
2091 CaseRange RHSR(Pivot, CR.Range.second);
2092 Constant *C = Pivot->Low;
2093 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2094
2095 // We know that we branch to the LHS if the Value being switched on is
2096 // less than the Pivot value, C. We use this to optimize our binary
2097 // tree a bit, by recognizing that if SV is greater than or equal to the
2098 // LHS's Case Value, and that Case Value is exactly one less than the
2099 // Pivot's Value, then we can branch directly to the LHS's Target,
2100 // rather than creating a leaf node for it.
2101 if ((LHSR.second - LHSR.first) == 1 &&
2102 LHSR.first->High == CR.GE &&
2103 cast<ConstantInt>(C)->getSExtValue() ==
2104 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2105 TrueBB = LHSR.first->BB;
2106 } else {
Dan Gohmaned825d12008-07-07 23:02:41 +00002107 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2108 CurMF->insert(BBI, TrueBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002109 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2110 }
2111
2112 // Similar to the optimization above, if the Value being switched on is
2113 // known to be less than the Constant CR.LT, and the current Case Value
2114 // is CR.LT - 1, then we can branch directly to the target block for
2115 // the current Case Value, rather than emitting a RHS leaf node for it.
2116 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
2117 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2118 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2119 FalseBB = RHSR.first->BB;
2120 } else {
Dan Gohmaned825d12008-07-07 23:02:41 +00002121 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2122 CurMF->insert(BBI, FalseBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002123 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2124 }
2125
2126 // Create a CaseBlock record representing a conditional branch to
2127 // the LHS node if the value being switched on SV is less than C.
2128 // Otherwise, branch to LHS.
2129 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2130 TrueBB, FalseBB, CR.CaseBB);
2131
2132 if (CR.CaseBB == CurMBB)
2133 visitSwitchCase(CB);
2134 else
2135 SwitchCases.push_back(CB);
2136
2137 return true;
2138}
2139
2140/// handleBitTestsSwitchCase - if current case range has few destination and
2141/// range span less, than machine word bitwidth, encode case range into series
2142/// of masks and emit bit tests with these masks.
2143bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2144 CaseRecVector& WorkList,
2145 Value* SV,
2146 MachineBasicBlock* Default){
Duncan Sands92c43912008-06-06 12:08:01 +00002147 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002148
2149 Case& FrontCase = *CR.Range.first;
2150 Case& BackCase = *(CR.Range.second-1);
2151
2152 // Get the MachineFunction which holds the current MBB. This is used when
2153 // inserting any additional MBBs necessary to represent the switch.
2154 MachineFunction *CurMF = CurMBB->getParent();
2155
2156 unsigned numCmps = 0;
2157 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2158 I!=E; ++I) {
2159 // Single case counts one, case range - two.
2160 if (I->Low == I->High)
2161 numCmps +=1;
2162 else
2163 numCmps +=2;
2164 }
2165
2166 // Count unique destinations
2167 SmallSet<MachineBasicBlock*, 4> Dests;
2168 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2169 Dests.insert(I->BB);
2170 if (Dests.size() > 3)
2171 // Don't bother the code below, if there are too much unique destinations
2172 return false;
2173 }
2174 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2175 << "Total number of comparisons: " << numCmps << "\n";
2176
2177 // Compute span of values.
2178 Constant* minValue = FrontCase.Low;
2179 Constant* maxValue = BackCase.High;
2180 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2181 cast<ConstantInt>(minValue)->getSExtValue();
2182 DOUT << "Compare range: " << range << "\n"
2183 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2184 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2185
2186 if (range>=IntPtrBits ||
2187 (!(Dests.size() == 1 && numCmps >= 3) &&
2188 !(Dests.size() == 2 && numCmps >= 5) &&
2189 !(Dests.size() >= 3 && numCmps >= 6)))
2190 return false;
2191
2192 DOUT << "Emitting bit tests\n";
2193 int64_t lowBound = 0;
2194
2195 // Optimize the case where all the case values fit in a
2196 // word without having to subtract minValue. In this case,
2197 // we can optimize away the subtraction.
2198 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
2199 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
2200 range = cast<ConstantInt>(maxValue)->getSExtValue();
2201 } else {
2202 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2203 }
2204
2205 CaseBitsVector CasesBits;
2206 unsigned i, count = 0;
2207
2208 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2209 MachineBasicBlock* Dest = I->BB;
2210 for (i = 0; i < count; ++i)
2211 if (Dest == CasesBits[i].BB)
2212 break;
2213
2214 if (i == count) {
2215 assert((count < 3) && "Too much destinations to test!");
2216 CasesBits.push_back(CaseBits(0, Dest, 0));
2217 count++;
2218 }
2219
2220 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2221 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2222
2223 for (uint64_t j = lo; j <= hi; j++) {
2224 CasesBits[i].Mask |= 1ULL << j;
2225 CasesBits[i].Bits++;
2226 }
2227
2228 }
2229 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2230
2231 SelectionDAGISel::BitTestInfo BTC;
2232
2233 // Figure out which block is immediately after the current one.
2234 MachineFunction::iterator BBI = CR.CaseBB;
2235 ++BBI;
2236
2237 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2238
2239 DOUT << "Cases:\n";
2240 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2241 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2242 << ", BB: " << CasesBits[i].BB << "\n";
2243
Dan Gohmaned825d12008-07-07 23:02:41 +00002244 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2245 CurMF->insert(BBI, CaseBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002246 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2247 CaseBB,
2248 CasesBits[i].BB));
2249 }
2250
2251 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
2252 -1U, (CR.CaseBB == CurMBB),
2253 CR.CaseBB, Default, BTC);
2254
2255 if (CR.CaseBB == CurMBB)
2256 visitBitTestHeader(BTB);
2257
2258 BitTestCases.push_back(BTB);
2259
2260 return true;
2261}
2262
2263
Dan Gohman9fe5bd62008-03-27 19:56:19 +00002264/// Clusterify - Transform simple list of Cases into list of CaseRange's
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002265unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2266 const SwitchInst& SI) {
2267 unsigned numCmps = 0;
2268
2269 // Start with "simple" cases
2270 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2271 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2272 Cases.push_back(Case(SI.getSuccessorValue(i),
2273 SI.getSuccessorValue(i),
2274 SMBB));
2275 }
Chris Lattner5624ae42007-11-27 06:14:32 +00002276 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002277
2278 // Merge case into clusters
2279 if (Cases.size()>=2)
2280 // Must recompute end() each iteration because it may be
2281 // invalidated by erase if we hold on to it
Chris Lattnerdfb947d2007-11-24 07:07:01 +00002282 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002283 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2284 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2285 MachineBasicBlock* nextBB = J->BB;
2286 MachineBasicBlock* currentBB = I->BB;
2287
2288 // If the two neighboring cases go to the same destination, merge them
2289 // into a single case.
2290 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2291 I->High = J->High;
2292 J = Cases.erase(J);
2293 } else {
2294 I = J++;
2295 }
2296 }
2297
2298 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2299 if (I->Low != I->High)
2300 // A range counts double, since it requires two compares.
2301 ++numCmps;
2302 }
2303
2304 return numCmps;
2305}
2306
2307void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
2308 // Figure out which block is immediately after the current one.
2309 MachineBasicBlock *NextBlock = 0;
2310 MachineFunction::iterator BBI = CurMBB;
2311
2312 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2313
2314 // If there is only the default destination, branch to it if it is not the
2315 // next basic block. Otherwise, just fall through.
2316 if (SI.getNumOperands() == 2) {
2317 // Update machine-CFG edges.
2318
2319 // If this is not a fall-through branch, emit the branch.
Owen Anderson451a1122008-06-07 00:00:23 +00002320 CurMBB->addSuccessor(Default);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002321 if (Default != NextBlock)
Dan Gohman9fe5bd62008-03-27 19:56:19 +00002322 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002323 DAG.getBasicBlock(Default)));
Owen Anderson451a1122008-06-07 00:00:23 +00002324
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002325 return;
2326 }
2327
2328 // If there are any non-default case statements, create a vector of Cases
2329 // representing each one, and sort the vector so that we can efficiently
2330 // create a binary search tree from them.
2331 CaseVector Cases;
2332 unsigned numCmps = Clusterify(Cases, SI);
2333 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2334 << ". Total compares: " << numCmps << "\n";
2335
2336 // Get the Value to be switched on and default basic blocks, which will be
2337 // inserted into CaseBlock records, representing basic blocks in the binary
2338 // search tree.
2339 Value *SV = SI.getOperand(0);
2340
2341 // Push the initial CaseRec onto the worklist
2342 CaseRecVector WorkList;
2343 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2344
2345 while (!WorkList.empty()) {
2346 // Grab a record representing a case range to process off the worklist
2347 CaseRec CR = WorkList.back();
2348 WorkList.pop_back();
2349
2350 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2351 continue;
2352
2353 // If the range has few cases (two or less) emit a series of specific
2354 // tests.
2355 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2356 continue;
2357
2358 // If the switch has more than 5 blocks, and at least 40% dense, and the
2359 // target supports indirect branches, then emit a jump table rather than
2360 // lowering the switch to a binary tree of conditional branches.
2361 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2362 continue;
2363
2364 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2365 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2366 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2367 }
2368}
2369
2370
2371void SelectionDAGLowering::visitSub(User &I) {
2372 // -0.0 - X --> fneg
2373 const Type *Ty = I.getType();
2374 if (isa<VectorType>(Ty)) {
2375 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2376 const VectorType *DestTy = cast<VectorType>(I.getType());
2377 const Type *ElTy = DestTy->getElementType();
2378 if (ElTy->isFloatingPoint()) {
2379 unsigned VL = DestTy->getNumElements();
Dale Johannesen2fc20782007-09-14 22:26:36 +00002380 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002381 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2382 if (CV == CNZ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002383 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002384 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2385 return;
2386 }
2387 }
2388 }
2389 }
2390 if (Ty->isFloatingPoint()) {
2391 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen2fc20782007-09-14 22:26:36 +00002392 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002393 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002394 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2395 return;
2396 }
2397 }
2398
2399 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2400}
2401
2402void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002403 SDValue Op1 = getValue(I.getOperand(0));
2404 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002405
2406 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
2407}
2408
2409void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002410 SDValue Op1 = getValue(I.getOperand(0));
2411 SDValue Op2 = getValue(I.getOperand(1));
Nate Begemanbb1ce942008-07-29 15:49:41 +00002412 if (!isa<VectorType>(I.getType())) {
2413 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
2414 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
2415 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2416 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
2417 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002418
2419 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2420}
2421
2422void SelectionDAGLowering::visitICmp(User &I) {
2423 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2424 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2425 predicate = IC->getPredicate();
2426 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2427 predicate = ICmpInst::Predicate(IC->getPredicate());
Dan Gohman8181bd12008-07-27 21:46:04 +00002428 SDValue Op1 = getValue(I.getOperand(0));
2429 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002430 ISD::CondCode Opcode;
2431 switch (predicate) {
2432 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2433 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2434 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2435 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2436 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2437 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2438 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2439 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2440 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2441 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2442 default:
2443 assert(!"Invalid ICmp predicate value");
2444 Opcode = ISD::SETEQ;
2445 break;
2446 }
2447 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2448}
2449
2450void SelectionDAGLowering::visitFCmp(User &I) {
2451 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2452 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2453 predicate = FC->getPredicate();
2454 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2455 predicate = FCmpInst::Predicate(FC->getPredicate());
Dan Gohman8181bd12008-07-27 21:46:04 +00002456 SDValue Op1 = getValue(I.getOperand(0));
2457 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002458 ISD::CondCode Condition, FOC, FPC;
2459 switch (predicate) {
2460 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2461 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2462 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2463 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2464 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2465 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2466 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmanfc28db22008-05-01 23:40:44 +00002467 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2468 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002469 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2470 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2471 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2472 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2473 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2474 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2475 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2476 default:
2477 assert(!"Invalid FCmp predicate value");
2478 FOC = FPC = ISD::SETFALSE;
2479 break;
2480 }
2481 if (FiniteOnlyFPMath())
2482 Condition = FOC;
2483 else
2484 Condition = FPC;
2485 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
2486}
2487
Nate Begeman9a1ce152008-05-12 19:40:03 +00002488void SelectionDAGLowering::visitVICmp(User &I) {
2489 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2490 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2491 predicate = IC->getPredicate();
2492 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2493 predicate = ICmpInst::Predicate(IC->getPredicate());
Dan Gohman8181bd12008-07-27 21:46:04 +00002494 SDValue Op1 = getValue(I.getOperand(0));
2495 SDValue Op2 = getValue(I.getOperand(1));
Nate Begeman9a1ce152008-05-12 19:40:03 +00002496 ISD::CondCode Opcode;
2497 switch (predicate) {
2498 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2499 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2500 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2501 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2502 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2503 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2504 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2505 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2506 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2507 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2508 default:
2509 assert(!"Invalid ICmp predicate value");
2510 Opcode = ISD::SETEQ;
2511 break;
2512 }
2513 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2514}
2515
2516void SelectionDAGLowering::visitVFCmp(User &I) {
2517 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2518 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2519 predicate = FC->getPredicate();
2520 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2521 predicate = FCmpInst::Predicate(FC->getPredicate());
Dan Gohman8181bd12008-07-27 21:46:04 +00002522 SDValue Op1 = getValue(I.getOperand(0));
2523 SDValue Op2 = getValue(I.getOperand(1));
Nate Begeman9a1ce152008-05-12 19:40:03 +00002524 ISD::CondCode Condition, FOC, FPC;
2525 switch (predicate) {
2526 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2527 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2528 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2529 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2530 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2531 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2532 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2533 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2534 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2535 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2536 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2537 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2538 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2539 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2540 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2541 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2542 default:
2543 assert(!"Invalid VFCmp predicate value");
2544 FOC = FPC = ISD::SETFALSE;
2545 break;
2546 }
2547 if (FiniteOnlyFPMath())
2548 Condition = FOC;
2549 else
2550 Condition = FPC;
2551
Duncan Sands92c43912008-06-06 12:08:01 +00002552 MVT DestVT = TLI.getValueType(I.getType());
Nate Begeman9a1ce152008-05-12 19:40:03 +00002553
2554 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2555}
2556
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002557void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002558 SDValue Cond = getValue(I.getOperand(0));
2559 SDValue TrueVal = getValue(I.getOperand(1));
2560 SDValue FalseVal = getValue(I.getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002561 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2562 TrueVal, FalseVal));
2563}
2564
2565
2566void SelectionDAGLowering::visitTrunc(User &I) {
2567 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
Dan Gohman8181bd12008-07-27 21:46:04 +00002568 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002569 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002570 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2571}
2572
2573void SelectionDAGLowering::visitZExt(User &I) {
2574 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2575 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
Dan Gohman8181bd12008-07-27 21:46:04 +00002576 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002577 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002578 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2579}
2580
2581void SelectionDAGLowering::visitSExt(User &I) {
2582 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2583 // SExt also can't be a cast to bool for same reason. So, nothing much to do
Dan Gohman8181bd12008-07-27 21:46:04 +00002584 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002585 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002586 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2587}
2588
2589void SelectionDAGLowering::visitFPTrunc(User &I) {
2590 // FPTrunc is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002591 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002592 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner5872a362008-01-17 07:00:52 +00002593 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002594}
2595
2596void SelectionDAGLowering::visitFPExt(User &I){
2597 // FPTrunc is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002598 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002599 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002600 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2601}
2602
2603void SelectionDAGLowering::visitFPToUI(User &I) {
2604 // FPToUI is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002605 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002606 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002607 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2608}
2609
2610void SelectionDAGLowering::visitFPToSI(User &I) {
2611 // FPToSI is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002612 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002613 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002614 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2615}
2616
2617void SelectionDAGLowering::visitUIToFP(User &I) {
2618 // UIToFP is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002619 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002620 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002621 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2622}
2623
2624void SelectionDAGLowering::visitSIToFP(User &I){
2625 // UIToFP is never a no-op cast, no need to check
Dan Gohman8181bd12008-07-27 21:46:04 +00002626 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002627 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002628 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2629}
2630
2631void SelectionDAGLowering::visitPtrToInt(User &I) {
2632 // What to do depends on the size of the integer and the size of the pointer.
2633 // We can either truncate, zero extend, or no-op, accordingly.
Dan Gohman8181bd12008-07-27 21:46:04 +00002634 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002635 MVT SrcVT = N.getValueType();
2636 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohman8181bd12008-07-27 21:46:04 +00002637 SDValue Result;
Duncan Sandsec142ee2008-06-08 20:54:56 +00002638 if (DestVT.bitsLT(SrcVT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002639 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2640 else
2641 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2642 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2643 setValue(&I, Result);
2644}
2645
2646void SelectionDAGLowering::visitIntToPtr(User &I) {
2647 // What to do depends on the size of the integer and the size of the pointer.
2648 // We can either truncate, zero extend, or no-op, accordingly.
Dan Gohman8181bd12008-07-27 21:46:04 +00002649 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002650 MVT SrcVT = N.getValueType();
2651 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sandsec142ee2008-06-08 20:54:56 +00002652 if (DestVT.bitsLT(SrcVT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002653 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2654 else
2655 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2656 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2657}
2658
2659void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002660 SDValue N = getValue(I.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00002661 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002662
2663 // BitCast assures us that source and destination are the same size so this
2664 // is either a BIT_CONVERT or a no-op.
2665 if (DestVT != N.getValueType())
2666 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2667 else
2668 setValue(&I, N); // noop cast.
2669}
2670
2671void SelectionDAGLowering::visitInsertElement(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002672 SDValue InVec = getValue(I.getOperand(0));
2673 SDValue InVal = getValue(I.getOperand(1));
2674 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002675 getValue(I.getOperand(2)));
2676
2677 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2678 TLI.getValueType(I.getType()),
2679 InVec, InVal, InIdx));
2680}
2681
2682void SelectionDAGLowering::visitExtractElement(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002683 SDValue InVec = getValue(I.getOperand(0));
2684 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002685 getValue(I.getOperand(1)));
2686 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
2687 TLI.getValueType(I.getType()), InVec, InIdx));
2688}
2689
2690void SelectionDAGLowering::visitShuffleVector(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002691 SDValue V1 = getValue(I.getOperand(0));
2692 SDValue V2 = getValue(I.getOperand(1));
2693 SDValue Mask = getValue(I.getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002694
2695 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2696 TLI.getValueType(I.getType()),
2697 V1, V2, Mask));
2698}
2699
Dan Gohman012bf582008-06-07 02:02:36 +00002700void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2701 const Value *Op0 = I.getOperand(0);
2702 const Value *Op1 = I.getOperand(1);
2703 const Type *AggTy = I.getType();
2704 const Type *ValTy = Op1->getType();
2705 bool IntoUndef = isa<UndefValue>(Op0);
2706 bool FromUndef = isa<UndefValue>(Op1);
2707
2708 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2709 I.idx_begin(), I.idx_end());
2710
2711 SmallVector<MVT, 4> AggValueVTs;
2712 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2713 SmallVector<MVT, 4> ValValueVTs;
2714 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2715
2716 unsigned NumAggValues = AggValueVTs.size();
2717 unsigned NumValValues = ValValueVTs.size();
Dan Gohman8181bd12008-07-27 21:46:04 +00002718 SmallVector<SDValue, 4> Values(NumAggValues);
Dan Gohman012bf582008-06-07 02:02:36 +00002719
Dan Gohman8181bd12008-07-27 21:46:04 +00002720 SDValue Agg = getValue(Op0);
2721 SDValue Val = getValue(Op1);
Dan Gohman012bf582008-06-07 02:02:36 +00002722 unsigned i = 0;
2723 // Copy the beginning value(s) from the original aggregate.
2724 for (; i != LinearIndex; ++i)
2725 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman8181bd12008-07-27 21:46:04 +00002726 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman012bf582008-06-07 02:02:36 +00002727 // Copy values from the inserted value(s).
2728 for (; i != LinearIndex + NumValValues; ++i)
2729 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman8181bd12008-07-27 21:46:04 +00002730 SDValue(Val.Val, Val.ResNo + i - LinearIndex);
Dan Gohman012bf582008-06-07 02:02:36 +00002731 // Copy remaining value(s) from the original aggregate.
2732 for (; i != NumAggValues; ++i)
2733 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman8181bd12008-07-27 21:46:04 +00002734 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman012bf582008-06-07 02:02:36 +00002735
Duncan Sandsf19591c2008-06-30 10:19:09 +00002736 setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2737 &Values[0], NumAggValues));
Dan Gohman8055f772008-05-15 19:50:34 +00002738}
2739
Dan Gohman012bf582008-06-07 02:02:36 +00002740void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2741 const Value *Op0 = I.getOperand(0);
2742 const Type *AggTy = Op0->getType();
2743 const Type *ValTy = I.getType();
2744 bool OutOfUndef = isa<UndefValue>(Op0);
2745
2746 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2747 I.idx_begin(), I.idx_end());
2748
2749 SmallVector<MVT, 4> ValValueVTs;
2750 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2751
2752 unsigned NumValValues = ValValueVTs.size();
Dan Gohman8181bd12008-07-27 21:46:04 +00002753 SmallVector<SDValue, 4> Values(NumValValues);
Dan Gohman012bf582008-06-07 02:02:36 +00002754
Dan Gohman8181bd12008-07-27 21:46:04 +00002755 SDValue Agg = getValue(Op0);
Dan Gohman012bf582008-06-07 02:02:36 +00002756 // Copy out the selected value(s).
2757 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2758 Values[i - LinearIndex] =
Dan Gohman4ec23c42008-06-20 00:54:19 +00002759 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
Dan Gohman8181bd12008-07-27 21:46:04 +00002760 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman012bf582008-06-07 02:02:36 +00002761
Duncan Sandsf19591c2008-06-30 10:19:09 +00002762 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2763 &Values[0], NumValValues));
Dan Gohman8055f772008-05-15 19:50:34 +00002764}
2765
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002766
2767void SelectionDAGLowering::visitGetElementPtr(User &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002768 SDValue N = getValue(I.getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002769 const Type *Ty = I.getOperand(0)->getType();
2770
2771 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2772 OI != E; ++OI) {
2773 Value *Idx = *OI;
2774 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2775 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2776 if (Field) {
2777 // N = N + Offset
2778 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
2779 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner5872a362008-01-17 07:00:52 +00002780 DAG.getIntPtrConstant(Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002781 }
2782 Ty = StTy->getElementType(Field);
2783 } else {
2784 Ty = cast<SequentialType>(Ty)->getElementType();
2785
2786 // If this is a constant subscript, handle it quickly.
2787 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2788 if (CI->getZExtValue() == 0) continue;
2789 uint64_t Offs =
Dale Johannesen5ec2e732007-10-01 23:08:35 +00002790 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner5872a362008-01-17 07:00:52 +00002791 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2792 DAG.getIntPtrConstant(Offs));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002793 continue;
2794 }
2795
2796 // N = N + Idx * ElementSize;
Dale Johannesen5ec2e732007-10-01 23:08:35 +00002797 uint64_t ElementSize = TD->getABITypeSize(Ty);
Dan Gohman8181bd12008-07-27 21:46:04 +00002798 SDValue IdxN = getValue(Idx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002799
2800 // If the index is smaller or larger than intptr_t, truncate or extend
2801 // it.
Duncan Sandsec142ee2008-06-08 20:54:56 +00002802 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002803 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002804 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002805 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2806
2807 // If this is a multiply by a power of two, turn it into a shl
2808 // immediately. This is a very common case.
2809 if (isPowerOf2_64(ElementSize)) {
2810 unsigned Amt = Log2_64(ElementSize);
2811 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
2812 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
2813 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2814 continue;
2815 }
2816
Dan Gohman8181bd12008-07-27 21:46:04 +00002817 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002818 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2819 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2820 }
2821 }
2822 setValue(&I, N);
2823}
2824
2825void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2826 // If this is a fixed sized alloca in the entry block of the function,
2827 // allocate it statically on the stack.
2828 if (FuncInfo.StaticAllocaMap.count(&I))
2829 return; // getValue will auto-populate this.
2830
2831 const Type *Ty = I.getAllocatedType();
Duncan Sandsf99fdc62007-11-01 20:53:16 +00002832 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002833 unsigned Align =
2834 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2835 I.getAlignment());
2836
Dan Gohman8181bd12008-07-27 21:46:04 +00002837 SDValue AllocSize = getValue(I.getArraySize());
Duncan Sands92c43912008-06-06 12:08:01 +00002838 MVT IntPtr = TLI.getPointerTy();
Duncan Sandsec142ee2008-06-08 20:54:56 +00002839 if (IntPtr.bitsLT(AllocSize.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002840 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sandsec142ee2008-06-08 20:54:56 +00002841 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002842 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
2843
2844 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner5872a362008-01-17 07:00:52 +00002845 DAG.getIntPtrConstant(TySize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002846
Evan Chenga31dc752007-08-16 23:46:29 +00002847 // Handle alignment. If the requested alignment is less than or equal to
2848 // the stack alignment, ignore it. If the size is greater than or equal to
2849 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002850 unsigned StackAlign =
2851 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Chenga31dc752007-08-16 23:46:29 +00002852 if (Align <= StackAlign)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002853 Align = 0;
Evan Chenga31dc752007-08-16 23:46:29 +00002854
2855 // Round the size of the allocation up to the stack alignment size
2856 // by add SA-1 to the size.
2857 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner5872a362008-01-17 07:00:52 +00002858 DAG.getIntPtrConstant(StackAlign-1));
Evan Chenga31dc752007-08-16 23:46:29 +00002859 // Mask out the low bits for alignment purposes.
2860 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner5872a362008-01-17 07:00:52 +00002861 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002862
Dan Gohman8181bd12008-07-27 21:46:04 +00002863 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands92c43912008-06-06 12:08:01 +00002864 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002865 MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00002866 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002867 setValue(&I, DSA);
2868 DAG.setRoot(DSA.getValue(1));
2869
2870 // Inform the Frame Information that we have just allocated a variable-sized
2871 // object.
2872 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2873}
2874
2875void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman9115c7e2008-06-09 15:21:47 +00002876 const Value *SV = I.getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00002877 SDValue Ptr = getValue(SV);
Dan Gohman9115c7e2008-06-09 15:21:47 +00002878
2879 const Type *Ty = I.getType();
2880 bool isVolatile = I.isVolatile();
2881 unsigned Alignment = I.getAlignment();
2882
2883 SmallVector<MVT, 4> ValueVTs;
2884 SmallVector<uint64_t, 4> Offsets;
2885 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2886 unsigned NumValues = ValueVTs.size();
2887 if (NumValues == 0)
2888 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002889
Dan Gohman8181bd12008-07-27 21:46:04 +00002890 SDValue Root;
Dan Gohmane45821b2008-07-25 00:04:14 +00002891 bool ConstantMemory = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002892 if (I.isVolatile())
Dan Gohmane45821b2008-07-25 00:04:14 +00002893 // Serialize volatile loads with other side effects.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002894 Root = getRoot();
Dan Gohmane45821b2008-07-25 00:04:14 +00002895 else if (AA.pointsToConstantMemory(SV)) {
2896 // Do not serialize (non-volatile) loads of constant memory with anything.
2897 Root = DAG.getEntryNode();
2898 ConstantMemory = true;
2899 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002900 // Do not serialize non-volatile loads against each other.
2901 Root = DAG.getRoot();
2902 }
2903
Dan Gohman8181bd12008-07-27 21:46:04 +00002904 SmallVector<SDValue, 4> Values(NumValues);
2905 SmallVector<SDValue, 4> Chains(NumValues);
Dan Gohman012bf582008-06-07 02:02:36 +00002906 MVT PtrVT = Ptr.getValueType();
2907 for (unsigned i = 0; i != NumValues; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002908 SDValue L = DAG.getLoad(ValueVTs[i], Root,
Dan Gohman012bf582008-06-07 02:02:36 +00002909 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2910 DAG.getConstant(Offsets[i], PtrVT)),
2911 SV, Offsets[i],
2912 isVolatile, Alignment);
2913 Values[i] = L;
2914 Chains[i] = L.getValue(1);
2915 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002916
Dan Gohmane45821b2008-07-25 00:04:14 +00002917 if (!ConstantMemory) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002918 SDValue Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
Dan Gohmane45821b2008-07-25 00:04:14 +00002919 &Chains[0], NumValues);
2920 if (isVolatile)
2921 DAG.setRoot(Chain);
2922 else
2923 PendingLoads.push_back(Chain);
2924 }
Dan Gohman012bf582008-06-07 02:02:36 +00002925
Duncan Sandsf19591c2008-06-30 10:19:09 +00002926 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2927 &Values[0], NumValues));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002928}
2929
2930
2931void SelectionDAGLowering::visitStore(StoreInst &I) {
2932 Value *SrcV = I.getOperand(0);
Dan Gohman012bf582008-06-07 02:02:36 +00002933 Value *PtrV = I.getOperand(1);
Dan Gohman012bf582008-06-07 02:02:36 +00002934
2935 SmallVector<MVT, 4> ValueVTs;
2936 SmallVector<uint64_t, 4> Offsets;
2937 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2938 unsigned NumValues = ValueVTs.size();
Dan Gohman9115c7e2008-06-09 15:21:47 +00002939 if (NumValues == 0)
2940 return;
Dan Gohman012bf582008-06-07 02:02:36 +00002941
Dan Gohman4a136fc2008-07-30 18:36:51 +00002942 // Get the lowered operands. Note that we do this after
2943 // checking if NumResults is zero, because with zero results
2944 // the operands won't have values in the map.
2945 SDValue Src = getValue(SrcV);
2946 SDValue Ptr = getValue(PtrV);
2947
Dan Gohman8181bd12008-07-27 21:46:04 +00002948 SDValue Root = getRoot();
2949 SmallVector<SDValue, 4> Chains(NumValues);
Dan Gohman012bf582008-06-07 02:02:36 +00002950 MVT PtrVT = Ptr.getValueType();
2951 bool isVolatile = I.isVolatile();
2952 unsigned Alignment = I.getAlignment();
2953 for (unsigned i = 0; i != NumValues; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00002954 Chains[i] = DAG.getStore(Root, SDValue(Src.Val, Src.ResNo + i),
Dan Gohman012bf582008-06-07 02:02:36 +00002955 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2956 DAG.getConstant(Offsets[i], PtrVT)),
2957 PtrV, Offsets[i],
2958 isVolatile, Alignment);
2959
2960 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002961}
2962
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002963/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2964/// node.
2965void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2966 unsigned Intrinsic) {
Duncan Sands79d28872007-12-03 20:06:50 +00002967 bool HasChain = !I.doesNotAccessMemory();
2968 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2969
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002970 // Build the operand list.
Dan Gohman8181bd12008-07-27 21:46:04 +00002971 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002972 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2973 if (OnlyLoad) {
2974 // We don't need to serialize loads against other loads.
2975 Ops.push_back(DAG.getRoot());
2976 } else {
2977 Ops.push_back(getRoot());
2978 }
2979 }
2980
2981 // Add the intrinsic ID as an integer operand.
2982 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2983
2984 // Add all operands of the call to the operand list.
2985 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002986 SDValue Op = getValue(I.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002987 assert(TLI.isTypeLegal(Op.getValueType()) &&
2988 "Intrinsic uses a non-legal type?");
2989 Ops.push_back(Op);
2990 }
2991
Duncan Sands92c43912008-06-06 12:08:01 +00002992 std::vector<MVT> VTs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002993 if (I.getType() != Type::VoidTy) {
Duncan Sands92c43912008-06-06 12:08:01 +00002994 MVT VT = TLI.getValueType(I.getType());
2995 if (VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002996 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands92c43912008-06-06 12:08:01 +00002997 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002998
Duncan Sands92c43912008-06-06 12:08:01 +00002999 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003000 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
3001 }
3002
3003 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
3004 VTs.push_back(VT);
3005 }
3006 if (HasChain)
3007 VTs.push_back(MVT::Other);
3008
Duncan Sands92c43912008-06-06 12:08:01 +00003009 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003010
3011 // Create the node.
Dan Gohman8181bd12008-07-27 21:46:04 +00003012 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003013 if (!HasChain)
3014 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
3015 &Ops[0], Ops.size());
3016 else if (I.getType() != Type::VoidTy)
3017 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
3018 &Ops[0], Ops.size());
3019 else
3020 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
3021 &Ops[0], Ops.size());
3022
3023 if (HasChain) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003024 SDValue Chain = Result.getValue(Result.Val->getNumValues()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003025 if (OnlyLoad)
3026 PendingLoads.push_back(Chain);
3027 else
3028 DAG.setRoot(Chain);
3029 }
3030 if (I.getType() != Type::VoidTy) {
3031 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands92c43912008-06-06 12:08:01 +00003032 MVT VT = TLI.getValueType(PTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003033 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
3034 }
3035 setValue(&I, Result);
3036 }
3037}
3038
3039/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
3040static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov48fc88f2008-05-07 22:54:15 +00003041 V = V->stripPointerCasts();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003042 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov53422f62008-02-20 11:10:28 +00003043 assert ((GV || isa<ConstantPointerNull>(V)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003044 "TypeInfo must be a global variable or NULL");
3045 return GV;
3046}
3047
3048/// addCatchInfo - Extract the personality and type infos from an eh.selector
3049/// call, and add them to the specified machine basic block.
3050static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3051 MachineBasicBlock *MBB) {
3052 // Inform the MachineModuleInfo of the personality for this landing pad.
3053 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3054 assert(CE->getOpcode() == Instruction::BitCast &&
3055 isa<Function>(CE->getOperand(0)) &&
3056 "Personality should be a function");
3057 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3058
3059 // Gather all the type infos for this landing pad and pass them along to
3060 // MachineModuleInfo.
3061 std::vector<GlobalVariable *> TyInfo;
3062 unsigned N = I.getNumOperands();
3063
3064 for (unsigned i = N - 1; i > 2; --i) {
3065 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3066 unsigned FilterLength = CI->getZExtValue();
Duncan Sands923fdb12007-08-27 15:47:50 +00003067 unsigned FirstCatch = i + FilterLength + !FilterLength;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003068 assert (FirstCatch <= N && "Invalid filter length");
3069
3070 if (FirstCatch < N) {
3071 TyInfo.reserve(N - FirstCatch);
3072 for (unsigned j = FirstCatch; j < N; ++j)
3073 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3074 MMI->addCatchTypeInfo(MBB, TyInfo);
3075 TyInfo.clear();
3076 }
3077
Duncan Sands923fdb12007-08-27 15:47:50 +00003078 if (!FilterLength) {
3079 // Cleanup.
3080 MMI->addCleanup(MBB);
3081 } else {
3082 // Filter.
3083 TyInfo.reserve(FilterLength - 1);
3084 for (unsigned j = i + 1; j < FirstCatch; ++j)
3085 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3086 MMI->addFilterTypeInfo(MBB, TyInfo);
3087 TyInfo.clear();
3088 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003089
3090 N = i;
3091 }
3092 }
3093
3094 if (N > 3) {
3095 TyInfo.reserve(N - 3);
3096 for (unsigned j = 3; j < N; ++j)
3097 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3098 MMI->addCatchTypeInfo(MBB, TyInfo);
3099 }
3100}
3101
Mon P Wang078a62d2008-05-05 19:05:59 +00003102
3103/// Inlined utility function to implement binary input atomic intrinsics for
3104// visitIntrinsicCall: I is a call instruction
3105// Op is the associated NodeType for I
3106const char *
3107SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003108 SDValue Root = getRoot();
3109 SDValue L = DAG.getAtomic(Op, Root,
Mon P Wang078a62d2008-05-05 19:05:59 +00003110 getValue(I.getOperand(1)),
Dan Gohmanc70fa752008-06-25 16:07:49 +00003111 getValue(I.getOperand(2)),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003112 I.getOperand(1));
Mon P Wang078a62d2008-05-05 19:05:59 +00003113 setValue(&I, L);
3114 DAG.setRoot(L.getValue(1));
3115 return 0;
3116}
3117
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003118/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3119/// we want to emit this as a call to a named external function, return the name
3120/// otherwise lower it and return null.
3121const char *
3122SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3123 switch (Intrinsic) {
3124 default:
3125 // By default, turn this into a target intrinsic node.
3126 visitTargetIntrinsic(I, Intrinsic);
3127 return 0;
3128 case Intrinsic::vastart: visitVAStart(I); return 0;
3129 case Intrinsic::vaend: visitVAEnd(I); return 0;
3130 case Intrinsic::vacopy: visitVACopy(I); return 0;
3131 case Intrinsic::returnaddress:
3132 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3133 getValue(I.getOperand(1))));
3134 return 0;
3135 case Intrinsic::frameaddress:
3136 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3137 getValue(I.getOperand(1))));
3138 return 0;
3139 case Intrinsic::setjmp:
3140 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3141 break;
3142 case Intrinsic::longjmp:
3143 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3144 break;
3145 case Intrinsic::memcpy_i32:
Dan Gohmane8b391e2008-04-12 04:36:06 +00003146 case Intrinsic::memcpy_i64: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003147 SDValue Op1 = getValue(I.getOperand(1));
3148 SDValue Op2 = getValue(I.getOperand(2));
3149 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohmane8b391e2008-04-12 04:36:06 +00003150 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3151 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3152 I.getOperand(1), 0, I.getOperand(2), 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003153 return 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00003154 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003155 case Intrinsic::memset_i32:
Dan Gohmane8b391e2008-04-12 04:36:06 +00003156 case Intrinsic::memset_i64: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003157 SDValue Op1 = getValue(I.getOperand(1));
3158 SDValue Op2 = getValue(I.getOperand(2));
3159 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohmane8b391e2008-04-12 04:36:06 +00003160 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3161 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3162 I.getOperand(1), 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003163 return 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00003164 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003165 case Intrinsic::memmove_i32:
Dan Gohmane8b391e2008-04-12 04:36:06 +00003166 case Intrinsic::memmove_i64: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003167 SDValue Op1 = getValue(I.getOperand(1));
3168 SDValue Op2 = getValue(I.getOperand(2));
3169 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohmane8b391e2008-04-12 04:36:06 +00003170 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3171
3172 // If the source and destination are known to not be aliases, we can
3173 // lower memmove as memcpy.
3174 uint64_t Size = -1ULL;
3175 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3176 Size = C->getValue();
3177 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3178 AliasAnalysis::NoAlias) {
3179 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3180 I.getOperand(1), 0, I.getOperand(2), 0));
3181 return 0;
3182 }
3183
3184 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3185 I.getOperand(1), 0, I.getOperand(2), 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003186 return 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00003187 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003188 case Intrinsic::dbg_stoppoint: {
3189 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3190 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
3191 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003192 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
3193 assert(DD && "Not a debug information descriptor");
Dan Gohman472d12c2008-06-30 20:59:49 +00003194 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3195 SPI.getLine(),
3196 SPI.getColumn(),
3197 cast<CompileUnitDesc>(DD)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003198 }
3199
3200 return 0;
3201 }
3202 case Intrinsic::dbg_region_start: {
3203 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3204 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
3205 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3206 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Dan Gohmanfa607c92008-07-01 00:05:16 +00003207 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003208 }
3209
3210 return 0;
3211 }
3212 case Intrinsic::dbg_region_end: {
3213 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3214 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
3215 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3216 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Dan Gohmanfa607c92008-07-01 00:05:16 +00003217 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003218 }
3219
3220 return 0;
3221 }
3222 case Intrinsic::dbg_func_start: {
3223 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Chenga53c40a2008-02-01 09:10:45 +00003224 if (!MMI) return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003225 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Chenga53c40a2008-02-01 09:10:45 +00003226 Value *SP = FSI.getSubprogram();
3227 if (SP && MMI->Verify(SP)) {
3228 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3229 // what (most?) gdb expects.
3230 DebugInfoDesc *DD = MMI->getDescFor(SP);
3231 assert(DD && "Not a debug information descriptor");
3232 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3233 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
Dan Gohman0849b9e2008-06-30 22:21:03 +00003234 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Evan Chenga53c40a2008-02-01 09:10:45 +00003235 // Record the source line but does create a label. It will be emitted
3236 // at asm emission time.
3237 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003238 }
3239
3240 return 0;
3241 }
3242 case Intrinsic::dbg_declare: {
3243 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3244 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Cheng2e28d622008-02-02 04:07:54 +00003245 Value *Variable = DI.getVariable();
3246 if (MMI && Variable && MMI->Verify(Variable))
3247 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3248 getValue(DI.getAddress()), getValue(Variable)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003249 return 0;
3250 }
3251
3252 case Intrinsic::eh_exception: {
Dale Johannesen85535762008-04-02 00:25:04 +00003253 if (!CurMBB->isLandingPad()) {
3254 // FIXME: Mark exception register as live in. Hack for PR1508.
3255 unsigned Reg = TLI.getExceptionAddressRegister();
3256 if (Reg) CurMBB->addLiveIn(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003257 }
Dale Johannesen85535762008-04-02 00:25:04 +00003258 // Insert the EXCEPTIONADDR instruction.
3259 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00003260 SDValue Ops[1];
Dale Johannesen85535762008-04-02 00:25:04 +00003261 Ops[0] = DAG.getRoot();
Dan Gohman8181bd12008-07-27 21:46:04 +00003262 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
Dale Johannesen85535762008-04-02 00:25:04 +00003263 setValue(&I, Op);
3264 DAG.setRoot(Op.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003265 return 0;
3266 }
3267
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003268 case Intrinsic::eh_selector_i32:
3269 case Intrinsic::eh_selector_i64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003270 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands92c43912008-06-06 12:08:01 +00003271 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003272 MVT::i32 : MVT::i64);
3273
Dale Johannesen85535762008-04-02 00:25:04 +00003274 if (MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003275 if (CurMBB->isLandingPad())
3276 addCatchInfo(I, MMI, CurMBB);
3277 else {
3278#ifndef NDEBUG
3279 FuncInfo.CatchInfoLost.insert(&I);
3280#endif
3281 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3282 unsigned Reg = TLI.getExceptionSelectorRegister();
3283 if (Reg) CurMBB->addLiveIn(Reg);
3284 }
3285
3286 // Insert the EHSELECTION instruction.
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003287 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00003288 SDValue Ops[2];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003289 Ops[0] = getValue(I.getOperand(1));
3290 Ops[1] = getRoot();
Dan Gohman8181bd12008-07-27 21:46:04 +00003291 SDValue Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003292 setValue(&I, Op);
3293 DAG.setRoot(Op.getValue(1));
3294 } else {
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003295 setValue(&I, DAG.getConstant(0, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003296 }
3297
3298 return 0;
3299 }
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003300
3301 case Intrinsic::eh_typeid_for_i32:
3302 case Intrinsic::eh_typeid_for_i64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003303 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands92c43912008-06-06 12:08:01 +00003304 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003305 MVT::i32 : MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003306
3307 if (MMI) {
3308 // Find the type id for the given typeinfo.
3309 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
3310
3311 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003312 setValue(&I, DAG.getConstant(TypeID, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003313 } else {
3314 // Return something different to eh_selector.
Anton Korobeynikov94c46a02007-09-07 11:39:35 +00003315 setValue(&I, DAG.getConstant(1, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003316 }
3317
3318 return 0;
3319 }
3320
3321 case Intrinsic::eh_return: {
3322 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3323
Dale Johannesen85535762008-04-02 00:25:04 +00003324 if (MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003325 MMI->setCallsEHReturn(true);
3326 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3327 MVT::Other,
Dan Gohman9fe5bd62008-03-27 19:56:19 +00003328 getControlRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003329 getValue(I.getOperand(1)),
3330 getValue(I.getOperand(2))));
3331 } else {
3332 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3333 }
3334
3335 return 0;
3336 }
3337
3338 case Intrinsic::eh_unwind_init: {
3339 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3340 MMI->setCallsUnwindInit(true);
3341 }
3342
3343 return 0;
3344 }
3345
3346 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands92c43912008-06-06 12:08:01 +00003347 MVT VT = getValue(I.getOperand(1)).getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003348 SDValue CfaArg;
Duncan Sandsec142ee2008-06-08 20:54:56 +00003349 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen85535762008-04-02 00:25:04 +00003350 CfaArg = DAG.getNode(ISD::TRUNCATE,
3351 TLI.getPointerTy(), getValue(I.getOperand(1)));
3352 else
3353 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3354 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003355
Dan Gohman8181bd12008-07-27 21:46:04 +00003356 SDValue Offset = DAG.getNode(ISD::ADD,
Dale Johannesen85535762008-04-02 00:25:04 +00003357 TLI.getPointerTy(),
3358 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3359 TLI.getPointerTy()),
3360 CfaArg);
3361 setValue(&I, DAG.getNode(ISD::ADD,
3362 TLI.getPointerTy(),
3363 DAG.getNode(ISD::FRAMEADDR,
3364 TLI.getPointerTy(),
3365 DAG.getConstant(0,
3366 TLI.getPointerTy())),
3367 Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003368 return 0;
3369 }
3370
Dale Johannesenc339d8e2007-10-02 17:43:59 +00003371 case Intrinsic::sqrt:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003372 setValue(&I, DAG.getNode(ISD::FSQRT,
3373 getValue(I.getOperand(1)).getValueType(),
3374 getValue(I.getOperand(1))));
3375 return 0;
Dale Johannesenc339d8e2007-10-02 17:43:59 +00003376 case Intrinsic::powi:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003377 setValue(&I, DAG.getNode(ISD::FPOWI,
3378 getValue(I.getOperand(1)).getValueType(),
3379 getValue(I.getOperand(1)),
3380 getValue(I.getOperand(2))));
3381 return 0;
Dan Gohmane1bb8c12007-10-12 00:01:22 +00003382 case Intrinsic::sin:
3383 setValue(&I, DAG.getNode(ISD::FSIN,
3384 getValue(I.getOperand(1)).getValueType(),
3385 getValue(I.getOperand(1))));
3386 return 0;
3387 case Intrinsic::cos:
3388 setValue(&I, DAG.getNode(ISD::FCOS,
3389 getValue(I.getOperand(1)).getValueType(),
3390 getValue(I.getOperand(1))));
3391 return 0;
3392 case Intrinsic::pow:
3393 setValue(&I, DAG.getNode(ISD::FPOW,
3394 getValue(I.getOperand(1)).getValueType(),
3395 getValue(I.getOperand(1)),
3396 getValue(I.getOperand(2))));
3397 return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003398 case Intrinsic::pcmarker: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003399 SDValue Tmp = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003400 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3401 return 0;
3402 }
3403 case Intrinsic::readcyclecounter: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003404 SDValue Op = getRoot();
3405 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003406 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3407 &Op, 1);
3408 setValue(&I, Tmp);
3409 DAG.setRoot(Tmp.getValue(1));
3410 return 0;
3411 }
3412 case Intrinsic::part_select: {
3413 // Currently not implemented: just abort
3414 assert(0 && "part_select intrinsic not implemented");
3415 abort();
3416 }
3417 case Intrinsic::part_set: {
3418 // Currently not implemented: just abort
3419 assert(0 && "part_set intrinsic not implemented");
3420 abort();
3421 }
3422 case Intrinsic::bswap:
3423 setValue(&I, DAG.getNode(ISD::BSWAP,
3424 getValue(I.getOperand(1)).getValueType(),
3425 getValue(I.getOperand(1))));
3426 return 0;
3427 case Intrinsic::cttz: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003428 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00003429 MVT Ty = Arg.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003430 SDValue result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003431 setValue(&I, result);
3432 return 0;
3433 }
3434 case Intrinsic::ctlz: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003435 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00003436 MVT Ty = Arg.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003437 SDValue result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003438 setValue(&I, result);
3439 return 0;
3440 }
3441 case Intrinsic::ctpop: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003442 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00003443 MVT Ty = Arg.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003444 SDValue result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003445 setValue(&I, result);
3446 return 0;
3447 }
3448 case Intrinsic::stacksave: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003449 SDValue Op = getRoot();
3450 SDValue Tmp = DAG.getNode(ISD::STACKSAVE,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003451 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
3452 setValue(&I, Tmp);
3453 DAG.setRoot(Tmp.getValue(1));
3454 return 0;
3455 }
3456 case Intrinsic::stackrestore: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003457 SDValue Tmp = getValue(I.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003458 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
3459 return 0;
3460 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003461 case Intrinsic::var_annotation:
3462 // Discard annotate attributes
3463 return 0;
Duncan Sands38947cd2007-07-27 12:58:54 +00003464
Duncan Sands38947cd2007-07-27 12:58:54 +00003465 case Intrinsic::init_trampoline: {
Anton Korobeynikov48fc88f2008-05-07 22:54:15 +00003466 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands38947cd2007-07-27 12:58:54 +00003467
Dan Gohman8181bd12008-07-27 21:46:04 +00003468 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00003469 Ops[0] = getRoot();
3470 Ops[1] = getValue(I.getOperand(1));
3471 Ops[2] = getValue(I.getOperand(2));
3472 Ops[3] = getValue(I.getOperand(3));
3473 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3474 Ops[5] = DAG.getSrcValue(F);
3475
Dan Gohman8181bd12008-07-27 21:46:04 +00003476 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE,
Duncan Sands7407a9f2007-09-11 14:10:23 +00003477 DAG.getNodeValueTypes(TLI.getPointerTy(),
3478 MVT::Other), 2,
3479 Ops, 6);
3480
3481 setValue(&I, Tmp);
3482 DAG.setRoot(Tmp.getValue(1));
Duncan Sands38947cd2007-07-27 12:58:54 +00003483 return 0;
3484 }
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00003485
3486 case Intrinsic::gcroot:
3487 if (GCI) {
3488 Value *Alloca = I.getOperand(1);
3489 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3490
3491 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3492 GCI->addStackRoot(FI->getIndex(), TypeMap);
3493 }
3494 return 0;
3495
3496 case Intrinsic::gcread:
3497 case Intrinsic::gcwrite:
3498 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3499 return 0;
3500
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003501 case Intrinsic::flt_rounds: {
Dan Gohman819574c2008-01-31 00:41:03 +00003502 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003503 return 0;
3504 }
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003505
3506 case Intrinsic::trap: {
3507 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3508 return 0;
3509 }
Evan Chengd1d68072008-03-08 00:58:38 +00003510 case Intrinsic::prefetch: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003511 SDValue Ops[4];
Evan Chengd1d68072008-03-08 00:58:38 +00003512 Ops[0] = getRoot();
3513 Ops[1] = getValue(I.getOperand(1));
3514 Ops[2] = getValue(I.getOperand(2));
3515 Ops[3] = getValue(I.getOperand(3));
3516 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3517 return 0;
3518 }
3519
Andrew Lenharth785610d2008-02-16 01:24:58 +00003520 case Intrinsic::memory_barrier: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003521 SDValue Ops[6];
Andrew Lenharth785610d2008-02-16 01:24:58 +00003522 Ops[0] = getRoot();
3523 for (int x = 1; x < 6; ++x)
3524 Ops[x] = getValue(I.getOperand(x));
3525
3526 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3527 return 0;
3528 }
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003529 case Intrinsic::atomic_cmp_swap: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003530 SDValue Root = getRoot();
3531 SDValue L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthe44f3902008-02-21 06:45:13 +00003532 getValue(I.getOperand(1)),
3533 getValue(I.getOperand(2)),
Dan Gohmanc70fa752008-06-25 16:07:49 +00003534 getValue(I.getOperand(3)),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003535 I.getOperand(1));
Andrew Lenharthe44f3902008-02-21 06:45:13 +00003536 setValue(&I, L);
3537 DAG.setRoot(L.getValue(1));
3538 return 0;
3539 }
Mon P Wang6bde9ec2008-06-25 08:15:39 +00003540 case Intrinsic::atomic_load_add:
3541 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3542 case Intrinsic::atomic_load_sub:
3543 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang078a62d2008-05-05 19:05:59 +00003544 case Intrinsic::atomic_load_and:
3545 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3546 case Intrinsic::atomic_load_or:
3547 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3548 case Intrinsic::atomic_load_xor:
3549 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00003550 case Intrinsic::atomic_load_nand:
3551 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang078a62d2008-05-05 19:05:59 +00003552 case Intrinsic::atomic_load_min:
3553 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3554 case Intrinsic::atomic_load_max:
3555 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3556 case Intrinsic::atomic_load_umin:
3557 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3558 case Intrinsic::atomic_load_umax:
3559 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3560 case Intrinsic::atomic_swap:
3561 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003562 }
3563}
3564
3565
Dan Gohman8181bd12008-07-27 21:46:04 +00003566void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003567 bool IsTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003568 MachineBasicBlock *LandingPad) {
Duncan Sandse9bc9132007-12-19 09:48:52 +00003569 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003570 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003571 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3572 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sandse9bc9132007-12-19 09:48:52 +00003573
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003574 TargetLowering::ArgListTy Args;
3575 TargetLowering::ArgListEntry Entry;
Duncan Sandse9bc9132007-12-19 09:48:52 +00003576 Args.reserve(CS.arg_size());
3577 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3578 i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003579 SDValue ArgNode = getValue(*i);
Duncan Sandse9bc9132007-12-19 09:48:52 +00003580 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003581
Duncan Sandse9bc9132007-12-19 09:48:52 +00003582 unsigned attrInd = i - CS.arg_begin() + 1;
3583 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3584 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3585 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3586 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3587 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3588 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen9b398782008-02-22 17:49:45 +00003589 Entry.Alignment = CS.getParamAlignment(attrInd);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003590 Args.push_back(Entry);
3591 }
3592
Dale Johannesen85535762008-04-02 00:25:04 +00003593 if (LandingPad && MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003594 // Insert a label before the invoke call to mark the try range. This can be
3595 // used to detect deletion of the invoke via the MachineModuleInfo.
3596 BeginLabel = MMI->NextLabelID();
Dale Johannesen1f68ca82008-04-04 23:48:31 +00003597 // Both PendingLoads and PendingExports must be flushed here;
3598 // this call might not return.
3599 (void)getRoot();
Dan Gohmanfa607c92008-07-01 00:05:16 +00003600 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003601 }
Duncan Sandse9bc9132007-12-19 09:48:52 +00003602
Dan Gohman8181bd12008-07-27 21:46:04 +00003603 std::pair<SDValue,SDValue> Result =
Duncan Sandse9bc9132007-12-19 09:48:52 +00003604 TLI.LowerCallTo(getRoot(), CS.getType(),
3605 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sandsead972e2008-02-14 17:28:50 +00003606 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sandse9bc9132007-12-19 09:48:52 +00003607 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003608 Callee, Args, DAG);
Duncan Sandse9bc9132007-12-19 09:48:52 +00003609 if (CS.getType() != Type::VoidTy)
3610 setValue(CS.getInstruction(), Result.first);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003611 DAG.setRoot(Result.second);
3612
Dale Johannesen85535762008-04-02 00:25:04 +00003613 if (LandingPad && MMI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003614 // Insert a label at the end of the invoke call to mark the try range. This
3615 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3616 EndLabel = MMI->NextLabelID();
Dan Gohmanfa607c92008-07-01 00:05:16 +00003617 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003618
Duncan Sandse9bc9132007-12-19 09:48:52 +00003619 // Inform MachineModuleInfo of range.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003620 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3621 }
3622}
3623
3624
3625void SelectionDAGLowering::visitCall(CallInst &I) {
3626 const char *RenameFn = 0;
3627 if (Function *F = I.getCalledFunction()) {
Chris Lattner3687e342007-09-10 21:15:22 +00003628 if (F->isDeclaration()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003629 if (unsigned IID = F->getIntrinsicID()) {
3630 RenameFn = visitIntrinsicCall(I, IID);
3631 if (!RenameFn)
3632 return;
Chris Lattner3687e342007-09-10 21:15:22 +00003633 }
3634 }
3635
3636 // Check for well-known libc/libm calls. If the function is internal, it
3637 // can't be a library call.
3638 unsigned NameLen = F->getNameLen();
3639 if (!F->hasInternalLinkage() && NameLen) {
3640 const char *NameStr = F->getNameStart();
3641 if (NameStr[0] == 'c' &&
3642 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3643 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3644 if (I.getNumOperands() == 3 && // Basic sanity checks.
3645 I.getOperand(1)->getType()->isFloatingPoint() &&
3646 I.getType() == I.getOperand(1)->getType() &&
3647 I.getType() == I.getOperand(2)->getType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003648 SDValue LHS = getValue(I.getOperand(1));
3649 SDValue RHS = getValue(I.getOperand(2));
Chris Lattner3687e342007-09-10 21:15:22 +00003650 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3651 LHS, RHS));
3652 return;
3653 }
3654 } else if (NameStr[0] == 'f' &&
3655 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen7f1076b2007-09-26 21:10:55 +00003656 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3657 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner3687e342007-09-10 21:15:22 +00003658 if (I.getNumOperands() == 2 && // Basic sanity checks.
3659 I.getOperand(1)->getType()->isFloatingPoint() &&
3660 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003661 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner3687e342007-09-10 21:15:22 +00003662 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3663 return;
3664 }
3665 } else if (NameStr[0] == 's' &&
3666 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen7f1076b2007-09-26 21:10:55 +00003667 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3668 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner3687e342007-09-10 21:15:22 +00003669 if (I.getNumOperands() == 2 && // Basic sanity checks.
3670 I.getOperand(1)->getType()->isFloatingPoint() &&
3671 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003672 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner3687e342007-09-10 21:15:22 +00003673 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3674 return;
3675 }
3676 } else if (NameStr[0] == 'c' &&
3677 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen7f1076b2007-09-26 21:10:55 +00003678 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3679 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner3687e342007-09-10 21:15:22 +00003680 if (I.getNumOperands() == 2 && // Basic sanity checks.
3681 I.getOperand(1)->getType()->isFloatingPoint() &&
3682 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003683 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner3687e342007-09-10 21:15:22 +00003684 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3685 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003686 }
3687 }
Chris Lattner3687e342007-09-10 21:15:22 +00003688 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003689 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sands1c5526c2007-12-17 18:08:19 +00003690 visitInlineAsm(&I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003691 return;
3692 }
3693
Dan Gohman8181bd12008-07-27 21:46:04 +00003694 SDValue Callee;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003695 if (!RenameFn)
3696 Callee = getValue(I.getOperand(0));
3697 else
3698 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
3699
Duncan Sandse9bc9132007-12-19 09:48:52 +00003700 LowerCallTo(&I, Callee, I.isTailCall());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003701}
3702
3703
3704/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3705/// this value and returns the result as a ValueVT value. This uses
3706/// Chain/Flag as the input and updates them for the output Chain/Flag.
3707/// If the Flag pointer is NULL, no flag is used.
Dan Gohman8181bd12008-07-27 21:46:04 +00003708SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
3709 SDValue &Chain,
3710 SDValue *Flag) const {
Dan Gohman30a71f52008-04-25 18:27:55 +00003711 // Assemble the legal parts into the final values.
Dan Gohman8181bd12008-07-27 21:46:04 +00003712 SmallVector<SDValue, 4> Values(ValueVTs.size());
3713 SmallVector<SDValue, 8> Parts;
Chris Lattner02d73b32008-04-28 07:16:35 +00003714 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman30a71f52008-04-25 18:27:55 +00003715 // Copy the legal parts from the registers.
Duncan Sands92c43912008-06-06 12:08:01 +00003716 MVT ValueVT = ValueVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003717 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands92c43912008-06-06 12:08:01 +00003718 MVT RegisterVT = RegVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003719
Chris Lattner02d73b32008-04-28 07:16:35 +00003720 Parts.resize(NumRegs);
Dan Gohman30a71f52008-04-25 18:27:55 +00003721 for (unsigned i = 0; i != NumRegs; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003722 SDValue P;
Chris Lattner02d73b32008-04-28 07:16:35 +00003723 if (Flag == 0)
3724 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3725 else {
3726 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman30a71f52008-04-25 18:27:55 +00003727 *Flag = P.getValue(2);
Chris Lattner02d73b32008-04-28 07:16:35 +00003728 }
3729 Chain = P.getValue(1);
Chris Lattner68068cc2008-06-17 06:09:18 +00003730
3731 // If the source register was virtual and if we know something about it,
3732 // add an assert node.
3733 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3734 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3735 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3736 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3737 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3738 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3739
3740 unsigned RegSize = RegisterVT.getSizeInBits();
3741 unsigned NumSignBits = LOI.NumSignBits;
3742 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3743
3744 // FIXME: We capture more information than the dag can represent. For
3745 // now, just use the tightest assertzext/assertsext possible.
3746 bool isSExt = true;
3747 MVT FromVT(MVT::Other);
3748 if (NumSignBits == RegSize)
3749 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3750 else if (NumZeroBits >= RegSize-1)
3751 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3752 else if (NumSignBits > RegSize-8)
3753 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3754 else if (NumZeroBits >= RegSize-9)
3755 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3756 else if (NumSignBits > RegSize-16)
3757 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3758 else if (NumZeroBits >= RegSize-17)
3759 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3760 else if (NumSignBits > RegSize-32)
3761 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3762 else if (NumZeroBits >= RegSize-33)
3763 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3764
3765 if (FromVT != MVT::Other) {
3766 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3767 RegisterVT, P, DAG.getValueType(FromVT));
3768
3769 }
3770 }
3771 }
3772
Dan Gohman30a71f52008-04-25 18:27:55 +00003773 Parts[Part+i] = P;
3774 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003775
Dan Gohman30a71f52008-04-25 18:27:55 +00003776 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3777 ValueVT);
3778 Part += NumRegs;
3779 }
Duncan Sands698842f2008-07-02 17:40:58 +00003780
Duncan Sandsf19591c2008-06-30 10:19:09 +00003781 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3782 &Values[0], ValueVTs.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003783}
3784
3785/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3786/// specified value into the registers specified by this object. This uses
3787/// Chain/Flag as the input and updates them for the output Chain/Flag.
3788/// If the Flag pointer is NULL, no flag is used.
Dan Gohman8181bd12008-07-27 21:46:04 +00003789void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG,
3790 SDValue &Chain, SDValue *Flag) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003791 // Get the list of the values's legal parts.
Dan Gohman30a71f52008-04-25 18:27:55 +00003792 unsigned NumRegs = Regs.size();
Dan Gohman8181bd12008-07-27 21:46:04 +00003793 SmallVector<SDValue, 8> Parts(NumRegs);
Chris Lattner02d73b32008-04-28 07:16:35 +00003794 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands92c43912008-06-06 12:08:01 +00003795 MVT ValueVT = ValueVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003796 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands92c43912008-06-06 12:08:01 +00003797 MVT RegisterVT = RegVTs[Value];
Dan Gohman30a71f52008-04-25 18:27:55 +00003798
3799 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3800 &Parts[Part], NumParts, RegisterVT);
3801 Part += NumParts;
3802 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003803
3804 // Copy the parts into the registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00003805 SmallVector<SDValue, 8> Chains(NumRegs);
Dan Gohman30a71f52008-04-25 18:27:55 +00003806 for (unsigned i = 0; i != NumRegs; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003807 SDValue Part;
Chris Lattner02d73b32008-04-28 07:16:35 +00003808 if (Flag == 0)
3809 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3810 else {
3811 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003812 *Flag = Part.getValue(1);
Chris Lattner02d73b32008-04-28 07:16:35 +00003813 }
3814 Chains[i] = Part.getValue(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003815 }
Chris Lattner02d73b32008-04-28 07:16:35 +00003816
Evan Cheng80cb49e2008-04-28 22:07:13 +00003817 if (NumRegs == 1 || Flag)
3818 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3819 // flagged to it. That is the CopyToReg nodes and the user are considered
3820 // a single scheduling unit. If we create a TokenFactor and return it as
3821 // chain, then the TokenFactor is both a predecessor (operand) of the
3822 // user as well as a successor (the TF operands are flagged to the user).
3823 // c1, f1 = CopyToReg
3824 // c2, f2 = CopyToReg
3825 // c3 = TokenFactor c1, c2
3826 // ...
3827 // = op c3, ..., f2
3828 Chain = Chains[NumRegs-1];
Chris Lattner02d73b32008-04-28 07:16:35 +00003829 else
3830 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003831}
3832
3833/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3834/// operand list. This adds the code marker and includes the number of
3835/// values added into it.
3836void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00003837 std::vector<SDValue> &Ops) const {
Duncan Sands92c43912008-06-06 12:08:01 +00003838 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003839 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner02d73b32008-04-28 07:16:35 +00003840 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3841 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands92c43912008-06-06 12:08:01 +00003842 MVT RegisterVT = RegVTs[Value];
Chris Lattner02d73b32008-04-28 07:16:35 +00003843 for (unsigned i = 0; i != NumRegs; ++i)
3844 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman30a71f52008-04-25 18:27:55 +00003845 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003846}
3847
3848/// isAllocatableRegister - If the specified register is safe to allocate,
3849/// i.e. it isn't a stack pointer or some other special register, return the
3850/// register class for the register. Otherwise, return null.
3851static const TargetRegisterClass *
3852isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman1e57df32008-02-10 18:45:23 +00003853 const TargetLowering &TLI,
3854 const TargetRegisterInfo *TRI) {
Duncan Sands92c43912008-06-06 12:08:01 +00003855 MVT FoundVT = MVT::Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003856 const TargetRegisterClass *FoundRC = 0;
Dan Gohman1e57df32008-02-10 18:45:23 +00003857 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3858 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands92c43912008-06-06 12:08:01 +00003859 MVT ThisVT = MVT::Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003860
3861 const TargetRegisterClass *RC = *RCI;
3862 // If none of the the value types for this register class are valid, we
3863 // can't use it. For example, 64-bit reg classes on 32-bit targets.
3864 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3865 I != E; ++I) {
3866 if (TLI.isTypeLegal(*I)) {
3867 // If we have already found this register in a different register class,
3868 // choose the one with the largest VT specified. For example, on
3869 // PowerPC, we favor f64 register classes over f32.
Duncan Sandsec142ee2008-06-08 20:54:56 +00003870 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003871 ThisVT = *I;
3872 break;
3873 }
3874 }
3875 }
3876
3877 if (ThisVT == MVT::Other) continue;
3878
3879 // NOTE: This isn't ideal. In particular, this might allocate the
3880 // frame pointer in functions that need it (due to them not being taken
3881 // out of allocation, because a variable sized allocation hasn't been seen
3882 // yet). This is a slight code pessimization, but should still work.
3883 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3884 E = RC->allocation_order_end(MF); I != E; ++I)
3885 if (*I == Reg) {
3886 // We found a matching register class. Keep looking at others in case
3887 // we find one with larger registers that this physreg is also in.
3888 FoundRC = RC;
3889 FoundVT = ThisVT;
3890 break;
3891 }
3892 }
3893 return FoundRC;
3894}
3895
3896
3897namespace {
3898/// AsmOperandInfo - This contains information for each constraint that we are
3899/// lowering.
Evan Chengbcd66442008-02-26 02:33:44 +00003900struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3901 /// CallOperand - If this is the result output operand or a clobber
3902 /// this is null, otherwise it is the incoming operand to the CallInst.
3903 /// This gets modified as the asm is processed.
Dan Gohman8181bd12008-07-27 21:46:04 +00003904 SDValue CallOperand;
Evan Chengbcd66442008-02-26 02:33:44 +00003905
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003906 /// AssignedRegs - If this is a register or register class operand, this
3907 /// contains the set of register corresponding to the operand.
3908 RegsForValue AssignedRegs;
3909
Dan Gohman30a71f52008-04-25 18:27:55 +00003910 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Chengbcd66442008-02-26 02:33:44 +00003911 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003912 }
3913
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003914 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3915 /// busy in OutputRegs/InputRegs.
3916 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3917 std::set<unsigned> &OutputRegs,
Chris Lattnerbd0818b2008-02-21 04:55:52 +00003918 std::set<unsigned> &InputRegs,
3919 const TargetRegisterInfo &TRI) const {
3920 if (isOutReg) {
3921 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3922 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3923 }
3924 if (isInReg) {
3925 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3926 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3927 }
3928 }
3929
3930private:
3931 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3932 /// specified set.
3933 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3934 const TargetRegisterInfo &TRI) {
3935 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3936 Regs.insert(Reg);
3937 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3938 for (; *Aliases; ++Aliases)
3939 Regs.insert(*Aliases);
3940 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003941};
3942} // end anon namespace.
3943
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003944
Chris Lattner75a19162008-02-21 19:43:13 +00003945/// GetRegistersForValue - Assign registers (virtual or physical) for the
3946/// specified operand. We prefer to assign virtual registers, to allow the
3947/// register allocator handle the assignment process. However, if the asm uses
3948/// features that we can't model on machineinstrs, we have SDISel do the
3949/// allocation. This produces generally horrible, but correct, code.
3950///
3951/// OpInfo describes the operand.
3952/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3953/// or any explicitly clobbered registers.
3954/// Input and OutputRegs are the set of already allocated physical registers.
3955///
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003956void SelectionDAGLowering::
Evan Chengbcd66442008-02-26 02:33:44 +00003957GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003958 std::set<unsigned> &OutputRegs,
3959 std::set<unsigned> &InputRegs) {
3960 // Compute whether this value requires an input register, an output register,
3961 // or both.
3962 bool isOutReg = false;
3963 bool isInReg = false;
3964 switch (OpInfo.Type) {
3965 case InlineAsm::isOutput:
3966 isOutReg = true;
3967
3968 // If this is an early-clobber output, or if there is an input
3969 // constraint that matches this, we need to reserve the input register
3970 // so no other inputs allocate to it.
3971 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3972 break;
3973 case InlineAsm::isInput:
3974 isInReg = true;
3975 isOutReg = false;
3976 break;
3977 case InlineAsm::isClobber:
3978 isOutReg = true;
3979 isInReg = true;
3980 break;
3981 }
3982
3983
3984 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner622811e2008-04-28 06:44:42 +00003985 SmallVector<unsigned, 4> Regs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003986
3987 // If this is a constraint for a single physreg, or a constraint for a
3988 // register class, find it.
3989 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
3990 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3991 OpInfo.ConstraintVT);
3992
3993 unsigned NumRegs = 1;
3994 if (OpInfo.ConstraintVT != MVT::Other)
3995 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands92c43912008-06-06 12:08:01 +00003996 MVT RegVT;
3997 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003998
3999
4000 // If this is a constraint for a specific physical register, like {r17},
4001 // assign it now.
4002 if (PhysReg.first) {
4003 if (OpInfo.ConstraintVT == MVT::Other)
4004 ValueVT = *PhysReg.second->vt_begin();
4005
4006 // Get the actual register value type. This is important, because the user
4007 // may have asked for (e.g.) the AX register in i32 type. We need to
4008 // remember that AX is actually i16 to get the right extension.
4009 RegVT = *PhysReg.second->vt_begin();
4010
4011 // This is a explicit reference to a physical register.
4012 Regs.push_back(PhysReg.first);
4013
4014 // If this is an expanded reference, add the rest of the regs to Regs.
4015 if (NumRegs != 1) {
4016 TargetRegisterClass::iterator I = PhysReg.second->begin();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004017 for (; *I != PhysReg.first; ++I)
Evan Chengaaa364e2008-05-14 20:07:51 +00004018 assert(I != PhysReg.second->end() && "Didn't find reg!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004019
4020 // Already added the first reg.
4021 --NumRegs; ++I;
4022 for (; NumRegs; --NumRegs, ++I) {
Evan Chengaaa364e2008-05-14 20:07:51 +00004023 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004024 Regs.push_back(*I);
4025 }
4026 }
Dan Gohman30a71f52008-04-25 18:27:55 +00004027 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnerbd0818b2008-02-21 04:55:52 +00004028 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4029 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004030 return;
4031 }
4032
4033 // Otherwise, if this was a reference to an LLVM register class, create vregs
4034 // for this reference.
4035 std::vector<unsigned> RegClassRegs;
4036 const TargetRegisterClass *RC = PhysReg.second;
4037 if (RC) {
4038 // If this is an early clobber or tied register, our regalloc doesn't know
4039 // how to maintain the constraint. If it isn't, go ahead and create vreg
4040 // and let the regalloc do the right thing.
4041 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4042 // If there is some other early clobber and this is an input register,
4043 // then we are forced to pre-allocate the input reg so it doesn't
4044 // conflict with the earlyclobber.
4045 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
4046 RegVT = *PhysReg.second->vt_begin();
4047
4048 if (OpInfo.ConstraintVT == MVT::Other)
4049 ValueVT = RegVT;
4050
4051 // Create the appropriate number of virtual registers.
Chris Lattner1b989192007-12-31 04:13:23 +00004052 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004053 for (; NumRegs; --NumRegs)
Chris Lattner1b989192007-12-31 04:13:23 +00004054 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004055
Dan Gohman30a71f52008-04-25 18:27:55 +00004056 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004057 return;
4058 }
4059
4060 // Otherwise, we can't allocate it. Let the code below figure out how to
4061 // maintain these constraints.
4062 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4063
4064 } else {
4065 // This is a reference to a register class that doesn't directly correspond
4066 // to an LLVM register class. Allocate NumRegs consecutive, available,
4067 // registers from the class.
4068 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4069 OpInfo.ConstraintVT);
4070 }
4071
Dan Gohman1e57df32008-02-10 18:45:23 +00004072 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004073 unsigned NumAllocated = 0;
4074 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4075 unsigned Reg = RegClassRegs[i];
4076 // See if this register is available.
4077 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4078 (isInReg && InputRegs.count(Reg))) { // Already used.
4079 // Make sure we find consecutive registers.
4080 NumAllocated = 0;
4081 continue;
4082 }
4083
4084 // Check to see if this register is allocatable (i.e. don't give out the
4085 // stack pointer).
4086 if (RC == 0) {
Dan Gohman1e57df32008-02-10 18:45:23 +00004087 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004088 if (!RC) { // Couldn't allocate this register.
4089 // Reset NumAllocated to make sure we return consecutive registers.
4090 NumAllocated = 0;
4091 continue;
4092 }
4093 }
4094
4095 // Okay, this register is good, we can use it.
4096 ++NumAllocated;
4097
4098 // If we allocated enough consecutive registers, succeed.
4099 if (NumAllocated == NumRegs) {
4100 unsigned RegStart = (i-NumAllocated)+1;
4101 unsigned RegEnd = i+1;
4102 // Mark all of the allocated registers used.
4103 for (unsigned i = RegStart; i != RegEnd; ++i)
4104 Regs.push_back(RegClassRegs[i]);
4105
Dan Gohman30a71f52008-04-25 18:27:55 +00004106 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004107 OpInfo.ConstraintVT);
Chris Lattnerbd0818b2008-02-21 04:55:52 +00004108 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004109 return;
4110 }
4111 }
4112
4113 // Otherwise, we couldn't allocate enough registers for this.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004114}
4115
4116
4117/// visitInlineAsm - Handle a call to an InlineAsm object.
4118///
Duncan Sands1c5526c2007-12-17 18:08:19 +00004119void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4120 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004121
4122 /// ConstraintOperands - Information about all of the constraints.
Evan Chengbcd66442008-02-26 02:33:44 +00004123 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004124
Dan Gohman8181bd12008-07-27 21:46:04 +00004125 SDValue Chain = getRoot();
4126 SDValue Flag;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004127
4128 std::set<unsigned> OutputRegs, InputRegs;
4129
4130 // Do a prepass over the constraints, canonicalizing them, and building up the
4131 // ConstraintOperands list.
4132 std::vector<InlineAsm::ConstraintInfo>
4133 ConstraintInfos = IA->ParseConstraints();
4134
4135 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4136 // constraint. If so, we can't let the register allocator allocate any input
4137 // registers, because it will not know to avoid the earlyclobbered output reg.
4138 bool SawEarlyClobber = false;
4139
Duncan Sands1c5526c2007-12-17 18:08:19 +00004140 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattner5f323302008-04-27 23:44:28 +00004141 unsigned ResNo = 0; // ResNo - The result number of the next output.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004142 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Chengbcd66442008-02-26 02:33:44 +00004143 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4144 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004145
Duncan Sands92c43912008-06-06 12:08:01 +00004146 MVT OpVT = MVT::Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004147
4148 // Compute the value type for each operand.
4149 switch (OpInfo.Type) {
4150 case InlineAsm::isOutput:
Chris Lattner5f323302008-04-27 23:44:28 +00004151 // Indirect outputs just consume an argument.
4152 if (OpInfo.isIndirect) {
Duncan Sands1c5526c2007-12-17 18:08:19 +00004153 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner5f323302008-04-27 23:44:28 +00004154 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004155 }
Chris Lattner5f323302008-04-27 23:44:28 +00004156 // The return value of the call is this value. As such, there is no
4157 // corresponding argument.
4158 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4159 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4160 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4161 } else {
4162 assert(ResNo == 0 && "Asm only has one result!");
4163 OpVT = TLI.getValueType(CS.getType());
4164 }
4165 ++ResNo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004166 break;
4167 case InlineAsm::isInput:
Duncan Sands1c5526c2007-12-17 18:08:19 +00004168 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004169 break;
4170 case InlineAsm::isClobber:
4171 // Nothing to do.
4172 break;
4173 }
4174
4175 // If this is an input or an indirect output, process the call argument.
Dale Johannesencfb19e62007-11-05 21:20:28 +00004176 // BasicBlocks are labels, currently appearing only in asm's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004177 if (OpInfo.CallOperandVal) {
Chris Lattner786c4282008-04-27 00:16:18 +00004178 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4179 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johannesencfb19e62007-11-05 21:20:28 +00004180 else {
4181 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4182 const Type *OpTy = OpInfo.CallOperandVal->getType();
4183 // If this is an indirect operand, the operand is a pointer to the
4184 // accessed type.
4185 if (OpInfo.isIndirect)
4186 OpTy = cast<PointerType>(OpTy)->getElementType();
4187
Dan Gohmanf9a85a32008-05-23 00:34:04 +00004188 // If OpTy is not a single value, it may be a struct/union that we
Dale Johannesencfb19e62007-11-05 21:20:28 +00004189 // can tile with integers.
Dan Gohmanf9a85a32008-05-23 00:34:04 +00004190 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johannesencfb19e62007-11-05 21:20:28 +00004191 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4192 switch (BitSize) {
4193 default: break;
4194 case 1:
4195 case 8:
4196 case 16:
4197 case 32:
4198 case 64:
4199 OpTy = IntegerType::get(BitSize);
4200 break;
4201 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004202 }
Dale Johannesencfb19e62007-11-05 21:20:28 +00004203
4204 OpVT = TLI.getValueType(OpTy, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004205 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004206 }
4207
4208 OpInfo.ConstraintVT = OpVT;
4209
4210 // Compute the constraint code and ConstraintType to use.
Chris Lattner4486c2e2008-04-27 00:37:18 +00004211 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004212
4213 // Keep track of whether we see an earlyclobber.
4214 SawEarlyClobber |= OpInfo.isEarlyClobber;
4215
Chris Lattner75a19162008-02-21 19:43:13 +00004216 // If we see a clobber of a register, it is an early clobber.
Chris Lattner17ac4312008-02-21 20:54:31 +00004217 if (!SawEarlyClobber &&
4218 OpInfo.Type == InlineAsm::isClobber &&
4219 OpInfo.ConstraintType == TargetLowering::C_Register) {
4220 // Note that we want to ignore things that we don't trick here, like
4221 // dirflag, fpsr, flags, etc.
4222 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4223 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4224 OpInfo.ConstraintVT);
4225 if (PhysReg.first || PhysReg.second) {
4226 // This is a register we know of.
4227 SawEarlyClobber = true;
4228 }
4229 }
Chris Lattner75a19162008-02-21 19:43:13 +00004230
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004231 // If this is a memory input, and if the operand is not indirect, do what we
4232 // need to to provide an address for the memory input.
4233 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4234 !OpInfo.isIndirect) {
4235 assert(OpInfo.Type == InlineAsm::isInput &&
4236 "Can only indirectify direct input operands!");
4237
4238 // Memory operands really want the address of the value. If we don't have
4239 // an indirect input, put it in the constpool if we can, otherwise spill
4240 // it to a stack slot.
4241
4242 // If the operand is a float, integer, or vector constant, spill to a
4243 // constant pool entry to get its address.
4244 Value *OpVal = OpInfo.CallOperandVal;
4245 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4246 isa<ConstantVector>(OpVal)) {
4247 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4248 TLI.getPointerTy());
4249 } else {
4250 // Otherwise, create a stack slot and emit a store to it before the
4251 // asm.
4252 const Type *Ty = OpVal->getType();
Duncan Sandsf99fdc62007-11-01 20:53:16 +00004253 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004254 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4255 MachineFunction &MF = DAG.getMachineFunction();
4256 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
Dan Gohman8181bd12008-07-27 21:46:04 +00004257 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004258 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4259 OpInfo.CallOperand = StackSlot;
4260 }
4261
4262 // There is no longer a Value* corresponding to this operand.
4263 OpInfo.CallOperandVal = 0;
4264 // It is now an indirect operand.
4265 OpInfo.isIndirect = true;
4266 }
4267
4268 // If this constraint is for a specific register, allocate it before
4269 // anything else.
4270 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4271 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4272 }
4273 ConstraintInfos.clear();
4274
4275
4276 // Second pass - Loop over all of the operands, assigning virtual or physregs
4277 // to registerclass operands.
4278 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Chengbcd66442008-02-26 02:33:44 +00004279 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004280
4281 // C_Register operands have already been allocated, Other/Memory don't need
4282 // to be.
4283 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4284 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4285 }
4286
4287 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
Dan Gohman8181bd12008-07-27 21:46:04 +00004288 std::vector<SDValue> AsmNodeOperands;
4289 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004290 AsmNodeOperands.push_back(
4291 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4292
4293
4294 // Loop over all of the inputs, copying the operand values into the
4295 // appropriate registers and processing the output regs.
4296 RegsForValue RetValRegs;
Chris Lattner08bbcb82008-04-29 04:29:54 +00004297
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004298 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4299 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4300
4301 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Chengbcd66442008-02-26 02:33:44 +00004302 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004303
4304 switch (OpInfo.Type) {
4305 case InlineAsm::isOutput: {
4306 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4307 OpInfo.ConstraintType != TargetLowering::C_Register) {
4308 // Memory output, or 'other' output (e.g. 'X' constraint).
4309 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
4310
4311 // Add information to the INLINEASM node to know about this output.
4312 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4313 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4314 TLI.getPointerTy()));
4315 AsmNodeOperands.push_back(OpInfo.CallOperand);
4316 break;
4317 }
4318
4319 // Otherwise, this is a register or register class output.
4320
4321 // Copy the output from the appropriate register. Find a register that
4322 // we can use.
4323 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sands10fbb352008-06-17 03:24:13 +00004324 cerr << "Couldn't allocate output reg for constraint '"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004325 << OpInfo.ConstraintCode << "'!\n";
4326 exit(1);
4327 }
4328
Chris Lattner08bbcb82008-04-29 04:29:54 +00004329 // If this is an indirect operand, store through the pointer after the
4330 // asm.
4331 if (OpInfo.isIndirect) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004332 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
4333 OpInfo.CallOperandVal));
Chris Lattner08bbcb82008-04-29 04:29:54 +00004334 } else {
4335 // This is the result value of the call.
4336 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4337 // Concatenate this output onto the outputs list.
4338 RetValRegs.append(OpInfo.AssignedRegs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004339 }
4340
4341 // Add information to the INLINEASM node to know that this register is
4342 // set.
4343 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4344 AsmNodeOperands);
4345 break;
4346 }
4347 case InlineAsm::isInput: {
Dan Gohman8181bd12008-07-27 21:46:04 +00004348 SDValue InOperandVal = OpInfo.CallOperand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004349
4350 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
4351 // If this is required to match an output register we have already set,
4352 // just use its register.
4353 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
4354
4355 // Scan until we find the definition we already emitted of this operand.
4356 // When we find it, create a RegsForValue operand.
4357 unsigned CurOp = 2; // The first operand.
4358 for (; OperandNo; --OperandNo) {
4359 // Advance to the next operand.
4360 unsigned NumOps =
4361 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
4362 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4363 (NumOps & 7) == 4 /*MEM*/) &&
4364 "Skipped past definitions?");
4365 CurOp += (NumOps>>3)+1;
4366 }
4367
4368 unsigned NumOps =
4369 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
4370 if ((NumOps & 7) == 2 /*REGDEF*/) {
4371 // Add NumOps>>3 registers to MatchedRegs.
4372 RegsForValue MatchedRegs;
Dan Gohman30a71f52008-04-25 18:27:55 +00004373 MatchedRegs.TLI = &TLI;
Dan Gohman111e04e2008-05-02 00:03:54 +00004374 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4375 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004376 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4377 unsigned Reg =
4378 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4379 MatchedRegs.Regs.push_back(Reg);
4380 }
4381
4382 // Use the produced MatchedRegs object to
4383 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
4384 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4385 break;
4386 } else {
4387 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattner58d032b2008-02-21 05:27:19 +00004388 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4389 // Add information to the INLINEASM node to know about this input.
4390 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4391 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4392 TLI.getPointerTy()));
4393 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4394 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004395 }
4396 }
4397
4398 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
4399 assert(!OpInfo.isIndirect &&
4400 "Don't know how to handle indirect other inputs yet!");
4401
Dan Gohman8181bd12008-07-27 21:46:04 +00004402 std::vector<SDValue> Ops;
Chris Lattnera531abc2007-08-25 00:47:38 +00004403 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4404 Ops, DAG);
4405 if (Ops.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004406 cerr << "Invalid operand for inline asm constraint '"
4407 << OpInfo.ConstraintCode << "'!\n";
4408 exit(1);
4409 }
4410
4411 // Add information to the INLINEASM node to know about this input.
Chris Lattnera531abc2007-08-25 00:47:38 +00004412 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004413 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4414 TLI.getPointerTy()));
Chris Lattnera531abc2007-08-25 00:47:38 +00004415 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004416 break;
4417 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
4418 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
4419 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4420 "Memory operands expect pointer values");
4421
4422 // Add information to the INLINEASM node to know about this input.
4423 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4424 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4425 TLI.getPointerTy()));
4426 AsmNodeOperands.push_back(InOperandVal);
4427 break;
4428 }
4429
4430 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4431 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4432 "Unknown constraint type!");
4433 assert(!OpInfo.isIndirect &&
4434 "Don't know how to handle indirect register inputs yet!");
4435
4436 // Copy the input into the appropriate registers.
4437 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4438 "Couldn't allocate input reg!");
4439
4440 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
4441
4442 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4443 AsmNodeOperands);
4444 break;
4445 }
4446 case InlineAsm::isClobber: {
4447 // Add the clobbered value to the operand list, so that the register
4448 // allocator is aware that the physreg got clobbered.
4449 if (!OpInfo.AssignedRegs.Regs.empty())
4450 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4451 AsmNodeOperands);
4452 break;
4453 }
4454 }
4455 }
4456
4457 // Finish up input operands.
4458 AsmNodeOperands[0] = Chain;
4459 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4460
4461 Chain = DAG.getNode(ISD::INLINEASM,
4462 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
4463 &AsmNodeOperands[0], AsmNodeOperands.size());
4464 Flag = Chain.getValue(1);
4465
4466 // If this asm returns a register value, copy the result from that register
4467 // and set it as the value of the call.
4468 if (!RetValRegs.Regs.empty()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004469 SDValue Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner626164a2008-04-29 04:48:56 +00004470
4471 // If any of the results of the inline asm is a vector, it may have the
4472 // wrong width/num elts. This can happen for register classes that can
4473 // contain multiple different value types. The preg or vreg allocated may
4474 // not have the same VT as was expected. Convert it to the right type with
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004475 // bit_convert.
Chris Lattner626164a2008-04-29 04:48:56 +00004476 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4477 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00004478 if (Val.Val->getValueType(i).isVector())
Chris Lattner626164a2008-04-29 04:48:56 +00004479 Val = DAG.getNode(ISD::BIT_CONVERT,
4480 TLI.getValueType(ResSTy->getElementType(i)), Val);
4481 }
4482 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00004483 if (Val.getValueType().isVector())
Chris Lattner626164a2008-04-29 04:48:56 +00004484 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4485 Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004486 }
Chris Lattner626164a2008-04-29 04:48:56 +00004487
Duncan Sands1c5526c2007-12-17 18:08:19 +00004488 setValue(CS.getInstruction(), Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004489 }
4490
Dan Gohman8181bd12008-07-27 21:46:04 +00004491 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004492
4493 // Process indirect outputs, first output all of the flagged copies out of
4494 // physregs.
4495 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
4496 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
4497 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohman8181bd12008-07-27 21:46:04 +00004498 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004499 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
4500 }
4501
4502 // Emit the non-flagged stores from the physregs.
Dan Gohman8181bd12008-07-27 21:46:04 +00004503 SmallVector<SDValue, 8> OutChains;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004504 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
4505 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
4506 getValue(StoresToEmit[i].second),
4507 StoresToEmit[i].second, 0));
4508 if (!OutChains.empty())
4509 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4510 &OutChains[0], OutChains.size());
4511 DAG.setRoot(Chain);
4512}
4513
4514
4515void SelectionDAGLowering::visitMalloc(MallocInst &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004516 SDValue Src = getValue(I.getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004517
Duncan Sands92c43912008-06-06 12:08:01 +00004518 MVT IntPtr = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004519
Duncan Sandsec142ee2008-06-08 20:54:56 +00004520 if (IntPtr.bitsLT(Src.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004521 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sandsec142ee2008-06-08 20:54:56 +00004522 else if (IntPtr.bitsGT(Src.getValueType()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004523 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
4524
4525 // Scale the source by the type size.
Duncan Sandsf99fdc62007-11-01 20:53:16 +00004526 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004527 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner5872a362008-01-17 07:00:52 +00004528 Src, DAG.getIntPtrConstant(ElementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004529
4530 TargetLowering::ArgListTy Args;
4531 TargetLowering::ArgListEntry Entry;
4532 Entry.Node = Src;
4533 Entry.Ty = TLI.getTargetData()->getIntPtrType();
4534 Args.push_back(Entry);
4535
Dan Gohman8181bd12008-07-27 21:46:04 +00004536 std::pair<SDValue,SDValue> Result =
Duncan Sandsead972e2008-02-14 17:28:50 +00004537 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4538 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004539 setValue(&I, Result.first); // Pointers always fit in registers
4540 DAG.setRoot(Result.second);
4541}
4542
4543void SelectionDAGLowering::visitFree(FreeInst &I) {
4544 TargetLowering::ArgListTy Args;
4545 TargetLowering::ArgListEntry Entry;
4546 Entry.Node = getValue(I.getOperand(0));
4547 Entry.Ty = TLI.getTargetData()->getIntPtrType();
4548 Args.push_back(Entry);
Duncan Sands92c43912008-06-06 12:08:01 +00004549 MVT IntPtr = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00004550 std::pair<SDValue,SDValue> Result =
Duncan Sandsead972e2008-02-14 17:28:50 +00004551 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4552 CallingConv::C, true,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004553 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4554 DAG.setRoot(Result.second);
4555}
4556
Evan Chenge637db12008-01-30 18:18:23 +00004557// EmitInstrWithCustomInserter - This method should be implemented by targets
4558// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004559// instructions are special in various ways, which require special support to
4560// insert. The specified MachineInstr is created but not inserted into any
4561// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chenge637db12008-01-30 18:18:23 +00004562MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004563 MachineBasicBlock *MBB) {
4564 cerr << "If a target marks an instruction with "
4565 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chenge637db12008-01-30 18:18:23 +00004566 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004567 abort();
4568 return 0;
4569}
4570
4571void SelectionDAGLowering::visitVAStart(CallInst &I) {
4572 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4573 getValue(I.getOperand(1)),
4574 DAG.getSrcValue(I.getOperand(1))));
4575}
4576
4577void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004578 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004579 getValue(I.getOperand(0)),
4580 DAG.getSrcValue(I.getOperand(0)));
4581 setValue(&I, V);
4582 DAG.setRoot(V.getValue(1));
4583}
4584
4585void SelectionDAGLowering::visitVAEnd(CallInst &I) {
4586 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4587 getValue(I.getOperand(1)),
4588 DAG.getSrcValue(I.getOperand(1))));
4589}
4590
4591void SelectionDAGLowering::visitVACopy(CallInst &I) {
4592 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4593 getValue(I.getOperand(1)),
4594 getValue(I.getOperand(2)),
4595 DAG.getSrcValue(I.getOperand(1)),
4596 DAG.getSrcValue(I.getOperand(2))));
4597}
4598
4599/// TargetLowering::LowerArguments - This is the default LowerArguments
4600/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
4601/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4602/// integrated into SDISel.
Dan Gohmane0208142008-06-30 20:31:15 +00004603void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00004604 SmallVectorImpl<SDValue> &ArgValues) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004605 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
Dan Gohman8181bd12008-07-27 21:46:04 +00004606 SmallVector<SDValue, 3+16> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004607 Ops.push_back(DAG.getRoot());
4608 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4609 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4610
4611 // Add one result value for each formal argument.
Dan Gohmane0208142008-06-30 20:31:15 +00004612 SmallVector<MVT, 16> RetVals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004613 unsigned j = 1;
4614 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4615 I != E; ++I, ++j) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004616 SmallVector<MVT, 4> ValueVTs;
4617 ComputeValueVTs(*this, I->getType(), ValueVTs);
4618 for (unsigned Value = 0, NumValues = ValueVTs.size();
4619 Value != NumValues; ++Value) {
4620 MVT VT = ValueVTs[Value];
4621 const Type *ArgTy = VT.getTypeForMVT();
4622 ISD::ArgFlagsTy Flags;
4623 unsigned OriginalAlignment =
4624 getTargetData()->getABITypeAlignment(ArgTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004625
Dan Gohman1bb94262008-06-09 21:19:23 +00004626 if (F.paramHasAttr(j, ParamAttr::ZExt))
4627 Flags.setZExt();
4628 if (F.paramHasAttr(j, ParamAttr::SExt))
4629 Flags.setSExt();
4630 if (F.paramHasAttr(j, ParamAttr::InReg))
4631 Flags.setInReg();
4632 if (F.paramHasAttr(j, ParamAttr::StructRet))
4633 Flags.setSRet();
4634 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4635 Flags.setByVal();
4636 const PointerType *Ty = cast<PointerType>(I->getType());
4637 const Type *ElementTy = Ty->getElementType();
4638 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4639 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4640 // For ByVal, alignment should be passed from FE. BE will guess if
4641 // this info is not there but there are cases it cannot get right.
4642 if (F.getParamAlignment(j))
4643 FrameAlign = F.getParamAlignment(j);
4644 Flags.setByValAlign(FrameAlign);
4645 Flags.setByValSize(FrameSize);
4646 }
4647 if (F.paramHasAttr(j, ParamAttr::Nest))
4648 Flags.setNest();
4649 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandse111ce82008-02-11 20:58:28 +00004650
Dan Gohman1bb94262008-06-09 21:19:23 +00004651 MVT RegisterVT = getRegisterType(VT);
4652 unsigned NumRegs = getNumRegisters(VT);
4653 for (unsigned i = 0; i != NumRegs; ++i) {
4654 RetVals.push_back(RegisterVT);
4655 ISD::ArgFlagsTy MyFlags = Flags;
4656 if (NumRegs > 1 && i == 0)
4657 MyFlags.setSplit();
4658 // if it isn't first piece, alignment must be 1
4659 else if (i > 0)
4660 MyFlags.setOrigAlign(1);
4661 Ops.push_back(DAG.getArgFlags(MyFlags));
4662 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004663 }
4664 }
4665
4666 RetVals.push_back(MVT::Other);
4667
4668 // Create the node.
4669 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner5cb5add2008-02-13 07:39:09 +00004670 DAG.getVTList(&RetVals[0], RetVals.size()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004671 &Ops[0], Ops.size()).Val;
Chris Lattner5cb5add2008-02-13 07:39:09 +00004672
4673 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4674 // allows exposing the loads that may be part of the argument access to the
4675 // first DAGCombiner pass.
Dan Gohman8181bd12008-07-27 21:46:04 +00004676 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Chris Lattner5cb5add2008-02-13 07:39:09 +00004677
4678 // The number of results should match up, except that the lowered one may have
4679 // an extra flag result.
4680 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4681 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4682 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4683 && "Lowering produced unexpected number of results!");
Dan Gohman890404f2008-07-21 21:04:07 +00004684
4685 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
4686 if (Result != TmpRes.Val && Result->use_empty()) {
4687 HandleSDNode Dummy(DAG.getRoot());
4688 DAG.RemoveDeadNode(Result);
4689 }
4690
Chris Lattner5cb5add2008-02-13 07:39:09 +00004691 Result = TmpRes.Val;
4692
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004693 unsigned NumArgRegs = Result->getNumValues() - 1;
Dan Gohman8181bd12008-07-27 21:46:04 +00004694 DAG.setRoot(SDValue(Result, NumArgRegs));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004695
4696 // Set up the return result vector.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004697 unsigned i = 0;
4698 unsigned Idx = 1;
4699 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4700 ++I, ++Idx) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004701 SmallVector<MVT, 4> ValueVTs;
4702 ComputeValueVTs(*this, I->getType(), ValueVTs);
4703 for (unsigned Value = 0, NumValues = ValueVTs.size();
4704 Value != NumValues; ++Value) {
4705 MVT VT = ValueVTs[Value];
4706 MVT PartVT = getRegisterType(VT);
Duncan Sandse111ce82008-02-11 20:58:28 +00004707
Dan Gohman1bb94262008-06-09 21:19:23 +00004708 unsigned NumParts = getNumRegisters(VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00004709 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohman1bb94262008-06-09 21:19:23 +00004710 for (unsigned j = 0; j != NumParts; ++j)
Dan Gohman8181bd12008-07-27 21:46:04 +00004711 Parts[j] = SDValue(Result, i++);
Duncan Sandse111ce82008-02-11 20:58:28 +00004712
Dan Gohman1bb94262008-06-09 21:19:23 +00004713 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4714 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4715 AssertOp = ISD::AssertSext;
4716 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4717 AssertOp = ISD::AssertZext;
Duncan Sandse111ce82008-02-11 20:58:28 +00004718
Dan Gohmane0208142008-06-30 20:31:15 +00004719 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4720 AssertOp));
Dan Gohman1bb94262008-06-09 21:19:23 +00004721 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004722 }
4723 assert(i == NumArgRegs && "Argument register count mismatch!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004724}
4725
4726
4727/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4728/// implementation, which just inserts an ISD::CALL node, which is later custom
4729/// lowered by the target to something concrete. FIXME: When all targets are
4730/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
Dan Gohman8181bd12008-07-27 21:46:04 +00004731std::pair<SDValue, SDValue>
4732TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
Duncan Sandsead972e2008-02-14 17:28:50 +00004733 bool RetSExt, bool RetZExt, bool isVarArg,
4734 unsigned CallingConv, bool isTailCall,
Dan Gohman8181bd12008-07-27 21:46:04 +00004735 SDValue Callee,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004736 ArgListTy &Args, SelectionDAG &DAG) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004737 SmallVector<SDValue, 32> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004738 Ops.push_back(Chain); // Op#0 - Chain
4739 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4740 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4741 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4742 Ops.push_back(Callee);
4743
4744 // Handle all of the outgoing arguments.
4745 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohman1bb94262008-06-09 21:19:23 +00004746 SmallVector<MVT, 4> ValueVTs;
4747 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4748 for (unsigned Value = 0, NumValues = ValueVTs.size();
4749 Value != NumValues; ++Value) {
4750 MVT VT = ValueVTs[Value];
4751 const Type *ArgTy = VT.getTypeForMVT();
Dan Gohman8181bd12008-07-27 21:46:04 +00004752 SDValue Op = SDValue(Args[i].Node.Val, Args[i].Node.ResNo + Value);
Dan Gohman1bb94262008-06-09 21:19:23 +00004753 ISD::ArgFlagsTy Flags;
4754 unsigned OriginalAlignment =
4755 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sandsc93fae32008-03-21 09:14:45 +00004756
Dan Gohman1bb94262008-06-09 21:19:23 +00004757 if (Args[i].isZExt)
4758 Flags.setZExt();
4759 if (Args[i].isSExt)
4760 Flags.setSExt();
4761 if (Args[i].isInReg)
4762 Flags.setInReg();
4763 if (Args[i].isSRet)
4764 Flags.setSRet();
4765 if (Args[i].isByVal) {
4766 Flags.setByVal();
4767 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4768 const Type *ElementTy = Ty->getElementType();
4769 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4770 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4771 // For ByVal, alignment should come from FE. BE will guess if this
4772 // info is not there but there are cases it cannot get right.
4773 if (Args[i].Alignment)
4774 FrameAlign = Args[i].Alignment;
4775 Flags.setByValAlign(FrameAlign);
4776 Flags.setByValSize(FrameSize);
4777 }
4778 if (Args[i].isNest)
4779 Flags.setNest();
4780 Flags.setOrigAlign(OriginalAlignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004781
Dan Gohman1bb94262008-06-09 21:19:23 +00004782 MVT PartVT = getRegisterType(VT);
4783 unsigned NumParts = getNumRegisters(VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00004784 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohman1bb94262008-06-09 21:19:23 +00004785 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandse111ce82008-02-11 20:58:28 +00004786
Dan Gohman1bb94262008-06-09 21:19:23 +00004787 if (Args[i].isSExt)
4788 ExtendKind = ISD::SIGN_EXTEND;
4789 else if (Args[i].isZExt)
4790 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandse111ce82008-02-11 20:58:28 +00004791
Dan Gohman1bb94262008-06-09 21:19:23 +00004792 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandse111ce82008-02-11 20:58:28 +00004793
Dan Gohman1bb94262008-06-09 21:19:23 +00004794 for (unsigned i = 0; i != NumParts; ++i) {
4795 // if it isn't first piece, alignment must be 1
4796 ISD::ArgFlagsTy MyFlags = Flags;
4797 if (NumParts > 1 && i == 0)
4798 MyFlags.setSplit();
4799 else if (i != 0)
4800 MyFlags.setOrigAlign(1);
Duncan Sandse111ce82008-02-11 20:58:28 +00004801
Dan Gohman1bb94262008-06-09 21:19:23 +00004802 Ops.push_back(Parts[i]);
4803 Ops.push_back(DAG.getArgFlags(MyFlags));
4804 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004805 }
4806 }
4807
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004808 // Figure out the result value types. We start by making a list of
Dan Gohman30a71f52008-04-25 18:27:55 +00004809 // the potentially illegal return value types.
Duncan Sands92c43912008-06-06 12:08:01 +00004810 SmallVector<MVT, 4> LoweredRetTys;
4811 SmallVector<MVT, 4> RetTys;
Dan Gohman30a71f52008-04-25 18:27:55 +00004812 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004813
Dan Gohman30a71f52008-04-25 18:27:55 +00004814 // Then we translate that to a list of legal types.
4815 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands92c43912008-06-06 12:08:01 +00004816 MVT VT = RetTys[I];
4817 MVT RegisterVT = getRegisterType(VT);
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004818 unsigned NumRegs = getNumRegisters(VT);
4819 for (unsigned i = 0; i != NumRegs; ++i)
4820 LoweredRetTys.push_back(RegisterVT);
4821 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004822
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004823 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004824
4825 // Create the CALL node.
Dan Gohman8181bd12008-07-27 21:46:04 +00004826 SDValue Res = DAG.getNode(ISD::CALL,
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004827 DAG.getVTList(&LoweredRetTys[0],
4828 LoweredRetTys.size()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004829 &Ops[0], Ops.size());
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004830 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004831
4832 // Gather up the call result into a single value.
4833 if (RetTy != Type::VoidTy) {
Duncan Sandsead972e2008-02-14 17:28:50 +00004834 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4835
4836 if (RetSExt)
4837 AssertOp = ISD::AssertSext;
4838 else if (RetZExt)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004839 AssertOp = ISD::AssertZext;
Duncan Sandsead972e2008-02-14 17:28:50 +00004840
Dan Gohman8181bd12008-07-27 21:46:04 +00004841 SmallVector<SDValue, 4> ReturnValues;
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004842 unsigned RegNo = 0;
Dan Gohman30a71f52008-04-25 18:27:55 +00004843 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands92c43912008-06-06 12:08:01 +00004844 MVT VT = RetTys[I];
4845 MVT RegisterVT = getRegisterType(VT);
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004846 unsigned NumRegs = getNumRegisters(VT);
4847 unsigned RegNoEnd = NumRegs + RegNo;
Dan Gohman8181bd12008-07-27 21:46:04 +00004848 SmallVector<SDValue, 4> Results;
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004849 for (; RegNo != RegNoEnd; ++RegNo)
4850 Results.push_back(Res.getValue(RegNo));
Dan Gohman8181bd12008-07-27 21:46:04 +00004851 SDValue ReturnValue =
Dan Gohman3fdea2e2008-03-11 21:11:25 +00004852 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4853 AssertOp);
4854 ReturnValues.push_back(ReturnValue);
4855 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00004856 Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4857 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004858 }
4859
4860 return std::make_pair(Res, Chain);
4861}
4862
Dan Gohman8181bd12008-07-27 21:46:04 +00004863SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004864 assert(0 && "LowerOperation not implemented for this target!");
4865 abort();
Dan Gohman8181bd12008-07-27 21:46:04 +00004866 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004867}
4868
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004869
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004870//===----------------------------------------------------------------------===//
4871// SelectionDAGISel code
4872//===----------------------------------------------------------------------===//
4873
Duncan Sands92c43912008-06-06 12:08:01 +00004874unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner1b989192007-12-31 04:13:23 +00004875 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004876}
4877
4878void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
4879 AU.addRequired<AliasAnalysis>();
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00004880 AU.addRequired<CollectorModuleMetadata>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004881 AU.setPreservesAll();
4882}
4883
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004884bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohmancc863aa2007-08-27 16:26:13 +00004885 // Get alias analysis for load/store combining.
4886 AA = &getAnalysis<AliasAnalysis>();
4887
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004888 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00004889 if (MF.getFunction()->hasCollector())
4890 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4891 else
4892 GCI = 0;
Chris Lattner1b989192007-12-31 04:13:23 +00004893 RegInfo = &MF.getRegInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004894 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
4895
4896 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4897
Dale Johannesen85535762008-04-02 00:25:04 +00004898 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4899 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4900 // Mark landing pad.
4901 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004902
Dan Gohmaned825d12008-07-07 23:02:41 +00004903 SelectAllBasicBlocks(Fn, MF, FuncInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004904
4905 // Add function live-ins to entry block live-in set.
4906 BasicBlock *EntryBB = &Fn.getEntryBlock();
4907 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner1b989192007-12-31 04:13:23 +00004908 if (!RegInfo->livein_empty())
4909 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4910 E = RegInfo->livein_end(); I != E; ++I)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004911 BB->addLiveIn(I->first);
4912
4913#ifndef NDEBUG
4914 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4915 "Not all catch info was assigned to a landing pad!");
4916#endif
4917
4918 return true;
4919}
4920
Chris Lattner02d73b32008-04-28 07:16:35 +00004921void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004922 SDValue Op = getValue(V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004923 assert((Op.getOpcode() != ISD::CopyFromReg ||
4924 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
4925 "Copy from a reg to the same reg!");
Dan Gohman9fe5bd62008-03-27 19:56:19 +00004926 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004927
Dan Gohman30a71f52008-04-25 18:27:55 +00004928 RegsForValue RFV(TLI, Reg, V->getType());
Dan Gohman8181bd12008-07-27 21:46:04 +00004929 SDValue Chain = DAG.getEntryNode();
Dan Gohman30a71f52008-04-25 18:27:55 +00004930 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4931 PendingExports.push_back(Chain);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004932}
4933
4934void SelectionDAGISel::
Dan Gohman9fe5bd62008-03-27 19:56:19 +00004935LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004936 // If this is the entry block, emit arguments.
4937 Function &F = *LLVMBB->getParent();
4938 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Dan Gohman8181bd12008-07-27 21:46:04 +00004939 SDValue OldRoot = SDL.DAG.getRoot();
4940 SmallVector<SDValue, 16> Args;
Dan Gohmane0208142008-06-30 20:31:15 +00004941 TLI.LowerArguments(F, SDL.DAG, Args);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004942
4943 unsigned a = 0;
4944 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohman1bb94262008-06-09 21:19:23 +00004945 AI != E; ++AI) {
4946 SmallVector<MVT, 4> ValueVTs;
4947 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4948 unsigned NumValues = ValueVTs.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004949 if (!AI->use_empty()) {
Duncan Sands698842f2008-07-02 17:40:58 +00004950 SDL.setValue(AI, SDL.DAG.getMergeValues(&Args[a], NumValues));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004951 // If this argument is live outside of the entry block, insert a copy from
4952 // whereever we got it to the vreg that other BB's will reference it as.
4953 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4954 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman9fe5bd62008-03-27 19:56:19 +00004955 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004956 }
4957 }
Dan Gohman1bb94262008-06-09 21:19:23 +00004958 a += NumValues;
4959 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004960
4961 // Finally, if the target has anything special to do, allow it to do so.
4962 // FIXME: this should insert code into the DAG!
4963 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
4964}
4965
4966static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4967 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004968 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
4969 if (isSelector(I)) {
4970 // Apply the catch info to DestBB.
4971 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4972#ifndef NDEBUG
Duncan Sands9b7e1482007-11-15 09:54:37 +00004973 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4974 FLI.CatchInfoFound.insert(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004975#endif
4976 }
4977}
4978
Arnold Schwaighofera0032722008-04-30 09:16:33 +00004979/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4980/// whether object offset >= 0.
4981static bool
Dan Gohman8181bd12008-07-27 21:46:04 +00004982IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDValue Op) {
Arnold Schwaighofera0032722008-04-30 09:16:33 +00004983 if (!isa<FrameIndexSDNode>(Op)) return false;
4984
4985 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
4986 int FrameIdx = FrameIdxNode->getIndex();
4987 return MFI->isFixedObjectIndex(FrameIdx) &&
4988 MFI->getObjectOffset(FrameIdx) >= 0;
4989}
4990
4991/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
4992/// possibly be overwritten when lowering the outgoing arguments in a tail
4993/// call. Currently the implementation of this call is very conservative and
4994/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
4995/// virtual registers would be overwritten by direct lowering.
Dan Gohman8181bd12008-07-27 21:46:04 +00004996static bool IsPossiblyOverwrittenArgumentOfTailCall(SDValue Op,
Arnold Schwaighofera0032722008-04-30 09:16:33 +00004997 MachineFrameInfo * MFI) {
4998 RegisterSDNode * OpReg = NULL;
4999 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
5000 (Op.getOpcode()== ISD::CopyFromReg &&
5001 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
5002 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
5003 (Op.getOpcode() == ISD::LOAD &&
5004 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
5005 (Op.getOpcode() == ISD::MERGE_VALUES &&
5006 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5007 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5008 getOperand(1))))
5009 return true;
5010 return false;
5011}
5012
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005013/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00005014/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005015static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5016 TargetLowering& TLI) {
5017 SDNode * Ret = NULL;
Dan Gohman8181bd12008-07-27 21:46:04 +00005018 SDValue Terminator = DAG.getRoot();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005019
5020 // Find RET node.
5021 if (Terminator.getOpcode() == ISD::RET) {
5022 Ret = Terminator.Val;
5023 }
5024
5025 // Fix tail call attribute of CALL nodes.
5026 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
Dan Gohmaned825d12008-07-07 23:02:41 +00005027 BI = DAG.allnodes_end(); BI != BE; ) {
5028 --BI;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005029 if (BI->getOpcode() == ISD::CALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005030 SDValue OpRet(Ret, 0);
5031 SDValue OpCall(BI, 0);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005032 bool isMarkedTailCall =
5033 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5034 // If CALL node has tail call attribute set to true and the call is not
5035 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00005036 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005037 // must correctly identify tail call optimizable calls.
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005038 if (!isMarkedTailCall) continue;
5039 if (Ret==NULL ||
5040 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5041 // Not eligible. Mark CALL node as non tail call.
Dan Gohman8181bd12008-07-27 21:46:04 +00005042 SmallVector<SDValue, 32> Ops;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005043 unsigned idx=0;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005044 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5045 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005046 if (idx!=3)
5047 Ops.push_back(*I);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005048 else
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005049 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5050 }
5051 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005052 } else {
5053 // Look for tail call clobbered arguments. Emit a series of
5054 // copyto/copyfrom virtual register nodes to protect them.
Dan Gohman8181bd12008-07-27 21:46:04 +00005055 SmallVector<SDValue, 32> Ops;
5056 SDValue Chain = OpCall.getOperand(0), InFlag;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005057 unsigned idx=0;
5058 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5059 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005060 SDValue Arg = *I;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005061 if (idx > 4 && (idx % 2)) {
5062 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5063 getArgFlags().isByVal();
5064 MachineFunction &MF = DAG.getMachineFunction();
5065 MachineFrameInfo *MFI = MF.getFrameInfo();
5066 if (!isByVal &&
5067 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands92c43912008-06-06 12:08:01 +00005068 MVT VT = Arg.getValueType();
Arnold Schwaighofera0032722008-04-30 09:16:33 +00005069 unsigned VReg = MF.getRegInfo().
5070 createVirtualRegister(TLI.getRegClassFor(VT));
5071 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5072 InFlag = Chain.getValue(1);
5073 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5074 Chain = Arg.getValue(1);
5075 InFlag = Arg.getValue(2);
5076 }
5077 }
5078 Ops.push_back(Arg);
5079 }
5080 // Link in chain of CopyTo/CopyFromReg.
5081 Ops[0] = Chain;
5082 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005083 }
5084 }
5085 }
5086}
5087
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005088void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5089 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
5090 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005091 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005092
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005093 // Lower any arguments needed in this block if this is the entry block.
5094 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005095 LowerArguments(LLVMBB, SDL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005096
5097 BB = FuncInfo.MBBMap[LLVMBB];
5098 SDL.setCurrentBasicBlock(BB);
5099
5100 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
5101
Dale Johannesen85535762008-04-02 00:25:04 +00005102 if (MMI && BB->isLandingPad()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005103 // Add a label to mark the beginning of the landing pad. Deletion of the
5104 // landing pad can thus be detected via the MachineModuleInfo.
5105 unsigned LabelID = MMI->addLandingPad(BB);
Dan Gohmanfa607c92008-07-01 00:05:16 +00005106 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, DAG.getEntryNode(), LabelID));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005107
5108 // Mark exception register as live in.
5109 unsigned Reg = TLI.getExceptionAddressRegister();
5110 if (Reg) BB->addLiveIn(Reg);
5111
5112 // Mark exception selector register as live in.
5113 Reg = TLI.getExceptionSelectorRegister();
5114 if (Reg) BB->addLiveIn(Reg);
5115
5116 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5117 // function and list of typeids logically belong to the invoke (or, if you
5118 // like, the basic block containing the invoke), and need to be associated
5119 // with it in the dwarf exception handling tables. Currently however the
5120 // information is provided by an intrinsic (eh.selector) that can be moved
5121 // to unexpected places by the optimizers: if the unwind edge is critical,
5122 // then breaking it can result in the intrinsics being in the successor of
5123 // the landing pad, not the landing pad itself. This results in exceptions
5124 // not being caught because no typeids are associated with the invoke.
5125 // This may not be the only way things can go wrong, but it is the only way
5126 // we try to work around for the moment.
5127 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5128
5129 if (Br && Br->isUnconditional()) { // Critical edge?
5130 BasicBlock::iterator I, E;
5131 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
5132 if (isSelector(I))
5133 break;
5134
5135 if (I == E)
5136 // No catch info found - try to extract some from the successor.
5137 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
5138 }
5139 }
5140
5141 // Lower all of the non-terminator instructions.
5142 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5143 I != E; ++I)
5144 SDL.visit(*I);
5145
5146 // Ensure that all instructions which are used outside of their defining
5147 // blocks are available as virtual registers. Invoke is handled elsewhere.
5148 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
5149 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
5150 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
5151 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005152 SDL.CopyValueToVirtualRegister(I, VMI->second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005153 }
5154
5155 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5156 // ensure constants are generated when needed. Remember the virtual registers
5157 // that need to be added to the Machine PHI nodes as input. We cannot just
5158 // directly add them, because expansion might result in multiple MBB's for one
5159 // BB. As such, the start of the BB might correspond to a different MBB than
5160 // the end.
5161 //
5162 TerminatorInst *TI = LLVMBB->getTerminator();
5163
5164 // Emit constants only once even if used by multiple PHI nodes.
5165 std::map<Constant*, unsigned> ConstantsOut;
5166
5167 // Vector bool would be better, but vector<bool> is really slow.
5168 std::vector<unsigned char> SuccsHandled;
5169 if (TI->getNumSuccessors())
5170 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5171
5172 // Check successor nodes' PHI nodes that expect a constant to be available
5173 // from this block.
5174 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5175 BasicBlock *SuccBB = TI->getSuccessor(succ);
5176 if (!isa<PHINode>(SuccBB->begin())) continue;
5177 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
5178
5179 // If this terminator has multiple identical successors (common for
5180 // switches), only handle each succ once.
5181 unsigned SuccMBBNo = SuccMBB->getNumber();
5182 if (SuccsHandled[SuccMBBNo]) continue;
5183 SuccsHandled[SuccMBBNo] = true;
5184
5185 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5186 PHINode *PN;
5187
5188 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5189 // nodes and Machine PHI nodes, but the incoming operands have not been
5190 // emitted yet.
5191 for (BasicBlock::iterator I = SuccBB->begin();
5192 (PN = dyn_cast<PHINode>(I)); ++I) {
5193 // Ignore dead phi's.
5194 if (PN->use_empty()) continue;
5195
5196 unsigned Reg;
5197 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5198
5199 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5200 unsigned &RegOut = ConstantsOut[C];
5201 if (RegOut == 0) {
5202 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005203 SDL.CopyValueToVirtualRegister(C, RegOut);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005204 }
5205 Reg = RegOut;
5206 } else {
5207 Reg = FuncInfo.ValueMap[PHIOp];
5208 if (Reg == 0) {
5209 assert(isa<AllocaInst>(PHIOp) &&
5210 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5211 "Didn't codegen value into a register!??");
5212 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005213 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005214 }
5215 }
5216
5217 // Remember that this register needs to added to the machine PHI node as
5218 // the input for this MBB.
Dan Gohman802a48a2008-08-04 23:42:46 +00005219 SmallVector<MVT, 4> ValueVTs;
5220 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5221 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5222 MVT VT = ValueVTs[vti];
5223 unsigned NumRegisters = TLI.getNumRegisters(VT);
5224 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5225 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5226 Reg += NumRegisters;
5227 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005228 }
5229 }
5230 ConstantsOut.clear();
5231
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005232 // Lower the terminator after the copies are emitted.
5233 SDL.visit(*LLVMBB->getTerminator());
5234
5235 // Copy over any CaseBlock records that may now exist due to SwitchInst
5236 // lowering, as well as any jump table information.
5237 SwitchCases.clear();
5238 SwitchCases = SDL.SwitchCases;
5239 JTCases.clear();
5240 JTCases = SDL.JTCases;
5241 BitTestCases.clear();
5242 BitTestCases = SDL.BitTestCases;
5243
5244 // Make sure the root of the DAG is up-to-date.
Dan Gohman9fe5bd62008-03-27 19:56:19 +00005245 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005246
5247 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5248 // with correct tailcall attribute so that the target can rely on the tailcall
5249 // attribute indicating whether the call is really eligible for tail call
5250 // optimization.
5251 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005252}
5253
Chris Lattner68068cc2008-06-17 06:09:18 +00005254void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5255 SmallPtrSet<SDNode*, 128> VisitedNodes;
5256 SmallVector<SDNode*, 128> Worklist;
5257
5258 Worklist.push_back(DAG.getRoot().Val);
5259
5260 APInt Mask;
5261 APInt KnownZero;
5262 APInt KnownOne;
5263
5264 while (!Worklist.empty()) {
5265 SDNode *N = Worklist.back();
5266 Worklist.pop_back();
5267
5268 // If we've already seen this node, ignore it.
5269 if (!VisitedNodes.insert(N))
5270 continue;
5271
5272 // Otherwise, add all chain operands to the worklist.
5273 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5274 if (N->getOperand(i).getValueType() == MVT::Other)
5275 Worklist.push_back(N->getOperand(i).Val);
5276
5277 // If this is a CopyToReg with a vreg dest, process it.
5278 if (N->getOpcode() != ISD::CopyToReg)
5279 continue;
5280
5281 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5282 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5283 continue;
5284
5285 // Ignore non-scalar or non-integer values.
Dan Gohman8181bd12008-07-27 21:46:04 +00005286 SDValue Src = N->getOperand(2);
Chris Lattner68068cc2008-06-17 06:09:18 +00005287 MVT SrcVT = Src.getValueType();
5288 if (!SrcVT.isInteger() || SrcVT.isVector())
5289 continue;
5290
5291 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5292 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5293 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5294
5295 // Only install this information if it tells us something.
5296 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5297 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5298 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5299 if (DestReg >= FLI.LiveOutRegInfo.size())
5300 FLI.LiveOutRegInfo.resize(DestReg+1);
5301 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5302 LOI.NumSignBits = NumSignBits;
5303 LOI.KnownOne = NumSignBits;
5304 LOI.KnownZero = NumSignBits;
5305 }
5306 }
5307}
5308
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005309void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohmanb552df72008-07-21 20:00:07 +00005310 std::string GroupName;
5311 if (TimePassesIsEnabled)
5312 GroupName = "Instruction Selection and Scheduling";
5313 std::string BlockName;
5314 if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs ||
5315 ViewDAGCombine2 || ViewISelDAGs || ViewSchedDAGs || ViewSUnitDAGs)
5316 BlockName = DAG.getMachineFunction().getFunction()->getName() + ':' +
5317 BB->getBasicBlock()->getName();
5318
5319 DOUT << "Initial selection DAG:\n";
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005320 DEBUG(DAG.dump());
Dan Gohmanb552df72008-07-21 20:00:07 +00005321
5322 if (ViewDAGCombine1) DAG.viewGraph("dag-combine1 input for " + BlockName);
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005323
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005324 // Run the DAG combiner in pre-legalize mode.
Evan Cheng19733c42008-07-01 17:59:20 +00005325 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005326 NamedRegionTimer T("DAG Combining 1", GroupName);
Evan Cheng19733c42008-07-01 17:59:20 +00005327 DAG.Combine(false, *AA);
5328 } else {
5329 DAG.Combine(false, *AA);
5330 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005331
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005332 DOUT << "Optimized lowered selection DAG:\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005333 DEBUG(DAG.dump());
Duncan Sands31ddf4c2008-07-17 17:06:03 +00005334
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005335 // Second step, hack on the DAG until it only uses operations and types that
5336 // the target supports.
Duncan Sands31ddf4c2008-07-17 17:06:03 +00005337 if (EnableLegalizeTypes) {// Enable this some day.
Dan Gohmanb552df72008-07-21 20:00:07 +00005338 if (ViewLegalizeTypesDAGs) DAG.viewGraph("legalize-types input for " +
5339 BlockName);
5340
5341 if (TimePassesIsEnabled) {
5342 NamedRegionTimer T("Type Legalization", GroupName);
5343 DAG.LegalizeTypes();
5344 } else {
5345 DAG.LegalizeTypes();
5346 }
5347
5348 DOUT << "Type-legalized selection DAG:\n";
5349 DEBUG(DAG.dump());
5350
Chris Lattnerb29a6a42008-07-10 23:37:50 +00005351 // TODO: enable a dag combine pass here.
5352 }
Duncan Sands31ddf4c2008-07-17 17:06:03 +00005353
Dan Gohmanb552df72008-07-21 20:00:07 +00005354 if (ViewLegalizeDAGs) DAG.viewGraph("legalize input for " + BlockName);
5355
Evan Cheng19733c42008-07-01 17:59:20 +00005356 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005357 NamedRegionTimer T("DAG Legalization", GroupName);
Evan Cheng19733c42008-07-01 17:59:20 +00005358 DAG.Legalize();
5359 } else {
5360 DAG.Legalize();
5361 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005362
5363 DOUT << "Legalized selection DAG:\n";
5364 DEBUG(DAG.dump());
5365
Dan Gohmanb552df72008-07-21 20:00:07 +00005366 if (ViewDAGCombine2) DAG.viewGraph("dag-combine2 input for " + BlockName);
5367
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005368 // Run the DAG combiner in post-legalize mode.
Evan Cheng19733c42008-07-01 17:59:20 +00005369 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005370 NamedRegionTimer T("DAG Combining 2", GroupName);
Evan Cheng19733c42008-07-01 17:59:20 +00005371 DAG.Combine(true, *AA);
5372 } else {
5373 DAG.Combine(true, *AA);
5374 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005375
Dan Gohmaneebf44e2007-10-08 15:12:17 +00005376 DOUT << "Optimized legalized selection DAG:\n";
5377 DEBUG(DAG.dump());
5378
Dan Gohmanb552df72008-07-21 20:00:07 +00005379 if (ViewISelDAGs) DAG.viewGraph("isel input for " + BlockName);
Chris Lattner68068cc2008-06-17 06:09:18 +00005380
Evan Cheng598f94d2008-07-01 18:15:04 +00005381 if (!FastISel && EnableValueProp)
Chris Lattner68068cc2008-06-17 06:09:18 +00005382 ComputeLiveOutVRegInfo(DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005383
5384 // Third, instruction select all of the operations to machine code, adding the
5385 // code to the MachineBasicBlock.
Evan Cheng19733c42008-07-01 17:59:20 +00005386 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005387 NamedRegionTimer T("Instruction Selection", GroupName);
Evan Cheng19733c42008-07-01 17:59:20 +00005388 InstructionSelect(DAG);
5389 } else {
5390 InstructionSelect(DAG);
5391 }
Evan Cheng34fd4f32008-06-30 20:45:06 +00005392
Dan Gohmanb552df72008-07-21 20:00:07 +00005393 DOUT << "Selected selection DAG:\n";
5394 DEBUG(DAG.dump());
5395
5396 if (ViewSchedDAGs) DAG.viewGraph("scheduler input for " + BlockName);
5397
Dan Gohman368a08b2008-07-14 18:19:29 +00005398 // Schedule machine code.
5399 ScheduleDAG *Scheduler;
5400 if (TimePassesIsEnabled) {
5401 NamedRegionTimer T("Instruction Scheduling", GroupName);
5402 Scheduler = Schedule(DAG);
5403 } else {
5404 Scheduler = Schedule(DAG);
5405 }
5406
Dan Gohmanb552df72008-07-21 20:00:07 +00005407 if (ViewSUnitDAGs) Scheduler->viewGraph();
5408
Evan Cheng34fd4f32008-06-30 20:45:06 +00005409 // Emit machine code to BB. This can change 'BB' to the last block being
5410 // inserted into.
Evan Cheng19733c42008-07-01 17:59:20 +00005411 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005412 NamedRegionTimer T("Instruction Creation", GroupName);
5413 BB = Scheduler->EmitSchedule();
Evan Cheng19733c42008-07-01 17:59:20 +00005414 } else {
Dan Gohman368a08b2008-07-14 18:19:29 +00005415 BB = Scheduler->EmitSchedule();
5416 }
5417
5418 // Free the scheduler state.
5419 if (TimePassesIsEnabled) {
5420 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName);
5421 delete Scheduler;
5422 } else {
5423 delete Scheduler;
Evan Cheng19733c42008-07-01 17:59:20 +00005424 }
Evan Cheng34fd4f32008-06-30 20:45:06 +00005425
5426 // Perform target specific isel post processing.
Evan Cheng19733c42008-07-01 17:59:20 +00005427 if (TimePassesIsEnabled) {
Dan Gohman368a08b2008-07-14 18:19:29 +00005428 NamedRegionTimer T("Instruction Selection Post Processing", GroupName);
Dan Gohmanb552df72008-07-21 20:00:07 +00005429 InstructionSelectPostProcessing();
Evan Cheng19733c42008-07-01 17:59:20 +00005430 } else {
Dan Gohmanb552df72008-07-21 20:00:07 +00005431 InstructionSelectPostProcessing();
Evan Cheng19733c42008-07-01 17:59:20 +00005432 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005433
5434 DOUT << "Selected machine code:\n";
5435 DEBUG(BB->dump());
5436}
5437
Dan Gohmaned825d12008-07-07 23:02:41 +00005438void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF,
5439 FunctionLoweringInfo &FuncInfo) {
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005440 // Define NodeAllocator here so that memory allocation is reused for
Dan Gohmaned825d12008-07-07 23:02:41 +00005441 // each basic block.
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005442 NodeAllocatorType NodeAllocator;
Dan Gohmaned825d12008-07-07 23:02:41 +00005443
Evan Cheng61828a82008-08-07 00:43:25 +00005444 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5445 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
5446 BasicBlock *LLVMBB = &*I;
5447 PHINodesToUpdate.clear();
5448 SelectBasicBlock(LLVMBB, MF, FuncInfo, PHINodesToUpdate, NodeAllocator);
5449 FinishBasicBlock(LLVMBB, MF, FuncInfo, PHINodesToUpdate, NodeAllocator);
5450 }
Dan Gohmaned825d12008-07-07 23:02:41 +00005451}
5452
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005453void
5454SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5455 FunctionLoweringInfo &FuncInfo,
Evan Cheng61828a82008-08-07 00:43:25 +00005456 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005457 NodeAllocatorType &NodeAllocator) {
Evan Cheng61828a82008-08-07 00:43:25 +00005458 SelectionDAG DAG(TLI, MF, FuncInfo,
5459 getAnalysisToUpdate<MachineModuleInfo>(),
5460 NodeAllocator);
5461 CurDAG = &DAG;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005462
Evan Cheng61828a82008-08-07 00:43:25 +00005463 // First step, lower LLVM code to some DAG. This DAG may use operations and
5464 // types that are not supported by the target.
5465 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005466
Evan Cheng61828a82008-08-07 00:43:25 +00005467 // Second step, emit the lowered DAG as machine code.
5468 CodeGenAndEmitDAG(DAG);
5469}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005470
Evan Cheng61828a82008-08-07 00:43:25 +00005471void
5472SelectionDAGISel::FinishBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5473 FunctionLoweringInfo &FuncInfo,
5474 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
5475 NodeAllocatorType &NodeAllocator) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005476 DOUT << "Total amount of phi nodes to update: "
5477 << PHINodesToUpdate.size() << "\n";
5478 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5479 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5480 << ", " << PHINodesToUpdate[i].second << ")\n";);
5481
5482 // Next, now that we know what the last MBB the LLVM BB expanded is, update
5483 // PHI nodes in successors.
5484 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
5485 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5486 MachineInstr *PHI = PHINodesToUpdate[i].first;
5487 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5488 "This is not a machine PHI node that we are updating!");
Chris Lattnere44906f2007-12-30 00:57:42 +00005489 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5490 false));
5491 PHI->addOperand(MachineOperand::CreateMBB(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005492 }
5493 return;
5494 }
5495
5496 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5497 // Lower header first, if it wasn't already lowered
5498 if (!BitTestCases[i].Emitted) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005499 SelectionDAG HSDAG(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 = &HSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005503 SelectionDAGLowering HSDL(HSDAG, 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].Parent;
5506 HSDL.setCurrentBasicBlock(BB);
5507 // Emit the code
5508 HSDL.visitBitTestHeader(BitTestCases[i]);
5509 HSDAG.setRoot(HSDL.getRoot());
5510 CodeGenAndEmitDAG(HSDAG);
5511 }
5512
5513 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005514 SelectionDAG BSDAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005515 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005516 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005517 CurDAG = &BSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005518 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005519 // Set the current basic block to the mbb we wish to insert the code into
5520 BB = BitTestCases[i].Cases[j].ThisBB;
5521 BSDL.setCurrentBasicBlock(BB);
5522 // Emit the code
5523 if (j+1 != ej)
5524 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5525 BitTestCases[i].Reg,
5526 BitTestCases[i].Cases[j]);
5527 else
5528 BSDL.visitBitTestCase(BitTestCases[i].Default,
5529 BitTestCases[i].Reg,
5530 BitTestCases[i].Cases[j]);
5531
5532
5533 BSDAG.setRoot(BSDL.getRoot());
5534 CodeGenAndEmitDAG(BSDAG);
5535 }
5536
5537 // Update PHI Nodes
5538 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5539 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5540 MachineBasicBlock *PHIBB = PHI->getParent();
5541 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5542 "This is not a machine PHI node that we are updating!");
5543 // This is "default" BB. We have two jumps to it. From "header" BB and
5544 // from last "case" BB.
5545 if (PHIBB == BitTestCases[i].Default) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005546 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5547 false));
5548 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5549 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5550 false));
5551 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5552 back().ThisBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005553 }
5554 // One of "cases" BB.
5555 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5556 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5557 if (cBB->succ_end() !=
5558 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005559 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5560 false));
5561 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005562 }
5563 }
5564 }
5565 }
5566
5567 // If the JumpTable record is filled in, then we need to emit a jump table.
5568 // Updating the PHI nodes is tricky in this case, since we need to determine
5569 // whether the PHI is a successor of the range check MBB or the jump table MBB
5570 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5571 // Lower header first, if it wasn't already lowered
5572 if (!JTCases[i].first.Emitted) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005573 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005574 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005575 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005576 CurDAG = &HSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005577 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005578 // Set the current basic block to the mbb we wish to insert the code into
5579 BB = JTCases[i].first.HeaderBB;
5580 HSDL.setCurrentBasicBlock(BB);
5581 // Emit the code
5582 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5583 HSDAG.setRoot(HSDL.getRoot());
5584 CodeGenAndEmitDAG(HSDAG);
5585 }
5586
Chris Lattner68068cc2008-06-17 06:09:18 +00005587 SelectionDAG JSDAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005588 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005589 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005590 CurDAG = &JSDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005591 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005592 // Set the current basic block to the mbb we wish to insert the code into
5593 BB = JTCases[i].second.MBB;
5594 JSDL.setCurrentBasicBlock(BB);
5595 // Emit the code
5596 JSDL.visitJumpTable(JTCases[i].second);
5597 JSDAG.setRoot(JSDL.getRoot());
5598 CodeGenAndEmitDAG(JSDAG);
5599
5600 // Update PHI Nodes
5601 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5602 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5603 MachineBasicBlock *PHIBB = PHI->getParent();
5604 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5605 "This is not a machine PHI node that we are updating!");
5606 // "default" BB. We can go there only from header BB.
5607 if (PHIBB == JTCases[i].second.Default) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005608 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5609 false));
5610 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005611 }
5612 // JT BB. Just iterate over successors here
5613 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005614 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5615 false));
5616 PHI->addOperand(MachineOperand::CreateMBB(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005617 }
5618 }
5619 }
5620
5621 // If the switch block involved a branch to one of the actual successors, we
5622 // need to update PHI nodes in that block.
5623 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5624 MachineInstr *PHI = PHINodesToUpdate[i].first;
5625 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5626 "This is not a machine PHI node that we are updating!");
5627 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005628 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5629 false));
5630 PHI->addOperand(MachineOperand::CreateMBB(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005631 }
5632 }
5633
5634 // If we generated any switch lowering information, build and codegen any
5635 // additional DAGs necessary.
5636 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattner68068cc2008-06-17 06:09:18 +00005637 SelectionDAG SDAG(TLI, MF, FuncInfo,
Dan Gohmaned825d12008-07-07 23:02:41 +00005638 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohman2fcbc7e2008-07-28 21:51:04 +00005639 NodeAllocator);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005640 CurDAG = &SDAG;
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00005641 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005642
5643 // Set the current basic block to the mbb we wish to insert the code into
5644 BB = SwitchCases[i].ThisBB;
5645 SDL.setCurrentBasicBlock(BB);
5646
5647 // Emit the code
5648 SDL.visitSwitchCase(SwitchCases[i]);
5649 SDAG.setRoot(SDL.getRoot());
5650 CodeGenAndEmitDAG(SDAG);
5651
5652 // Handle any PHI nodes in successors of this chunk, as if we were coming
5653 // from the original BB before switch expansion. Note that PHI nodes can
5654 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5655 // handle them the right number of times.
5656 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
5657 for (MachineBasicBlock::iterator Phi = BB->begin();
5658 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5659 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5660 for (unsigned pn = 0; ; ++pn) {
5661 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5662 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattnere44906f2007-12-30 00:57:42 +00005663 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5664 second, false));
5665 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005666 break;
5667 }
5668 }
5669 }
5670
5671 // Don't process RHS if same block as LHS.
5672 if (BB == SwitchCases[i].FalseBB)
5673 SwitchCases[i].FalseBB = 0;
5674
5675 // If we haven't handled the RHS, do so now. Otherwise, we're done.
5676 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
5677 SwitchCases[i].FalseBB = 0;
5678 }
5679 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
5680 }
5681}
5682
5683
Dan Gohman368a08b2008-07-14 18:19:29 +00005684/// Schedule - Pick a safe ordering for instructions for each
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005685/// target node in the graph.
Dan Gohman368a08b2008-07-14 18:19:29 +00005686///
5687ScheduleDAG *SelectionDAGISel::Schedule(SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005688 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
5689
5690 if (!Ctor) {
5691 Ctor = ISHeuristic;
5692 RegisterScheduler::setDefault(Ctor);
5693 }
5694
Dan Gohman368a08b2008-07-14 18:19:29 +00005695 ScheduleDAG *Scheduler = Ctor(this, &DAG, BB, FastISel);
5696 Scheduler->Run();
Dan Gohman134c5b62007-08-28 20:32:58 +00005697
Dan Gohman368a08b2008-07-14 18:19:29 +00005698 return Scheduler;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005699}
5700
5701
5702HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5703 return new HazardRecognizer();
5704}
5705
5706//===----------------------------------------------------------------------===//
5707// Helper functions used by the generated instruction selector.
5708//===----------------------------------------------------------------------===//
5709// Calls to these methods are generated by tblgen.
5710
5711/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5712/// the dag combiner simplified the 255, we still want to match. RHS is the
5713/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5714/// specified in the .td file (e.g. 255).
Dan Gohman8181bd12008-07-27 21:46:04 +00005715bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohmand6098272007-07-24 23:00:27 +00005716 int64_t DesiredMaskS) const {
Dan Gohman07961cd2008-02-25 21:11:39 +00005717 const APInt &ActualMask = RHS->getAPIntValue();
5718 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005719
5720 // If the actual mask exactly matches, success!
5721 if (ActualMask == DesiredMask)
5722 return true;
5723
5724 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman07961cd2008-02-25 21:11:39 +00005725 if (ActualMask.intersects(~DesiredMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005726 return false;
5727
5728 // Otherwise, the DAG Combiner may have proven that the value coming in is
5729 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman07961cd2008-02-25 21:11:39 +00005730 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005731 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
5732 return true;
5733
5734 // TODO: check to see if missing bits are just not demanded.
5735
5736 // Otherwise, this pattern doesn't match.
5737 return false;
5738}
5739
5740/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5741/// the dag combiner simplified the 255, we still want to match. RHS is the
5742/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5743/// specified in the .td file (e.g. 255).
Dan Gohman8181bd12008-07-27 21:46:04 +00005744bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohman07961cd2008-02-25 21:11:39 +00005745 int64_t DesiredMaskS) const {
5746 const APInt &ActualMask = RHS->getAPIntValue();
5747 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005748
5749 // If the actual mask exactly matches, success!
5750 if (ActualMask == DesiredMask)
5751 return true;
5752
5753 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman07961cd2008-02-25 21:11:39 +00005754 if (ActualMask.intersects(~DesiredMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005755 return false;
5756
5757 // Otherwise, the DAG Combiner may have proven that the value coming in is
5758 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman07961cd2008-02-25 21:11:39 +00005759 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005760
Dan Gohman07961cd2008-02-25 21:11:39 +00005761 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005762 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
5763
5764 // If all the missing bits in the or are already known to be set, match!
5765 if ((NeededMask & KnownOne) == NeededMask)
5766 return true;
5767
5768 // TODO: check to see if missing bits are just not demanded.
5769
5770 // Otherwise, this pattern doesn't match.
5771 return false;
5772}
5773
5774
5775/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5776/// by tblgen. Others should not call it.
5777void SelectionDAGISel::
Dan Gohman8181bd12008-07-27 21:46:04 +00005778SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops, SelectionDAG &DAG) {
5779 std::vector<SDValue> InOps;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005780 std::swap(InOps, Ops);
5781
5782 Ops.push_back(InOps[0]); // input chain.
5783 Ops.push_back(InOps[1]); // input asm string.
5784
5785 unsigned i = 2, e = InOps.size();
5786 if (InOps[e-1].getValueType() == MVT::Flag)
5787 --e; // Don't process a flag operand if it is here.
5788
5789 while (i != e) {
5790 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5791 if ((Flags & 7) != 4 /*MEM*/) {
5792 // Just skip over this operand, copying the operands verbatim.
5793 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5794 i += (Flags >> 3) + 1;
5795 } else {
5796 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5797 // Otherwise, this is a memory operand. Ask the target to select it.
Dan Gohman8181bd12008-07-27 21:46:04 +00005798 std::vector<SDValue> SelOps;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005799 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
5800 cerr << "Could not match memory address. Inline asm failure!\n";
5801 exit(1);
5802 }
5803
5804 // Add this to the output node.
Duncan Sands92c43912008-06-06 12:08:01 +00005805 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005806 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
5807 IntPtrTy));
5808 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5809 i += 2;
5810 }
5811 }
5812
5813 // Add the flag input back if present.
5814 if (e != InOps.size())
5815 Ops.push_back(InOps.back());
5816}
5817
5818char SelectionDAGISel::ID = 0;