blob: 8cfc334c025081b1506a859931707e6dd5efdc66 [file] [log] [blame]
Chris Lattner1c08c712005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner1c08c712005-01-07 07:47:53 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner1c08c712005-01-07 07:47:53 +00008//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
Anton Korobeynikov5502bf62007-04-04 21:14:49 +000015#include "llvm/ADT/BitVector.h"
Jim Laskeyc7c3f112006-10-16 20:52:31 +000016#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000017#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Chenga9c20912006-01-21 02:32:06 +000018#include "llvm/CodeGen/ScheduleDAG.h"
Anton Korobeynikov5502bf62007-04-04 21:14:49 +000019#include "llvm/Constants.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000020#include "llvm/CallingConv.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000021#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
Chris Lattner36ce6912005-11-29 06:21:05 +000023#include "llvm/GlobalVariable.h"
Chris Lattnerce7518c2006-01-26 22:24:51 +000024#include "llvm/InlineAsm.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000025#include "llvm/Instructions.h"
26#include "llvm/Intrinsics.h"
Jim Laskey43970fe2006-03-23 18:06:46 +000027#include "llvm/IntrinsicInst.h"
Reid Spencer5694b6e2007-04-09 06:17:21 +000028#include "llvm/ParameterAttributes.h"
Gordon Henriksence224772008-01-07 01:30:38 +000029#include "llvm/CodeGen/Collector.h"
Bill Wendling305635a2008-06-27 00:09:40 +000030#include "llvm/CodeGen/MachineDebugInfoDesc.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000031#include "llvm/CodeGen/MachineFunction.h"
32#include "llvm/CodeGen/MachineFrameInfo.h"
33#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000034#include "llvm/CodeGen/MachineJumpTableInfo.h"
35#include "llvm/CodeGen/MachineModuleInfo.h"
36#include "llvm/CodeGen/MachineRegisterInfo.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000037#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000038#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000039#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000040#include "llvm/Target/TargetData.h"
41#include "llvm/Target/TargetFrameInfo.h"
42#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetLowering.h"
44#include "llvm/Target/TargetMachine.h"
Vladimir Prus12472912006-05-23 13:43:15 +000045#include "llvm/Target/TargetOptions.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000046#include "llvm/Support/Compiler.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000047#include "llvm/Support/Debug.h"
48#include "llvm/Support/MathExtras.h"
49#include "llvm/Support/Timer.h"
Jeff Cohen7e881032006-02-24 02:52:40 +000050#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000051using namespace llvm;
52
Chris Lattneread0d882008-06-17 06:09:18 +000053static cl::opt<bool>
54EnableValueProp("enable-value-prop", cl::Hidden, cl::init(false));
55
56
Chris Lattnerda8abb02005-09-01 18:44:10 +000057#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000058static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000059ViewISelDAGs("view-isel-dags", cl::Hidden,
60 cl::desc("Pop up a window to show isel dags as they are selected"));
61static cl::opt<bool>
62ViewSchedDAGs("view-sched-dags", cl::Hidden,
63 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000064static cl::opt<bool>
65ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +000066 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000067#else
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000068static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0, ViewSUnitDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000069#endif
70
Jim Laskeyeb577ba2006-08-02 12:30:23 +000071//===---------------------------------------------------------------------===//
72///
73/// RegisterScheduler class - Track the registration of instruction schedulers.
74///
75//===---------------------------------------------------------------------===//
76MachinePassRegistry RegisterScheduler::Registry;
77
78//===---------------------------------------------------------------------===//
79///
80/// ISHeuristic command line option for instruction schedulers.
81///
82//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +000083static cl::opt<RegisterScheduler::FunctionPassCtor, false,
84 RegisterPassParser<RegisterScheduler> >
85ISHeuristic("pre-RA-sched",
86 cl::init(&createDefaultScheduler),
87 cl::desc("Instruction schedulers available (before register"
88 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +000089
Dan Gohman844731a2008-05-13 00:00:25 +000090static RegisterScheduler
91defaultListDAGScheduler("default", " Best scheduler for the target",
92 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +000093
Evan Cheng5c807602008-02-26 02:33:44 +000094namespace { struct SDISelAsmOperandInfo; }
Chris Lattnerbf996f12007-04-30 17:29:31 +000095
Dan Gohman1d685a42008-06-07 02:02:36 +000096/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
97/// insertvalue or extractvalue indices that identify a member, return
98/// the linearized index of the start of the member.
99///
100static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
101 const unsigned *Indices,
102 const unsigned *IndicesEnd,
103 unsigned CurIndex = 0) {
104 // Base case: We're done.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000105 if (Indices && Indices == IndicesEnd)
Dan Gohman1d685a42008-06-07 02:02:36 +0000106 return CurIndex;
107
Chris Lattnerf899fce2008-04-27 23:48:12 +0000108 // Given a struct type, recursively traverse the elements.
109 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000110 for (StructType::element_iterator EB = STy->element_begin(),
111 EI = EB,
Dan Gohman1d685a42008-06-07 02:02:36 +0000112 EE = STy->element_end();
113 EI != EE; ++EI) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000114 if (Indices && *Indices == unsigned(EI - EB))
115 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
116 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000117 }
118 }
119 // Given an array type, recursively traverse the elements.
120 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
121 const Type *EltTy = ATy->getElementType();
122 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000123 if (Indices && *Indices == i)
124 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
125 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000126 }
127 }
128 // We haven't found the type we're looking for, so keep searching.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000129 return CurIndex + 1;
Dan Gohman1d685a42008-06-07 02:02:36 +0000130}
131
132/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
133/// MVTs that represent all the individual underlying
134/// non-aggregate types that comprise it.
135///
136/// If Offsets is non-null, it points to a vector to be filled in
137/// with the in-memory offsets of each of the individual values.
138///
139static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
140 SmallVectorImpl<MVT> &ValueVTs,
141 SmallVectorImpl<uint64_t> *Offsets = 0,
142 uint64_t StartingOffset = 0) {
143 // Given a struct type, recursively traverse the elements.
144 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
145 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
146 for (StructType::element_iterator EB = STy->element_begin(),
147 EI = EB,
148 EE = STy->element_end();
149 EI != EE; ++EI)
150 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
151 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattnerf899fce2008-04-27 23:48:12 +0000152 return;
Dan Gohman23ce5022008-04-25 18:27:55 +0000153 }
Chris Lattnerf899fce2008-04-27 23:48:12 +0000154 // Given an array type, recursively traverse the elements.
155 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
156 const Type *EltTy = ATy->getElementType();
Dan Gohman1d685a42008-06-07 02:02:36 +0000157 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000158 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +0000159 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
160 StartingOffset + i * EltSize);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000161 return;
162 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000163 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattnerf899fce2008-04-27 23:48:12 +0000164 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman1d685a42008-06-07 02:02:36 +0000165 if (Offsets)
166 Offsets->push_back(StartingOffset);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000167}
Dan Gohman23ce5022008-04-25 18:27:55 +0000168
Chris Lattnerf899fce2008-04-27 23:48:12 +0000169namespace {
Dan Gohman0fe00902008-04-28 18:10:39 +0000170 /// RegsForValue - This struct represents the registers (physical or virtual)
171 /// that a particular set of values is assigned, and the type information about
172 /// the value. The most common situation is to represent one value at a time,
173 /// but struct or array values are handled element-wise as multiple values.
174 /// The splitting of aggregates is performed recursively, so that we never
175 /// have aggregate-typed registers. The values at this point do not necessarily
176 /// have legal types, so each value may require one or more registers of some
177 /// legal type.
178 ///
Chris Lattner95255282006-06-28 23:17:24 +0000179 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman23ce5022008-04-25 18:27:55 +0000180 /// TLI - The TargetLowering object.
Dan Gohman0fe00902008-04-28 18:10:39 +0000181 ///
Dan Gohman23ce5022008-04-25 18:27:55 +0000182 const TargetLowering *TLI;
183
Dan Gohman0fe00902008-04-28 18:10:39 +0000184 /// ValueVTs - The value types of the values, which may not be legal, and
185 /// may need be promoted or synthesized from one or more registers.
186 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000187 SmallVector<MVT, 4> ValueVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000188
Dan Gohman0fe00902008-04-28 18:10:39 +0000189 /// RegVTs - The value types of the registers. This is the same size as
190 /// ValueVTs and it records, for each value, what the type of the assigned
191 /// register or registers are. (Individual values are never synthesized
192 /// from more than one type of register.)
193 ///
194 /// With virtual registers, the contents of RegVTs is redundant with TLI's
195 /// getRegisterType member function, however when with physical registers
196 /// it is necessary to have a separate record of the types.
Chris Lattner864635a2006-02-22 22:37:12 +0000197 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000198 SmallVector<MVT, 4> RegVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000199
Dan Gohman0fe00902008-04-28 18:10:39 +0000200 /// Regs - This list holds the registers assigned to the values.
201 /// Each legal or promoted value requires one register, and each
202 /// expanded value requires multiple registers.
203 ///
204 SmallVector<unsigned, 4> Regs;
Chris Lattner864635a2006-02-22 22:37:12 +0000205
Dan Gohman23ce5022008-04-25 18:27:55 +0000206 RegsForValue() : TLI(0) {}
Chris Lattner864635a2006-02-22 22:37:12 +0000207
Dan Gohman23ce5022008-04-25 18:27:55 +0000208 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000209 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000210 MVT regvt, MVT valuevt)
Dan Gohman0fe00902008-04-28 18:10:39 +0000211 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000212 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000213 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000214 const SmallVector<MVT, 4> &regvts,
215 const SmallVector<MVT, 4> &valuevts)
Dan Gohman0fe00902008-04-28 18:10:39 +0000216 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000217 RegsForValue(const TargetLowering &tli,
218 unsigned Reg, const Type *Ty) : TLI(&tli) {
219 ComputeValueVTs(tli, Ty, ValueVTs);
220
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000221 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000222 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +0000223 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000224 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000225 for (unsigned i = 0; i != NumRegs; ++i)
226 Regs.push_back(Reg + i);
227 RegVTs.push_back(RegisterVT);
228 Reg += NumRegs;
229 }
Chris Lattner864635a2006-02-22 22:37:12 +0000230 }
231
Chris Lattner41f62592008-04-29 04:29:54 +0000232 /// append - Add the specified values to this one.
233 void append(const RegsForValue &RHS) {
234 TLI = RHS.TLI;
235 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
236 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
237 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
238 }
239
240
Chris Lattner864635a2006-02-22 22:37:12 +0000241 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman23ce5022008-04-25 18:27:55 +0000242 /// this value and returns the result as a ValueVTs value. This uses
Chris Lattner864635a2006-02-22 22:37:12 +0000243 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000244 /// If the Flag pointer is NULL, no flag is used.
Chris Lattner864635a2006-02-22 22:37:12 +0000245 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000246 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000247
248 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
249 /// specified value into the registers specified by this object. This uses
250 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000251 /// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000252 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000253 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000254
255 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
256 /// operand list. This adds the code marker and includes the number of
257 /// values added into it.
258 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000259 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000260 };
261}
Evan Cheng4ef10862006-01-23 07:01:07 +0000262
Chris Lattner1c08c712005-01-07 07:47:53 +0000263namespace llvm {
264 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000265 /// createDefaultScheduler - This creates an instruction scheduler appropriate
266 /// for the target.
267 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
268 SelectionDAG *DAG,
269 MachineBasicBlock *BB) {
270 TargetLowering &TLI = IS->getTargetLowering();
271
272 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
273 return createTDListDAGScheduler(IS, DAG, BB);
274 } else {
275 assert(TLI.getSchedulingPreference() ==
276 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
277 return createBURRListDAGScheduler(IS, DAG, BB);
278 }
279 }
280
281
282 //===--------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000283 /// FunctionLoweringInfo - This contains information that is global to a
284 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000285 class FunctionLoweringInfo {
286 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000287 TargetLowering &TLI;
288 Function &Fn;
289 MachineFunction &MF;
Chris Lattner84bc5422007-12-31 04:13:23 +0000290 MachineRegisterInfo &RegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000291
292 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
293
294 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
295 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
296
297 /// ValueMap - Since we emit code for the function a basic block at a time,
298 /// we must remember which virtual registers hold the values for
299 /// cross-basic-block values.
Chris Lattner9f24ad72007-02-04 01:35:11 +0000300 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000301
302 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
303 /// the entry block. This allows the allocas to be efficiently referenced
304 /// anywhere in the function.
305 std::map<const AllocaInst*, int> StaticAllocaMap;
306
Duncan Sandsf4070822007-06-15 19:04:19 +0000307#ifndef NDEBUG
308 SmallSet<Instruction*, 8> CatchInfoLost;
309 SmallSet<Instruction*, 8> CatchInfoFound;
310#endif
311
Duncan Sands83ec4b62008-06-06 12:08:01 +0000312 unsigned MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000313 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000314 }
Chris Lattner571e4342006-10-27 21:36:01 +0000315
316 /// isExportedInst - Return true if the specified value is an instruction
317 /// exported from its block.
318 bool isExportedInst(const Value *V) {
319 return ValueMap.count(V);
320 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000321
Chris Lattner3c384492006-03-16 19:51:18 +0000322 unsigned CreateRegForValue(const Value *V);
323
Chris Lattner1c08c712005-01-07 07:47:53 +0000324 unsigned InitializeRegForValue(const Value *V) {
325 unsigned &R = ValueMap[V];
326 assert(R == 0 && "Already initialized this value register!");
327 return R = CreateRegForValue(V);
328 }
Chris Lattneread0d882008-06-17 06:09:18 +0000329
330 struct LiveOutInfo {
331 unsigned NumSignBits;
332 APInt KnownOne, KnownZero;
333 LiveOutInfo() : NumSignBits(0) {}
334 };
335
336 /// LiveOutRegInfo - Information about live out vregs, indexed by their
337 /// register number offset by 'FirstVirtualRegister'.
338 std::vector<LiveOutInfo> LiveOutRegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000339 };
340}
341
Duncan Sandscf26d7c2007-07-04 20:52:51 +0000342/// isSelector - Return true if this instruction is a call to the
343/// eh.selector intrinsic.
344static bool isSelector(Instruction *I) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000345 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000346 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
347 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Duncan Sandsf4070822007-06-15 19:04:19 +0000348 return false;
349}
350
Chris Lattner1c08c712005-01-07 07:47:53 +0000351/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000352/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000353/// switch or atomic instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000354static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
355 if (isa<PHINode>(I)) return true;
356 BasicBlock *BB = I->getParent();
357 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000358 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattner571e4342006-10-27 21:36:01 +0000359 // FIXME: Remove switchinst special case.
Nate Begemanf15485a2006-03-27 01:32:24 +0000360 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000361 return true;
362 return false;
363}
364
Chris Lattnerbf209482005-10-30 19:42:35 +0000365/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000366/// entry block, return true. This includes arguments used by switches, since
367/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000368static bool isOnlyUsedInEntryBlock(Argument *A) {
369 BasicBlock *Entry = A->getParent()->begin();
370 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000371 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000372 return false; // Use not in entry block.
373 return true;
374}
375
Chris Lattner1c08c712005-01-07 07:47:53 +0000376FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000377 Function &fn, MachineFunction &mf)
Chris Lattner84bc5422007-12-31 04:13:23 +0000378 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000379
Chris Lattnerbf209482005-10-30 19:42:35 +0000380 // Create a vreg for each argument register that is not dead and is used
381 // outside of the entry block for the function.
382 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
383 AI != E; ++AI)
384 if (!isOnlyUsedInEntryBlock(AI))
385 InitializeRegForValue(AI);
386
Chris Lattner1c08c712005-01-07 07:47:53 +0000387 // Initialize the mapping of values to registers. This is only set up for
388 // instruction values that are used outside of the block that defines
389 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000390 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000391 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
392 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencerb83eb642006-10-20 07:07:24 +0000393 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000394 const Type *Ty = AI->getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +0000395 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000396 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000397 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000398 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000399
Reid Spencerb83eb642006-10-20 07:07:24 +0000400 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000401 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000402 StaticAllocaMap[AI] =
Chris Lattner6266c182007-04-25 04:08:28 +0000403 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000404 }
405
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000406 for (; BB != EB; ++BB)
407 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000408 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
409 if (!isa<AllocaInst>(I) ||
410 !StaticAllocaMap.count(cast<AllocaInst>(I)))
411 InitializeRegForValue(I);
412
413 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
414 // also creates the initial PHI MachineInstrs, though none of the input
415 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000416 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000417 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
418 MBBMap[BB] = MBB;
419 MF.getBasicBlockList().push_back(MBB);
420
421 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
422 // appropriate.
423 PHINode *PN;
Chris Lattner8c494ab2006-10-27 23:50:33 +0000424 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
425 if (PN->use_empty()) continue;
426
Duncan Sands83ec4b62008-06-06 12:08:01 +0000427 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +0000428 unsigned NumRegisters = TLI.getNumRegisters(VT);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000429 unsigned PHIReg = ValueMap[PN];
430 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Evan Chengc0f64ff2006-11-27 23:37:22 +0000431 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
Dan Gohmanb9f10192007-06-21 14:42:22 +0000432 for (unsigned i = 0; i != NumRegisters; ++i)
Evan Chengc0f64ff2006-11-27 23:37:22 +0000433 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000434 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000435 }
436}
437
Chris Lattner3c384492006-03-16 19:51:18 +0000438/// CreateRegForValue - Allocate the appropriate number of virtual registers of
439/// the correctly promoted or expanded types. Assign these registers
440/// consecutive vreg numbers and return the first assigned number.
Dan Gohman10a6b7a2008-04-28 18:19:43 +0000441///
442/// In the case that the given value has struct or array type, this function
443/// will assign registers for each member or element.
444///
Chris Lattner3c384492006-03-16 19:51:18 +0000445unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000446 SmallVector<MVT, 4> ValueVTs;
Chris Lattnerb606dba2008-04-28 06:44:42 +0000447 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Bill Wendling95b39552007-04-24 21:13:23 +0000448
Dan Gohman23ce5022008-04-25 18:27:55 +0000449 unsigned FirstReg = 0;
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000450 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000451 MVT ValueVT = ValueVTs[Value];
452 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohman8c8c5fc2007-06-27 14:34:07 +0000453
Chris Lattnerb606dba2008-04-28 06:44:42 +0000454 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000455 for (unsigned i = 0; i != NumRegs; ++i) {
456 unsigned R = MakeReg(RegisterVT);
457 if (!FirstReg) FirstReg = R;
458 }
459 }
460 return FirstReg;
Chris Lattner3c384492006-03-16 19:51:18 +0000461}
Chris Lattner1c08c712005-01-07 07:47:53 +0000462
463//===----------------------------------------------------------------------===//
464/// SelectionDAGLowering - This is the common target-independent lowering
465/// implementation that is parameterized by a TargetLowering object.
466/// Also, targets can overload any lowering method.
467///
468namespace llvm {
469class SelectionDAGLowering {
470 MachineBasicBlock *CurMBB;
471
Chris Lattner0da331f2007-02-04 01:31:47 +0000472 DenseMap<const Value*, SDOperand> NodeMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000473
Chris Lattnerd3948112005-01-17 22:19:26 +0000474 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
475 /// them up and then emit token factor nodes when possible. This allows us to
476 /// get simple disambiguation between loads without worrying about alias
477 /// analysis.
Dan Gohmana44b6742008-06-30 20:31:15 +0000478 SmallVector<SDOperand, 8> PendingLoads;
Chris Lattnerd3948112005-01-17 22:19:26 +0000479
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000480 /// PendingExports - CopyToReg nodes that copy values to virtual registers
481 /// for export to other blocks need to be emitted before any terminator
482 /// instruction, but they have no other ordering requirements. We bunch them
483 /// up and the emit a single tokenfactor for them just before terminator
484 /// instructions.
485 std::vector<SDOperand> PendingExports;
486
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000487 /// Case - A struct to record the Value for a switch case, and the
488 /// case's target basic block.
489 struct Case {
490 Constant* Low;
491 Constant* High;
492 MachineBasicBlock* BB;
493
494 Case() : Low(0), High(0), BB(0) { }
495 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
496 Low(low), High(high), BB(bb) { }
497 uint64_t size() const {
498 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
499 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
500 return (rHigh - rLow + 1ULL);
501 }
502 };
503
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000504 struct CaseBits {
505 uint64_t Mask;
506 MachineBasicBlock* BB;
507 unsigned Bits;
508
509 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
510 Mask(mask), BB(bb), Bits(bits) { }
511 };
512
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000513 typedef std::vector<Case> CaseVector;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000514 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000515 typedef CaseVector::iterator CaseItr;
516 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemanf15485a2006-03-27 01:32:24 +0000517
518 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
519 /// of conditional branches.
520 struct CaseRec {
521 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
522 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
523
524 /// CaseBB - The MBB in which to emit the compare and branch
525 MachineBasicBlock *CaseBB;
526 /// LT, GE - If nonzero, we know the current case value must be less-than or
527 /// greater-than-or-equal-to these Constants.
528 Constant *LT;
529 Constant *GE;
530 /// Range - A pair of iterators representing the range of case values to be
531 /// processed at this point in the binary search tree.
532 CaseRange Range;
533 };
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000534
535 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000536
537 /// The comparison function for sorting the switch case values in the vector.
538 /// WARNING: Case ranges should be disjoint!
Nate Begemanf15485a2006-03-27 01:32:24 +0000539 struct CaseCmp {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000540 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000541 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
542 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
543 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
544 return CI1->getValue().slt(CI2->getValue());
Nate Begemanf15485a2006-03-27 01:32:24 +0000545 }
546 };
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000547
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000548 struct CaseBitsCmp {
549 bool operator () (const CaseBits& C1, const CaseBits& C2) {
550 return C1.Bits > C2.Bits;
551 }
552 };
553
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000554 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemanf15485a2006-03-27 01:32:24 +0000555
Chris Lattner1c08c712005-01-07 07:47:53 +0000556public:
557 // TLI - This is information that describes the available target features we
558 // need for lowering. This indicates when operations are unavailable,
559 // implemented with a libcall, etc.
560 TargetLowering &TLI;
561 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000562 const TargetData *TD;
Dan Gohman5f43f922007-08-27 16:26:13 +0000563 AliasAnalysis &AA;
Chris Lattner1c08c712005-01-07 07:47:53 +0000564
Nate Begemanf15485a2006-03-27 01:32:24 +0000565 /// SwitchCases - Vector of CaseBlock structures used to communicate
566 /// SwitchInst code generation information.
567 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000568 /// JTCases - Vector of JumpTable structures used to communicate
569 /// SwitchInst code generation information.
570 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000571 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemanf15485a2006-03-27 01:32:24 +0000572
Chris Lattner1c08c712005-01-07 07:47:53 +0000573 /// FuncInfo - Information about the function as a whole.
574 ///
575 FunctionLoweringInfo &FuncInfo;
Gordon Henriksence224772008-01-07 01:30:38 +0000576
577 /// GCI - Garbage collection metadata for the function.
578 CollectorMetadata *GCI;
Chris Lattner1c08c712005-01-07 07:47:53 +0000579
580 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman5f43f922007-08-27 16:26:13 +0000581 AliasAnalysis &aa,
Gordon Henriksence224772008-01-07 01:30:38 +0000582 FunctionLoweringInfo &funcinfo,
583 CollectorMetadata *gci)
Dan Gohman5f43f922007-08-27 16:26:13 +0000584 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksence224772008-01-07 01:30:38 +0000585 FuncInfo(funcinfo), GCI(gci) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000586 }
587
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000588 /// getRoot - Return the current virtual root of the Selection DAG,
589 /// flushing any PendingLoad items. This must be done before emitting
590 /// a store or any other node that may need to be ordered after any
591 /// prior load instructions.
Chris Lattnera651cf62005-01-17 19:43:36 +0000592 ///
593 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000594 if (PendingLoads.empty())
595 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000596
Chris Lattnerd3948112005-01-17 22:19:26 +0000597 if (PendingLoads.size() == 1) {
598 SDOperand Root = PendingLoads[0];
599 DAG.setRoot(Root);
600 PendingLoads.clear();
601 return Root;
602 }
603
604 // Otherwise, we have to make a token factor node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000605 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
606 &PendingLoads[0], PendingLoads.size());
Chris Lattnerd3948112005-01-17 22:19:26 +0000607 PendingLoads.clear();
608 DAG.setRoot(Root);
609 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000610 }
611
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000612 /// getControlRoot - Similar to getRoot, but instead of flushing all the
613 /// PendingLoad items, flush all the PendingExports items. It is necessary
614 /// to do this before emitting a terminator instruction.
615 ///
616 SDOperand getControlRoot() {
617 SDOperand Root = DAG.getRoot();
618
619 if (PendingExports.empty())
620 return Root;
621
622 // Turn all of the CopyToReg chains into one factored node.
623 if (Root.getOpcode() != ISD::EntryToken) {
624 unsigned i = 0, e = PendingExports.size();
625 for (; i != e; ++i) {
626 assert(PendingExports[i].Val->getNumOperands() > 1);
627 if (PendingExports[i].Val->getOperand(0) == Root)
628 break; // Don't add the root if we already indirectly depend on it.
629 }
630
631 if (i == e)
632 PendingExports.push_back(Root);
633 }
634
635 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
636 &PendingExports[0],
637 PendingExports.size());
638 PendingExports.clear();
639 DAG.setRoot(Root);
640 return Root;
641 }
642
643 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Chris Lattner571e4342006-10-27 21:36:01 +0000644
Chris Lattner1c08c712005-01-07 07:47:53 +0000645 void visit(Instruction &I) { visit(I.getOpcode(), I); }
646
647 void visit(unsigned Opcode, User &I) {
Chris Lattner1e7aa5c2006-11-10 04:41:34 +0000648 // Note: this doesn't use InstVisitor, because it has to work with
649 // ConstantExpr's in addition to instructions.
Chris Lattner1c08c712005-01-07 07:47:53 +0000650 switch (Opcode) {
651 default: assert(0 && "Unknown instruction type encountered!");
652 abort();
653 // Build the switch statement using the Instruction.def file.
654#define HANDLE_INST(NUM, OPCODE, CLASS) \
655 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
656#include "llvm/Instruction.def"
657 }
658 }
659
660 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
661
Chris Lattner199862b2006-03-16 19:57:50 +0000662 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000663
Chris Lattner0da331f2007-02-04 01:31:47 +0000664 void setValue(const Value *V, SDOperand NewN) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000665 SDOperand &N = NodeMap[V];
666 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner0da331f2007-02-04 01:31:47 +0000667 N = NewN;
Chris Lattner1c08c712005-01-07 07:47:53 +0000668 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000669
Evan Cheng5c807602008-02-26 02:33:44 +0000670 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnere7cf56a2007-04-30 21:11:17 +0000671 std::set<unsigned> &OutputRegs,
672 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000673
Chris Lattner571e4342006-10-27 21:36:01 +0000674 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
675 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
676 unsigned Opc);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000677 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattner571e4342006-10-27 21:36:01 +0000678 void ExportFromCurrentBlock(Value *V);
Duncan Sands6f74b482007-12-19 09:48:52 +0000679 void LowerCallTo(CallSite CS, SDOperand Callee, bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000680 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsdc024672007-11-27 13:23:08 +0000681
Chris Lattner1c08c712005-01-07 07:47:53 +0000682 // Terminator instructions.
683 void visitRet(ReturnInst &I);
684 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000685 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000686 void visitUnreachable(UnreachableInst &I) { /* noop */ }
687
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000688 // Helpers for visitSwitch
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000689 bool handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000690 CaseRecVector& WorkList,
691 Value* SV,
692 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000693 bool handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000694 CaseRecVector& WorkList,
695 Value* SV,
696 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000697 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000698 CaseRecVector& WorkList,
699 Value* SV,
700 MachineBasicBlock* Default);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000701 bool handleBitTestsSwitchCase(CaseRec& CR,
702 CaseRecVector& WorkList,
703 Value* SV,
704 MachineBasicBlock* Default);
Nate Begemanf15485a2006-03-27 01:32:24 +0000705 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000706 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
707 void visitBitTestCase(MachineBasicBlock* NextMBB,
708 unsigned Reg,
709 SelectionDAGISel::BitTestCase &B);
Nate Begeman37efe672006-04-22 18:53:45 +0000710 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000711 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
712 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemanf15485a2006-03-27 01:32:24 +0000713
Chris Lattner1c08c712005-01-07 07:47:53 +0000714 // These all get lowered before this pass.
Jim Laskeyb180aa12007-02-21 22:53:45 +0000715 void visitInvoke(InvokeInst &I);
716 void visitUnwind(UnwindInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000717
Dan Gohman7f321562007-06-25 16:23:39 +0000718 void visitBinary(User &I, unsigned OpCode);
Nate Begemane21ea612005-11-18 07:42:56 +0000719 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000720 void visitAdd(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000721 if (I.getType()->isFPOrFPVector())
722 visitBinary(I, ISD::FADD);
Reid Spencer1628cec2006-10-26 06:15:43 +0000723 else
Dan Gohman7f321562007-06-25 16:23:39 +0000724 visitBinary(I, ISD::ADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000725 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000726 void visitSub(User &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000727 void visitMul(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000728 if (I.getType()->isFPOrFPVector())
729 visitBinary(I, ISD::FMUL);
Reid Spencer1628cec2006-10-26 06:15:43 +0000730 else
Dan Gohman7f321562007-06-25 16:23:39 +0000731 visitBinary(I, ISD::MUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000732 }
Dan Gohman7f321562007-06-25 16:23:39 +0000733 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
734 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
735 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
736 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
737 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
738 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
739 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
740 void visitOr (User &I) { visitBinary(I, ISD::OR); }
741 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer24d6da52007-01-21 00:29:26 +0000742 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencer3822ff52006-11-08 06:47:33 +0000743 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
744 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000745 void visitICmp(User &I);
746 void visitFCmp(User &I);
Nate Begemanb43e9c12008-05-12 19:40:03 +0000747 void visitVICmp(User &I);
748 void visitVFCmp(User &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000749 // Visit the conversion instructions
750 void visitTrunc(User &I);
751 void visitZExt(User &I);
752 void visitSExt(User &I);
753 void visitFPTrunc(User &I);
754 void visitFPExt(User &I);
755 void visitFPToUI(User &I);
756 void visitFPToSI(User &I);
757 void visitUIToFP(User &I);
758 void visitSIToFP(User &I);
759 void visitPtrToInt(User &I);
760 void visitIntToPtr(User &I);
761 void visitBitCast(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000762
Chris Lattner2bbd8102006-03-29 00:11:43 +0000763 void visitExtractElement(User &I);
764 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000765 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000766
Dan Gohman1d685a42008-06-07 02:02:36 +0000767 void visitExtractValue(ExtractValueInst &I);
768 void visitInsertValue(InsertValueInst &I);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000769
Chris Lattner1c08c712005-01-07 07:47:53 +0000770 void visitGetElementPtr(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000771 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000772
773 void visitMalloc(MallocInst &I);
774 void visitFree(FreeInst &I);
775 void visitAlloca(AllocaInst &I);
776 void visitLoad(LoadInst &I);
777 void visitStore(StoreInst &I);
778 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
779 void visitCall(CallInst &I);
Duncan Sandsfd7b3262007-12-17 18:08:19 +0000780 void visitInlineAsm(CallSite CS);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000781 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000782 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000783
Chris Lattner1c08c712005-01-07 07:47:53 +0000784 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000785 void visitVAArg(VAArgInst &I);
786 void visitVAEnd(CallInst &I);
787 void visitVACopy(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000788
Dan Gohmanef5d1942008-03-11 21:11:25 +0000789 void visitGetResult(GetResultInst &I);
Devang Patel40a04212008-02-19 22:15:16 +0000790
Chris Lattner1c08c712005-01-07 07:47:53 +0000791 void visitUserOp1(Instruction &I) {
792 assert(0 && "UserOp1 should not exist at instruction selection time!");
793 abort();
794 }
795 void visitUserOp2(Instruction &I) {
796 assert(0 && "UserOp2 should not exist at instruction selection time!");
797 abort();
798 }
Mon P Wang63307c32008-05-05 19:05:59 +0000799
800private:
801 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
802
Chris Lattner1c08c712005-01-07 07:47:53 +0000803};
804} // end namespace llvm
805
Dan Gohman6183f782007-07-05 20:12:34 +0000806
Duncan Sandsb988bac2008-02-11 20:58:28 +0000807/// getCopyFromParts - Create a value that contains the specified legal parts
808/// combined into the value they represent. If the parts combine to a type
809/// larger then ValueVT then AssertOp can be used to specify whether the extra
810/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattner4468c1f2008-03-09 09:38:46 +0000811/// (ISD::AssertSext).
Dan Gohman6183f782007-07-05 20:12:34 +0000812static SDOperand getCopyFromParts(SelectionDAG &DAG,
813 const SDOperand *Parts,
814 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000815 MVT PartVT,
816 MVT ValueVT,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000817 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000818 assert(NumParts > 0 && "No parts to assemble!");
819 TargetLowering &TLI = DAG.getTargetLoweringInfo();
820 SDOperand Val = Parts[0];
Dan Gohman6183f782007-07-05 20:12:34 +0000821
Duncan Sands014e04a2008-02-12 20:46:31 +0000822 if (NumParts > 1) {
823 // Assemble the value from multiple parts.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000824 if (!ValueVT.isVector()) {
825 unsigned PartBits = PartVT.getSizeInBits();
826 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohman6183f782007-07-05 20:12:34 +0000827
Duncan Sands014e04a2008-02-12 20:46:31 +0000828 // Assemble the power of 2 part.
829 unsigned RoundParts = NumParts & (NumParts - 1) ?
830 1 << Log2_32(NumParts) : NumParts;
831 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000832 MVT RoundVT = RoundBits == ValueBits ?
833 ValueVT : MVT::getIntegerVT(RoundBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000834 SDOperand Lo, Hi;
835
836 if (RoundParts > 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000837 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands014e04a2008-02-12 20:46:31 +0000838 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
839 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
840 PartVT, HalfVT);
Dan Gohman6183f782007-07-05 20:12:34 +0000841 } else {
Duncan Sands014e04a2008-02-12 20:46:31 +0000842 Lo = Parts[0];
843 Hi = Parts[1];
Dan Gohman6183f782007-07-05 20:12:34 +0000844 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000845 if (TLI.isBigEndian())
846 std::swap(Lo, Hi);
847 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
848
849 if (RoundParts < NumParts) {
850 // Assemble the trailing non-power-of-2 part.
851 unsigned OddParts = NumParts - RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000852 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000853 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
854
855 // Combine the round and odd parts.
856 Lo = Val;
857 if (TLI.isBigEndian())
858 std::swap(Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000859 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000860 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
861 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000862 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands014e04a2008-02-12 20:46:31 +0000863 TLI.getShiftAmountTy()));
864 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
865 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
866 }
867 } else {
868 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000869 MVT IntermediateVT, RegisterVT;
Duncan Sands014e04a2008-02-12 20:46:31 +0000870 unsigned NumIntermediates;
871 unsigned NumRegs =
872 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
873 RegisterVT);
Duncan Sands014e04a2008-02-12 20:46:31 +0000874 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +0000875 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands014e04a2008-02-12 20:46:31 +0000876 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
877 assert(RegisterVT == Parts[0].getValueType() &&
878 "Part type doesn't match part!");
879
880 // Assemble the parts into intermediate operands.
881 SmallVector<SDOperand, 8> Ops(NumIntermediates);
882 if (NumIntermediates == NumParts) {
883 // If the register was not expanded, truncate or copy the value,
884 // as appropriate.
885 for (unsigned i = 0; i != NumParts; ++i)
886 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
887 PartVT, IntermediateVT);
888 } else if (NumParts > 0) {
889 // If the intermediate type was expanded, build the intermediate operands
890 // from the parts.
891 assert(NumParts % NumIntermediates == 0 &&
892 "Must expand into a divisible number of parts!");
893 unsigned Factor = NumParts / NumIntermediates;
894 for (unsigned i = 0; i != NumIntermediates; ++i)
895 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
896 PartVT, IntermediateVT);
897 }
898
899 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
900 // operands.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000901 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands014e04a2008-02-12 20:46:31 +0000902 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
903 ValueVT, &Ops[0], NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +0000904 }
Dan Gohman6183f782007-07-05 20:12:34 +0000905 }
906
Duncan Sands014e04a2008-02-12 20:46:31 +0000907 // There is now one part, held in Val. Correct it to match ValueVT.
908 PartVT = Val.getValueType();
Dan Gohman6183f782007-07-05 20:12:34 +0000909
Duncan Sands014e04a2008-02-12 20:46:31 +0000910 if (PartVT == ValueVT)
911 return Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000912
Duncan Sands83ec4b62008-06-06 12:08:01 +0000913 if (PartVT.isVector()) {
914 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands014e04a2008-02-12 20:46:31 +0000915 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000916 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000917
Duncan Sands83ec4b62008-06-06 12:08:01 +0000918 if (ValueVT.isVector()) {
919 assert(ValueVT.getVectorElementType() == PartVT &&
920 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +0000921 "Only trivial scalar-to-vector conversions should get here!");
922 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
923 }
924
Duncan Sands83ec4b62008-06-06 12:08:01 +0000925 if (PartVT.isInteger() &&
926 ValueVT.isInteger()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000927 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000928 // For a truncate, see if we have any information to
929 // indicate whether the truncated bits will always be
930 // zero or sign-extension.
931 if (AssertOp != ISD::DELETED_NODE)
932 Val = DAG.getNode(AssertOp, PartVT, Val,
933 DAG.getValueType(ValueVT));
934 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
935 } else {
936 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
937 }
938 }
939
Duncan Sands83ec4b62008-06-06 12:08:01 +0000940 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000941 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattner4468c1f2008-03-09 09:38:46 +0000942 // FP_ROUND's are always exact here.
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000943 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000944 DAG.getIntPtrConstant(1));
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000945 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
946 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000947
Duncan Sands83ec4b62008-06-06 12:08:01 +0000948 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands014e04a2008-02-12 20:46:31 +0000949 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
950
951 assert(0 && "Unknown mismatch!");
Chris Lattnerd27c9912008-03-30 18:22:13 +0000952 return SDOperand();
Dan Gohman6183f782007-07-05 20:12:34 +0000953}
954
Duncan Sandsb988bac2008-02-11 20:58:28 +0000955/// getCopyToParts - Create a series of nodes that contain the specified value
956/// split into legal parts. If the parts contain more bits than Val, then, for
957/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohman6183f782007-07-05 20:12:34 +0000958static void getCopyToParts(SelectionDAG &DAG,
959 SDOperand Val,
960 SDOperand *Parts,
961 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000962 MVT PartVT,
Duncan Sandsb988bac2008-02-11 20:58:28 +0000963 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohman25ac7e82007-08-10 14:59:38 +0000964 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000965 MVT PtrVT = TLI.getPointerTy();
966 MVT ValueVT = Val.getValueType();
967 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands014e04a2008-02-12 20:46:31 +0000968 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohman6183f782007-07-05 20:12:34 +0000969
Duncan Sands014e04a2008-02-12 20:46:31 +0000970 if (!NumParts)
971 return;
972
Duncan Sands83ec4b62008-06-06 12:08:01 +0000973 if (!ValueVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000974 if (PartVT == ValueVT) {
975 assert(NumParts == 1 && "No-op copy with multiple parts!");
976 Parts[0] = Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000977 return;
978 }
979
Duncan Sands83ec4b62008-06-06 12:08:01 +0000980 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000981 // If the parts cover more bits than the value has, promote the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000982 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000983 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohman6183f782007-07-05 20:12:34 +0000984 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000985 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
986 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000987 Val = DAG.getNode(ExtendKind, ValueVT, Val);
988 } else {
989 assert(0 && "Unknown mismatch!");
990 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000991 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000992 // Different types of the same size.
993 assert(NumParts == 1 && PartVT != ValueVT);
994 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000995 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000996 // If the parts cover less bits than value has, truncate the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000997 if (PartVT.isInteger() && ValueVT.isInteger()) {
998 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000999 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +00001000 } else {
1001 assert(0 && "Unknown mismatch!");
1002 }
1003 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001004
1005 // The value may have changed - recompute ValueVT.
1006 ValueVT = Val.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001007 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001008 "Failed to tile the value with PartVT!");
1009
1010 if (NumParts == 1) {
1011 assert(PartVT == ValueVT && "Type conversion failed!");
1012 Parts[0] = Val;
1013 return;
1014 }
1015
1016 // Expand the value into multiple parts.
1017 if (NumParts & (NumParts - 1)) {
1018 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001019 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001020 "Do not know what to expand to!");
1021 unsigned RoundParts = 1 << Log2_32(NumParts);
1022 unsigned RoundBits = RoundParts * PartBits;
1023 unsigned OddParts = NumParts - RoundParts;
1024 SDOperand OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
1025 DAG.getConstant(RoundBits,
1026 TLI.getShiftAmountTy()));
1027 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1028 if (TLI.isBigEndian())
1029 // The odd parts were reversed by getCopyToParts - unreverse them.
1030 std::reverse(Parts + RoundParts, Parts + NumParts);
1031 NumParts = RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001032 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001033 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1034 }
1035
1036 // The number of parts is a power of 2. Repeatedly bisect the value using
1037 // EXTRACT_ELEMENT.
Duncan Sands25eb0432008-03-12 20:30:08 +00001038 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001039 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sands25eb0432008-03-12 20:30:08 +00001040 Val);
Duncan Sands014e04a2008-02-12 20:46:31 +00001041 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1042 for (unsigned i = 0; i < NumParts; i += StepSize) {
1043 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001044 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Duncan Sands25eb0432008-03-12 20:30:08 +00001045 SDOperand &Part0 = Parts[i];
1046 SDOperand &Part1 = Parts[i+StepSize/2];
Duncan Sands014e04a2008-02-12 20:46:31 +00001047
Duncan Sands25eb0432008-03-12 20:30:08 +00001048 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1049 DAG.getConstant(1, PtrVT));
1050 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1051 DAG.getConstant(0, PtrVT));
1052
1053 if (ThisBits == PartBits && ThisVT != PartVT) {
1054 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1055 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1056 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001057 }
1058 }
1059
1060 if (TLI.isBigEndian())
1061 std::reverse(Parts, Parts + NumParts);
1062
1063 return;
1064 }
1065
1066 // Vector ValueVT.
1067 if (NumParts == 1) {
1068 if (PartVT != ValueVT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001069 if (PartVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001070 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1071 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001072 assert(ValueVT.getVectorElementType() == PartVT &&
1073 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001074 "Only trivial vector-to-scalar conversions should get here!");
1075 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1076 DAG.getConstant(0, PtrVT));
1077 }
1078 }
1079
Dan Gohman6183f782007-07-05 20:12:34 +00001080 Parts[0] = Val;
1081 return;
1082 }
1083
1084 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001085 MVT IntermediateVT, RegisterVT;
Dan Gohman6183f782007-07-05 20:12:34 +00001086 unsigned NumIntermediates;
1087 unsigned NumRegs =
1088 DAG.getTargetLoweringInfo()
1089 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1090 RegisterVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001091 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohman6183f782007-07-05 20:12:34 +00001092
1093 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +00001094 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohman6183f782007-07-05 20:12:34 +00001095 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1096
1097 // Split the vector into intermediate operands.
1098 SmallVector<SDOperand, 8> Ops(NumIntermediates);
1099 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001100 if (IntermediateVT.isVector())
Dan Gohman6183f782007-07-05 20:12:34 +00001101 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1102 IntermediateVT, Val,
1103 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohman25ac7e82007-08-10 14:59:38 +00001104 PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001105 else
1106 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1107 IntermediateVT, Val,
Dan Gohman25ac7e82007-08-10 14:59:38 +00001108 DAG.getConstant(i, PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001109
1110 // Split the intermediate operands into legal parts.
1111 if (NumParts == NumIntermediates) {
1112 // If the register was not expanded, promote or copy the value,
1113 // as appropriate.
1114 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001115 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001116 } else if (NumParts > 0) {
1117 // If the intermediate type was expanded, split each the value into
1118 // legal parts.
1119 assert(NumParts % NumIntermediates == 0 &&
1120 "Must expand into a divisible number of parts!");
1121 unsigned Factor = NumParts / NumIntermediates;
1122 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001123 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001124 }
1125}
1126
1127
Chris Lattner199862b2006-03-16 19:57:50 +00001128SDOperand SelectionDAGLowering::getValue(const Value *V) {
1129 SDOperand &N = NodeMap[V];
1130 if (N.Val) return N;
1131
Chris Lattner199862b2006-03-16 19:57:50 +00001132 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001133 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001134
1135 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1136 return N = DAG.getConstant(CI->getValue(), VT);
1137
1138 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001139 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001140
1141 if (isa<ConstantPointerNull>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001142 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001143
1144 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1145 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1146
Dan Gohman1d685a42008-06-07 02:02:36 +00001147 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1148 !V->getType()->isAggregateType())
Chris Lattner6833b062008-04-28 07:16:35 +00001149 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001150
1151 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1152 visit(CE->getOpcode(), *CE);
1153 SDOperand N1 = NodeMap[V];
1154 assert(N1.Val && "visit didn't populate the ValueMap!");
1155 return N1;
1156 }
1157
Dan Gohman1d685a42008-06-07 02:02:36 +00001158 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1159 SmallVector<SDOperand, 4> Constants;
1160 SmallVector<MVT, 4> ValueVTs;
1161 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1162 OI != OE; ++OI) {
1163 SDNode *Val = getValue(*OI).Val;
1164 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) {
1165 Constants.push_back(SDOperand(Val, i));
1166 ValueVTs.push_back(Val->getValueType(i));
1167 }
1168 }
Duncan Sandsf9516202008-06-30 10:19:09 +00001169 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1170 &Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001171 }
1172
1173 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1174 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1175 "Unknown array constant!");
1176 unsigned NumElts = ATy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001177 if (NumElts == 0)
1178 return SDOperand(); // empty array
Dan Gohman1d685a42008-06-07 02:02:36 +00001179 MVT EltVT = TLI.getValueType(ATy->getElementType());
1180 SmallVector<SDOperand, 4> Constants(NumElts);
1181 SmallVector<MVT, 4> ValueVTs(NumElts, EltVT);
1182 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1183 if (isa<UndefValue>(C))
1184 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1185 else if (EltVT.isFloatingPoint())
1186 Constants[i] = DAG.getConstantFP(0, EltVT);
1187 else
1188 Constants[i] = DAG.getConstant(0, EltVT);
1189 }
Duncan Sandsf9516202008-06-30 10:19:09 +00001190 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1191 &Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001192 }
1193
1194 if (const StructType *STy = dyn_cast<StructType>(C->getType())) {
1195 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1196 "Unknown struct constant!");
1197 unsigned NumElts = STy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001198 if (NumElts == 0)
1199 return SDOperand(); // empty struct
Dan Gohman1d685a42008-06-07 02:02:36 +00001200 SmallVector<SDOperand, 4> Constants(NumElts);
1201 SmallVector<MVT, 4> ValueVTs(NumElts);
1202 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1203 MVT EltVT = TLI.getValueType(STy->getElementType(i));
1204 ValueVTs[i] = EltVT;
1205 if (isa<UndefValue>(C))
1206 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1207 else if (EltVT.isFloatingPoint())
1208 Constants[i] = DAG.getConstantFP(0, EltVT);
1209 else
1210 Constants[i] = DAG.getConstant(0, EltVT);
1211 }
Duncan Sandsf9516202008-06-30 10:19:09 +00001212 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1213 &Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001214 }
1215
Chris Lattner6833b062008-04-28 07:16:35 +00001216 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001217 unsigned NumElements = VecTy->getNumElements();
Chris Lattnerb606dba2008-04-28 06:44:42 +00001218
Chris Lattner6833b062008-04-28 07:16:35 +00001219 // Now that we know the number and type of the elements, get that number of
1220 // elements into the Ops array based on what kind of constant it is.
1221 SmallVector<SDOperand, 16> Ops;
Chris Lattnerb606dba2008-04-28 06:44:42 +00001222 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1223 for (unsigned i = 0; i != NumElements; ++i)
1224 Ops.push_back(getValue(CP->getOperand(i)));
1225 } else {
Chris Lattner6833b062008-04-28 07:16:35 +00001226 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1227 "Unknown vector constant!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001228 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner6833b062008-04-28 07:16:35 +00001229
Chris Lattnerb606dba2008-04-28 06:44:42 +00001230 SDOperand Op;
Chris Lattner6833b062008-04-28 07:16:35 +00001231 if (isa<UndefValue>(C))
1232 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001233 else if (EltVT.isFloatingPoint())
Chris Lattner6833b062008-04-28 07:16:35 +00001234 Op = DAG.getConstantFP(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001235 else
Chris Lattner6833b062008-04-28 07:16:35 +00001236 Op = DAG.getConstant(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001237 Ops.assign(NumElements, Op);
1238 }
1239
1240 // Create a BUILD_VECTOR node.
1241 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner199862b2006-03-16 19:57:50 +00001242 }
1243
Chris Lattnerb606dba2008-04-28 06:44:42 +00001244 // If this is a static alloca, generate it as the frameindex instead of
1245 // computation.
Chris Lattner199862b2006-03-16 19:57:50 +00001246 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1247 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattnerb606dba2008-04-28 06:44:42 +00001248 FuncInfo.StaticAllocaMap.find(AI);
Chris Lattner199862b2006-03-16 19:57:50 +00001249 if (SI != FuncInfo.StaticAllocaMap.end())
1250 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1251 }
1252
Chris Lattner251db182007-02-25 18:40:32 +00001253 unsigned InReg = FuncInfo.ValueMap[V];
1254 assert(InReg && "Value not in map!");
Chris Lattner199862b2006-03-16 19:57:50 +00001255
Chris Lattner6833b062008-04-28 07:16:35 +00001256 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001257 SDOperand Chain = DAG.getEntryNode();
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001258 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner199862b2006-03-16 19:57:50 +00001259}
1260
1261
Chris Lattner1c08c712005-01-07 07:47:53 +00001262void SelectionDAGLowering::visitRet(ReturnInst &I) {
1263 if (I.getNumOperands() == 0) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001264 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001265 return;
1266 }
Chris Lattnerb606dba2008-04-28 06:44:42 +00001267
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001268 SmallVector<SDOperand, 8> NewValues;
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001269 NewValues.push_back(getControlRoot());
1270 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Nate Begemanee625572006-01-27 21:09:22 +00001271 SDOperand RetOp = getValue(I.getOperand(i));
Duncan Sandsb988bac2008-02-11 20:58:28 +00001272
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001273 SmallVector<MVT, 4> ValueVTs;
1274 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1275 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1276 MVT VT = ValueVTs[j];
Duncan Sandsb988bac2008-02-11 20:58:28 +00001277
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001278 // FIXME: C calling convention requires the return type to be promoted to
1279 // at least 32-bit. But this is not necessary for non-C calling conventions.
1280 if (VT.isInteger()) {
1281 MVT MinVT = TLI.getRegisterType(MVT::i32);
1282 if (VT.bitsLT(MinVT))
1283 VT = MinVT;
1284 }
Duncan Sandsb988bac2008-02-11 20:58:28 +00001285
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001286 unsigned NumParts = TLI.getNumRegisters(VT);
1287 MVT PartVT = TLI.getRegisterType(VT);
1288 SmallVector<SDOperand, 4> Parts(NumParts);
1289 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1290
1291 const Function *F = I.getParent()->getParent();
1292 if (F->paramHasAttr(0, ParamAttr::SExt))
1293 ExtendKind = ISD::SIGN_EXTEND;
1294 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1295 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00001296
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001297 getCopyToParts(DAG, SDOperand(RetOp.Val, RetOp.ResNo + j),
1298 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00001299
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001300 for (unsigned i = 0; i < NumParts; ++i) {
1301 NewValues.push_back(Parts[i]);
1302 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1303 }
Nate Begemanee625572006-01-27 21:09:22 +00001304 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001305 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001306 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1307 &NewValues[0], NewValues.size()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001308}
1309
Chris Lattner571e4342006-10-27 21:36:01 +00001310/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1311/// the current basic block, add it to ValueMap now so that we'll get a
1312/// CopyTo/FromReg.
1313void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1314 // No need to export constants.
1315 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1316
1317 // Already exported?
1318 if (FuncInfo.isExportedInst(V)) return;
1319
1320 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001321 CopyValueToVirtualRegister(V, Reg);
Chris Lattner571e4342006-10-27 21:36:01 +00001322}
1323
Chris Lattner8c494ab2006-10-27 23:50:33 +00001324bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1325 const BasicBlock *FromBB) {
1326 // The operands of the setcc have to be in this block. We don't know
1327 // how to export them from some other block.
1328 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1329 // Can export from current BB.
1330 if (VI->getParent() == FromBB)
1331 return true;
1332
1333 // Is already exported, noop.
1334 return FuncInfo.isExportedInst(V);
1335 }
1336
1337 // If this is an argument, we can export it if the BB is the entry block or
1338 // if it is already exported.
1339 if (isa<Argument>(V)) {
1340 if (FromBB == &FromBB->getParent()->getEntryBlock())
1341 return true;
1342
1343 // Otherwise, can only export this if it is already exported.
1344 return FuncInfo.isExportedInst(V);
1345 }
1346
1347 // Otherwise, constants can always be exported.
1348 return true;
1349}
1350
Chris Lattner6a586c82006-10-29 21:01:20 +00001351static bool InBlock(const Value *V, const BasicBlock *BB) {
1352 if (const Instruction *I = dyn_cast<Instruction>(V))
1353 return I->getParent() == BB;
1354 return true;
1355}
1356
Chris Lattner571e4342006-10-27 21:36:01 +00001357/// FindMergedConditions - If Cond is an expression like
1358void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1359 MachineBasicBlock *TBB,
1360 MachineBasicBlock *FBB,
1361 MachineBasicBlock *CurBB,
1362 unsigned Opc) {
Chris Lattner571e4342006-10-27 21:36:01 +00001363 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001364 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattner571e4342006-10-27 21:36:01 +00001365
Reid Spencere4d87aa2006-12-23 06:05:41 +00001366 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1367 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattner6a586c82006-10-29 21:01:20 +00001368 BOp->getParent() != CurBB->getBasicBlock() ||
1369 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1370 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattner571e4342006-10-27 21:36:01 +00001371 const BasicBlock *BB = CurBB->getBasicBlock();
1372
Reid Spencere4d87aa2006-12-23 06:05:41 +00001373 // If the leaf of the tree is a comparison, merge the condition into
1374 // the caseblock.
1375 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1376 // The operands of the cmp have to be in this block. We don't know
Chris Lattner5a145f02006-10-29 18:23:37 +00001377 // how to export them from some other block. If this is the first block
1378 // of the sequence, no exporting is needed.
1379 (CurBB == CurMBB ||
1380 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1381 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001382 BOp = cast<Instruction>(Cond);
1383 ISD::CondCode Condition;
1384 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1385 switch (IC->getPredicate()) {
1386 default: assert(0 && "Unknown icmp predicate opcode!");
1387 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1388 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1389 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1390 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1391 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1392 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1393 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1394 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1395 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1396 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1397 }
1398 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1399 ISD::CondCode FPC, FOC;
1400 switch (FC->getPredicate()) {
1401 default: assert(0 && "Unknown fcmp predicate opcode!");
1402 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1403 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1404 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1405 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1406 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1407 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1408 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner6bf30ab2008-05-01 07:26:11 +00001409 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1410 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001411 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1412 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1413 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1414 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1415 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1416 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1417 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1418 }
1419 if (FiniteOnlyFPMath())
1420 Condition = FOC;
1421 else
1422 Condition = FPC;
1423 } else {
Chris Lattner0da331f2007-02-04 01:31:47 +00001424 Condition = ISD::SETEQ; // silence warning.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001425 assert(0 && "Unknown compare instruction");
Chris Lattner571e4342006-10-27 21:36:01 +00001426 }
1427
Chris Lattner571e4342006-10-27 21:36:01 +00001428 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001429 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001430 SwitchCases.push_back(CB);
1431 return;
1432 }
1433
1434 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001435 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001436 NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001437 SwitchCases.push_back(CB);
Chris Lattner571e4342006-10-27 21:36:01 +00001438 return;
1439 }
1440
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001441
1442 // Create TmpBB after CurBB.
Chris Lattner571e4342006-10-27 21:36:01 +00001443 MachineFunction::iterator BBI = CurBB;
1444 MachineBasicBlock *TmpBB = new MachineBasicBlock(CurBB->getBasicBlock());
1445 CurBB->getParent()->getBasicBlockList().insert(++BBI, TmpBB);
1446
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001447 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 //
Chris Lattner571e4342006-10-27 21:36:01 +00001455
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001456 // 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 }
Chris Lattner571e4342006-10-27 21:36:01 +00001478}
1479
Chris Lattnerdf19f272006-10-31 22:37:42 +00001480/// 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
Chris Lattner0ccb5002006-10-31 23:06:00 +00001487 // 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
Chris Lattnerdf19f272006-10-31 22:37:42 +00001496 return true;
1497}
1498
Chris Lattner1c08c712005-01-07 07:47:53 +00001499void SelectionDAGLowering::visitBr(BranchInst &I) {
1500 // Update machine-CFG edges.
1501 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner1c08c712005-01-07 07:47:53 +00001502
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 Anderson2d389e82008-06-07 00:00:23 +00001510 // Update machine-CFG edges.
1511 CurMBB->addSuccessor(Succ0MBB);
1512
Chris Lattner1c08c712005-01-07 07:47:53 +00001513 // If this is not a fall-through branch, emit the branch.
1514 if (Succ0MBB != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001515 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001516 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner57ab6592006-10-24 17:57:59 +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();
Chris Lattner57ab6592006-10-24 17:57:59 +00001523 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattner571e4342006-10-27 21:36:01 +00001524
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() &&
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001542 (BOp->getOpcode() == Instruction::And ||
Chris Lattner571e4342006-10-27 21:36:01 +00001543 BOp->getOpcode() == Instruction::Or)) {
1544 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattner0ccb5002006-10-31 23:06:00 +00001545 // 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
Chris Lattnerdf19f272006-10-31 22:37:42 +00001550 // Allow some cases to be rejected.
1551 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattnerdf19f272006-10-31 22:37:42 +00001552 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;
Chris Lattner5a145f02006-10-29 18:23:37 +00001561 }
1562
Chris Lattner0ccb5002006-10-31 23:06:00 +00001563 // Okay, we decided not to do this, remove any inserted MBB's and clear
1564 // SwitchCases.
1565 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1566 CurMBB->getParent()->getBasicBlockList().erase(SwitchCases[i].ThisBB);
1567
Chris Lattnerdf19f272006-10-31 22:37:42 +00001568 SwitchCases.clear();
Chris Lattner571e4342006-10-27 21:36:01 +00001569 }
1570 }
Chris Lattner24525952006-10-24 18:07:37 +00001571
1572 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001573 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001574 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner24525952006-10-24 18:07:37 +00001575 // Use visitSwitchCase to actually insert the fast branch sequence for this
1576 // cond branch.
1577 visitSwitchCase(CB);
Chris Lattner1c08c712005-01-07 07:47:53 +00001578}
1579
Nate Begemanf15485a2006-03-27 01:32:24 +00001580/// 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) {
Chris Lattner57ab6592006-10-24 17:57:59 +00001583 SDOperand Cond;
1584 SDOperand CondLHS = getValue(CB.CmpLHS);
1585
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001586 // Build the setcc now.
1587 if (CB.CmpMHS == NULL) {
1588 // Fold "(X == true)" to X and "(X == false)" to !X to
1589 // handle common cases produced by branch lowering.
1590 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1591 Cond = CondLHS;
1592 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1593 SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1594 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1595 } else
1596 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1597 } else {
1598 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001599
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001600 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1601 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1602
1603 SDOperand CmpOp = getValue(CB.CmpMHS);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001604 MVT VT = CmpOp.getValueType();
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001605
1606 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1607 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1608 } else {
1609 SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1610 Cond = DAG.getSetCC(MVT::i1, SUB,
1611 DAG.getConstant(High-Low, VT), ISD::SETULE);
1612 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001613 }
1614
Owen Anderson2d389e82008-06-07 00:00:23 +00001615 // Update successor info
1616 CurMBB->addSuccessor(CB.TrueBB);
1617 CurMBB->addSuccessor(CB.FalseBB);
1618
Nate Begemanf15485a2006-03-27 01:32:24 +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.
Chris Lattner57ab6592006-10-24 17:57:59 +00001628 if (CB.TrueBB == NextBlock) {
1629 std::swap(CB.TrueBB, CB.FalseBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00001630 SDOperand True = DAG.getConstant(1, Cond.getValueType());
1631 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1632 }
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001633 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001634 DAG.getBasicBlock(CB.TrueBB));
1635 if (CB.FalseBB == NextBlock)
Nate Begemanf15485a2006-03-27 01:32:24 +00001636 DAG.setRoot(BrCond);
1637 else
1638 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001639 DAG.getBasicBlock(CB.FalseBB)));
Nate Begemanf15485a2006-03-27 01:32:24 +00001640}
1641
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001642/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman37efe672006-04-22 18:53:45 +00001643void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman37efe672006-04-22 18:53:45 +00001644 // Emit the code for the jump table
Scott Michelf147a8d2007-04-24 01:24:20 +00001645 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001646 MVT PTy = TLI.getPointerTy();
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001647 SDOperand Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001648 SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1649 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1650 Table, Index));
1651 return;
Nate Begeman37efe672006-04-22 18:53:45 +00001652}
1653
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001654/// visitJumpTableHeader - This function emits necessary code to produce index
1655/// in the JumpTable from switch case.
1656void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1657 SelectionDAGISel::JumpTableHeader &JTH) {
1658 // Subtract the lowest switch case value from the value being switched on
1659 // and conditional branch to default mbb if the result is greater than the
1660 // difference between smallest and largest cases.
1661 SDOperand SwitchOp = getValue(JTH.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001662 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001663 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1664 DAG.getConstant(JTH.First, VT));
1665
1666 // The SDNode we just created, which holds the value being switched on
1667 // minus the the smallest case value, needs to be copied to a virtual
1668 // register so it can be used as an index into the jump table in a
1669 // subsequent basic block. This value may be smaller or larger than the
1670 // target's pointer type, and therefore require extension or truncating.
Duncan Sands8e4eb092008-06-08 20:54:56 +00001671 if (VT.bitsGT(TLI.getPointerTy()))
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001672 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1673 else
1674 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1675
1676 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001677 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001678 JT.Reg = JumpTableReg;
1679
1680 // Emit the range check for the jump table, and branch to the default
1681 // block for the switch statement if the value being switched on exceeds
1682 // the largest case in the switch.
Scott Michel5b8f82e2008-03-10 15:42:14 +00001683 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001684 DAG.getConstant(JTH.Last-JTH.First,VT),
1685 ISD::SETUGT);
1686
1687 // Set NextBlock to be the MBB immediately after the current one, if any.
1688 // This is used to avoid emitting unnecessary branches to the next block.
1689 MachineBasicBlock *NextBlock = 0;
1690 MachineFunction::iterator BBI = CurMBB;
1691 if (++BBI != CurMBB->getParent()->end())
1692 NextBlock = BBI;
1693
1694 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1695 DAG.getBasicBlock(JT.Default));
1696
1697 if (JT.MBB == NextBlock)
1698 DAG.setRoot(BrCond);
1699 else
1700 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001701 DAG.getBasicBlock(JT.MBB)));
1702
1703 return;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001704}
1705
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001706/// visitBitTestHeader - This function emits necessary code to produce value
1707/// suitable for "bit tests"
1708void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1709 // Subtract the minimum value
1710 SDOperand SwitchOp = getValue(B.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001711 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001712 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1713 DAG.getConstant(B.First, VT));
1714
1715 // Check range
Scott Michel5b8f82e2008-03-10 15:42:14 +00001716 SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001717 DAG.getConstant(B.Range, VT),
1718 ISD::SETUGT);
1719
1720 SDOperand ShiftOp;
Duncan Sands8e4eb092008-06-08 20:54:56 +00001721 if (VT.bitsGT(TLI.getShiftAmountTy()))
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001722 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1723 else
1724 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1725
1726 // Make desired shift
1727 SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1728 DAG.getConstant(1, TLI.getPointerTy()),
1729 ShiftOp);
1730
1731 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001732 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001733 B.Reg = SwitchReg;
1734
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001735 // Set NextBlock to be the MBB immediately after the current one, if any.
1736 // This is used to avoid emitting unnecessary branches to the next block.
1737 MachineBasicBlock *NextBlock = 0;
1738 MachineFunction::iterator BBI = CurMBB;
1739 if (++BBI != CurMBB->getParent()->end())
1740 NextBlock = BBI;
1741
1742 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson2d389e82008-06-07 00:00:23 +00001743
1744 CurMBB->addSuccessor(B.Default);
1745 CurMBB->addSuccessor(MBB);
1746
1747 SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1748 DAG.getBasicBlock(B.Default));
1749
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001750 if (MBB == NextBlock)
1751 DAG.setRoot(BrRange);
1752 else
1753 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1754 DAG.getBasicBlock(MBB)));
1755
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001756 return;
1757}
1758
1759/// visitBitTestCase - this function produces one "bit test"
1760void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1761 unsigned Reg,
1762 SelectionDAGISel::BitTestCase &B) {
1763 // Emit bit tests and jumps
Chris Lattneread0d882008-06-17 06:09:18 +00001764 SDOperand SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
1765 TLI.getPointerTy());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001766
Chris Lattneread0d882008-06-17 06:09:18 +00001767 SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
1768 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Scott Michel5b8f82e2008-03-10 15:42:14 +00001769 SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001770 DAG.getConstant(0, TLI.getPointerTy()),
1771 ISD::SETNE);
Owen Anderson2d389e82008-06-07 00:00:23 +00001772
1773 CurMBB->addSuccessor(B.TargetBB);
1774 CurMBB->addSuccessor(NextMBB);
1775
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001776 SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001777 AndCmp, DAG.getBasicBlock(B.TargetBB));
1778
1779 // Set NextBlock to be the MBB immediately after the current one, if any.
1780 // This is used to avoid emitting unnecessary branches to the next block.
1781 MachineBasicBlock *NextBlock = 0;
1782 MachineFunction::iterator BBI = CurMBB;
1783 if (++BBI != CurMBB->getParent()->end())
1784 NextBlock = BBI;
1785
1786 if (NextMBB == NextBlock)
1787 DAG.setRoot(BrAnd);
1788 else
1789 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1790 DAG.getBasicBlock(NextMBB)));
1791
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001792 return;
1793}
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001794
Jim Laskeyb180aa12007-02-21 22:53:45 +00001795void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1796 // Retrieve successors.
1797 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001798 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands9fac0b52007-06-06 10:05:18 +00001799
Duncan Sandsfd7b3262007-12-17 18:08:19 +00001800 if (isa<InlineAsm>(I.getCalledValue()))
1801 visitInlineAsm(&I);
1802 else
Duncan Sands6f74b482007-12-19 09:48:52 +00001803 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Duncan Sands9fac0b52007-06-06 10:05:18 +00001804
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001805 // If the value of the invoke is used outside of its defining block, make it
1806 // available as a virtual register.
1807 if (!I.use_empty()) {
1808 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1809 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001810 CopyValueToVirtualRegister(&I, VMI->second);
Jim Laskey183f47f2007-02-25 21:43:59 +00001811 }
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001812
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001813 // Update successor info
1814 CurMBB->addSuccessor(Return);
1815 CurMBB->addSuccessor(LandingPad);
Owen Anderson2d389e82008-06-07 00:00:23 +00001816
1817 // Drop into normal successor.
1818 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1819 DAG.getBasicBlock(Return)));
Jim Laskeyb180aa12007-02-21 22:53:45 +00001820}
1821
1822void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1823}
1824
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001825/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001826/// small case ranges).
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001827bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001828 CaseRecVector& WorkList,
1829 Value* SV,
1830 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001831 Case& BackCase = *(CR.Range.second-1);
1832
1833 // Size is the number of Cases represented by this range.
1834 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001835 if (Size > 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001836 return false;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001837
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001838 // Get the MachineFunction which holds the current MBB. This is used when
1839 // inserting any additional MBBs necessary to represent the switch.
1840 MachineFunction *CurMF = CurMBB->getParent();
1841
1842 // Figure out which block is immediately after the current one.
1843 MachineBasicBlock *NextBlock = 0;
1844 MachineFunction::iterator BBI = CR.CaseBB;
1845
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001846 if (++BBI != CurMBB->getParent()->end())
1847 NextBlock = BBI;
1848
1849 // TODO: If any two of the cases has the same destination, and if one value
1850 // is the same as the other, but has one bit unset that the other has set,
1851 // use bit manipulation to do two compares at once. For example:
1852 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1853
1854 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001855 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001856 // The last case block won't fall through into 'NextBlock' if we emit the
1857 // branches in this order. See if rearranging a case value would help.
1858 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001859 if (I->BB == NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001860 std::swap(*I, BackCase);
1861 break;
1862 }
1863 }
1864 }
1865
1866 // Create a CaseBlock record representing a conditional branch to
1867 // the Case's target mbb if the value being switched on SV is equal
1868 // to C.
1869 MachineBasicBlock *CurBlock = CR.CaseBB;
1870 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1871 MachineBasicBlock *FallThrough;
1872 if (I != E-1) {
1873 FallThrough = new MachineBasicBlock(CurBlock->getBasicBlock());
1874 CurMF->getBasicBlockList().insert(BBI, FallThrough);
1875 } else {
1876 // If the last case doesn't match, go to the default block.
1877 FallThrough = Default;
1878 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001879
1880 Value *RHS, *LHS, *MHS;
1881 ISD::CondCode CC;
1882 if (I->High == I->Low) {
1883 // This is just small small case range :) containing exactly 1 case
1884 CC = ISD::SETEQ;
1885 LHS = SV; RHS = I->High; MHS = NULL;
1886 } else {
1887 CC = ISD::SETLE;
1888 LHS = I->Low; MHS = SV; RHS = I->High;
1889 }
1890 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1891 I->BB, FallThrough, CurBlock);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001892
1893 // If emitting the first comparison, just call visitSwitchCase to emit the
1894 // code into the current block. Otherwise, push the CaseBlock onto the
1895 // vector to be later processed by SDISel, and insert the node's MBB
1896 // before the next MBB.
1897 if (CurBlock == CurMBB)
1898 visitSwitchCase(CB);
1899 else
1900 SwitchCases.push_back(CB);
1901
1902 CurBlock = FallThrough;
1903 }
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001904
1905 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001906}
1907
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001908static inline bool areJTsAllowed(const TargetLowering &TLI) {
1909 return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1910 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1911}
1912
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001913/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001914bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001915 CaseRecVector& WorkList,
1916 Value* SV,
1917 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001918 Case& FrontCase = *CR.Range.first;
1919 Case& BackCase = *(CR.Range.second-1);
1920
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001921 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1922 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1923
1924 uint64_t TSize = 0;
1925 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1926 I!=E; ++I)
1927 TSize += I->size();
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001928
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001929 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001930 return false;
1931
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001932 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1933 if (Density < 0.4)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001934 return false;
1935
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001936 DOUT << "Lowering jump table\n"
1937 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001938 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001939
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001940 // Get the MachineFunction which holds the current MBB. This is used when
1941 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001942 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001943
1944 // Figure out which block is immediately after the current one.
1945 MachineBasicBlock *NextBlock = 0;
1946 MachineFunction::iterator BBI = CR.CaseBB;
1947
1948 if (++BBI != CurMBB->getParent()->end())
1949 NextBlock = BBI;
1950
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001951 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1952
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001953 // Create a new basic block to hold the code for loading the address
1954 // of the jump table, and jumping to it. Update successor information;
1955 // we will either branch to the default case for the switch, or the jump
1956 // table.
1957 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
1958 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
1959 CR.CaseBB->addSuccessor(Default);
1960 CR.CaseBB->addSuccessor(JumpTableBB);
1961
1962 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001963 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001964 // a case statement, push the case's BB onto the vector, otherwise, push
1965 // the default BB.
1966 std::vector<MachineBasicBlock*> DestBBs;
1967 int64_t TEI = First;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001968 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1969 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1970 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1971
1972 if ((Low <= TEI) && (TEI <= High)) {
1973 DestBBs.push_back(I->BB);
1974 if (TEI==High)
1975 ++I;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001976 } else {
1977 DestBBs.push_back(Default);
1978 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001979 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001980
1981 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001982 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001983 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1984 E = DestBBs.end(); I != E; ++I) {
1985 if (!SuccsHandled[(*I)->getNumber()]) {
1986 SuccsHandled[(*I)->getNumber()] = true;
1987 JumpTableBB->addSuccessor(*I);
1988 }
1989 }
1990
1991 // Create a jump table index for this jump table, or return an existing
1992 // one.
1993 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1994
1995 // Set the jump table information so that we can codegen it as a second
1996 // MachineBasicBlock
Scott Michelf147a8d2007-04-24 01:24:20 +00001997 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001998 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
1999 (CR.CaseBB == CurMBB));
2000 if (CR.CaseBB == CurMBB)
2001 visitJumpTableHeader(JT, JTH);
2002
2003 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002004
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002005 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002006}
2007
2008/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2009/// 2 subtrees.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002010bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002011 CaseRecVector& WorkList,
2012 Value* SV,
2013 MachineBasicBlock* Default) {
2014 // Get the MachineFunction which holds the current MBB. This is used when
2015 // inserting any additional MBBs necessary to represent the switch.
2016 MachineFunction *CurMF = CurMBB->getParent();
2017
2018 // Figure out which block is immediately after the current one.
2019 MachineBasicBlock *NextBlock = 0;
2020 MachineFunction::iterator BBI = CR.CaseBB;
2021
2022 if (++BBI != CurMBB->getParent()->end())
2023 NextBlock = BBI;
2024
2025 Case& FrontCase = *CR.Range.first;
2026 Case& BackCase = *(CR.Range.second-1);
2027 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2028
2029 // Size is the number of Cases represented by this range.
2030 unsigned Size = CR.Range.second - CR.Range.first;
2031
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002032 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2033 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002034 double FMetric = 0;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002035 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002036
2037 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2038 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002039 uint64_t TSize = 0;
2040 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2041 I!=E; ++I)
2042 TSize += I->size();
2043
2044 uint64_t LSize = FrontCase.size();
2045 uint64_t RSize = TSize-LSize;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002046 DOUT << "Selecting best pivot: \n"
2047 << "First: " << First << ", Last: " << Last <<"\n"
2048 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002049 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002050 J!=E; ++I, ++J) {
2051 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2052 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002053 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002054 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2055 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikov54e2b142007-04-09 21:57:03 +00002056 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002057 // Should always split in some non-trivial place
2058 DOUT <<"=>Step\n"
2059 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2060 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2061 << "Metric: " << Metric << "\n";
2062 if (FMetric < Metric) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002063 Pivot = J;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002064 FMetric = Metric;
2065 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002066 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002067
2068 LSize += J->size();
2069 RSize -= J->size();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002070 }
Anton Korobeynikov7294b582007-05-09 20:07:08 +00002071 if (areJTsAllowed(TLI)) {
2072 // If our case is dense we *really* should handle it earlier!
2073 assert((FMetric > 0) && "Should handle dense range earlier!");
2074 } else {
2075 Pivot = CR.Range.first + Size/2;
2076 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002077
2078 CaseRange LHSR(CR.Range.first, Pivot);
2079 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002080 Constant *C = Pivot->Low;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002081 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2082
2083 // We know that we branch to the LHS if the Value being switched on is
2084 // less than the Pivot value, C. We use this to optimize our binary
2085 // tree a bit, by recognizing that if SV is greater than or equal to the
2086 // LHS's Case Value, and that Case Value is exactly one less than the
2087 // Pivot's Value, then we can branch directly to the LHS's Target,
2088 // rather than creating a leaf node for it.
2089 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002090 LHSR.first->High == CR.GE &&
2091 cast<ConstantInt>(C)->getSExtValue() ==
2092 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2093 TrueBB = LHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002094 } else {
2095 TrueBB = new MachineBasicBlock(LLVMBB);
2096 CurMF->getBasicBlockList().insert(BBI, TrueBB);
2097 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2098 }
2099
2100 // Similar to the optimization above, if the Value being switched on is
2101 // known to be less than the Constant CR.LT, and the current Case Value
2102 // is CR.LT - 1, then we can branch directly to the target block for
2103 // the current Case Value, rather than emitting a RHS leaf node for it.
2104 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002105 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2106 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2107 FalseBB = RHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002108 } else {
2109 FalseBB = new MachineBasicBlock(LLVMBB);
2110 CurMF->getBasicBlockList().insert(BBI, FalseBB);
2111 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2112 }
2113
2114 // Create a CaseBlock record representing a conditional branch to
2115 // the LHS node if the value being switched on SV is less than C.
2116 // Otherwise, branch to LHS.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002117 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2118 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002119
2120 if (CR.CaseBB == CurMBB)
2121 visitSwitchCase(CB);
2122 else
2123 SwitchCases.push_back(CB);
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002124
2125 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002126}
2127
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002128/// handleBitTestsSwitchCase - if current case range has few destination and
2129/// range span less, than machine word bitwidth, encode case range into series
2130/// of masks and emit bit tests with these masks.
2131bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2132 CaseRecVector& WorkList,
2133 Value* SV,
Chris Lattner3ff98172007-04-14 02:26:56 +00002134 MachineBasicBlock* Default){
Duncan Sands83ec4b62008-06-06 12:08:01 +00002135 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002136
2137 Case& FrontCase = *CR.Range.first;
2138 Case& BackCase = *(CR.Range.second-1);
2139
2140 // Get the MachineFunction which holds the current MBB. This is used when
2141 // inserting any additional MBBs necessary to represent the switch.
2142 MachineFunction *CurMF = CurMBB->getParent();
2143
2144 unsigned numCmps = 0;
2145 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2146 I!=E; ++I) {
2147 // Single case counts one, case range - two.
2148 if (I->Low == I->High)
2149 numCmps +=1;
2150 else
2151 numCmps +=2;
2152 }
2153
2154 // Count unique destinations
2155 SmallSet<MachineBasicBlock*, 4> Dests;
2156 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2157 Dests.insert(I->BB);
2158 if (Dests.size() > 3)
2159 // Don't bother the code below, if there are too much unique destinations
2160 return false;
2161 }
2162 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2163 << "Total number of comparisons: " << numCmps << "\n";
2164
2165 // Compute span of values.
2166 Constant* minValue = FrontCase.Low;
2167 Constant* maxValue = BackCase.High;
2168 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2169 cast<ConstantInt>(minValue)->getSExtValue();
2170 DOUT << "Compare range: " << range << "\n"
2171 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2172 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2173
Anton Korobeynikovab8fd402007-04-26 20:44:04 +00002174 if (range>=IntPtrBits ||
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002175 (!(Dests.size() == 1 && numCmps >= 3) &&
2176 !(Dests.size() == 2 && numCmps >= 5) &&
2177 !(Dests.size() >= 3 && numCmps >= 6)))
2178 return false;
2179
2180 DOUT << "Emitting bit tests\n";
2181 int64_t lowBound = 0;
2182
2183 // Optimize the case where all the case values fit in a
2184 // word without having to subtract minValue. In this case,
2185 // we can optimize away the subtraction.
2186 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002187 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002188 range = cast<ConstantInt>(maxValue)->getSExtValue();
2189 } else {
2190 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2191 }
2192
2193 CaseBitsVector CasesBits;
2194 unsigned i, count = 0;
2195
2196 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2197 MachineBasicBlock* Dest = I->BB;
2198 for (i = 0; i < count; ++i)
2199 if (Dest == CasesBits[i].BB)
2200 break;
2201
2202 if (i == count) {
2203 assert((count < 3) && "Too much destinations to test!");
2204 CasesBits.push_back(CaseBits(0, Dest, 0));
2205 count++;
2206 }
2207
2208 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2209 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2210
2211 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002212 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002213 CasesBits[i].Bits++;
2214 }
2215
2216 }
2217 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2218
2219 SelectionDAGISel::BitTestInfo BTC;
2220
2221 // Figure out which block is immediately after the current one.
2222 MachineFunction::iterator BBI = CR.CaseBB;
2223 ++BBI;
2224
2225 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2226
2227 DOUT << "Cases:\n";
2228 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2229 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2230 << ", BB: " << CasesBits[i].BB << "\n";
2231
2232 MachineBasicBlock *CaseBB = new MachineBasicBlock(LLVMBB);
2233 CurMF->getBasicBlockList().insert(BBI, CaseBB);
2234 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2235 CaseBB,
2236 CasesBits[i].BB));
2237 }
2238
2239 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohenefc36622007-04-09 14:32:59 +00002240 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002241 CR.CaseBB, Default, BTC);
2242
2243 if (CR.CaseBB == CurMBB)
2244 visitBitTestHeader(BTB);
2245
2246 BitTestCases.push_back(BTB);
2247
2248 return true;
2249}
2250
2251
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002252/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002253unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2254 const SwitchInst& SI) {
2255 unsigned numCmps = 0;
2256
2257 // Start with "simple" cases
2258 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2259 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2260 Cases.push_back(Case(SI.getSuccessorValue(i),
2261 SI.getSuccessorValue(i),
2262 SMBB));
2263 }
Chris Lattnerb3d9cdb2007-11-27 06:14:32 +00002264 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002265
2266 // Merge case into clusters
2267 if (Cases.size()>=2)
David Greenea2a48852007-06-29 03:42:23 +00002268 // Must recompute end() each iteration because it may be
2269 // invalidated by erase if we hold on to it
Chris Lattner27a6c732007-11-24 07:07:01 +00002270 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002271 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2272 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2273 MachineBasicBlock* nextBB = J->BB;
2274 MachineBasicBlock* currentBB = I->BB;
2275
2276 // If the two neighboring cases go to the same destination, merge them
2277 // into a single case.
2278 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2279 I->High = J->High;
2280 J = Cases.erase(J);
2281 } else {
2282 I = J++;
2283 }
2284 }
2285
2286 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2287 if (I->Low != I->High)
2288 // A range counts double, since it requires two compares.
2289 ++numCmps;
2290 }
2291
2292 return numCmps;
2293}
2294
2295void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002296 // Figure out which block is immediately after the current one.
2297 MachineBasicBlock *NextBlock = 0;
2298 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002299
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002300 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002301
Nate Begemanf15485a2006-03-27 01:32:24 +00002302 // If there is only the default destination, branch to it if it is not the
2303 // next basic block. Otherwise, just fall through.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002304 if (SI.getNumOperands() == 2) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002305 // Update machine-CFG edges.
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002306
Nate Begemanf15485a2006-03-27 01:32:24 +00002307 // If this is not a fall-through branch, emit the branch.
Owen Anderson2d389e82008-06-07 00:00:23 +00002308 CurMBB->addSuccessor(Default);
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002309 if (Default != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002310 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002311 DAG.getBasicBlock(Default)));
Owen Anderson2d389e82008-06-07 00:00:23 +00002312
Nate Begemanf15485a2006-03-27 01:32:24 +00002313 return;
2314 }
2315
2316 // If there are any non-default case statements, create a vector of Cases
2317 // representing each one, and sort the vector so that we can efficiently
2318 // create a binary search tree from them.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002319 CaseVector Cases;
2320 unsigned numCmps = Clusterify(Cases, SI);
2321 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2322 << ". Total compares: " << numCmps << "\n";
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002323
Nate Begemanf15485a2006-03-27 01:32:24 +00002324 // Get the Value to be switched on and default basic blocks, which will be
2325 // inserted into CaseBlock records, representing basic blocks in the binary
2326 // search tree.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002327 Value *SV = SI.getOperand(0);
Nate Begeman37efe672006-04-22 18:53:45 +00002328
Nate Begemanf15485a2006-03-27 01:32:24 +00002329 // Push the initial CaseRec onto the worklist
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002330 CaseRecVector WorkList;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002331 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2332
2333 while (!WorkList.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002334 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002335 CaseRec CR = WorkList.back();
2336 WorkList.pop_back();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002337
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002338 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2339 continue;
2340
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002341 // If the range has few cases (two or less) emit a series of specific
2342 // tests.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002343 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2344 continue;
2345
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002346 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002347 // target supports indirect branches, then emit a jump table rather than
2348 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002349 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2350 continue;
2351
2352 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2353 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2354 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemanf15485a2006-03-27 01:32:24 +00002355 }
2356}
2357
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002358
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002359void SelectionDAGLowering::visitSub(User &I) {
2360 // -0.0 - X --> fneg
Reid Spencer24d6da52007-01-21 00:29:26 +00002361 const Type *Ty = I.getType();
Reid Spencer9d6565a2007-02-15 02:26:10 +00002362 if (isa<VectorType>(Ty)) {
Dan Gohman7f321562007-06-25 16:23:39 +00002363 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2364 const VectorType *DestTy = cast<VectorType>(I.getType());
2365 const Type *ElTy = DestTy->getElementType();
Evan Chengc45453f2007-06-29 21:44:35 +00002366 if (ElTy->isFloatingPoint()) {
2367 unsigned VL = DestTy->getNumElements();
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002368 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Evan Chengc45453f2007-06-29 21:44:35 +00002369 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2370 if (CV == CNZ) {
2371 SDOperand Op2 = getValue(I.getOperand(1));
2372 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2373 return;
2374 }
Dan Gohman7f321562007-06-25 16:23:39 +00002375 }
2376 }
2377 }
2378 if (Ty->isFloatingPoint()) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002379 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002380 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002381 SDOperand Op2 = getValue(I.getOperand(1));
2382 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2383 return;
2384 }
Dan Gohman7f321562007-06-25 16:23:39 +00002385 }
2386
2387 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002388}
2389
Dan Gohman7f321562007-06-25 16:23:39 +00002390void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00002391 SDOperand Op1 = getValue(I.getOperand(0));
2392 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer24d6da52007-01-21 00:29:26 +00002393
2394 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer1628cec2006-10-26 06:15:43 +00002395}
2396
Nate Begemane21ea612005-11-18 07:42:56 +00002397void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2398 SDOperand Op1 = getValue(I.getOperand(0));
2399 SDOperand Op2 = getValue(I.getOperand(1));
2400
Duncan Sands8e4eb092008-06-08 20:54:56 +00002401 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002402 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002403 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002404 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
Nate Begemane21ea612005-11-18 07:42:56 +00002405
Chris Lattner1c08c712005-01-07 07:47:53 +00002406 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2407}
2408
Reid Spencer45fb3f32006-11-20 01:22:35 +00002409void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002410 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2411 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2412 predicate = IC->getPredicate();
2413 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2414 predicate = ICmpInst::Predicate(IC->getPredicate());
2415 SDOperand Op1 = getValue(I.getOperand(0));
2416 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer45fb3f32006-11-20 01:22:35 +00002417 ISD::CondCode Opcode;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002418 switch (predicate) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002419 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2420 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2421 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2422 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2423 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2424 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2425 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2426 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2427 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2428 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2429 default:
2430 assert(!"Invalid ICmp predicate value");
2431 Opcode = ISD::SETEQ;
2432 break;
2433 }
2434 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2435}
2436
2437void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002438 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2439 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2440 predicate = FC->getPredicate();
2441 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2442 predicate = FCmpInst::Predicate(FC->getPredicate());
Chris Lattner1c08c712005-01-07 07:47:53 +00002443 SDOperand Op1 = getValue(I.getOperand(0));
2444 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002445 ISD::CondCode Condition, FOC, FPC;
2446 switch (predicate) {
2447 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2448 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2449 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2450 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2451 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2452 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2453 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmancba3b442008-05-01 23:40:44 +00002454 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2455 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002456 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2457 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2458 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2459 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2460 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2461 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2462 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2463 default:
2464 assert(!"Invalid FCmp predicate value");
2465 FOC = FPC = ISD::SETFALSE;
2466 break;
2467 }
2468 if (FiniteOnlyFPMath())
2469 Condition = FOC;
2470 else
2471 Condition = FPC;
2472 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner1c08c712005-01-07 07:47:53 +00002473}
2474
Nate Begemanb43e9c12008-05-12 19:40:03 +00002475void SelectionDAGLowering::visitVICmp(User &I) {
2476 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2477 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2478 predicate = IC->getPredicate();
2479 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2480 predicate = ICmpInst::Predicate(IC->getPredicate());
2481 SDOperand Op1 = getValue(I.getOperand(0));
2482 SDOperand Op2 = getValue(I.getOperand(1));
2483 ISD::CondCode Opcode;
2484 switch (predicate) {
2485 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2486 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2487 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2488 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2489 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2490 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2491 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2492 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2493 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2494 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2495 default:
2496 assert(!"Invalid ICmp predicate value");
2497 Opcode = ISD::SETEQ;
2498 break;
2499 }
2500 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2501}
2502
2503void SelectionDAGLowering::visitVFCmp(User &I) {
2504 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2505 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2506 predicate = FC->getPredicate();
2507 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2508 predicate = FCmpInst::Predicate(FC->getPredicate());
2509 SDOperand Op1 = getValue(I.getOperand(0));
2510 SDOperand Op2 = getValue(I.getOperand(1));
2511 ISD::CondCode Condition, FOC, FPC;
2512 switch (predicate) {
2513 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2514 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2515 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2516 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2517 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2518 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2519 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2520 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2521 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2522 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2523 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2524 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2525 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2526 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2527 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2528 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2529 default:
2530 assert(!"Invalid VFCmp predicate value");
2531 FOC = FPC = ISD::SETFALSE;
2532 break;
2533 }
2534 if (FiniteOnlyFPMath())
2535 Condition = FOC;
2536 else
2537 Condition = FPC;
2538
Duncan Sands83ec4b62008-06-06 12:08:01 +00002539 MVT DestVT = TLI.getValueType(I.getType());
Nate Begemanb43e9c12008-05-12 19:40:03 +00002540
2541 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2542}
2543
Chris Lattner1c08c712005-01-07 07:47:53 +00002544void SelectionDAGLowering::visitSelect(User &I) {
2545 SDOperand Cond = getValue(I.getOperand(0));
2546 SDOperand TrueVal = getValue(I.getOperand(1));
2547 SDOperand FalseVal = getValue(I.getOperand(2));
Dan Gohman7f321562007-06-25 16:23:39 +00002548 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2549 TrueVal, FalseVal));
Chris Lattner1c08c712005-01-07 07:47:53 +00002550}
2551
Reid Spencer3da59db2006-11-27 01:05:10 +00002552
2553void SelectionDAGLowering::visitTrunc(User &I) {
2554 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2555 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002556 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002557 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2558}
2559
2560void SelectionDAGLowering::visitZExt(User &I) {
2561 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2562 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2563 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002564 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002565 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2566}
2567
2568void SelectionDAGLowering::visitSExt(User &I) {
2569 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2570 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2571 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002572 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002573 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2574}
2575
2576void SelectionDAGLowering::visitFPTrunc(User &I) {
2577 // FPTrunc is never a no-op cast, no need to check
2578 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002579 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner0bd48932008-01-17 07:00:52 +00002580 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Reid Spencer3da59db2006-11-27 01:05:10 +00002581}
2582
2583void SelectionDAGLowering::visitFPExt(User &I){
2584 // FPTrunc is never a no-op cast, no need to check
2585 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002586 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002587 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2588}
2589
2590void SelectionDAGLowering::visitFPToUI(User &I) {
2591 // FPToUI is never a no-op cast, no need to check
2592 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002593 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002594 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2595}
2596
2597void SelectionDAGLowering::visitFPToSI(User &I) {
2598 // FPToSI is never a no-op cast, no need to check
2599 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002600 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002601 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2602}
2603
2604void SelectionDAGLowering::visitUIToFP(User &I) {
2605 // UIToFP is never a no-op cast, no need to check
2606 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002607 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002608 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2609}
2610
2611void SelectionDAGLowering::visitSIToFP(User &I){
2612 // UIToFP is never a no-op cast, no need to check
2613 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002614 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002615 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2616}
2617
2618void SelectionDAGLowering::visitPtrToInt(User &I) {
2619 // What to do depends on the size of the integer and the size of the pointer.
2620 // We can either truncate, zero extend, or no-op, accordingly.
Chris Lattner1c08c712005-01-07 07:47:53 +00002621 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002622 MVT SrcVT = N.getValueType();
2623 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002624 SDOperand Result;
Duncan Sands8e4eb092008-06-08 20:54:56 +00002625 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002626 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2627 else
2628 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2629 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2630 setValue(&I, Result);
2631}
Chris Lattner1c08c712005-01-07 07:47:53 +00002632
Reid Spencer3da59db2006-11-27 01:05:10 +00002633void SelectionDAGLowering::visitIntToPtr(User &I) {
2634 // What to do depends on the size of the integer and the size of the pointer.
2635 // We can either truncate, zero extend, or no-op, accordingly.
2636 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002637 MVT SrcVT = N.getValueType();
2638 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sands8e4eb092008-06-08 20:54:56 +00002639 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002640 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2641 else
2642 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2643 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2644}
2645
2646void SelectionDAGLowering::visitBitCast(User &I) {
2647 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002648 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002649
2650 // BitCast assures us that source and destination are the same size so this
2651 // is either a BIT_CONVERT or a no-op.
2652 if (DestVT != N.getValueType())
2653 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2654 else
2655 setValue(&I, N); // noop cast.
Chris Lattner1c08c712005-01-07 07:47:53 +00002656}
2657
Chris Lattner2bbd8102006-03-29 00:11:43 +00002658void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00002659 SDOperand InVec = getValue(I.getOperand(0));
2660 SDOperand InVal = getValue(I.getOperand(1));
2661 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2662 getValue(I.getOperand(2)));
2663
Dan Gohman7f321562007-06-25 16:23:39 +00002664 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2665 TLI.getValueType(I.getType()),
2666 InVec, InVal, InIdx));
Chris Lattnerc7029802006-03-18 01:44:44 +00002667}
2668
Chris Lattner2bbd8102006-03-29 00:11:43 +00002669void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00002670 SDOperand InVec = getValue(I.getOperand(0));
2671 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2672 getValue(I.getOperand(1)));
Dan Gohman7f321562007-06-25 16:23:39 +00002673 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner384504c2006-03-21 20:44:12 +00002674 TLI.getValueType(I.getType()), InVec, InIdx));
2675}
Chris Lattnerc7029802006-03-18 01:44:44 +00002676
Chris Lattner3e104b12006-04-08 04:15:24 +00002677void SelectionDAGLowering::visitShuffleVector(User &I) {
2678 SDOperand V1 = getValue(I.getOperand(0));
2679 SDOperand V2 = getValue(I.getOperand(1));
2680 SDOperand Mask = getValue(I.getOperand(2));
2681
Dan Gohman7f321562007-06-25 16:23:39 +00002682 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2683 TLI.getValueType(I.getType()),
2684 V1, V2, Mask));
Chris Lattner3e104b12006-04-08 04:15:24 +00002685}
2686
Dan Gohman1d685a42008-06-07 02:02:36 +00002687void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2688 const Value *Op0 = I.getOperand(0);
2689 const Value *Op1 = I.getOperand(1);
2690 const Type *AggTy = I.getType();
2691 const Type *ValTy = Op1->getType();
2692 bool IntoUndef = isa<UndefValue>(Op0);
2693 bool FromUndef = isa<UndefValue>(Op1);
2694
2695 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2696 I.idx_begin(), I.idx_end());
2697
2698 SmallVector<MVT, 4> AggValueVTs;
2699 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2700 SmallVector<MVT, 4> ValValueVTs;
2701 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2702
2703 unsigned NumAggValues = AggValueVTs.size();
2704 unsigned NumValValues = ValValueVTs.size();
2705 SmallVector<SDOperand, 4> Values(NumAggValues);
2706
2707 SDOperand Agg = getValue(Op0);
2708 SDOperand Val = getValue(Op1);
2709 unsigned i = 0;
2710 // Copy the beginning value(s) from the original aggregate.
2711 for (; i != LinearIndex; ++i)
2712 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2713 SDOperand(Agg.Val, Agg.ResNo + i);
2714 // Copy values from the inserted value(s).
2715 for (; i != LinearIndex + NumValValues; ++i)
2716 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2717 SDOperand(Val.Val, Val.ResNo + i - LinearIndex);
2718 // Copy remaining value(s) from the original aggregate.
2719 for (; i != NumAggValues; ++i)
2720 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2721 SDOperand(Agg.Val, Agg.ResNo + i);
2722
Duncan Sandsf9516202008-06-30 10:19:09 +00002723 setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2724 &Values[0], NumAggValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002725}
2726
Dan Gohman1d685a42008-06-07 02:02:36 +00002727void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2728 const Value *Op0 = I.getOperand(0);
2729 const Type *AggTy = Op0->getType();
2730 const Type *ValTy = I.getType();
2731 bool OutOfUndef = isa<UndefValue>(Op0);
2732
2733 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2734 I.idx_begin(), I.idx_end());
2735
2736 SmallVector<MVT, 4> ValValueVTs;
2737 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2738
2739 unsigned NumValValues = ValValueVTs.size();
2740 SmallVector<SDOperand, 4> Values(NumValValues);
2741
2742 SDOperand Agg = getValue(Op0);
2743 // Copy out the selected value(s).
2744 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2745 Values[i - LinearIndex] =
Dan Gohmandded0fd2008-06-20 00:54:19 +00002746 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
2747 SDOperand(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002748
Duncan Sandsf9516202008-06-30 10:19:09 +00002749 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2750 &Values[0], NumValValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002751}
2752
Chris Lattner3e104b12006-04-08 04:15:24 +00002753
Chris Lattner1c08c712005-01-07 07:47:53 +00002754void SelectionDAGLowering::visitGetElementPtr(User &I) {
2755 SDOperand N = getValue(I.getOperand(0));
2756 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00002757
2758 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2759 OI != E; ++OI) {
2760 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002761 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002762 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner1c08c712005-01-07 07:47:53 +00002763 if (Field) {
2764 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +00002765 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner1c08c712005-01-07 07:47:53 +00002766 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner0bd48932008-01-17 07:00:52 +00002767 DAG.getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00002768 }
2769 Ty = StTy->getElementType(Field);
2770 } else {
2771 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00002772
Chris Lattner7c0104b2005-11-09 04:45:33 +00002773 // If this is a constant subscript, handle it quickly.
2774 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002775 if (CI->getZExtValue() == 0) continue;
Reid Spencer47857812006-12-31 05:55:36 +00002776 uint64_t Offs =
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002777 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00002778 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2779 DAG.getIntPtrConstant(Offs));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002780 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00002781 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00002782
2783 // N = N + Idx * ElementSize;
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002784 uint64_t ElementSize = TD->getABITypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002785 SDOperand IdxN = getValue(Idx);
2786
2787 // If the index is smaller or larger than intptr_t, truncate or extend
2788 // it.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002789 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +00002790 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002791 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Chris Lattner7c0104b2005-11-09 04:45:33 +00002792 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2793
2794 // If this is a multiply by a power of two, turn it into a shl
2795 // immediately. This is a very common case.
2796 if (isPowerOf2_64(ElementSize)) {
2797 unsigned Amt = Log2_64(ElementSize);
2798 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00002799 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002800 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2801 continue;
2802 }
2803
Chris Lattner0bd48932008-01-17 07:00:52 +00002804 SDOperand Scale = DAG.getIntPtrConstant(ElementSize);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002805 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2806 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00002807 }
2808 }
2809 setValue(&I, N);
2810}
2811
2812void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2813 // If this is a fixed sized alloca in the entry block of the function,
2814 // allocate it statically on the stack.
2815 if (FuncInfo.StaticAllocaMap.count(&I))
2816 return; // getValue will auto-populate this.
2817
2818 const Type *Ty = I.getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +00002819 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00002820 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00002821 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner58092e32007-01-20 22:35:55 +00002822 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00002823
2824 SDOperand AllocSize = getValue(I.getArraySize());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002825 MVT IntPtr = TLI.getPointerTy();
Duncan Sands8e4eb092008-06-08 20:54:56 +00002826 if (IntPtr.bitsLT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002827 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002828 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002829 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00002830
Chris Lattner68cd65e2005-01-22 23:04:37 +00002831 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002832 DAG.getIntPtrConstant(TySize));
Chris Lattner1c08c712005-01-07 07:47:53 +00002833
Evan Cheng45157792007-08-16 23:46:29 +00002834 // Handle alignment. If the requested alignment is less than or equal to
2835 // the stack alignment, ignore it. If the size is greater than or equal to
2836 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner1c08c712005-01-07 07:47:53 +00002837 unsigned StackAlign =
2838 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng45157792007-08-16 23:46:29 +00002839 if (Align <= StackAlign)
Chris Lattner1c08c712005-01-07 07:47:53 +00002840 Align = 0;
Evan Cheng45157792007-08-16 23:46:29 +00002841
2842 // Round the size of the allocation up to the stack alignment size
2843 // by add SA-1 to the size.
2844 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002845 DAG.getIntPtrConstant(StackAlign-1));
Evan Cheng45157792007-08-16 23:46:29 +00002846 // Mask out the low bits for alignment purposes.
2847 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002848 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner1c08c712005-01-07 07:47:53 +00002849
Chris Lattner0bd48932008-01-17 07:00:52 +00002850 SDOperand Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands83ec4b62008-06-06 12:08:01 +00002851 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002852 MVT::Other);
2853 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner0da331f2007-02-04 01:31:47 +00002854 setValue(&I, DSA);
2855 DAG.setRoot(DSA.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002856
2857 // Inform the Frame Information that we have just allocated a variable-sized
2858 // object.
2859 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2860}
2861
Chris Lattner1c08c712005-01-07 07:47:53 +00002862void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002863 const Value *SV = I.getOperand(0);
2864 SDOperand Ptr = getValue(SV);
2865
2866 const Type *Ty = I.getType();
2867 bool isVolatile = I.isVolatile();
2868 unsigned Alignment = I.getAlignment();
2869
2870 SmallVector<MVT, 4> ValueVTs;
2871 SmallVector<uint64_t, 4> Offsets;
2872 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2873 unsigned NumValues = ValueVTs.size();
2874 if (NumValues == 0)
2875 return;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002876
Chris Lattnerd3948112005-01-17 22:19:26 +00002877 SDOperand Root;
2878 if (I.isVolatile())
2879 Root = getRoot();
2880 else {
2881 // Do not serialize non-volatile loads against each other.
2882 Root = DAG.getRoot();
2883 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002884
Dan Gohman1d685a42008-06-07 02:02:36 +00002885 SmallVector<SDOperand, 4> Values(NumValues);
2886 SmallVector<SDOperand, 4> Chains(NumValues);
2887 MVT PtrVT = Ptr.getValueType();
2888 for (unsigned i = 0; i != NumValues; ++i) {
2889 SDOperand L = DAG.getLoad(ValueVTs[i], Root,
2890 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2891 DAG.getConstant(Offsets[i], PtrVT)),
2892 SV, Offsets[i],
2893 isVolatile, Alignment);
2894 Values[i] = L;
2895 Chains[i] = L.getValue(1);
2896 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002897
Dan Gohman1d685a42008-06-07 02:02:36 +00002898 SDOperand Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2899 &Chains[0], NumValues);
2900 if (isVolatile)
2901 DAG.setRoot(Chain);
2902 else
2903 PendingLoads.push_back(Chain);
2904
Duncan Sandsf9516202008-06-30 10:19:09 +00002905 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2906 &Values[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002907}
2908
2909
2910void SelectionDAGLowering::visitStore(StoreInst &I) {
2911 Value *SrcV = I.getOperand(0);
2912 SDOperand Src = getValue(SrcV);
Dan Gohman1d685a42008-06-07 02:02:36 +00002913 Value *PtrV = I.getOperand(1);
2914 SDOperand Ptr = getValue(PtrV);
2915
2916 SmallVector<MVT, 4> ValueVTs;
2917 SmallVector<uint64_t, 4> Offsets;
2918 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2919 unsigned NumValues = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002920 if (NumValues == 0)
2921 return;
Dan Gohman1d685a42008-06-07 02:02:36 +00002922
2923 SDOperand Root = getRoot();
2924 SmallVector<SDOperand, 4> Chains(NumValues);
2925 MVT PtrVT = Ptr.getValueType();
2926 bool isVolatile = I.isVolatile();
2927 unsigned Alignment = I.getAlignment();
2928 for (unsigned i = 0; i != NumValues; ++i)
2929 Chains[i] = DAG.getStore(Root, SDOperand(Src.Val, Src.ResNo + i),
2930 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2931 DAG.getConstant(Offsets[i], PtrVT)),
2932 PtrV, Offsets[i],
2933 isVolatile, Alignment);
2934
2935 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002936}
2937
Chris Lattner0eade312006-03-24 02:22:33 +00002938/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2939/// node.
2940void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2941 unsigned Intrinsic) {
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002942 bool HasChain = !I.doesNotAccessMemory();
2943 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2944
Chris Lattner0eade312006-03-24 02:22:33 +00002945 // Build the operand list.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002946 SmallVector<SDOperand, 8> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00002947 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2948 if (OnlyLoad) {
2949 // We don't need to serialize loads against other loads.
2950 Ops.push_back(DAG.getRoot());
2951 } else {
2952 Ops.push_back(getRoot());
2953 }
2954 }
Chris Lattner0eade312006-03-24 02:22:33 +00002955
2956 // Add the intrinsic ID as an integer operand.
2957 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2958
2959 // Add all operands of the call to the operand list.
2960 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2961 SDOperand Op = getValue(I.getOperand(i));
Chris Lattner0eade312006-03-24 02:22:33 +00002962 assert(TLI.isTypeLegal(Op.getValueType()) &&
2963 "Intrinsic uses a non-legal type?");
2964 Ops.push_back(Op);
2965 }
2966
Duncan Sands83ec4b62008-06-06 12:08:01 +00002967 std::vector<MVT> VTs;
Chris Lattner0eade312006-03-24 02:22:33 +00002968 if (I.getType() != Type::VoidTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002969 MVT VT = TLI.getValueType(I.getType());
2970 if (VT.isVector()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002971 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002972 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Chris Lattner0eade312006-03-24 02:22:33 +00002973
Duncan Sands83ec4b62008-06-06 12:08:01 +00002974 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Chris Lattner0eade312006-03-24 02:22:33 +00002975 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2976 }
2977
2978 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2979 VTs.push_back(VT);
2980 }
2981 if (HasChain)
2982 VTs.push_back(MVT::Other);
2983
Duncan Sands83ec4b62008-06-06 12:08:01 +00002984 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002985
Chris Lattner0eade312006-03-24 02:22:33 +00002986 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00002987 SDOperand Result;
2988 if (!HasChain)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002989 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2990 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002991 else if (I.getType() != Type::VoidTy)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002992 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2993 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002994 else
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002995 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
2996 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002997
Chris Lattnere58a7802006-04-02 03:41:14 +00002998 if (HasChain) {
2999 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
3000 if (OnlyLoad)
3001 PendingLoads.push_back(Chain);
3002 else
3003 DAG.setRoot(Chain);
3004 }
Chris Lattner0eade312006-03-24 02:22:33 +00003005 if (I.getType() != Type::VoidTy) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003006 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003007 MVT VT = TLI.getValueType(PTy);
Dan Gohman7f321562007-06-25 16:23:39 +00003008 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattner0eade312006-03-24 02:22:33 +00003009 }
3010 setValue(&I, Result);
3011 }
3012}
3013
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003014/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003015static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003016 V = V->stripPointerCasts();
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003017 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003018 assert ((GV || isa<ConstantPointerNull>(V)) &&
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003019 "TypeInfo must be a global variable or NULL");
3020 return GV;
3021}
3022
Duncan Sandsf4070822007-06-15 19:04:19 +00003023/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003024/// call, and add them to the specified machine basic block.
Duncan Sandsf4070822007-06-15 19:04:19 +00003025static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3026 MachineBasicBlock *MBB) {
3027 // Inform the MachineModuleInfo of the personality for this landing pad.
3028 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3029 assert(CE->getOpcode() == Instruction::BitCast &&
3030 isa<Function>(CE->getOperand(0)) &&
3031 "Personality should be a function");
3032 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3033
3034 // Gather all the type infos for this landing pad and pass them along to
3035 // MachineModuleInfo.
3036 std::vector<GlobalVariable *> TyInfo;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003037 unsigned N = I.getNumOperands();
3038
3039 for (unsigned i = N - 1; i > 2; --i) {
3040 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3041 unsigned FilterLength = CI->getZExtValue();
Duncan Sands6590b042007-08-27 15:47:50 +00003042 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003043 assert (FirstCatch <= N && "Invalid filter length");
3044
3045 if (FirstCatch < N) {
3046 TyInfo.reserve(N - FirstCatch);
3047 for (unsigned j = FirstCatch; j < N; ++j)
3048 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3049 MMI->addCatchTypeInfo(MBB, TyInfo);
3050 TyInfo.clear();
3051 }
3052
Duncan Sands6590b042007-08-27 15:47:50 +00003053 if (!FilterLength) {
3054 // Cleanup.
3055 MMI->addCleanup(MBB);
3056 } else {
3057 // Filter.
3058 TyInfo.reserve(FilterLength - 1);
3059 for (unsigned j = i + 1; j < FirstCatch; ++j)
3060 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3061 MMI->addFilterTypeInfo(MBB, TyInfo);
3062 TyInfo.clear();
3063 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003064
3065 N = i;
3066 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003067 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003068
3069 if (N > 3) {
3070 TyInfo.reserve(N - 3);
3071 for (unsigned j = 3; j < N; ++j)
3072 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sandsf4070822007-06-15 19:04:19 +00003073 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003074 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003075}
3076
Mon P Wang63307c32008-05-05 19:05:59 +00003077
3078/// Inlined utility function to implement binary input atomic intrinsics for
3079// visitIntrinsicCall: I is a call instruction
3080// Op is the associated NodeType for I
3081const char *
3082SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
3083 SDOperand Root = getRoot();
Mon P Wang63307c32008-05-05 19:05:59 +00003084 SDOperand L = DAG.getAtomic(Op, Root,
3085 getValue(I.getOperand(1)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003086 getValue(I.getOperand(2)),
Mon P Wang28873102008-06-25 08:15:39 +00003087 I.getOperand(1));
Mon P Wang63307c32008-05-05 19:05:59 +00003088 setValue(&I, L);
3089 DAG.setRoot(L.getValue(1));
3090 return 0;
3091}
3092
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003093/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3094/// we want to emit this as a call to a named external function, return the name
3095/// otherwise lower it and return null.
3096const char *
3097SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3098 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00003099 default:
3100 // By default, turn this into a target intrinsic node.
3101 visitTargetIntrinsic(I, Intrinsic);
3102 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003103 case Intrinsic::vastart: visitVAStart(I); return 0;
3104 case Intrinsic::vaend: visitVAEnd(I); return 0;
3105 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemanbcc5f362007-01-29 22:58:52 +00003106 case Intrinsic::returnaddress:
3107 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3108 getValue(I.getOperand(1))));
3109 return 0;
3110 case Intrinsic::frameaddress:
3111 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3112 getValue(I.getOperand(1))));
3113 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003114 case Intrinsic::setjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003115 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003116 break;
3117 case Intrinsic::longjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003118 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003119 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00003120 case Intrinsic::memcpy_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003121 case Intrinsic::memcpy_i64: {
3122 SDOperand Op1 = getValue(I.getOperand(1));
3123 SDOperand Op2 = getValue(I.getOperand(2));
3124 SDOperand Op3 = getValue(I.getOperand(3));
3125 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3126 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3127 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003128 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003129 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003130 case Intrinsic::memset_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003131 case Intrinsic::memset_i64: {
3132 SDOperand Op1 = getValue(I.getOperand(1));
3133 SDOperand Op2 = getValue(I.getOperand(2));
3134 SDOperand Op3 = getValue(I.getOperand(3));
3135 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3136 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3137 I.getOperand(1), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003138 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003139 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003140 case Intrinsic::memmove_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003141 case Intrinsic::memmove_i64: {
3142 SDOperand Op1 = getValue(I.getOperand(1));
3143 SDOperand Op2 = getValue(I.getOperand(2));
3144 SDOperand Op3 = getValue(I.getOperand(3));
3145 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3146
3147 // If the source and destination are known to not be aliases, we can
3148 // lower memmove as memcpy.
3149 uint64_t Size = -1ULL;
3150 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3151 Size = C->getValue();
3152 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3153 AliasAnalysis::NoAlias) {
3154 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3155 I.getOperand(1), 0, I.getOperand(2), 0));
3156 return 0;
3157 }
3158
3159 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3160 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003161 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003162 }
Chris Lattner86cb6432005-12-13 17:40:33 +00003163 case Intrinsic::dbg_stoppoint: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003164 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003165 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003166 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003167 SDOperand Ops[5];
Chris Lattner36ce6912005-11-29 06:21:05 +00003168
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003169 Ops[0] = getRoot();
3170 Ops[1] = getValue(SPI.getLineValue());
3171 Ops[2] = getValue(SPI.getColumnValue());
Chris Lattner36ce6912005-11-29 06:21:05 +00003172
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003173 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00003174 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00003175 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
3176
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003177 Ops[3] = DAG.getString(CompileUnit->getFileName());
3178 Ops[4] = DAG.getString(CompileUnit->getDirectory());
Jim Laskeyce72b172006-02-11 01:01:30 +00003179
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003180 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops, 5));
Chris Lattner86cb6432005-12-13 17:40:33 +00003181 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003182
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003183 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00003184 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003185 case Intrinsic::dbg_region_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003186 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003187 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003188 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3189 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Jim Laskey1ee29252007-01-26 14:34:52 +00003190 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003191 DAG.getConstant(LabelID, MVT::i32),
3192 DAG.getConstant(0, MVT::i32)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003193 }
3194
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003195 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003196 }
3197 case Intrinsic::dbg_region_end: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003198 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003199 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003200 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3201 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Evan Chengbb81d972008-01-31 09:59:15 +00003202 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
3203 DAG.getConstant(LabelID, MVT::i32),
3204 DAG.getConstant(0, MVT::i32)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003205 }
3206
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003207 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003208 }
3209 case Intrinsic::dbg_func_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003210 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003211 if (!MMI) return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003212 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003213 Value *SP = FSI.getSubprogram();
3214 if (SP && MMI->Verify(SP)) {
3215 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3216 // what (most?) gdb expects.
3217 DebugInfoDesc *DD = MMI->getDescFor(SP);
3218 assert(DD && "Not a debug information descriptor");
3219 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3220 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
3221 unsigned SrcFile = MMI->RecordSource(CompileUnit->getDirectory(),
3222 CompileUnit->getFileName());
3223 // Record the source line but does create a label. It will be emitted
3224 // at asm emission time.
3225 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Jim Laskey43970fe2006-03-23 18:06:46 +00003226 }
3227
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003228 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003229 }
3230 case Intrinsic::dbg_declare: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003231 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003232 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Chenga844bde2008-02-02 04:07:54 +00003233 Value *Variable = DI.getVariable();
3234 if (MMI && Variable && MMI->Verify(Variable))
3235 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3236 getValue(DI.getAddress()), getValue(Variable)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003237 return 0;
3238 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003239
Jim Laskeyb180aa12007-02-21 22:53:45 +00003240 case Intrinsic::eh_exception: {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003241 if (!CurMBB->isLandingPad()) {
3242 // FIXME: Mark exception register as live in. Hack for PR1508.
3243 unsigned Reg = TLI.getExceptionAddressRegister();
3244 if (Reg) CurMBB->addLiveIn(Reg);
Jim Laskey735b6f82007-02-22 15:38:06 +00003245 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003246 // Insert the EXCEPTIONADDR instruction.
3247 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3248 SDOperand Ops[1];
3249 Ops[0] = DAG.getRoot();
3250 SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
3251 setValue(&I, Op);
3252 DAG.setRoot(Op.getValue(1));
Jim Laskeyb180aa12007-02-21 22:53:45 +00003253 return 0;
3254 }
3255
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003256 case Intrinsic::eh_selector_i32:
3257 case Intrinsic::eh_selector_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003258 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003259 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003260 MVT::i32 : MVT::i64);
3261
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003262 if (MMI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00003263 if (CurMBB->isLandingPad())
3264 addCatchInfo(I, MMI, CurMBB);
Evan Chenge47c3332007-06-27 18:45:32 +00003265 else {
Duncan Sandsf4070822007-06-15 19:04:19 +00003266#ifndef NDEBUG
Duncan Sandsf4070822007-06-15 19:04:19 +00003267 FuncInfo.CatchInfoLost.insert(&I);
3268#endif
Duncan Sands90291952007-07-06 09:18:59 +00003269 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3270 unsigned Reg = TLI.getExceptionSelectorRegister();
3271 if (Reg) CurMBB->addLiveIn(Reg);
Evan Chenge47c3332007-06-27 18:45:32 +00003272 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003273
3274 // Insert the EHSELECTION instruction.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003275 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Jim Laskey735b6f82007-02-22 15:38:06 +00003276 SDOperand Ops[2];
3277 Ops[0] = getValue(I.getOperand(1));
3278 Ops[1] = getRoot();
3279 SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
3280 setValue(&I, Op);
3281 DAG.setRoot(Op.getValue(1));
Jim Laskey7a1de982007-02-24 09:45:44 +00003282 } else {
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003283 setValue(&I, DAG.getConstant(0, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003284 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003285
3286 return 0;
3287 }
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003288
3289 case Intrinsic::eh_typeid_for_i32:
3290 case Intrinsic::eh_typeid_for_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003291 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003292 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003293 MVT::i32 : MVT::i64);
Jim Laskeyb180aa12007-02-21 22:53:45 +00003294
Jim Laskey735b6f82007-02-22 15:38:06 +00003295 if (MMI) {
3296 // Find the type id for the given typeinfo.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003297 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands3b346362007-05-04 17:12:26 +00003298
Jim Laskey735b6f82007-02-22 15:38:06 +00003299 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003300 setValue(&I, DAG.getConstant(TypeID, VT));
Jim Laskey7a1de982007-02-24 09:45:44 +00003301 } else {
Duncan Sandsf664e412007-07-06 14:46:23 +00003302 // Return something different to eh_selector.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003303 setValue(&I, DAG.getConstant(1, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003304 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003305
3306 return 0;
3307 }
3308
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003309 case Intrinsic::eh_return: {
3310 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3311
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003312 if (MMI) {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003313 MMI->setCallsEHReturn(true);
3314 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3315 MVT::Other,
Dan Gohman86e1ebf2008-03-27 19:56:19 +00003316 getControlRoot(),
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003317 getValue(I.getOperand(1)),
3318 getValue(I.getOperand(2))));
3319 } else {
3320 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3321 }
3322
3323 return 0;
3324 }
3325
3326 case Intrinsic::eh_unwind_init: {
3327 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3328 MMI->setCallsUnwindInit(true);
3329 }
3330
3331 return 0;
3332 }
3333
3334 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003335 MVT VT = getValue(I.getOperand(1)).getValueType();
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003336 SDOperand CfaArg;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003337 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003338 CfaArg = DAG.getNode(ISD::TRUNCATE,
3339 TLI.getPointerTy(), getValue(I.getOperand(1)));
3340 else
3341 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3342 TLI.getPointerTy(), getValue(I.getOperand(1)));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003343
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003344 SDOperand Offset = DAG.getNode(ISD::ADD,
3345 TLI.getPointerTy(),
3346 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3347 TLI.getPointerTy()),
3348 CfaArg);
3349 setValue(&I, DAG.getNode(ISD::ADD,
3350 TLI.getPointerTy(),
3351 DAG.getNode(ISD::FRAMEADDR,
3352 TLI.getPointerTy(),
3353 DAG.getConstant(0,
3354 TLI.getPointerTy())),
3355 Offset));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003356 return 0;
3357 }
3358
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003359 case Intrinsic::sqrt:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003360 setValue(&I, DAG.getNode(ISD::FSQRT,
3361 getValue(I.getOperand(1)).getValueType(),
3362 getValue(I.getOperand(1))));
3363 return 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003364 case Intrinsic::powi:
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003365 setValue(&I, DAG.getNode(ISD::FPOWI,
3366 getValue(I.getOperand(1)).getValueType(),
3367 getValue(I.getOperand(1)),
3368 getValue(I.getOperand(2))));
3369 return 0;
Dan Gohmanac9385a2007-10-12 00:01:22 +00003370 case Intrinsic::sin:
3371 setValue(&I, DAG.getNode(ISD::FSIN,
3372 getValue(I.getOperand(1)).getValueType(),
3373 getValue(I.getOperand(1))));
3374 return 0;
3375 case Intrinsic::cos:
3376 setValue(&I, DAG.getNode(ISD::FCOS,
3377 getValue(I.getOperand(1)).getValueType(),
3378 getValue(I.getOperand(1))));
3379 return 0;
3380 case Intrinsic::pow:
3381 setValue(&I, DAG.getNode(ISD::FPOW,
3382 getValue(I.getOperand(1)).getValueType(),
3383 getValue(I.getOperand(1)),
3384 getValue(I.getOperand(2))));
3385 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003386 case Intrinsic::pcmarker: {
3387 SDOperand Tmp = getValue(I.getOperand(1));
3388 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3389 return 0;
3390 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003391 case Intrinsic::readcyclecounter: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003392 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003393 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
3394 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3395 &Op, 1);
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003396 setValue(&I, Tmp);
3397 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003398 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003399 }
Chris Lattnerc6eb6d72007-04-10 03:20:39 +00003400 case Intrinsic::part_select: {
Reid Spencer3f108cb2007-04-05 01:20:18 +00003401 // Currently not implemented: just abort
Reid Spencerf75b8742007-04-12 02:48:46 +00003402 assert(0 && "part_select intrinsic not implemented");
3403 abort();
3404 }
3405 case Intrinsic::part_set: {
3406 // Currently not implemented: just abort
3407 assert(0 && "part_set intrinsic not implemented");
Reid Spencer3f108cb2007-04-05 01:20:18 +00003408 abort();
Reid Spenceraddd11d2007-04-04 23:48:25 +00003409 }
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003410 case Intrinsic::bswap:
Nate Begemand88fc032006-01-14 03:14:10 +00003411 setValue(&I, DAG.getNode(ISD::BSWAP,
3412 getValue(I.getOperand(1)).getValueType(),
3413 getValue(I.getOperand(1))));
3414 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003415 case Intrinsic::cttz: {
3416 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003417 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003418 SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003419 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003420 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003421 }
3422 case Intrinsic::ctlz: {
3423 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003424 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003425 SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003426 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003427 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003428 }
3429 case Intrinsic::ctpop: {
3430 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003431 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003432 SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003433 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003434 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003435 }
Chris Lattner140d53c2006-01-13 02:50:02 +00003436 case Intrinsic::stacksave: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003437 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003438 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
3439 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattner140d53c2006-01-13 02:50:02 +00003440 setValue(&I, Tmp);
3441 DAG.setRoot(Tmp.getValue(1));
3442 return 0;
3443 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00003444 case Intrinsic::stackrestore: {
3445 SDOperand Tmp = getValue(I.getOperand(1));
3446 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00003447 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00003448 }
Tanya Lattner24e5aad2007-06-15 22:26:58 +00003449 case Intrinsic::var_annotation:
3450 // Discard annotate attributes
3451 return 0;
Duncan Sands36397f52007-07-27 12:58:54 +00003452
Duncan Sands36397f52007-07-27 12:58:54 +00003453 case Intrinsic::init_trampoline: {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003454 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands36397f52007-07-27 12:58:54 +00003455
3456 SDOperand Ops[6];
3457 Ops[0] = getRoot();
3458 Ops[1] = getValue(I.getOperand(1));
3459 Ops[2] = getValue(I.getOperand(2));
3460 Ops[3] = getValue(I.getOperand(3));
3461 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3462 Ops[5] = DAG.getSrcValue(F);
3463
Duncan Sandsf7331b32007-09-11 14:10:23 +00003464 SDOperand Tmp = DAG.getNode(ISD::TRAMPOLINE,
3465 DAG.getNodeValueTypes(TLI.getPointerTy(),
3466 MVT::Other), 2,
3467 Ops, 6);
3468
3469 setValue(&I, Tmp);
3470 DAG.setRoot(Tmp.getValue(1));
Duncan Sands36397f52007-07-27 12:58:54 +00003471 return 0;
3472 }
Gordon Henriksence224772008-01-07 01:30:38 +00003473
3474 case Intrinsic::gcroot:
3475 if (GCI) {
3476 Value *Alloca = I.getOperand(1);
3477 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3478
3479 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3480 GCI->addStackRoot(FI->getIndex(), TypeMap);
3481 }
3482 return 0;
3483
3484 case Intrinsic::gcread:
3485 case Intrinsic::gcwrite:
3486 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3487 return 0;
3488
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003489 case Intrinsic::flt_rounds: {
Dan Gohman1a024862008-01-31 00:41:03 +00003490 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003491 return 0;
3492 }
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003493
3494 case Intrinsic::trap: {
3495 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3496 return 0;
3497 }
Evan Cheng27b7db52008-03-08 00:58:38 +00003498 case Intrinsic::prefetch: {
3499 SDOperand Ops[4];
3500 Ops[0] = getRoot();
3501 Ops[1] = getValue(I.getOperand(1));
3502 Ops[2] = getValue(I.getOperand(2));
3503 Ops[3] = getValue(I.getOperand(3));
3504 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3505 return 0;
3506 }
3507
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003508 case Intrinsic::memory_barrier: {
3509 SDOperand Ops[6];
3510 Ops[0] = getRoot();
3511 for (int x = 1; x < 6; ++x)
3512 Ops[x] = getValue(I.getOperand(x));
3513
3514 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3515 return 0;
3516 }
Mon P Wang28873102008-06-25 08:15:39 +00003517 case Intrinsic::atomic_cmp_swap: {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003518 SDOperand Root = getRoot();
Mon P Wang28873102008-06-25 08:15:39 +00003519 SDOperand L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003520 getValue(I.getOperand(1)),
3521 getValue(I.getOperand(2)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003522 getValue(I.getOperand(3)),
Mon P Wang28873102008-06-25 08:15:39 +00003523 I.getOperand(1));
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003524 setValue(&I, L);
3525 DAG.setRoot(L.getValue(1));
3526 return 0;
3527 }
Mon P Wang28873102008-06-25 08:15:39 +00003528 case Intrinsic::atomic_load_add:
3529 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3530 case Intrinsic::atomic_load_sub:
3531 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang63307c32008-05-05 19:05:59 +00003532 case Intrinsic::atomic_load_and:
3533 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3534 case Intrinsic::atomic_load_or:
3535 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3536 case Intrinsic::atomic_load_xor:
3537 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003538 case Intrinsic::atomic_load_nand:
3539 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang63307c32008-05-05 19:05:59 +00003540 case Intrinsic::atomic_load_min:
3541 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3542 case Intrinsic::atomic_load_max:
3543 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3544 case Intrinsic::atomic_load_umin:
3545 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3546 case Intrinsic::atomic_load_umax:
3547 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3548 case Intrinsic::atomic_swap:
3549 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003550 }
3551}
3552
3553
Duncan Sands6f74b482007-12-19 09:48:52 +00003554void SelectionDAGLowering::LowerCallTo(CallSite CS, SDOperand Callee,
Jim Laskey1da20a72007-02-23 21:45:01 +00003555 bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003556 MachineBasicBlock *LandingPad) {
Duncan Sands6f74b482007-12-19 09:48:52 +00003557 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Jim Laskey735b6f82007-02-22 15:38:06 +00003558 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003559 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3560 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sands6f74b482007-12-19 09:48:52 +00003561
Jim Laskey735b6f82007-02-22 15:38:06 +00003562 TargetLowering::ArgListTy Args;
3563 TargetLowering::ArgListEntry Entry;
Duncan Sands6f74b482007-12-19 09:48:52 +00003564 Args.reserve(CS.arg_size());
3565 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3566 i != e; ++i) {
3567 SDOperand ArgNode = getValue(*i);
3568 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Duncan Sands4fee7032007-05-07 20:49:28 +00003569
Duncan Sands6f74b482007-12-19 09:48:52 +00003570 unsigned attrInd = i - CS.arg_begin() + 1;
3571 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3572 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3573 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3574 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3575 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3576 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen08e78b12008-02-22 17:49:45 +00003577 Entry.Alignment = CS.getParamAlignment(attrInd);
Jim Laskey735b6f82007-02-22 15:38:06 +00003578 Args.push_back(Entry);
3579 }
3580
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003581 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003582 // Insert a label before the invoke call to mark the try range. This can be
3583 // used to detect deletion of the invoke via the MachineModuleInfo.
3584 BeginLabel = MMI->NextLabelID();
Dale Johannesena4091d32008-04-04 23:48:31 +00003585 // Both PendingLoads and PendingExports must be flushed here;
3586 // this call might not return.
3587 (void)getRoot();
3588 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getControlRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003589 DAG.getConstant(BeginLabel, MVT::i32),
3590 DAG.getConstant(1, MVT::i32)));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003591 }
Duncan Sands6f74b482007-12-19 09:48:52 +00003592
Jim Laskey735b6f82007-02-22 15:38:06 +00003593 std::pair<SDOperand,SDOperand> Result =
Duncan Sands6f74b482007-12-19 09:48:52 +00003594 TLI.LowerCallTo(getRoot(), CS.getType(),
3595 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sands00fee652008-02-14 17:28:50 +00003596 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sands6f74b482007-12-19 09:48:52 +00003597 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Jim Laskey735b6f82007-02-22 15:38:06 +00003598 Callee, Args, DAG);
Duncan Sands6f74b482007-12-19 09:48:52 +00003599 if (CS.getType() != Type::VoidTy)
3600 setValue(CS.getInstruction(), Result.first);
Jim Laskey735b6f82007-02-22 15:38:06 +00003601 DAG.setRoot(Result.second);
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003602
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003603 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003604 // Insert a label at the end of the invoke call to mark the try range. This
3605 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3606 EndLabel = MMI->NextLabelID();
3607 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003608 DAG.getConstant(EndLabel, MVT::i32),
3609 DAG.getConstant(1, MVT::i32)));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003610
Duncan Sands6f74b482007-12-19 09:48:52 +00003611 // Inform MachineModuleInfo of range.
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003612 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3613 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003614}
3615
3616
Chris Lattner1c08c712005-01-07 07:47:53 +00003617void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00003618 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003619 if (Function *F = I.getCalledFunction()) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003620 if (F->isDeclaration()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003621 if (unsigned IID = F->getIntrinsicID()) {
3622 RenameFn = visitIntrinsicCall(I, IID);
3623 if (!RenameFn)
3624 return;
Chris Lattner87b51bc2007-09-10 21:15:22 +00003625 }
3626 }
3627
3628 // Check for well-known libc/libm calls. If the function is internal, it
3629 // can't be a library call.
3630 unsigned NameLen = F->getNameLen();
3631 if (!F->hasInternalLinkage() && NameLen) {
3632 const char *NameStr = F->getNameStart();
3633 if (NameStr[0] == 'c' &&
3634 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3635 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3636 if (I.getNumOperands() == 3 && // Basic sanity checks.
3637 I.getOperand(1)->getType()->isFloatingPoint() &&
3638 I.getType() == I.getOperand(1)->getType() &&
3639 I.getType() == I.getOperand(2)->getType()) {
3640 SDOperand LHS = getValue(I.getOperand(1));
3641 SDOperand RHS = getValue(I.getOperand(2));
3642 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3643 LHS, RHS));
3644 return;
3645 }
3646 } else if (NameStr[0] == 'f' &&
3647 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003648 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3649 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003650 if (I.getNumOperands() == 2 && // Basic sanity checks.
3651 I.getOperand(1)->getType()->isFloatingPoint() &&
3652 I.getType() == I.getOperand(1)->getType()) {
3653 SDOperand Tmp = getValue(I.getOperand(1));
3654 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3655 return;
3656 }
3657 } else if (NameStr[0] == 's' &&
3658 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003659 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3660 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003661 if (I.getNumOperands() == 2 && // Basic sanity checks.
3662 I.getOperand(1)->getType()->isFloatingPoint() &&
3663 I.getType() == I.getOperand(1)->getType()) {
3664 SDOperand Tmp = getValue(I.getOperand(1));
3665 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3666 return;
3667 }
3668 } else if (NameStr[0] == 'c' &&
3669 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003670 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3671 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003672 if (I.getNumOperands() == 2 && // Basic sanity checks.
3673 I.getOperand(1)->getType()->isFloatingPoint() &&
3674 I.getType() == I.getOperand(1)->getType()) {
3675 SDOperand Tmp = getValue(I.getOperand(1));
3676 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3677 return;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003678 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00003679 }
Chris Lattner87b51bc2007-09-10 21:15:22 +00003680 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00003681 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00003682 visitInlineAsm(&I);
Chris Lattnerce7518c2006-01-26 22:24:51 +00003683 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003684 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003685
Chris Lattner64e14b12005-01-08 22:48:57 +00003686 SDOperand Callee;
3687 if (!RenameFn)
3688 Callee = getValue(I.getOperand(0));
3689 else
3690 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003691
Duncan Sands6f74b482007-12-19 09:48:52 +00003692 LowerCallTo(&I, Callee, I.isTailCall());
Chris Lattner1c08c712005-01-07 07:47:53 +00003693}
3694
Jim Laskey735b6f82007-02-22 15:38:06 +00003695
Dan Gohmanef5d1942008-03-11 21:11:25 +00003696void SelectionDAGLowering::visitGetResult(GetResultInst &I) {
Dan Gohman67780f12008-04-23 20:25:16 +00003697 if (isa<UndefValue>(I.getOperand(0))) {
Dan Gohman3dc34f62008-04-23 20:21:29 +00003698 SDOperand Undef = DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()));
3699 setValue(&I, Undef);
Chris Lattner6833b062008-04-28 07:16:35 +00003700 return;
Dan Gohman3dc34f62008-04-23 20:21:29 +00003701 }
Chris Lattner6833b062008-04-28 07:16:35 +00003702
3703 // To add support for individual return values with aggregate types,
3704 // we'd need a way to take a getresult index and determine which
3705 // values of the Call SDNode are associated with it.
3706 assert(TLI.getValueType(I.getType(), true) != MVT::Other &&
3707 "Individual return values must not be aggregates!");
3708
3709 SDOperand Call = getValue(I.getOperand(0));
3710 setValue(&I, SDOperand(Call.Val, I.getIndex()));
Dan Gohmanef5d1942008-03-11 21:11:25 +00003711}
3712
3713
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003714/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3715/// this value and returns the result as a ValueVT value. This uses
3716/// Chain/Flag as the input and updates them for the output Chain/Flag.
3717/// If the Flag pointer is NULL, no flag is used.
Chris Lattneread0d882008-06-17 06:09:18 +00003718SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner6833b062008-04-28 07:16:35 +00003719 SDOperand &Chain,
3720 SDOperand *Flag) const {
Dan Gohman23ce5022008-04-25 18:27:55 +00003721 // Assemble the legal parts into the final values.
3722 SmallVector<SDOperand, 4> Values(ValueVTs.size());
Chris Lattner6833b062008-04-28 07:16:35 +00003723 SmallVector<SDOperand, 8> Parts;
3724 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman23ce5022008-04-25 18:27:55 +00003725 // Copy the legal parts from the registers.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003726 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003727 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003728 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003729
Chris Lattner6833b062008-04-28 07:16:35 +00003730 Parts.resize(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003731 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003732 SDOperand P;
3733 if (Flag == 0)
3734 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3735 else {
3736 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman23ce5022008-04-25 18:27:55 +00003737 *Flag = P.getValue(2);
Chris Lattner6833b062008-04-28 07:16:35 +00003738 }
3739 Chain = P.getValue(1);
Chris Lattneread0d882008-06-17 06:09:18 +00003740
3741 // If the source register was virtual and if we know something about it,
3742 // add an assert node.
3743 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3744 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3745 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3746 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3747 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3748 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3749
3750 unsigned RegSize = RegisterVT.getSizeInBits();
3751 unsigned NumSignBits = LOI.NumSignBits;
3752 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3753
3754 // FIXME: We capture more information than the dag can represent. For
3755 // now, just use the tightest assertzext/assertsext possible.
3756 bool isSExt = true;
3757 MVT FromVT(MVT::Other);
3758 if (NumSignBits == RegSize)
3759 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3760 else if (NumZeroBits >= RegSize-1)
3761 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3762 else if (NumSignBits > RegSize-8)
3763 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3764 else if (NumZeroBits >= RegSize-9)
3765 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3766 else if (NumSignBits > RegSize-16)
3767 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3768 else if (NumZeroBits >= RegSize-17)
3769 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3770 else if (NumSignBits > RegSize-32)
3771 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3772 else if (NumZeroBits >= RegSize-33)
3773 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3774
3775 if (FromVT != MVT::Other) {
3776 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3777 RegisterVT, P, DAG.getValueType(FromVT));
3778
3779 }
3780 }
3781 }
3782
Dan Gohman23ce5022008-04-25 18:27:55 +00003783 Parts[Part+i] = P;
3784 }
Chris Lattner5df99b32007-03-25 05:00:54 +00003785
Dan Gohman23ce5022008-04-25 18:27:55 +00003786 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3787 ValueVT);
3788 Part += NumRegs;
3789 }
Chris Lattner6833b062008-04-28 07:16:35 +00003790
3791 if (ValueVTs.size() == 1)
3792 return Values[0];
3793
Duncan Sandsf9516202008-06-30 10:19:09 +00003794 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3795 &Values[0], ValueVTs.size());
Chris Lattner864635a2006-02-22 22:37:12 +00003796}
3797
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003798/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3799/// specified value into the registers specified by this object. This uses
3800/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003801/// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003802void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003803 SDOperand &Chain, SDOperand *Flag) const {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003804 // Get the list of the values's legal parts.
Dan Gohman23ce5022008-04-25 18:27:55 +00003805 unsigned NumRegs = Regs.size();
3806 SmallVector<SDOperand, 8> Parts(NumRegs);
Chris Lattner6833b062008-04-28 07:16:35 +00003807 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003808 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003809 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003810 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003811
3812 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3813 &Parts[Part], NumParts, RegisterVT);
3814 Part += NumParts;
3815 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003816
3817 // Copy the parts into the registers.
Dan Gohman23ce5022008-04-25 18:27:55 +00003818 SmallVector<SDOperand, 8> Chains(NumRegs);
3819 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003820 SDOperand Part;
3821 if (Flag == 0)
3822 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3823 else {
3824 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003825 *Flag = Part.getValue(1);
Chris Lattner6833b062008-04-28 07:16:35 +00003826 }
3827 Chains[i] = Part.getValue(0);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003828 }
Chris Lattner6833b062008-04-28 07:16:35 +00003829
Evan Cheng33bf38a2008-04-28 22:07:13 +00003830 if (NumRegs == 1 || Flag)
3831 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3832 // flagged to it. That is the CopyToReg nodes and the user are considered
3833 // a single scheduling unit. If we create a TokenFactor and return it as
3834 // chain, then the TokenFactor is both a predecessor (operand) of the
3835 // user as well as a successor (the TF operands are flagged to the user).
3836 // c1, f1 = CopyToReg
3837 // c2, f2 = CopyToReg
3838 // c3 = TokenFactor c1, c2
3839 // ...
3840 // = op c3, ..., f2
3841 Chain = Chains[NumRegs-1];
Chris Lattner6833b062008-04-28 07:16:35 +00003842 else
3843 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003844}
Chris Lattner864635a2006-02-22 22:37:12 +00003845
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003846/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3847/// operand list. This adds the code marker and includes the number of
3848/// values added into it.
3849void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00003850 std::vector<SDOperand> &Ops) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003851 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner4b993b12007-04-09 00:33:58 +00003852 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner6833b062008-04-28 07:16:35 +00003853 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3854 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003855 MVT RegisterVT = RegVTs[Value];
Chris Lattner6833b062008-04-28 07:16:35 +00003856 for (unsigned i = 0; i != NumRegs; ++i)
3857 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman23ce5022008-04-25 18:27:55 +00003858 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003859}
Chris Lattner864635a2006-02-22 22:37:12 +00003860
3861/// isAllocatableRegister - If the specified register is safe to allocate,
3862/// i.e. it isn't a stack pointer or some other special register, return the
3863/// register class for the register. Otherwise, return null.
3864static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003865isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman6f0d0242008-02-10 18:45:23 +00003866 const TargetLowering &TLI,
3867 const TargetRegisterInfo *TRI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003868 MVT FoundVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003869 const TargetRegisterClass *FoundRC = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +00003870 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3871 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003872 MVT ThisVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003873
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003874 const TargetRegisterClass *RC = *RCI;
3875 // If none of the the value types for this register class are valid, we
3876 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003877 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3878 I != E; ++I) {
3879 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003880 // If we have already found this register in a different register class,
3881 // choose the one with the largest VT specified. For example, on
3882 // PowerPC, we favor f64 register classes over f32.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003883 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003884 ThisVT = *I;
3885 break;
3886 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003887 }
3888 }
3889
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003890 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003891
Chris Lattner864635a2006-02-22 22:37:12 +00003892 // NOTE: This isn't ideal. In particular, this might allocate the
3893 // frame pointer in functions that need it (due to them not being taken
3894 // out of allocation, because a variable sized allocation hasn't been seen
3895 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003896 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3897 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003898 if (*I == Reg) {
3899 // We found a matching register class. Keep looking at others in case
3900 // we find one with larger registers that this physreg is also in.
3901 FoundRC = RC;
3902 FoundVT = ThisVT;
3903 break;
3904 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00003905 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003906 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00003907}
3908
Chris Lattner4e4b5762006-02-01 18:59:47 +00003909
Chris Lattner0c583402007-04-28 20:49:53 +00003910namespace {
3911/// AsmOperandInfo - This contains information for each constraint that we are
3912/// lowering.
Evan Cheng5c807602008-02-26 02:33:44 +00003913struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3914 /// CallOperand - If this is the result output operand or a clobber
3915 /// this is null, otherwise it is the incoming operand to the CallInst.
3916 /// This gets modified as the asm is processed.
Chris Lattner0c583402007-04-28 20:49:53 +00003917 SDOperand CallOperand;
Evan Cheng5c807602008-02-26 02:33:44 +00003918
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003919 /// AssignedRegs - If this is a register or register class operand, this
3920 /// contains the set of register corresponding to the operand.
3921 RegsForValue AssignedRegs;
3922
Dan Gohman23ce5022008-04-25 18:27:55 +00003923 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Cheng5c807602008-02-26 02:33:44 +00003924 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Chris Lattner0c583402007-04-28 20:49:53 +00003925 }
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003926
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003927 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3928 /// busy in OutputRegs/InputRegs.
3929 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3930 std::set<unsigned> &OutputRegs,
Chris Lattner7cbeb242008-02-21 04:55:52 +00003931 std::set<unsigned> &InputRegs,
3932 const TargetRegisterInfo &TRI) const {
3933 if (isOutReg) {
3934 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3935 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3936 }
3937 if (isInReg) {
3938 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3939 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3940 }
3941 }
3942
3943private:
3944 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3945 /// specified set.
3946 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3947 const TargetRegisterInfo &TRI) {
3948 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3949 Regs.insert(Reg);
3950 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3951 for (; *Aliases; ++Aliases)
3952 Regs.insert(*Aliases);
3953 }
Chris Lattner0c583402007-04-28 20:49:53 +00003954};
3955} // end anon namespace.
Chris Lattner864635a2006-02-22 22:37:12 +00003956
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003957
Chris Lattner0fe71e92008-02-21 19:43:13 +00003958/// GetRegistersForValue - Assign registers (virtual or physical) for the
3959/// specified operand. We prefer to assign virtual registers, to allow the
3960/// register allocator handle the assignment process. However, if the asm uses
3961/// features that we can't model on machineinstrs, we have SDISel do the
3962/// allocation. This produces generally horrible, but correct, code.
3963///
3964/// OpInfo describes the operand.
3965/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3966/// or any explicitly clobbered registers.
3967/// Input and OutputRegs are the set of already allocated physical registers.
3968///
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003969void SelectionDAGLowering::
Evan Cheng5c807602008-02-26 02:33:44 +00003970GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnerbf996f12007-04-30 17:29:31 +00003971 std::set<unsigned> &OutputRegs,
3972 std::set<unsigned> &InputRegs) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003973 // Compute whether this value requires an input register, an output register,
3974 // or both.
3975 bool isOutReg = false;
3976 bool isInReg = false;
3977 switch (OpInfo.Type) {
3978 case InlineAsm::isOutput:
3979 isOutReg = true;
3980
3981 // If this is an early-clobber output, or if there is an input
3982 // constraint that matches this, we need to reserve the input register
3983 // so no other inputs allocate to it.
3984 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3985 break;
3986 case InlineAsm::isInput:
3987 isInReg = true;
3988 isOutReg = false;
3989 break;
3990 case InlineAsm::isClobber:
3991 isOutReg = true;
3992 isInReg = true;
3993 break;
3994 }
3995
3996
3997 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerb606dba2008-04-28 06:44:42 +00003998 SmallVector<unsigned, 4> Regs;
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003999
4000 // If this is a constraint for a single physreg, or a constraint for a
4001 // register class, find it.
4002 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4003 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4004 OpInfo.ConstraintVT);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004005
4006 unsigned NumRegs = 1;
4007 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohmanb9f10192007-06-21 14:42:22 +00004008 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004009 MVT RegVT;
4010 MVT ValueVT = OpInfo.ConstraintVT;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004011
Chris Lattnerbf996f12007-04-30 17:29:31 +00004012
4013 // If this is a constraint for a specific physical register, like {r17},
4014 // assign it now.
4015 if (PhysReg.first) {
4016 if (OpInfo.ConstraintVT == MVT::Other)
4017 ValueVT = *PhysReg.second->vt_begin();
4018
4019 // Get the actual register value type. This is important, because the user
4020 // may have asked for (e.g.) the AX register in i32 type. We need to
4021 // remember that AX is actually i16 to get the right extension.
4022 RegVT = *PhysReg.second->vt_begin();
4023
4024 // This is a explicit reference to a physical register.
4025 Regs.push_back(PhysReg.first);
4026
4027 // If this is an expanded reference, add the rest of the regs to Regs.
4028 if (NumRegs != 1) {
4029 TargetRegisterClass::iterator I = PhysReg.second->begin();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004030 for (; *I != PhysReg.first; ++I)
Evan Cheng50871242008-05-14 20:07:51 +00004031 assert(I != PhysReg.second->end() && "Didn't find reg!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004032
4033 // Already added the first reg.
4034 --NumRegs; ++I;
4035 for (; NumRegs; --NumRegs, ++I) {
Evan Cheng50871242008-05-14 20:07:51 +00004036 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004037 Regs.push_back(*I);
4038 }
4039 }
Dan Gohman23ce5022008-04-25 18:27:55 +00004040 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004041 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4042 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004043 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004044 }
4045
4046 // Otherwise, if this was a reference to an LLVM register class, create vregs
4047 // for this reference.
4048 std::vector<unsigned> RegClassRegs;
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004049 const TargetRegisterClass *RC = PhysReg.second;
4050 if (RC) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004051 // If this is an early clobber or tied register, our regalloc doesn't know
4052 // how to maintain the constraint. If it isn't, go ahead and create vreg
4053 // and let the regalloc do the right thing.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004054 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4055 // If there is some other early clobber and this is an input register,
4056 // then we are forced to pre-allocate the input reg so it doesn't
4057 // conflict with the earlyclobber.
4058 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004059 RegVT = *PhysReg.second->vt_begin();
4060
4061 if (OpInfo.ConstraintVT == MVT::Other)
4062 ValueVT = RegVT;
4063
4064 // Create the appropriate number of virtual registers.
Chris Lattner84bc5422007-12-31 04:13:23 +00004065 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004066 for (; NumRegs; --NumRegs)
Chris Lattner84bc5422007-12-31 04:13:23 +00004067 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Chris Lattnerbf996f12007-04-30 17:29:31 +00004068
Dan Gohman23ce5022008-04-25 18:27:55 +00004069 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004070 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004071 }
4072
4073 // Otherwise, we can't allocate it. Let the code below figure out how to
4074 // maintain these constraints.
4075 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4076
4077 } else {
4078 // This is a reference to a register class that doesn't directly correspond
4079 // to an LLVM register class. Allocate NumRegs consecutive, available,
4080 // registers from the class.
4081 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4082 OpInfo.ConstraintVT);
4083 }
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004084
Dan Gohman6f0d0242008-02-10 18:45:23 +00004085 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004086 unsigned NumAllocated = 0;
4087 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4088 unsigned Reg = RegClassRegs[i];
4089 // See if this register is available.
4090 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4091 (isInReg && InputRegs.count(Reg))) { // Already used.
4092 // Make sure we find consecutive registers.
4093 NumAllocated = 0;
4094 continue;
4095 }
4096
4097 // Check to see if this register is allocatable (i.e. don't give out the
4098 // stack pointer).
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004099 if (RC == 0) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004100 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004101 if (!RC) { // Couldn't allocate this register.
4102 // Reset NumAllocated to make sure we return consecutive registers.
4103 NumAllocated = 0;
4104 continue;
4105 }
Chris Lattnerbf996f12007-04-30 17:29:31 +00004106 }
4107
4108 // Okay, this register is good, we can use it.
4109 ++NumAllocated;
4110
4111 // If we allocated enough consecutive registers, succeed.
4112 if (NumAllocated == NumRegs) {
4113 unsigned RegStart = (i-NumAllocated)+1;
4114 unsigned RegEnd = i+1;
4115 // Mark all of the allocated registers used.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004116 for (unsigned i = RegStart; i != RegEnd; ++i)
4117 Regs.push_back(RegClassRegs[i]);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004118
Dan Gohman23ce5022008-04-25 18:27:55 +00004119 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004120 OpInfo.ConstraintVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004121 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004122 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004123 }
4124 }
4125
4126 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattnerbf996f12007-04-30 17:29:31 +00004127}
4128
4129
Chris Lattnerce7518c2006-01-26 22:24:51 +00004130/// visitInlineAsm - Handle a call to an InlineAsm object.
4131///
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004132void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4133 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004134
Chris Lattner0c583402007-04-28 20:49:53 +00004135 /// ConstraintOperands - Information about all of the constraints.
Evan Cheng5c807602008-02-26 02:33:44 +00004136 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004137
4138 SDOperand Chain = getRoot();
4139 SDOperand Flag;
4140
Chris Lattner4e4b5762006-02-01 18:59:47 +00004141 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004142
Chris Lattner0c583402007-04-28 20:49:53 +00004143 // Do a prepass over the constraints, canonicalizing them, and building up the
4144 // ConstraintOperands list.
4145 std::vector<InlineAsm::ConstraintInfo>
4146 ConstraintInfos = IA->ParseConstraints();
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004147
4148 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4149 // constraint. If so, we can't let the register allocator allocate any input
4150 // registers, because it will not know to avoid the earlyclobbered output reg.
4151 bool SawEarlyClobber = false;
4152
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004153 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattneracf8b012008-04-27 23:44:28 +00004154 unsigned ResNo = 0; // ResNo - The result number of the next output.
Chris Lattner0c583402007-04-28 20:49:53 +00004155 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004156 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4157 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Chris Lattner0c583402007-04-28 20:49:53 +00004158
Duncan Sands83ec4b62008-06-06 12:08:01 +00004159 MVT OpVT = MVT::Other;
Chris Lattner0c583402007-04-28 20:49:53 +00004160
4161 // Compute the value type for each operand.
4162 switch (OpInfo.Type) {
Chris Lattner1efa40f2006-02-22 00:56:39 +00004163 case InlineAsm::isOutput:
Chris Lattneracf8b012008-04-27 23:44:28 +00004164 // Indirect outputs just consume an argument.
4165 if (OpInfo.isIndirect) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004166 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattneracf8b012008-04-27 23:44:28 +00004167 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004168 }
Chris Lattneracf8b012008-04-27 23:44:28 +00004169 // The return value of the call is this value. As such, there is no
4170 // corresponding argument.
4171 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4172 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4173 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4174 } else {
4175 assert(ResNo == 0 && "Asm only has one result!");
4176 OpVT = TLI.getValueType(CS.getType());
4177 }
4178 ++ResNo;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004179 break;
4180 case InlineAsm::isInput:
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004181 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner1efa40f2006-02-22 00:56:39 +00004182 break;
4183 case InlineAsm::isClobber:
Chris Lattner0c583402007-04-28 20:49:53 +00004184 // Nothing to do.
Chris Lattner1efa40f2006-02-22 00:56:39 +00004185 break;
4186 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004187
Chris Lattner0c583402007-04-28 20:49:53 +00004188 // If this is an input or an indirect output, process the call argument.
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004189 // BasicBlocks are labels, currently appearing only in asm's.
Chris Lattner0c583402007-04-28 20:49:53 +00004190 if (OpInfo.CallOperandVal) {
Chris Lattner507ffd22008-04-27 00:16:18 +00004191 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4192 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004193 else {
4194 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4195 const Type *OpTy = OpInfo.CallOperandVal->getType();
4196 // If this is an indirect operand, the operand is a pointer to the
4197 // accessed type.
4198 if (OpInfo.isIndirect)
4199 OpTy = cast<PointerType>(OpTy)->getElementType();
4200
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004201 // If OpTy is not a single value, it may be a struct/union that we
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004202 // can tile with integers.
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004203 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004204 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4205 switch (BitSize) {
4206 default: break;
4207 case 1:
4208 case 8:
4209 case 16:
4210 case 32:
4211 case 64:
4212 OpTy = IntegerType::get(BitSize);
4213 break;
4214 }
Chris Lattner6995cf62007-04-29 18:58:03 +00004215 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004216
4217 OpVT = TLI.getValueType(OpTy, true);
Chris Lattner0c583402007-04-28 20:49:53 +00004218 }
4219 }
4220
4221 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a600be2007-04-28 21:01:43 +00004222
Chris Lattner3ff90dc2007-04-30 17:16:27 +00004223 // Compute the constraint code and ConstraintType to use.
Chris Lattner5a096902008-04-27 00:37:18 +00004224 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Chris Lattner0c583402007-04-28 20:49:53 +00004225
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004226 // Keep track of whether we see an earlyclobber.
4227 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004228
Chris Lattner0fe71e92008-02-21 19:43:13 +00004229 // If we see a clobber of a register, it is an early clobber.
Chris Lattner69e6a8d2008-02-21 20:54:31 +00004230 if (!SawEarlyClobber &&
4231 OpInfo.Type == InlineAsm::isClobber &&
4232 OpInfo.ConstraintType == TargetLowering::C_Register) {
4233 // Note that we want to ignore things that we don't trick here, like
4234 // dirflag, fpsr, flags, etc.
4235 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4236 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4237 OpInfo.ConstraintVT);
4238 if (PhysReg.first || PhysReg.second) {
4239 // This is a register we know of.
4240 SawEarlyClobber = true;
4241 }
4242 }
Chris Lattner0fe71e92008-02-21 19:43:13 +00004243
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004244 // If this is a memory input, and if the operand is not indirect, do what we
4245 // need to to provide an address for the memory input.
4246 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4247 !OpInfo.isIndirect) {
4248 assert(OpInfo.Type == InlineAsm::isInput &&
4249 "Can only indirectify direct input operands!");
4250
4251 // Memory operands really want the address of the value. If we don't have
4252 // an indirect input, put it in the constpool if we can, otherwise spill
4253 // it to a stack slot.
4254
4255 // If the operand is a float, integer, or vector constant, spill to a
4256 // constant pool entry to get its address.
4257 Value *OpVal = OpInfo.CallOperandVal;
4258 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4259 isa<ConstantVector>(OpVal)) {
4260 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4261 TLI.getPointerTy());
4262 } else {
4263 // Otherwise, create a stack slot and emit a store to it before the
4264 // asm.
4265 const Type *Ty = OpVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +00004266 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004267 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4268 MachineFunction &MF = DAG.getMachineFunction();
4269 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
4270 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4271 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4272 OpInfo.CallOperand = StackSlot;
4273 }
4274
4275 // There is no longer a Value* corresponding to this operand.
4276 OpInfo.CallOperandVal = 0;
4277 // It is now an indirect operand.
4278 OpInfo.isIndirect = true;
4279 }
4280
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004281 // If this constraint is for a specific register, allocate it before
4282 // anything else.
4283 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4284 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattner0c583402007-04-28 20:49:53 +00004285 }
Chris Lattner0c583402007-04-28 20:49:53 +00004286 ConstraintInfos.clear();
4287
4288
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004289 // Second pass - Loop over all of the operands, assigning virtual or physregs
4290 // to registerclass operands.
4291 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004292 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004293
4294 // C_Register operands have already been allocated, Other/Memory don't need
4295 // to be.
4296 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4297 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4298 }
4299
Chris Lattner0c583402007-04-28 20:49:53 +00004300 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
4301 std::vector<SDOperand> AsmNodeOperands;
4302 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
4303 AsmNodeOperands.push_back(
4304 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4305
Chris Lattner2cc2f662006-02-01 01:28:23 +00004306
Chris Lattner0f0b7d42006-02-21 23:12:12 +00004307 // Loop over all of the inputs, copying the operand values into the
4308 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00004309 RegsForValue RetValRegs;
Chris Lattner41f62592008-04-29 04:29:54 +00004310
Chris Lattner0c583402007-04-28 20:49:53 +00004311 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4312 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4313
4314 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004315 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner1efa40f2006-02-22 00:56:39 +00004316
Chris Lattner0c583402007-04-28 20:49:53 +00004317 switch (OpInfo.Type) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00004318 case InlineAsm::isOutput: {
Chris Lattnerc83994e2007-04-28 21:03:16 +00004319 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4320 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerf2f3cd52007-04-28 06:08:13 +00004321 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004322 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner22873462006-02-27 23:45:39 +00004323
Chris Lattner22873462006-02-27 23:45:39 +00004324 // Add information to the INLINEASM node to know about this output.
4325 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004326 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4327 TLI.getPointerTy()));
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004328 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner22873462006-02-27 23:45:39 +00004329 break;
4330 }
4331
Chris Lattner2a600be2007-04-28 21:01:43 +00004332 // Otherwise, this is a register or register class output.
Chris Lattner22873462006-02-27 23:45:39 +00004333
Chris Lattner864635a2006-02-22 22:37:12 +00004334 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00004335 // we can use.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004336 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sandsa47c6c32008-06-17 03:24:13 +00004337 cerr << "Couldn't allocate output reg for constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004338 << OpInfo.ConstraintCode << "'!\n";
Chris Lattnerd03f1582006-10-31 07:33:13 +00004339 exit(1);
4340 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004341
Chris Lattner41f62592008-04-29 04:29:54 +00004342 // If this is an indirect operand, store through the pointer after the
4343 // asm.
4344 if (OpInfo.isIndirect) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004345 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattner0c583402007-04-28 20:49:53 +00004346 OpInfo.CallOperandVal));
Chris Lattner41f62592008-04-29 04:29:54 +00004347 } else {
4348 // This is the result value of the call.
4349 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4350 // Concatenate this output onto the outputs list.
4351 RetValRegs.append(OpInfo.AssignedRegs);
Chris Lattner2cc2f662006-02-01 01:28:23 +00004352 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004353
4354 // Add information to the INLINEASM node to know that this register is
4355 // set.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004356 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4357 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004358 break;
4359 }
4360 case InlineAsm::isInput: {
Chris Lattner0c583402007-04-28 20:49:53 +00004361 SDOperand InOperandVal = OpInfo.CallOperand;
Chris Lattner3d81fee2006-02-04 02:16:44 +00004362
Chris Lattner0c583402007-04-28 20:49:53 +00004363 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner2223aea2006-02-02 00:25:23 +00004364 // If this is required to match an output register we have already set,
4365 // just use its register.
Chris Lattner0c583402007-04-28 20:49:53 +00004366 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00004367
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004368 // Scan until we find the definition we already emitted of this operand.
4369 // When we find it, create a RegsForValue operand.
4370 unsigned CurOp = 2; // The first operand.
4371 for (; OperandNo; --OperandNo) {
4372 // Advance to the next operand.
4373 unsigned NumOps =
4374 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00004375 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4376 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004377 "Skipped past definitions?");
4378 CurOp += (NumOps>>3)+1;
4379 }
4380
4381 unsigned NumOps =
4382 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattner527fae12007-02-01 01:21:12 +00004383 if ((NumOps & 7) == 2 /*REGDEF*/) {
4384 // Add NumOps>>3 registers to MatchedRegs.
4385 RegsForValue MatchedRegs;
Dan Gohman23ce5022008-04-25 18:27:55 +00004386 MatchedRegs.TLI = &TLI;
Dan Gohman1fa850b2008-05-02 00:03:54 +00004387 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4388 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Chris Lattner527fae12007-02-01 01:21:12 +00004389 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4390 unsigned Reg =
4391 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4392 MatchedRegs.Regs.push_back(Reg);
4393 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004394
Chris Lattner527fae12007-02-01 01:21:12 +00004395 // Use the produced MatchedRegs object to
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004396 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner527fae12007-02-01 01:21:12 +00004397 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4398 break;
4399 } else {
4400 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattnerf9853bc2008-02-21 05:27:19 +00004401 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4402 // Add information to the INLINEASM node to know about this input.
4403 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4404 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4405 TLI.getPointerTy()));
4406 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4407 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004408 }
Chris Lattner2223aea2006-02-02 00:25:23 +00004409 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004410
Chris Lattner2a600be2007-04-28 21:01:43 +00004411 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Chris Lattner0c583402007-04-28 20:49:53 +00004412 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004413 "Don't know how to handle indirect other inputs yet!");
4414
Chris Lattner48884cd2007-08-25 00:47:38 +00004415 std::vector<SDOperand> Ops;
4416 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4417 Ops, DAG);
4418 if (Ops.empty()) {
Bill Wendling832171c2006-12-07 20:04:42 +00004419 cerr << "Invalid operand for inline asm constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004420 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner53069fb2006-10-31 19:41:18 +00004421 exit(1);
4422 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004423
4424 // Add information to the INLINEASM node to know about this input.
Chris Lattner48884cd2007-08-25 00:47:38 +00004425 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004426 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4427 TLI.getPointerTy()));
Chris Lattner48884cd2007-08-25 00:47:38 +00004428 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004429 break;
Chris Lattner2a600be2007-04-28 21:01:43 +00004430 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004431 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner44b2c502007-04-28 06:42:38 +00004432 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4433 "Memory operands expect pointer values");
4434
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004435 // Add information to the INLINEASM node to know about this input.
4436 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004437 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4438 TLI.getPointerTy()));
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004439 AsmNodeOperands.push_back(InOperandVal);
4440 break;
4441 }
4442
Chris Lattner2a600be2007-04-28 21:01:43 +00004443 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4444 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4445 "Unknown constraint type!");
Chris Lattner0c583402007-04-28 20:49:53 +00004446 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004447 "Don't know how to handle indirect register inputs yet!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004448
4449 // Copy the input into the appropriate registers.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004450 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4451 "Couldn't allocate input reg!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004452
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004453 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004454
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004455 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4456 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004457 break;
4458 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004459 case InlineAsm::isClobber: {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004460 // Add the clobbered value to the operand list, so that the register
4461 // allocator is aware that the physreg got clobbered.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004462 if (!OpInfo.AssignedRegs.Regs.empty())
4463 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4464 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004465 break;
4466 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004467 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004468 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004469
4470 // Finish up input operands.
4471 AsmNodeOperands[0] = Chain;
4472 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4473
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004474 Chain = DAG.getNode(ISD::INLINEASM,
4475 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004476 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004477 Flag = Chain.getValue(1);
4478
Chris Lattner6656dd12006-01-31 02:03:41 +00004479 // If this asm returns a register value, copy the result from that register
4480 // and set it as the value of the call.
Chris Lattner3a508c92007-04-12 06:00:20 +00004481 if (!RetValRegs.Regs.empty()) {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004482 SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner3fb29682008-04-29 04:48:56 +00004483
4484 // If any of the results of the inline asm is a vector, it may have the
4485 // wrong width/num elts. This can happen for register classes that can
4486 // contain multiple different value types. The preg or vreg allocated may
4487 // not have the same VT as was expected. Convert it to the right type with
Dan Gohman7f321562007-06-25 16:23:39 +00004488 // bit_convert.
Chris Lattner3fb29682008-04-29 04:48:56 +00004489 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4490 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004491 if (Val.Val->getValueType(i).isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004492 Val = DAG.getNode(ISD::BIT_CONVERT,
4493 TLI.getValueType(ResSTy->getElementType(i)), Val);
4494 }
4495 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004496 if (Val.getValueType().isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004497 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4498 Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004499 }
Chris Lattner3fb29682008-04-29 04:48:56 +00004500
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004501 setValue(CS.getInstruction(), Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004502 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004503
Chris Lattner6656dd12006-01-31 02:03:41 +00004504 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
4505
4506 // Process indirect outputs, first output all of the flagged copies out of
4507 // physregs.
4508 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00004509 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00004510 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004511 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner864635a2006-02-22 22:37:12 +00004512 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00004513 }
4514
4515 // Emit the non-flagged stores from the physregs.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004516 SmallVector<SDOperand, 8> OutChains;
Chris Lattner6656dd12006-01-31 02:03:41 +00004517 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattner0c583402007-04-28 20:49:53 +00004518 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner6656dd12006-01-31 02:03:41 +00004519 getValue(StoresToEmit[i].second),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004520 StoresToEmit[i].second, 0));
Chris Lattner6656dd12006-01-31 02:03:41 +00004521 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004522 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4523 &OutChains[0], OutChains.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004524 DAG.setRoot(Chain);
4525}
4526
4527
Chris Lattner1c08c712005-01-07 07:47:53 +00004528void SelectionDAGLowering::visitMalloc(MallocInst &I) {
4529 SDOperand Src = getValue(I.getOperand(0));
4530
Duncan Sands83ec4b62008-06-06 12:08:01 +00004531 MVT IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00004532
Duncan Sands8e4eb092008-06-08 20:54:56 +00004533 if (IntPtr.bitsLT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004534 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004535 else if (IntPtr.bitsGT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004536 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00004537
4538 // Scale the source by the type size.
Duncan Sands514ab342007-11-01 20:53:16 +00004539 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00004540 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner0bd48932008-01-17 07:00:52 +00004541 Src, DAG.getIntPtrConstant(ElementSize));
Chris Lattner1c08c712005-01-07 07:47:53 +00004542
Reid Spencer47857812006-12-31 05:55:36 +00004543 TargetLowering::ArgListTy Args;
4544 TargetLowering::ArgListEntry Entry;
4545 Entry.Node = Src;
4546 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004547 Args.push_back(Entry);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004548
4549 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004550 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4551 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004552 setValue(&I, Result.first); // Pointers always fit in registers
4553 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004554}
4555
4556void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencer47857812006-12-31 05:55:36 +00004557 TargetLowering::ArgListTy Args;
4558 TargetLowering::ArgListEntry Entry;
4559 Entry.Node = getValue(I.getOperand(0));
4560 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004561 Args.push_back(Entry);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004562 MVT IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00004563 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004564 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4565 CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00004566 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4567 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004568}
4569
Evan Chengff9b3732008-01-30 18:18:23 +00004570// EmitInstrWithCustomInserter - This method should be implemented by targets
4571// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +00004572// instructions are special in various ways, which require special support to
4573// insert. The specified MachineInstr is created but not inserted into any
4574// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +00004575MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Chris Lattner025c39b2005-08-26 20:54:47 +00004576 MachineBasicBlock *MBB) {
Bill Wendling832171c2006-12-07 20:04:42 +00004577 cerr << "If a target marks an instruction with "
4578 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chengff9b3732008-01-30 18:18:23 +00004579 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Chris Lattner025c39b2005-08-26 20:54:47 +00004580 abort();
4581 return 0;
4582}
4583
Chris Lattner39ae3622005-01-09 00:00:49 +00004584void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004585 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4586 getValue(I.getOperand(1)),
4587 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00004588}
4589
4590void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004591 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
4592 getValue(I.getOperand(0)),
4593 DAG.getSrcValue(I.getOperand(0)));
4594 setValue(&I, V);
4595 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00004596}
4597
4598void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004599 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4600 getValue(I.getOperand(1)),
4601 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004602}
4603
4604void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004605 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4606 getValue(I.getOperand(1)),
4607 getValue(I.getOperand(2)),
4608 DAG.getSrcValue(I.getOperand(1)),
4609 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004610}
4611
Chris Lattnerfdfded52006-04-12 16:20:43 +00004612/// TargetLowering::LowerArguments - This is the default LowerArguments
4613/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004614/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4615/// integrated into SDISel.
Dan Gohmana44b6742008-06-30 20:31:15 +00004616void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
4617 SmallVectorImpl<SDOperand> &ArgValues) {
Chris Lattnerfdfded52006-04-12 16:20:43 +00004618 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
Dan Gohmana44b6742008-06-30 20:31:15 +00004619 SmallVector<SDOperand, 3+16> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004620 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00004621 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4622 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4623
4624 // Add one result value for each formal argument.
Dan Gohmana44b6742008-06-30 20:31:15 +00004625 SmallVector<MVT, 16> RetVals;
Anton Korobeynikov6aa279d2007-01-28 18:01:49 +00004626 unsigned j = 1;
Anton Korobeynikovac2b2cf2007-01-28 16:04:40 +00004627 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4628 I != E; ++I, ++j) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004629 SmallVector<MVT, 4> ValueVTs;
4630 ComputeValueVTs(*this, I->getType(), ValueVTs);
4631 for (unsigned Value = 0, NumValues = ValueVTs.size();
4632 Value != NumValues; ++Value) {
4633 MVT VT = ValueVTs[Value];
4634 const Type *ArgTy = VT.getTypeForMVT();
4635 ISD::ArgFlagsTy Flags;
4636 unsigned OriginalAlignment =
4637 getTargetData()->getABITypeAlignment(ArgTy);
Lauro Ramos Venancio7aa47b62007-02-13 13:50:08 +00004638
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004639 if (F.paramHasAttr(j, ParamAttr::ZExt))
4640 Flags.setZExt();
4641 if (F.paramHasAttr(j, ParamAttr::SExt))
4642 Flags.setSExt();
4643 if (F.paramHasAttr(j, ParamAttr::InReg))
4644 Flags.setInReg();
4645 if (F.paramHasAttr(j, ParamAttr::StructRet))
4646 Flags.setSRet();
4647 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4648 Flags.setByVal();
4649 const PointerType *Ty = cast<PointerType>(I->getType());
4650 const Type *ElementTy = Ty->getElementType();
4651 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4652 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4653 // For ByVal, alignment should be passed from FE. BE will guess if
4654 // this info is not there but there are cases it cannot get right.
4655 if (F.getParamAlignment(j))
4656 FrameAlign = F.getParamAlignment(j);
4657 Flags.setByValAlign(FrameAlign);
4658 Flags.setByValSize(FrameSize);
4659 }
4660 if (F.paramHasAttr(j, ParamAttr::Nest))
4661 Flags.setNest();
4662 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004663
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004664 MVT RegisterVT = getRegisterType(VT);
4665 unsigned NumRegs = getNumRegisters(VT);
4666 for (unsigned i = 0; i != NumRegs; ++i) {
4667 RetVals.push_back(RegisterVT);
4668 ISD::ArgFlagsTy MyFlags = Flags;
4669 if (NumRegs > 1 && i == 0)
4670 MyFlags.setSplit();
4671 // if it isn't first piece, alignment must be 1
4672 else if (i > 0)
4673 MyFlags.setOrigAlign(1);
4674 Ops.push_back(DAG.getArgFlags(MyFlags));
4675 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004676 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004677 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00004678
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004679 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00004680
4681 // Create the node.
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004682 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004683 DAG.getVTList(&RetVals[0], RetVals.size()),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004684 &Ops[0], Ops.size()).Val;
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004685
4686 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4687 // allows exposing the loads that may be part of the argument access to the
4688 // first DAGCombiner pass.
4689 SDOperand TmpRes = LowerOperation(SDOperand(Result, 0), DAG);
4690
4691 // The number of results should match up, except that the lowered one may have
4692 // an extra flag result.
4693 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4694 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4695 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4696 && "Lowering produced unexpected number of results!");
4697 Result = TmpRes.Val;
4698
Dan Gohman27a70be2007-07-02 16:18:06 +00004699 unsigned NumArgRegs = Result->getNumValues() - 1;
4700 DAG.setRoot(SDOperand(Result, NumArgRegs));
Chris Lattnerfdfded52006-04-12 16:20:43 +00004701
4702 // Set up the return result vector.
Chris Lattnerfdfded52006-04-12 16:20:43 +00004703 unsigned i = 0;
Reid Spencer47857812006-12-31 05:55:36 +00004704 unsigned Idx = 1;
4705 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4706 ++I, ++Idx) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004707 SmallVector<MVT, 4> ValueVTs;
4708 ComputeValueVTs(*this, I->getType(), ValueVTs);
4709 for (unsigned Value = 0, NumValues = ValueVTs.size();
4710 Value != NumValues; ++Value) {
4711 MVT VT = ValueVTs[Value];
4712 MVT PartVT = getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004713
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004714 unsigned NumParts = getNumRegisters(VT);
4715 SmallVector<SDOperand, 4> Parts(NumParts);
4716 for (unsigned j = 0; j != NumParts; ++j)
4717 Parts[j] = SDOperand(Result, i++);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004718
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004719 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4720 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4721 AssertOp = ISD::AssertSext;
4722 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4723 AssertOp = ISD::AssertZext;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004724
Dan Gohmana44b6742008-06-30 20:31:15 +00004725 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4726 AssertOp));
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004727 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004728 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004729 assert(i == NumArgRegs && "Argument register count mismatch!");
Chris Lattnerfdfded52006-04-12 16:20:43 +00004730}
4731
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004732
4733/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4734/// implementation, which just inserts an ISD::CALL node, which is later custom
4735/// lowered by the target to something concrete. FIXME: When all targets are
4736/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
4737std::pair<SDOperand, SDOperand>
Duncan Sands00fee652008-02-14 17:28:50 +00004738TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
4739 bool RetSExt, bool RetZExt, bool isVarArg,
4740 unsigned CallingConv, bool isTailCall,
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004741 SDOperand Callee,
4742 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattnerbe384162006-08-16 22:57:46 +00004743 SmallVector<SDOperand, 32> Ops;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004744 Ops.push_back(Chain); // Op#0 - Chain
4745 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4746 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4747 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4748 Ops.push_back(Callee);
4749
4750 // Handle all of the outgoing arguments.
4751 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004752 SmallVector<MVT, 4> ValueVTs;
4753 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4754 for (unsigned Value = 0, NumValues = ValueVTs.size();
4755 Value != NumValues; ++Value) {
4756 MVT VT = ValueVTs[Value];
4757 const Type *ArgTy = VT.getTypeForMVT();
4758 SDOperand Op = SDOperand(Args[i].Node.Val, Args[i].Node.ResNo + Value);
4759 ISD::ArgFlagsTy Flags;
4760 unsigned OriginalAlignment =
4761 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sands276dcbd2008-03-21 09:14:45 +00004762
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004763 if (Args[i].isZExt)
4764 Flags.setZExt();
4765 if (Args[i].isSExt)
4766 Flags.setSExt();
4767 if (Args[i].isInReg)
4768 Flags.setInReg();
4769 if (Args[i].isSRet)
4770 Flags.setSRet();
4771 if (Args[i].isByVal) {
4772 Flags.setByVal();
4773 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4774 const Type *ElementTy = Ty->getElementType();
4775 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4776 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4777 // For ByVal, alignment should come from FE. BE will guess if this
4778 // info is not there but there are cases it cannot get right.
4779 if (Args[i].Alignment)
4780 FrameAlign = Args[i].Alignment;
4781 Flags.setByValAlign(FrameAlign);
4782 Flags.setByValSize(FrameSize);
4783 }
4784 if (Args[i].isNest)
4785 Flags.setNest();
4786 Flags.setOrigAlign(OriginalAlignment);
Dan Gohman27a70be2007-07-02 16:18:06 +00004787
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004788 MVT PartVT = getRegisterType(VT);
4789 unsigned NumParts = getNumRegisters(VT);
4790 SmallVector<SDOperand, 4> Parts(NumParts);
4791 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004792
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004793 if (Args[i].isSExt)
4794 ExtendKind = ISD::SIGN_EXTEND;
4795 else if (Args[i].isZExt)
4796 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004797
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004798 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004799
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004800 for (unsigned i = 0; i != NumParts; ++i) {
4801 // if it isn't first piece, alignment must be 1
4802 ISD::ArgFlagsTy MyFlags = Flags;
4803 if (NumParts > 1 && i == 0)
4804 MyFlags.setSplit();
4805 else if (i != 0)
4806 MyFlags.setOrigAlign(1);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004807
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004808 Ops.push_back(Parts[i]);
4809 Ops.push_back(DAG.getArgFlags(MyFlags));
4810 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004811 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004812 }
4813
Dan Gohmanef5d1942008-03-11 21:11:25 +00004814 // Figure out the result value types. We start by making a list of
Dan Gohman23ce5022008-04-25 18:27:55 +00004815 // the potentially illegal return value types.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004816 SmallVector<MVT, 4> LoweredRetTys;
4817 SmallVector<MVT, 4> RetTys;
Dan Gohman23ce5022008-04-25 18:27:55 +00004818 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004819
Dan Gohman23ce5022008-04-25 18:27:55 +00004820 // Then we translate that to a list of legal types.
4821 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004822 MVT VT = RetTys[I];
4823 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004824 unsigned NumRegs = getNumRegisters(VT);
4825 for (unsigned i = 0; i != NumRegs; ++i)
4826 LoweredRetTys.push_back(RegisterVT);
4827 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004828
Dan Gohmanef5d1942008-03-11 21:11:25 +00004829 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004830
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004831 // Create the CALL node.
Chris Lattnerbe384162006-08-16 22:57:46 +00004832 SDOperand Res = DAG.getNode(ISD::CALL,
Dan Gohmanef5d1942008-03-11 21:11:25 +00004833 DAG.getVTList(&LoweredRetTys[0],
4834 LoweredRetTys.size()),
Chris Lattnerbe384162006-08-16 22:57:46 +00004835 &Ops[0], Ops.size());
Dan Gohmanef5d1942008-03-11 21:11:25 +00004836 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004837
4838 // Gather up the call result into a single value.
4839 if (RetTy != Type::VoidTy) {
Duncan Sands00fee652008-02-14 17:28:50 +00004840 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4841
4842 if (RetSExt)
4843 AssertOp = ISD::AssertSext;
4844 else if (RetZExt)
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004845 AssertOp = ISD::AssertZext;
Duncan Sands00fee652008-02-14 17:28:50 +00004846
Dan Gohmanef5d1942008-03-11 21:11:25 +00004847 SmallVector<SDOperand, 4> ReturnValues;
4848 unsigned RegNo = 0;
Dan Gohman23ce5022008-04-25 18:27:55 +00004849 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004850 MVT VT = RetTys[I];
4851 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004852 unsigned NumRegs = getNumRegisters(VT);
4853 unsigned RegNoEnd = NumRegs + RegNo;
4854 SmallVector<SDOperand, 4> Results;
4855 for (; RegNo != RegNoEnd; ++RegNo)
4856 Results.push_back(Res.getValue(RegNo));
4857 SDOperand ReturnValue =
4858 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4859 AssertOp);
4860 ReturnValues.push_back(ReturnValue);
4861 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004862 Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4863 &ReturnValues[0], ReturnValues.size());
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004864 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004865
4866 return std::make_pair(Res, Chain);
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004867}
4868
Chris Lattner50381b62005-05-14 05:50:48 +00004869SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00004870 assert(0 && "LowerOperation not implemented for this target!");
4871 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00004872 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00004873}
4874
Nate Begeman0aed7842006-01-28 03:14:31 +00004875SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
4876 SelectionDAG &DAG) {
4877 assert(0 && "CustomPromoteOperation not implemented for this target!");
4878 abort();
4879 return SDOperand();
4880}
4881
Chris Lattner7041ee32005-01-11 05:56:49 +00004882//===----------------------------------------------------------------------===//
4883// SelectionDAGISel code
4884//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00004885
Duncan Sands83ec4b62008-06-06 12:08:01 +00004886unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +00004887 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +00004888}
4889
Chris Lattner495a0b52005-08-17 06:37:43 +00004890void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004891 AU.addRequired<AliasAnalysis>();
Gordon Henriksence224772008-01-07 01:30:38 +00004892 AU.addRequired<CollectorModuleMetadata>();
Chris Lattnerc8d288f2007-03-31 04:18:03 +00004893 AU.setPreservesAll();
Chris Lattner495a0b52005-08-17 06:37:43 +00004894}
Chris Lattner1c08c712005-01-07 07:47:53 +00004895
Chris Lattner1c08c712005-01-07 07:47:53 +00004896bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman5f43f922007-08-27 16:26:13 +00004897 // Get alias analysis for load/store combining.
4898 AA = &getAnalysis<AliasAnalysis>();
4899
Chris Lattner1c08c712005-01-07 07:47:53 +00004900 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksence224772008-01-07 01:30:38 +00004901 if (MF.getFunction()->hasCollector())
4902 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4903 else
4904 GCI = 0;
Chris Lattner84bc5422007-12-31 04:13:23 +00004905 RegInfo = &MF.getRegInfo();
Bill Wendling832171c2006-12-07 20:04:42 +00004906 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00004907
4908 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4909
Dale Johannesen1532f3d2008-04-02 00:25:04 +00004910 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4911 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4912 // Mark landing pad.
4913 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +00004914
4915 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +00004916 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00004917
Evan Chengad2070c2007-02-10 02:43:39 +00004918 // Add function live-ins to entry block live-in set.
4919 BasicBlock *EntryBB = &Fn.getEntryBlock();
4920 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner84bc5422007-12-31 04:13:23 +00004921 if (!RegInfo->livein_empty())
4922 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4923 E = RegInfo->livein_end(); I != E; ++I)
Evan Chengad2070c2007-02-10 02:43:39 +00004924 BB->addLiveIn(I->first);
4925
Duncan Sandsf4070822007-06-15 19:04:19 +00004926#ifndef NDEBUG
4927 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4928 "Not all catch info was assigned to a landing pad!");
4929#endif
4930
Chris Lattner1c08c712005-01-07 07:47:53 +00004931 return true;
4932}
4933
Chris Lattner6833b062008-04-28 07:16:35 +00004934void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Chris Lattner571e4342006-10-27 21:36:01 +00004935 SDOperand Op = getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00004936 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004937 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00004938 "Copy from a reg to the same reg!");
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004939 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004940
Dan Gohman23ce5022008-04-25 18:27:55 +00004941 RegsForValue RFV(TLI, Reg, V->getType());
4942 SDOperand Chain = DAG.getEntryNode();
4943 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4944 PendingExports.push_back(Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00004945}
4946
Chris Lattner068a81e2005-01-17 17:15:02 +00004947void SelectionDAGISel::
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004948LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Chris Lattner068a81e2005-01-17 17:15:02 +00004949 // If this is the entry block, emit arguments.
Evan Cheng15699fc2007-02-10 01:08:18 +00004950 Function &F = *LLVMBB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00004951 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00004952 SDOperand OldRoot = SDL.DAG.getRoot();
Dan Gohmana44b6742008-06-30 20:31:15 +00004953 SmallVector<SDOperand, 16> Args;
4954 TLI.LowerArguments(F, SDL.DAG, Args);
Chris Lattner068a81e2005-01-17 17:15:02 +00004955
Chris Lattnerbf209482005-10-30 19:42:35 +00004956 unsigned a = 0;
4957 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004958 AI != E; ++AI) {
4959 SmallVector<MVT, 4> ValueVTs;
4960 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4961 unsigned NumValues = ValueVTs.size();
Chris Lattnerbf209482005-10-30 19:42:35 +00004962 if (!AI->use_empty()) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004963 SmallVector<MVT, 4> LegalValueVTs(NumValues);
4964 for (unsigned VI = 0; VI != NumValues; ++VI)
4965 LegalValueVTs[VI] = Args[a + VI].getValueType();
Duncan Sandsf9516202008-06-30 10:19:09 +00004966 SDL.setValue(AI,
4967 SDL.DAG.getMergeValues(SDL.DAG.getVTList(&LegalValueVTs[0],
4968 NumValues),
4969 &Args[a], NumValues));
Chris Lattnerbf209482005-10-30 19:42:35 +00004970 // If this argument is live outside of the entry block, insert a copy from
4971 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner251db182007-02-25 18:40:32 +00004972 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4973 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004974 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattnerbf209482005-10-30 19:42:35 +00004975 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00004976 }
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004977 a += NumValues;
4978 }
Chris Lattnerbf209482005-10-30 19:42:35 +00004979
Chris Lattnerbf209482005-10-30 19:42:35 +00004980 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00004981 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00004982 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00004983}
4984
Duncan Sandsf4070822007-06-15 19:04:19 +00004985static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4986 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004987 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00004988 if (isSelector(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004989 // Apply the catch info to DestBB.
4990 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4991#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +00004992 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4993 FLI.CatchInfoFound.insert(I);
Duncan Sandsf4070822007-06-15 19:04:19 +00004994#endif
4995 }
4996}
4997
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004998/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4999/// whether object offset >= 0.
5000static bool
5001IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDOperand Op) {
5002 if (!isa<FrameIndexSDNode>(Op)) return false;
5003
5004 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
5005 int FrameIdx = FrameIdxNode->getIndex();
5006 return MFI->isFixedObjectIndex(FrameIdx) &&
5007 MFI->getObjectOffset(FrameIdx) >= 0;
5008}
5009
5010/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
5011/// possibly be overwritten when lowering the outgoing arguments in a tail
5012/// call. Currently the implementation of this call is very conservative and
5013/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
5014/// virtual registers would be overwritten by direct lowering.
5015static bool IsPossiblyOverwrittenArgumentOfTailCall(SDOperand Op,
5016 MachineFrameInfo * MFI) {
5017 RegisterSDNode * OpReg = NULL;
5018 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
5019 (Op.getOpcode()== ISD::CopyFromReg &&
5020 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
5021 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
5022 (Op.getOpcode() == ISD::LOAD &&
5023 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
5024 (Op.getOpcode() == ISD::MERGE_VALUES &&
5025 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5026 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5027 getOperand(1))))
5028 return true;
5029 return false;
5030}
5031
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005032/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005033/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005034static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5035 TargetLowering& TLI) {
5036 SDNode * Ret = NULL;
5037 SDOperand Terminator = DAG.getRoot();
5038
5039 // Find RET node.
5040 if (Terminator.getOpcode() == ISD::RET) {
5041 Ret = Terminator.Val;
5042 }
5043
5044 // Fix tail call attribute of CALL nodes.
5045 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
5046 BI = prior(DAG.allnodes_end()); BI != BE; --BI) {
5047 if (BI->getOpcode() == ISD::CALL) {
5048 SDOperand OpRet(Ret, 0);
5049 SDOperand OpCall(static_cast<SDNode*>(BI), 0);
5050 bool isMarkedTailCall =
5051 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5052 // If CALL node has tail call attribute set to true and the call is not
5053 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005054 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005055 // must correctly identify tail call optimizable calls.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005056 if (!isMarkedTailCall) continue;
5057 if (Ret==NULL ||
5058 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5059 // Not eligible. Mark CALL node as non tail call.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005060 SmallVector<SDOperand, 32> Ops;
5061 unsigned idx=0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005062 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5063 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005064 if (idx!=3)
5065 Ops.push_back(*I);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005066 else
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005067 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5068 }
5069 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005070 } else {
5071 // Look for tail call clobbered arguments. Emit a series of
5072 // copyto/copyfrom virtual register nodes to protect them.
5073 SmallVector<SDOperand, 32> Ops;
5074 SDOperand Chain = OpCall.getOperand(0), InFlag;
5075 unsigned idx=0;
5076 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5077 E = OpCall.Val->op_end(); I != E; I++, idx++) {
5078 SDOperand Arg = *I;
5079 if (idx > 4 && (idx % 2)) {
5080 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5081 getArgFlags().isByVal();
5082 MachineFunction &MF = DAG.getMachineFunction();
5083 MachineFrameInfo *MFI = MF.getFrameInfo();
5084 if (!isByVal &&
5085 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005086 MVT VT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005087 unsigned VReg = MF.getRegInfo().
5088 createVirtualRegister(TLI.getRegClassFor(VT));
5089 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5090 InFlag = Chain.getValue(1);
5091 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5092 Chain = Arg.getValue(1);
5093 InFlag = Arg.getValue(2);
5094 }
5095 }
5096 Ops.push_back(Arg);
5097 }
5098 // Link in chain of CopyTo/CopyFromReg.
5099 Ops[0] = Chain;
5100 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005101 }
5102 }
5103 }
5104}
5105
Chris Lattner1c08c712005-01-07 07:47:53 +00005106void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5107 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00005108 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksence224772008-01-07 01:30:38 +00005109 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerddb870b2005-01-13 17:59:43 +00005110
Chris Lattnerbf209482005-10-30 19:42:35 +00005111 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +00005112 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005113 LowerArguments(LLVMBB, SDL);
Chris Lattner1c08c712005-01-07 07:47:53 +00005114
5115 BB = FuncInfo.MBBMap[LLVMBB];
5116 SDL.setCurrentBasicBlock(BB);
5117
Duncan Sandsf4070822007-06-15 19:04:19 +00005118 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands9fac0b52007-06-06 10:05:18 +00005119
Dale Johannesen1532f3d2008-04-02 00:25:04 +00005120 if (MMI && BB->isLandingPad()) {
Duncan Sandsf4070822007-06-15 19:04:19 +00005121 // Add a label to mark the beginning of the landing pad. Deletion of the
5122 // landing pad can thus be detected via the MachineModuleInfo.
5123 unsigned LabelID = MMI->addLandingPad(BB);
5124 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, DAG.getEntryNode(),
Evan Chengbb81d972008-01-31 09:59:15 +00005125 DAG.getConstant(LabelID, MVT::i32),
5126 DAG.getConstant(1, MVT::i32)));
Duncan Sandsf4070822007-06-15 19:04:19 +00005127
Evan Chenge47c3332007-06-27 18:45:32 +00005128 // Mark exception register as live in.
5129 unsigned Reg = TLI.getExceptionAddressRegister();
5130 if (Reg) BB->addLiveIn(Reg);
5131
5132 // Mark exception selector register as live in.
5133 Reg = TLI.getExceptionSelectorRegister();
5134 if (Reg) BB->addLiveIn(Reg);
5135
Duncan Sandsf4070822007-06-15 19:04:19 +00005136 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5137 // function and list of typeids logically belong to the invoke (or, if you
5138 // like, the basic block containing the invoke), and need to be associated
5139 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005140 // information is provided by an intrinsic (eh.selector) that can be moved
5141 // to unexpected places by the optimizers: if the unwind edge is critical,
5142 // then breaking it can result in the intrinsics being in the successor of
5143 // the landing pad, not the landing pad itself. This results in exceptions
5144 // not being caught because no typeids are associated with the invoke.
5145 // This may not be the only way things can go wrong, but it is the only way
5146 // we try to work around for the moment.
Duncan Sandsf4070822007-06-15 19:04:19 +00005147 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5148
5149 if (Br && Br->isUnconditional()) { // Critical edge?
5150 BasicBlock::iterator I, E;
5151 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005152 if (isSelector(I))
Duncan Sandsf4070822007-06-15 19:04:19 +00005153 break;
5154
5155 if (I == E)
5156 // No catch info found - try to extract some from the successor.
5157 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands9fac0b52007-06-06 10:05:18 +00005158 }
5159 }
5160
Chris Lattner1c08c712005-01-07 07:47:53 +00005161 // Lower all of the non-terminator instructions.
5162 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5163 I != E; ++I)
5164 SDL.visit(*I);
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005165
Chris Lattner1c08c712005-01-07 07:47:53 +00005166 // Ensure that all instructions which are used outside of their defining
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005167 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner1c08c712005-01-07 07:47:53 +00005168 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005169 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner9f24ad72007-02-04 01:35:11 +00005170 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00005171 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005172 SDL.CopyValueToVirtualRegister(I, VMI->second);
Chris Lattner1c08c712005-01-07 07:47:53 +00005173 }
5174
5175 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5176 // ensure constants are generated when needed. Remember the virtual registers
5177 // that need to be added to the Machine PHI nodes as input. We cannot just
5178 // directly add them, because expansion might result in multiple MBB's for one
5179 // BB. As such, the start of the BB might correspond to a different MBB than
5180 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00005181 //
Chris Lattner8c494ab2006-10-27 23:50:33 +00005182 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner1c08c712005-01-07 07:47:53 +00005183
5184 // Emit constants only once even if used by multiple PHI nodes.
5185 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005186
Chris Lattner8c494ab2006-10-27 23:50:33 +00005187 // Vector bool would be better, but vector<bool> is really slow.
5188 std::vector<unsigned char> SuccsHandled;
5189 if (TI->getNumSuccessors())
5190 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5191
Dan Gohman532dc2e2007-07-09 20:59:04 +00005192 // Check successor nodes' PHI nodes that expect a constant to be available
5193 // from this block.
Chris Lattner1c08c712005-01-07 07:47:53 +00005194 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5195 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005196 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner8c494ab2006-10-27 23:50:33 +00005197 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005198
Chris Lattner8c494ab2006-10-27 23:50:33 +00005199 // If this terminator has multiple identical successors (common for
5200 // switches), only handle each succ once.
5201 unsigned SuccMBBNo = SuccMBB->getNumber();
5202 if (SuccsHandled[SuccMBBNo]) continue;
5203 SuccsHandled[SuccMBBNo] = true;
5204
5205 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner1c08c712005-01-07 07:47:53 +00005206 PHINode *PN;
5207
5208 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5209 // nodes and Machine PHI nodes, but the incoming operands have not been
5210 // emitted yet.
5211 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8c494ab2006-10-27 23:50:33 +00005212 (PN = dyn_cast<PHINode>(I)); ++I) {
5213 // Ignore dead phi's.
5214 if (PN->use_empty()) continue;
5215
5216 unsigned Reg;
5217 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner3f7927c2006-11-29 01:12:32 +00005218
Chris Lattner8c494ab2006-10-27 23:50:33 +00005219 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5220 unsigned &RegOut = ConstantsOut[C];
5221 if (RegOut == 0) {
5222 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005223 SDL.CopyValueToVirtualRegister(C, RegOut);
Chris Lattner1c08c712005-01-07 07:47:53 +00005224 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005225 Reg = RegOut;
5226 } else {
5227 Reg = FuncInfo.ValueMap[PHIOp];
5228 if (Reg == 0) {
5229 assert(isa<AllocaInst>(PHIOp) &&
5230 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5231 "Didn't codegen value into a register!??");
5232 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005233 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Chris Lattner7e021512006-03-31 02:12:18 +00005234 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005235 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005236
5237 // Remember that this register needs to added to the machine PHI node as
5238 // the input for this MBB.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005239 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +00005240 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohmanb9f10192007-06-21 14:42:22 +00005241 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Chris Lattner8c494ab2006-10-27 23:50:33 +00005242 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5243 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005244 }
5245 ConstantsOut.clear();
5246
5247 // Lower the terminator after the copies are emitted.
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005248 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00005249
Nate Begemanf15485a2006-03-27 01:32:24 +00005250 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00005251 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00005252 SwitchCases.clear();
5253 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005254 JTCases.clear();
5255 JTCases = SDL.JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005256 BitTestCases.clear();
5257 BitTestCases = SDL.BitTestCases;
5258
Chris Lattnera651cf62005-01-17 19:43:36 +00005259 // Make sure the root of the DAG is up-to-date.
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005260 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005261
5262 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5263 // with correct tailcall attribute so that the target can rely on the tailcall
5264 // attribute indicating whether the call is really eligible for tail call
5265 // optimization.
5266 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Chris Lattner1c08c712005-01-07 07:47:53 +00005267}
5268
Chris Lattneread0d882008-06-17 06:09:18 +00005269void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5270 SmallPtrSet<SDNode*, 128> VisitedNodes;
5271 SmallVector<SDNode*, 128> Worklist;
5272
5273 Worklist.push_back(DAG.getRoot().Val);
5274
5275 APInt Mask;
5276 APInt KnownZero;
5277 APInt KnownOne;
5278
5279 while (!Worklist.empty()) {
5280 SDNode *N = Worklist.back();
5281 Worklist.pop_back();
5282
5283 // If we've already seen this node, ignore it.
5284 if (!VisitedNodes.insert(N))
5285 continue;
5286
5287 // Otherwise, add all chain operands to the worklist.
5288 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5289 if (N->getOperand(i).getValueType() == MVT::Other)
5290 Worklist.push_back(N->getOperand(i).Val);
5291
5292 // If this is a CopyToReg with a vreg dest, process it.
5293 if (N->getOpcode() != ISD::CopyToReg)
5294 continue;
5295
5296 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5297 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5298 continue;
5299
5300 // Ignore non-scalar or non-integer values.
5301 SDOperand Src = N->getOperand(2);
5302 MVT SrcVT = Src.getValueType();
5303 if (!SrcVT.isInteger() || SrcVT.isVector())
5304 continue;
5305
5306 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5307 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5308 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5309
5310 // Only install this information if it tells us something.
5311 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5312 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5313 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5314 if (DestReg >= FLI.LiveOutRegInfo.size())
5315 FLI.LiveOutRegInfo.resize(DestReg+1);
5316 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5317 LOI.NumSignBits = NumSignBits;
5318 LOI.KnownOne = NumSignBits;
5319 LOI.KnownZero = NumSignBits;
5320 }
5321 }
5322}
5323
Nate Begemanf15485a2006-03-27 01:32:24 +00005324void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohman417e11b2007-10-08 15:12:17 +00005325 DOUT << "Lowered selection DAG:\n";
5326 DEBUG(DAG.dump());
5327
Chris Lattneraf21d552005-10-10 16:47:10 +00005328 // Run the DAG combiner in pre-legalize mode.
Dan Gohman5f43f922007-08-27 16:26:13 +00005329 DAG.Combine(false, *AA);
Nate Begeman2300f552005-09-07 00:15:36 +00005330
Dan Gohman417e11b2007-10-08 15:12:17 +00005331 DOUT << "Optimized lowered selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005332 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005333
Chris Lattner1c08c712005-01-07 07:47:53 +00005334 // Second step, hack on the DAG until it only uses operations and types that
5335 // the target supports.
Chris Lattner01d029b2007-10-15 06:10:22 +00005336#if 0 // Enable this some day.
5337 DAG.LegalizeTypes();
5338 // Someday even later, enable a dag combine pass here.
5339#endif
Chris Lattnerac9dc082005-01-23 04:36:26 +00005340 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00005341
Bill Wendling832171c2006-12-07 20:04:42 +00005342 DOUT << "Legalized selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005343 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005344
Chris Lattneraf21d552005-10-10 16:47:10 +00005345 // Run the DAG combiner in post-legalize mode.
Dan Gohman5f43f922007-08-27 16:26:13 +00005346 DAG.Combine(true, *AA);
Nate Begeman2300f552005-09-07 00:15:36 +00005347
Dan Gohman417e11b2007-10-08 15:12:17 +00005348 DOUT << "Optimized legalized selection DAG:\n";
5349 DEBUG(DAG.dump());
5350
Evan Chenga9c20912006-01-21 02:32:06 +00005351 if (ViewISelDAGs) DAG.viewGraph();
Chris Lattneread0d882008-06-17 06:09:18 +00005352
5353 if (EnableValueProp) // FIXME: Only do this if !fast.
5354 ComputeLiveOutVRegInfo(DAG);
Evan Cheng552c4a82006-04-28 02:09:19 +00005355
Chris Lattnera33ef482005-03-30 01:10:47 +00005356 // Third, instruction select all of the operations to machine code, adding the
5357 // code to the MachineBasicBlock.
Evan Chengdb8d56b2008-06-30 20:45:06 +00005358 InstructionSelect(DAG);
5359
5360 // Emit machine code to BB. This can change 'BB' to the last block being
5361 // inserted into.
5362 ScheduleAndEmitDAG(DAG);
5363
5364 // Perform target specific isel post processing.
5365 InstructionSelectPostProcessing(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00005366
Bill Wendling832171c2006-12-07 20:04:42 +00005367 DOUT << "Selected machine code:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005368 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005369}
Chris Lattner1c08c712005-01-07 07:47:53 +00005370
Nate Begemanf15485a2006-03-27 01:32:24 +00005371void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5372 FunctionLoweringInfo &FuncInfo) {
5373 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5374 {
Chris Lattneread0d882008-06-17 06:09:18 +00005375 SelectionDAG DAG(TLI, MF, FuncInfo,
5376 getAnalysisToUpdate<MachineModuleInfo>());
Nate Begemanf15485a2006-03-27 01:32:24 +00005377 CurDAG = &DAG;
5378
5379 // First step, lower LLVM code to some DAG. This DAG may use operations and
5380 // types that are not supported by the target.
5381 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5382
5383 // Second step, emit the lowered DAG as machine code.
5384 CodeGenAndEmitDAG(DAG);
5385 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005386
5387 DOUT << "Total amount of phi nodes to update: "
5388 << PHINodesToUpdate.size() << "\n";
5389 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5390 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5391 << ", " << PHINodesToUpdate[i].second << ")\n";);
Nate Begemanf15485a2006-03-27 01:32:24 +00005392
Chris Lattnera33ef482005-03-30 01:10:47 +00005393 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00005394 // PHI nodes in successors.
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005395 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005396 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5397 MachineInstr *PHI = PHINodesToUpdate[i].first;
5398 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5399 "This is not a machine PHI node that we are updating!");
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005400 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5401 false));
5402 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +00005403 }
5404 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00005405 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005406
5407 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5408 // Lower header first, if it wasn't already lowered
5409 if (!BitTestCases[i].Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005410 SelectionDAG HSDAG(TLI, MF, FuncInfo,
5411 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005412 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005413 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005414 // Set the current basic block to the mbb we wish to insert the code into
5415 BB = BitTestCases[i].Parent;
5416 HSDL.setCurrentBasicBlock(BB);
5417 // Emit the code
5418 HSDL.visitBitTestHeader(BitTestCases[i]);
5419 HSDAG.setRoot(HSDL.getRoot());
5420 CodeGenAndEmitDAG(HSDAG);
5421 }
5422
5423 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattneread0d882008-06-17 06:09:18 +00005424 SelectionDAG BSDAG(TLI, MF, FuncInfo,
5425 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005426 CurDAG = &BSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005427 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005428 // Set the current basic block to the mbb we wish to insert the code into
5429 BB = BitTestCases[i].Cases[j].ThisBB;
5430 BSDL.setCurrentBasicBlock(BB);
5431 // Emit the code
5432 if (j+1 != ej)
5433 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5434 BitTestCases[i].Reg,
5435 BitTestCases[i].Cases[j]);
5436 else
5437 BSDL.visitBitTestCase(BitTestCases[i].Default,
5438 BitTestCases[i].Reg,
5439 BitTestCases[i].Cases[j]);
5440
5441
5442 BSDAG.setRoot(BSDL.getRoot());
5443 CodeGenAndEmitDAG(BSDAG);
5444 }
5445
5446 // Update PHI Nodes
5447 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5448 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5449 MachineBasicBlock *PHIBB = PHI->getParent();
5450 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5451 "This is not a machine PHI node that we are updating!");
5452 // This is "default" BB. We have two jumps to it. From "header" BB and
5453 // from last "case" BB.
5454 if (PHIBB == BitTestCases[i].Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005455 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5456 false));
5457 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5458 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5459 false));
5460 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5461 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005462 }
5463 // One of "cases" BB.
5464 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5465 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5466 if (cBB->succ_end() !=
5467 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005468 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5469 false));
5470 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005471 }
5472 }
5473 }
5474 }
5475
Nate Begeman9453eea2006-04-23 06:26:20 +00005476 // If the JumpTable record is filled in, then we need to emit a jump table.
5477 // Updating the PHI nodes is tricky in this case, since we need to determine
5478 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005479 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5480 // Lower header first, if it wasn't already lowered
5481 if (!JTCases[i].first.Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005482 SelectionDAG HSDAG(TLI, MF, FuncInfo,
5483 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005484 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005485 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005486 // Set the current basic block to the mbb we wish to insert the code into
5487 BB = JTCases[i].first.HeaderBB;
5488 HSDL.setCurrentBasicBlock(BB);
5489 // Emit the code
5490 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5491 HSDAG.setRoot(HSDL.getRoot());
5492 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005493 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005494
Chris Lattneread0d882008-06-17 06:09:18 +00005495 SelectionDAG JSDAG(TLI, MF, FuncInfo,
5496 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005497 CurDAG = &JSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005498 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Nate Begeman37efe672006-04-22 18:53:45 +00005499 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005500 BB = JTCases[i].second.MBB;
5501 JSDL.setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00005502 // Emit the code
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005503 JSDL.visitJumpTable(JTCases[i].second);
5504 JSDAG.setRoot(JSDL.getRoot());
5505 CodeGenAndEmitDAG(JSDAG);
5506
Nate Begeman37efe672006-04-22 18:53:45 +00005507 // Update PHI Nodes
5508 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5509 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5510 MachineBasicBlock *PHIBB = PHI->getParent();
5511 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5512 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005513 // "default" BB. We can go there only from header BB.
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005514 if (PHIBB == JTCases[i].second.Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005515 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5516 false));
5517 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +00005518 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005519 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +00005520 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005521 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5522 false));
5523 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +00005524 }
5525 }
Nate Begeman37efe672006-04-22 18:53:45 +00005526 }
5527
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005528 // If the switch block involved a branch to one of the actual successors, we
5529 // need to update PHI nodes in that block.
5530 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5531 MachineInstr *PHI = PHINodesToUpdate[i].first;
5532 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5533 "This is not a machine PHI node that we are updating!");
5534 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005535 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5536 false));
5537 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005538 }
5539 }
5540
Nate Begemanf15485a2006-03-27 01:32:24 +00005541 // If we generated any switch lowering information, build and codegen any
5542 // additional DAGs necessary.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005543 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattneread0d882008-06-17 06:09:18 +00005544 SelectionDAG SDAG(TLI, MF, FuncInfo,
5545 getAnalysisToUpdate<MachineModuleInfo>());
Nate Begemanf15485a2006-03-27 01:32:24 +00005546 CurDAG = &SDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005547 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005548
Nate Begemanf15485a2006-03-27 01:32:24 +00005549 // Set the current basic block to the mbb we wish to insert the code into
5550 BB = SwitchCases[i].ThisBB;
5551 SDL.setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005552
Nate Begemanf15485a2006-03-27 01:32:24 +00005553 // Emit the code
5554 SDL.visitSwitchCase(SwitchCases[i]);
5555 SDAG.setRoot(SDL.getRoot());
5556 CodeGenAndEmitDAG(SDAG);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005557
5558 // Handle any PHI nodes in successors of this chunk, as if we were coming
5559 // from the original BB before switch expansion. Note that PHI nodes can
5560 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5561 // handle them the right number of times.
Chris Lattner57ab6592006-10-24 17:57:59 +00005562 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005563 for (MachineBasicBlock::iterator Phi = BB->begin();
5564 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5565 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5566 for (unsigned pn = 0; ; ++pn) {
5567 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5568 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005569 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5570 second, false));
5571 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005572 break;
5573 }
5574 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005575 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005576
5577 // Don't process RHS if same block as LHS.
Chris Lattner57ab6592006-10-24 17:57:59 +00005578 if (BB == SwitchCases[i].FalseBB)
5579 SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005580
5581 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner24525952006-10-24 18:07:37 +00005582 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner57ab6592006-10-24 17:57:59 +00005583 SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00005584 }
Chris Lattner57ab6592006-10-24 17:57:59 +00005585 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00005586 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005587}
Evan Chenga9c20912006-01-21 02:32:06 +00005588
Jim Laskey13ec7022006-08-01 14:21:23 +00005589
Evan Chenga9c20912006-01-21 02:32:06 +00005590//===----------------------------------------------------------------------===//
5591/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
5592/// target node in the graph.
5593void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
5594 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00005595
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005596 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00005597
5598 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005599 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00005600 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00005601 }
Jim Laskey13ec7022006-08-01 14:21:23 +00005602
Jim Laskey9ff542f2006-08-01 18:29:48 +00005603 ScheduleDAG *SL = Ctor(this, &DAG, BB);
Chris Lattnera3818e62006-01-21 19:12:11 +00005604 BB = SL->Run();
Dan Gohman3e1a7ae2007-08-28 20:32:58 +00005605
5606 if (ViewSUnitDAGs) SL->viewGraph();
5607
Evan Chengcccf1232006-02-04 06:49:00 +00005608 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00005609}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005610
Chris Lattner03fc53c2006-03-06 00:22:00 +00005611
Jim Laskey9ff542f2006-08-01 18:29:48 +00005612HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5613 return new HazardRecognizer();
5614}
5615
Chris Lattner75548062006-10-11 03:58:02 +00005616//===----------------------------------------------------------------------===//
5617// Helper functions used by the generated instruction selector.
5618//===----------------------------------------------------------------------===//
5619// Calls to these methods are generated by tblgen.
5620
5621/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5622/// the dag combiner simplified the 255, we still want to match. RHS is the
5623/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5624/// specified in the .td file (e.g. 255).
5625bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00005626 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005627 const APInt &ActualMask = RHS->getAPIntValue();
5628 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005629
5630 // If the actual mask exactly matches, success!
5631 if (ActualMask == DesiredMask)
5632 return true;
5633
5634 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005635 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005636 return false;
5637
5638 // Otherwise, the DAG Combiner may have proven that the value coming in is
5639 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005640 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00005641 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00005642 return true;
5643
5644 // TODO: check to see if missing bits are just not demanded.
5645
5646 // Otherwise, this pattern doesn't match.
5647 return false;
5648}
5649
5650/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5651/// the dag combiner simplified the 255, we still want to match. RHS is the
5652/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5653/// specified in the .td file (e.g. 255).
5654bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005655 int64_t DesiredMaskS) const {
5656 const APInt &ActualMask = RHS->getAPIntValue();
5657 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005658
5659 // If the actual mask exactly matches, success!
5660 if (ActualMask == DesiredMask)
5661 return true;
5662
5663 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005664 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005665 return false;
5666
5667 // Otherwise, the DAG Combiner may have proven that the value coming in is
5668 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005669 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00005670
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005671 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005672 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00005673
5674 // If all the missing bits in the or are already known to be set, match!
5675 if ((NeededMask & KnownOne) == NeededMask)
5676 return true;
5677
5678 // TODO: check to see if missing bits are just not demanded.
5679
5680 // Otherwise, this pattern doesn't match.
5681 return false;
5682}
5683
Jim Laskey9ff542f2006-08-01 18:29:48 +00005684
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005685/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5686/// by tblgen. Others should not call it.
5687void SelectionDAGISel::
5688SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
5689 std::vector<SDOperand> InOps;
5690 std::swap(InOps, Ops);
5691
5692 Ops.push_back(InOps[0]); // input chain.
5693 Ops.push_back(InOps[1]); // input asm string.
5694
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005695 unsigned i = 2, e = InOps.size();
5696 if (InOps[e-1].getValueType() == MVT::Flag)
5697 --e; // Don't process a flag operand if it is here.
5698
5699 while (i != e) {
5700 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5701 if ((Flags & 7) != 4 /*MEM*/) {
5702 // Just skip over this operand, copying the operands verbatim.
5703 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5704 i += (Flags >> 3) + 1;
5705 } else {
5706 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5707 // Otherwise, this is a memory operand. Ask the target to select it.
5708 std::vector<SDOperand> SelOps;
5709 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling832171c2006-12-07 20:04:42 +00005710 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005711 exit(1);
5712 }
5713
5714 // Add this to the output node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005715 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner36d43962006-12-16 21:14:48 +00005716 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattner4b993b12007-04-09 00:33:58 +00005717 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005718 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5719 i += 2;
5720 }
5721 }
5722
5723 // Add the flag input back if present.
5724 if (e != InOps.size())
5725 Ops.push_back(InOps.back());
5726}
Devang Patel794fd752007-05-01 21:15:47 +00005727
Devang Patel19974732007-05-03 01:11:54 +00005728char SelectionDAGISel::ID = 0;