blob: a2e0a06beb4563e6c673b0ffe42f52d692f4c8ed [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"
Chris Lattner1c08c712005-01-07 07:47:53 +000030#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineFrameInfo.h"
32#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineJumpTableInfo.h"
34#include "llvm/CodeGen/MachineModuleInfo.h"
35#include "llvm/CodeGen/MachineRegisterInfo.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000036#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000037#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000038#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000039#include "llvm/Target/TargetData.h"
40#include "llvm/Target/TargetFrameInfo.h"
41#include "llvm/Target/TargetInstrInfo.h"
42#include "llvm/Target/TargetLowering.h"
43#include "llvm/Target/TargetMachine.h"
Vladimir Prus12472912006-05-23 13:43:15 +000044#include "llvm/Target/TargetOptions.h"
Chris Lattner7c0104b2005-11-09 04:45:33 +000045#include "llvm/Support/MathExtras.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000046#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000047#include "llvm/Support/Compiler.h"
Jeff Cohen7e881032006-02-24 02:52:40 +000048#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000049using namespace llvm;
50
Chris Lattneread0d882008-06-17 06:09:18 +000051static cl::opt<bool>
52EnableValueProp("enable-value-prop", cl::Hidden, cl::init(false));
53
54
Chris Lattnerda8abb02005-09-01 18:44:10 +000055#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000056static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000057ViewISelDAGs("view-isel-dags", cl::Hidden,
58 cl::desc("Pop up a window to show isel dags as they are selected"));
59static cl::opt<bool>
60ViewSchedDAGs("view-sched-dags", cl::Hidden,
61 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000062static cl::opt<bool>
63ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +000064 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000065#else
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000066static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0, ViewSUnitDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000067#endif
68
Jim Laskeyeb577ba2006-08-02 12:30:23 +000069//===---------------------------------------------------------------------===//
70///
71/// RegisterScheduler class - Track the registration of instruction schedulers.
72///
73//===---------------------------------------------------------------------===//
74MachinePassRegistry RegisterScheduler::Registry;
75
76//===---------------------------------------------------------------------===//
77///
78/// ISHeuristic command line option for instruction schedulers.
79///
80//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +000081static cl::opt<RegisterScheduler::FunctionPassCtor, false,
82 RegisterPassParser<RegisterScheduler> >
83ISHeuristic("pre-RA-sched",
84 cl::init(&createDefaultScheduler),
85 cl::desc("Instruction schedulers available (before register"
86 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +000087
Dan Gohman844731a2008-05-13 00:00:25 +000088static RegisterScheduler
89defaultListDAGScheduler("default", " Best scheduler for the target",
90 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +000091
Evan Cheng5c807602008-02-26 02:33:44 +000092namespace { struct SDISelAsmOperandInfo; }
Chris Lattnerbf996f12007-04-30 17:29:31 +000093
Dan Gohman1d685a42008-06-07 02:02:36 +000094/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
95/// insertvalue or extractvalue indices that identify a member, return
96/// the linearized index of the start of the member.
97///
98static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
99 const unsigned *Indices,
100 const unsigned *IndicesEnd,
101 unsigned CurIndex = 0) {
102 // Base case: We're done.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000103 if (Indices && Indices == IndicesEnd)
Dan Gohman1d685a42008-06-07 02:02:36 +0000104 return CurIndex;
105
Chris Lattnerf899fce2008-04-27 23:48:12 +0000106 // Given a struct type, recursively traverse the elements.
107 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000108 for (StructType::element_iterator EB = STy->element_begin(),
109 EI = EB,
Dan Gohman1d685a42008-06-07 02:02:36 +0000110 EE = STy->element_end();
111 EI != EE; ++EI) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000112 if (Indices && *Indices == unsigned(EI - EB))
113 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
114 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000115 }
116 }
117 // Given an array type, recursively traverse the elements.
118 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
119 const Type *EltTy = ATy->getElementType();
120 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000121 if (Indices && *Indices == i)
122 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
123 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000124 }
125 }
126 // We haven't found the type we're looking for, so keep searching.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000127 return CurIndex + 1;
Dan Gohman1d685a42008-06-07 02:02:36 +0000128}
129
130/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
131/// MVTs that represent all the individual underlying
132/// non-aggregate types that comprise it.
133///
134/// If Offsets is non-null, it points to a vector to be filled in
135/// with the in-memory offsets of each of the individual values.
136///
137static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
138 SmallVectorImpl<MVT> &ValueVTs,
139 SmallVectorImpl<uint64_t> *Offsets = 0,
140 uint64_t StartingOffset = 0) {
141 // Given a struct type, recursively traverse the elements.
142 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
143 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
144 for (StructType::element_iterator EB = STy->element_begin(),
145 EI = EB,
146 EE = STy->element_end();
147 EI != EE; ++EI)
148 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
149 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattnerf899fce2008-04-27 23:48:12 +0000150 return;
Dan Gohman23ce5022008-04-25 18:27:55 +0000151 }
Chris Lattnerf899fce2008-04-27 23:48:12 +0000152 // Given an array type, recursively traverse the elements.
153 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
154 const Type *EltTy = ATy->getElementType();
Dan Gohman1d685a42008-06-07 02:02:36 +0000155 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000156 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +0000157 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
158 StartingOffset + i * EltSize);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000159 return;
160 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000161 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattnerf899fce2008-04-27 23:48:12 +0000162 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman1d685a42008-06-07 02:02:36 +0000163 if (Offsets)
164 Offsets->push_back(StartingOffset);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000165}
Dan Gohman23ce5022008-04-25 18:27:55 +0000166
Chris Lattnerf899fce2008-04-27 23:48:12 +0000167namespace {
Dan Gohman0fe00902008-04-28 18:10:39 +0000168 /// RegsForValue - This struct represents the registers (physical or virtual)
169 /// that a particular set of values is assigned, and the type information about
170 /// the value. The most common situation is to represent one value at a time,
171 /// but struct or array values are handled element-wise as multiple values.
172 /// The splitting of aggregates is performed recursively, so that we never
173 /// have aggregate-typed registers. The values at this point do not necessarily
174 /// have legal types, so each value may require one or more registers of some
175 /// legal type.
176 ///
Chris Lattner95255282006-06-28 23:17:24 +0000177 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman23ce5022008-04-25 18:27:55 +0000178 /// TLI - The TargetLowering object.
Dan Gohman0fe00902008-04-28 18:10:39 +0000179 ///
Dan Gohman23ce5022008-04-25 18:27:55 +0000180 const TargetLowering *TLI;
181
Dan Gohman0fe00902008-04-28 18:10:39 +0000182 /// ValueVTs - The value types of the values, which may not be legal, and
183 /// may need be promoted or synthesized from one or more registers.
184 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000185 SmallVector<MVT, 4> ValueVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000186
Dan Gohman0fe00902008-04-28 18:10:39 +0000187 /// RegVTs - The value types of the registers. This is the same size as
188 /// ValueVTs and it records, for each value, what the type of the assigned
189 /// register or registers are. (Individual values are never synthesized
190 /// from more than one type of register.)
191 ///
192 /// With virtual registers, the contents of RegVTs is redundant with TLI's
193 /// getRegisterType member function, however when with physical registers
194 /// it is necessary to have a separate record of the types.
Chris Lattner864635a2006-02-22 22:37:12 +0000195 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000196 SmallVector<MVT, 4> RegVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000197
Dan Gohman0fe00902008-04-28 18:10:39 +0000198 /// Regs - This list holds the registers assigned to the values.
199 /// Each legal or promoted value requires one register, and each
200 /// expanded value requires multiple registers.
201 ///
202 SmallVector<unsigned, 4> Regs;
Chris Lattner864635a2006-02-22 22:37:12 +0000203
Dan Gohman23ce5022008-04-25 18:27:55 +0000204 RegsForValue() : TLI(0) {}
Chris Lattner864635a2006-02-22 22:37:12 +0000205
Dan Gohman23ce5022008-04-25 18:27:55 +0000206 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000207 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000208 MVT regvt, MVT valuevt)
Dan Gohman0fe00902008-04-28 18:10:39 +0000209 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000210 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000211 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000212 const SmallVector<MVT, 4> &regvts,
213 const SmallVector<MVT, 4> &valuevts)
Dan Gohman0fe00902008-04-28 18:10:39 +0000214 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000215 RegsForValue(const TargetLowering &tli,
216 unsigned Reg, const Type *Ty) : TLI(&tli) {
217 ComputeValueVTs(tli, Ty, ValueVTs);
218
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000219 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000220 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +0000221 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000222 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000223 for (unsigned i = 0; i != NumRegs; ++i)
224 Regs.push_back(Reg + i);
225 RegVTs.push_back(RegisterVT);
226 Reg += NumRegs;
227 }
Chris Lattner864635a2006-02-22 22:37:12 +0000228 }
229
Chris Lattner41f62592008-04-29 04:29:54 +0000230 /// append - Add the specified values to this one.
231 void append(const RegsForValue &RHS) {
232 TLI = RHS.TLI;
233 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
234 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
235 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
236 }
237
238
Chris Lattner864635a2006-02-22 22:37:12 +0000239 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman23ce5022008-04-25 18:27:55 +0000240 /// this value and returns the result as a ValueVTs value. This uses
Chris Lattner864635a2006-02-22 22:37:12 +0000241 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000242 /// If the Flag pointer is NULL, no flag is used.
Chris Lattner864635a2006-02-22 22:37:12 +0000243 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000244 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000245
246 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
247 /// specified value into the registers specified by this object. This uses
248 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000249 /// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000250 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000251 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000252
253 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
254 /// operand list. This adds the code marker and includes the number of
255 /// values added into it.
256 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000257 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000258 };
259}
Evan Cheng4ef10862006-01-23 07:01:07 +0000260
Chris Lattner1c08c712005-01-07 07:47:53 +0000261namespace llvm {
262 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000263 /// createDefaultScheduler - This creates an instruction scheduler appropriate
264 /// for the target.
265 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
266 SelectionDAG *DAG,
267 MachineBasicBlock *BB) {
268 TargetLowering &TLI = IS->getTargetLowering();
269
270 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
271 return createTDListDAGScheduler(IS, DAG, BB);
272 } else {
273 assert(TLI.getSchedulingPreference() ==
274 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
275 return createBURRListDAGScheduler(IS, DAG, BB);
276 }
277 }
278
279
280 //===--------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000281 /// FunctionLoweringInfo - This contains information that is global to a
282 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000283 class FunctionLoweringInfo {
284 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000285 TargetLowering &TLI;
286 Function &Fn;
287 MachineFunction &MF;
Chris Lattner84bc5422007-12-31 04:13:23 +0000288 MachineRegisterInfo &RegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000289
290 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
291
292 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
293 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
294
295 /// ValueMap - Since we emit code for the function a basic block at a time,
296 /// we must remember which virtual registers hold the values for
297 /// cross-basic-block values.
Chris Lattner9f24ad72007-02-04 01:35:11 +0000298 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000299
300 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
301 /// the entry block. This allows the allocas to be efficiently referenced
302 /// anywhere in the function.
303 std::map<const AllocaInst*, int> StaticAllocaMap;
304
Duncan Sandsf4070822007-06-15 19:04:19 +0000305#ifndef NDEBUG
306 SmallSet<Instruction*, 8> CatchInfoLost;
307 SmallSet<Instruction*, 8> CatchInfoFound;
308#endif
309
Duncan Sands83ec4b62008-06-06 12:08:01 +0000310 unsigned MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000311 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000312 }
Chris Lattner571e4342006-10-27 21:36:01 +0000313
314 /// isExportedInst - Return true if the specified value is an instruction
315 /// exported from its block.
316 bool isExportedInst(const Value *V) {
317 return ValueMap.count(V);
318 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000319
Chris Lattner3c384492006-03-16 19:51:18 +0000320 unsigned CreateRegForValue(const Value *V);
321
Chris Lattner1c08c712005-01-07 07:47:53 +0000322 unsigned InitializeRegForValue(const Value *V) {
323 unsigned &R = ValueMap[V];
324 assert(R == 0 && "Already initialized this value register!");
325 return R = CreateRegForValue(V);
326 }
Chris Lattneread0d882008-06-17 06:09:18 +0000327
328 struct LiveOutInfo {
329 unsigned NumSignBits;
330 APInt KnownOne, KnownZero;
331 LiveOutInfo() : NumSignBits(0) {}
332 };
333
334 /// LiveOutRegInfo - Information about live out vregs, indexed by their
335 /// register number offset by 'FirstVirtualRegister'.
336 std::vector<LiveOutInfo> LiveOutRegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000337 };
338}
339
Duncan Sandscf26d7c2007-07-04 20:52:51 +0000340/// isSelector - Return true if this instruction is a call to the
341/// eh.selector intrinsic.
342static bool isSelector(Instruction *I) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000343 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000344 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
345 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Duncan Sandsf4070822007-06-15 19:04:19 +0000346 return false;
347}
348
Chris Lattner1c08c712005-01-07 07:47:53 +0000349/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000350/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000351/// switch or atomic instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000352static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
353 if (isa<PHINode>(I)) return true;
354 BasicBlock *BB = I->getParent();
355 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000356 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattner571e4342006-10-27 21:36:01 +0000357 // FIXME: Remove switchinst special case.
Nate Begemanf15485a2006-03-27 01:32:24 +0000358 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000359 return true;
360 return false;
361}
362
Chris Lattnerbf209482005-10-30 19:42:35 +0000363/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000364/// entry block, return true. This includes arguments used by switches, since
365/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000366static bool isOnlyUsedInEntryBlock(Argument *A) {
367 BasicBlock *Entry = A->getParent()->begin();
368 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000369 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000370 return false; // Use not in entry block.
371 return true;
372}
373
Chris Lattner1c08c712005-01-07 07:47:53 +0000374FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000375 Function &fn, MachineFunction &mf)
Chris Lattner84bc5422007-12-31 04:13:23 +0000376 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000377
Chris Lattnerbf209482005-10-30 19:42:35 +0000378 // Create a vreg for each argument register that is not dead and is used
379 // outside of the entry block for the function.
380 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
381 AI != E; ++AI)
382 if (!isOnlyUsedInEntryBlock(AI))
383 InitializeRegForValue(AI);
384
Chris Lattner1c08c712005-01-07 07:47:53 +0000385 // Initialize the mapping of values to registers. This is only set up for
386 // instruction values that are used outside of the block that defines
387 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000388 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000389 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
390 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencerb83eb642006-10-20 07:07:24 +0000391 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000392 const Type *Ty = AI->getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +0000393 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000394 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000395 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000396 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000397
Reid Spencerb83eb642006-10-20 07:07:24 +0000398 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000399 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000400 StaticAllocaMap[AI] =
Chris Lattner6266c182007-04-25 04:08:28 +0000401 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000402 }
403
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000404 for (; BB != EB; ++BB)
405 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000406 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
407 if (!isa<AllocaInst>(I) ||
408 !StaticAllocaMap.count(cast<AllocaInst>(I)))
409 InitializeRegForValue(I);
410
411 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
412 // also creates the initial PHI MachineInstrs, though none of the input
413 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000414 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000415 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
416 MBBMap[BB] = MBB;
417 MF.getBasicBlockList().push_back(MBB);
418
419 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
420 // appropriate.
421 PHINode *PN;
Chris Lattner8c494ab2006-10-27 23:50:33 +0000422 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
423 if (PN->use_empty()) continue;
424
Duncan Sands83ec4b62008-06-06 12:08:01 +0000425 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +0000426 unsigned NumRegisters = TLI.getNumRegisters(VT);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000427 unsigned PHIReg = ValueMap[PN];
428 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Evan Chengc0f64ff2006-11-27 23:37:22 +0000429 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
Dan Gohmanb9f10192007-06-21 14:42:22 +0000430 for (unsigned i = 0; i != NumRegisters; ++i)
Evan Chengc0f64ff2006-11-27 23:37:22 +0000431 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000432 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000433 }
434}
435
Chris Lattner3c384492006-03-16 19:51:18 +0000436/// CreateRegForValue - Allocate the appropriate number of virtual registers of
437/// the correctly promoted or expanded types. Assign these registers
438/// consecutive vreg numbers and return the first assigned number.
Dan Gohman10a6b7a2008-04-28 18:19:43 +0000439///
440/// In the case that the given value has struct or array type, this function
441/// will assign registers for each member or element.
442///
Chris Lattner3c384492006-03-16 19:51:18 +0000443unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000444 SmallVector<MVT, 4> ValueVTs;
Chris Lattnerb606dba2008-04-28 06:44:42 +0000445 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Bill Wendling95b39552007-04-24 21:13:23 +0000446
Dan Gohman23ce5022008-04-25 18:27:55 +0000447 unsigned FirstReg = 0;
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000448 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000449 MVT ValueVT = ValueVTs[Value];
450 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohman8c8c5fc2007-06-27 14:34:07 +0000451
Chris Lattnerb606dba2008-04-28 06:44:42 +0000452 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000453 for (unsigned i = 0; i != NumRegs; ++i) {
454 unsigned R = MakeReg(RegisterVT);
455 if (!FirstReg) FirstReg = R;
456 }
457 }
458 return FirstReg;
Chris Lattner3c384492006-03-16 19:51:18 +0000459}
Chris Lattner1c08c712005-01-07 07:47:53 +0000460
461//===----------------------------------------------------------------------===//
462/// SelectionDAGLowering - This is the common target-independent lowering
463/// implementation that is parameterized by a TargetLowering object.
464/// Also, targets can overload any lowering method.
465///
466namespace llvm {
467class SelectionDAGLowering {
468 MachineBasicBlock *CurMBB;
469
Chris Lattner0da331f2007-02-04 01:31:47 +0000470 DenseMap<const Value*, SDOperand> NodeMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000471
Chris Lattnerd3948112005-01-17 22:19:26 +0000472 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
473 /// them up and then emit token factor nodes when possible. This allows us to
474 /// get simple disambiguation between loads without worrying about alias
475 /// analysis.
476 std::vector<SDOperand> PendingLoads;
477
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000478 /// PendingExports - CopyToReg nodes that copy values to virtual registers
479 /// for export to other blocks need to be emitted before any terminator
480 /// instruction, but they have no other ordering requirements. We bunch them
481 /// up and the emit a single tokenfactor for them just before terminator
482 /// instructions.
483 std::vector<SDOperand> PendingExports;
484
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000485 /// Case - A struct to record the Value for a switch case, and the
486 /// case's target basic block.
487 struct Case {
488 Constant* Low;
489 Constant* High;
490 MachineBasicBlock* BB;
491
492 Case() : Low(0), High(0), BB(0) { }
493 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
494 Low(low), High(high), BB(bb) { }
495 uint64_t size() const {
496 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
497 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
498 return (rHigh - rLow + 1ULL);
499 }
500 };
501
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000502 struct CaseBits {
503 uint64_t Mask;
504 MachineBasicBlock* BB;
505 unsigned Bits;
506
507 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
508 Mask(mask), BB(bb), Bits(bits) { }
509 };
510
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000511 typedef std::vector<Case> CaseVector;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000512 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000513 typedef CaseVector::iterator CaseItr;
514 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemanf15485a2006-03-27 01:32:24 +0000515
516 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
517 /// of conditional branches.
518 struct CaseRec {
519 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
520 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
521
522 /// CaseBB - The MBB in which to emit the compare and branch
523 MachineBasicBlock *CaseBB;
524 /// LT, GE - If nonzero, we know the current case value must be less-than or
525 /// greater-than-or-equal-to these Constants.
526 Constant *LT;
527 Constant *GE;
528 /// Range - A pair of iterators representing the range of case values to be
529 /// processed at this point in the binary search tree.
530 CaseRange Range;
531 };
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000532
533 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000534
535 /// The comparison function for sorting the switch case values in the vector.
536 /// WARNING: Case ranges should be disjoint!
Nate Begemanf15485a2006-03-27 01:32:24 +0000537 struct CaseCmp {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000538 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000539 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
540 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
541 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
542 return CI1->getValue().slt(CI2->getValue());
Nate Begemanf15485a2006-03-27 01:32:24 +0000543 }
544 };
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000545
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000546 struct CaseBitsCmp {
547 bool operator () (const CaseBits& C1, const CaseBits& C2) {
548 return C1.Bits > C2.Bits;
549 }
550 };
551
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000552 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemanf15485a2006-03-27 01:32:24 +0000553
Chris Lattner1c08c712005-01-07 07:47:53 +0000554public:
555 // TLI - This is information that describes the available target features we
556 // need for lowering. This indicates when operations are unavailable,
557 // implemented with a libcall, etc.
558 TargetLowering &TLI;
559 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000560 const TargetData *TD;
Dan Gohman5f43f922007-08-27 16:26:13 +0000561 AliasAnalysis &AA;
Chris Lattner1c08c712005-01-07 07:47:53 +0000562
Nate Begemanf15485a2006-03-27 01:32:24 +0000563 /// SwitchCases - Vector of CaseBlock structures used to communicate
564 /// SwitchInst code generation information.
565 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000566 /// JTCases - Vector of JumpTable structures used to communicate
567 /// SwitchInst code generation information.
568 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000569 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemanf15485a2006-03-27 01:32:24 +0000570
Chris Lattner1c08c712005-01-07 07:47:53 +0000571 /// FuncInfo - Information about the function as a whole.
572 ///
573 FunctionLoweringInfo &FuncInfo;
Gordon Henriksence224772008-01-07 01:30:38 +0000574
575 /// GCI - Garbage collection metadata for the function.
576 CollectorMetadata *GCI;
Chris Lattner1c08c712005-01-07 07:47:53 +0000577
578 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman5f43f922007-08-27 16:26:13 +0000579 AliasAnalysis &aa,
Gordon Henriksence224772008-01-07 01:30:38 +0000580 FunctionLoweringInfo &funcinfo,
581 CollectorMetadata *gci)
Dan Gohman5f43f922007-08-27 16:26:13 +0000582 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksence224772008-01-07 01:30:38 +0000583 FuncInfo(funcinfo), GCI(gci) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000584 }
585
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000586 /// getRoot - Return the current virtual root of the Selection DAG,
587 /// flushing any PendingLoad items. This must be done before emitting
588 /// a store or any other node that may need to be ordered after any
589 /// prior load instructions.
Chris Lattnera651cf62005-01-17 19:43:36 +0000590 ///
591 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000592 if (PendingLoads.empty())
593 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000594
Chris Lattnerd3948112005-01-17 22:19:26 +0000595 if (PendingLoads.size() == 1) {
596 SDOperand Root = PendingLoads[0];
597 DAG.setRoot(Root);
598 PendingLoads.clear();
599 return Root;
600 }
601
602 // Otherwise, we have to make a token factor node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000603 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
604 &PendingLoads[0], PendingLoads.size());
Chris Lattnerd3948112005-01-17 22:19:26 +0000605 PendingLoads.clear();
606 DAG.setRoot(Root);
607 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000608 }
609
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000610 /// getControlRoot - Similar to getRoot, but instead of flushing all the
611 /// PendingLoad items, flush all the PendingExports items. It is necessary
612 /// to do this before emitting a terminator instruction.
613 ///
614 SDOperand getControlRoot() {
615 SDOperand Root = DAG.getRoot();
616
617 if (PendingExports.empty())
618 return Root;
619
620 // Turn all of the CopyToReg chains into one factored node.
621 if (Root.getOpcode() != ISD::EntryToken) {
622 unsigned i = 0, e = PendingExports.size();
623 for (; i != e; ++i) {
624 assert(PendingExports[i].Val->getNumOperands() > 1);
625 if (PendingExports[i].Val->getOperand(0) == Root)
626 break; // Don't add the root if we already indirectly depend on it.
627 }
628
629 if (i == e)
630 PendingExports.push_back(Root);
631 }
632
633 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
634 &PendingExports[0],
635 PendingExports.size());
636 PendingExports.clear();
637 DAG.setRoot(Root);
638 return Root;
639 }
640
641 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Chris Lattner571e4342006-10-27 21:36:01 +0000642
Chris Lattner1c08c712005-01-07 07:47:53 +0000643 void visit(Instruction &I) { visit(I.getOpcode(), I); }
644
645 void visit(unsigned Opcode, User &I) {
Chris Lattner1e7aa5c2006-11-10 04:41:34 +0000646 // Note: this doesn't use InstVisitor, because it has to work with
647 // ConstantExpr's in addition to instructions.
Chris Lattner1c08c712005-01-07 07:47:53 +0000648 switch (Opcode) {
649 default: assert(0 && "Unknown instruction type encountered!");
650 abort();
651 // Build the switch statement using the Instruction.def file.
652#define HANDLE_INST(NUM, OPCODE, CLASS) \
653 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
654#include "llvm/Instruction.def"
655 }
656 }
657
658 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
659
Chris Lattner199862b2006-03-16 19:57:50 +0000660 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000661
Chris Lattner0da331f2007-02-04 01:31:47 +0000662 void setValue(const Value *V, SDOperand NewN) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000663 SDOperand &N = NodeMap[V];
664 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner0da331f2007-02-04 01:31:47 +0000665 N = NewN;
Chris Lattner1c08c712005-01-07 07:47:53 +0000666 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000667
Evan Cheng5c807602008-02-26 02:33:44 +0000668 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnere7cf56a2007-04-30 21:11:17 +0000669 std::set<unsigned> &OutputRegs,
670 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000671
Chris Lattner571e4342006-10-27 21:36:01 +0000672 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
673 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
674 unsigned Opc);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000675 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattner571e4342006-10-27 21:36:01 +0000676 void ExportFromCurrentBlock(Value *V);
Duncan Sands6f74b482007-12-19 09:48:52 +0000677 void LowerCallTo(CallSite CS, SDOperand Callee, bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000678 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsdc024672007-11-27 13:23:08 +0000679
Chris Lattner1c08c712005-01-07 07:47:53 +0000680 // Terminator instructions.
681 void visitRet(ReturnInst &I);
682 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000683 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000684 void visitUnreachable(UnreachableInst &I) { /* noop */ }
685
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000686 // Helpers for visitSwitch
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000687 bool handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000688 CaseRecVector& WorkList,
689 Value* SV,
690 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000691 bool handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000692 CaseRecVector& WorkList,
693 Value* SV,
694 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000695 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000696 CaseRecVector& WorkList,
697 Value* SV,
698 MachineBasicBlock* Default);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000699 bool handleBitTestsSwitchCase(CaseRec& CR,
700 CaseRecVector& WorkList,
701 Value* SV,
702 MachineBasicBlock* Default);
Nate Begemanf15485a2006-03-27 01:32:24 +0000703 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000704 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
705 void visitBitTestCase(MachineBasicBlock* NextMBB,
706 unsigned Reg,
707 SelectionDAGISel::BitTestCase &B);
Nate Begeman37efe672006-04-22 18:53:45 +0000708 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000709 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
710 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemanf15485a2006-03-27 01:32:24 +0000711
Chris Lattner1c08c712005-01-07 07:47:53 +0000712 // These all get lowered before this pass.
Jim Laskeyb180aa12007-02-21 22:53:45 +0000713 void visitInvoke(InvokeInst &I);
714 void visitUnwind(UnwindInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000715
Dan Gohman7f321562007-06-25 16:23:39 +0000716 void visitBinary(User &I, unsigned OpCode);
Nate Begemane21ea612005-11-18 07:42:56 +0000717 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000718 void visitAdd(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000719 if (I.getType()->isFPOrFPVector())
720 visitBinary(I, ISD::FADD);
Reid Spencer1628cec2006-10-26 06:15:43 +0000721 else
Dan Gohman7f321562007-06-25 16:23:39 +0000722 visitBinary(I, ISD::ADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000723 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000724 void visitSub(User &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000725 void visitMul(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000726 if (I.getType()->isFPOrFPVector())
727 visitBinary(I, ISD::FMUL);
Reid Spencer1628cec2006-10-26 06:15:43 +0000728 else
Dan Gohman7f321562007-06-25 16:23:39 +0000729 visitBinary(I, ISD::MUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000730 }
Dan Gohman7f321562007-06-25 16:23:39 +0000731 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
732 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
733 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
734 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
735 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
736 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
737 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
738 void visitOr (User &I) { visitBinary(I, ISD::OR); }
739 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer24d6da52007-01-21 00:29:26 +0000740 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencer3822ff52006-11-08 06:47:33 +0000741 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
742 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000743 void visitICmp(User &I);
744 void visitFCmp(User &I);
Nate Begemanb43e9c12008-05-12 19:40:03 +0000745 void visitVICmp(User &I);
746 void visitVFCmp(User &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000747 // Visit the conversion instructions
748 void visitTrunc(User &I);
749 void visitZExt(User &I);
750 void visitSExt(User &I);
751 void visitFPTrunc(User &I);
752 void visitFPExt(User &I);
753 void visitFPToUI(User &I);
754 void visitFPToSI(User &I);
755 void visitUIToFP(User &I);
756 void visitSIToFP(User &I);
757 void visitPtrToInt(User &I);
758 void visitIntToPtr(User &I);
759 void visitBitCast(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000760
Chris Lattner2bbd8102006-03-29 00:11:43 +0000761 void visitExtractElement(User &I);
762 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000763 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000764
Dan Gohman1d685a42008-06-07 02:02:36 +0000765 void visitExtractValue(ExtractValueInst &I);
766 void visitInsertValue(InsertValueInst &I);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000767
Chris Lattner1c08c712005-01-07 07:47:53 +0000768 void visitGetElementPtr(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000769 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000770
771 void visitMalloc(MallocInst &I);
772 void visitFree(FreeInst &I);
773 void visitAlloca(AllocaInst &I);
774 void visitLoad(LoadInst &I);
775 void visitStore(StoreInst &I);
776 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
777 void visitCall(CallInst &I);
Duncan Sandsfd7b3262007-12-17 18:08:19 +0000778 void visitInlineAsm(CallSite CS);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000779 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000780 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000781
Chris Lattner1c08c712005-01-07 07:47:53 +0000782 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000783 void visitVAArg(VAArgInst &I);
784 void visitVAEnd(CallInst &I);
785 void visitVACopy(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000786
Dan Gohmanef5d1942008-03-11 21:11:25 +0000787 void visitGetResult(GetResultInst &I);
Devang Patel40a04212008-02-19 22:15:16 +0000788
Chris Lattner1c08c712005-01-07 07:47:53 +0000789 void visitUserOp1(Instruction &I) {
790 assert(0 && "UserOp1 should not exist at instruction selection time!");
791 abort();
792 }
793 void visitUserOp2(Instruction &I) {
794 assert(0 && "UserOp2 should not exist at instruction selection time!");
795 abort();
796 }
Mon P Wang63307c32008-05-05 19:05:59 +0000797
798private:
799 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
800
Chris Lattner1c08c712005-01-07 07:47:53 +0000801};
802} // end namespace llvm
803
Dan Gohman6183f782007-07-05 20:12:34 +0000804
Duncan Sandsb988bac2008-02-11 20:58:28 +0000805/// getCopyFromParts - Create a value that contains the specified legal parts
806/// combined into the value they represent. If the parts combine to a type
807/// larger then ValueVT then AssertOp can be used to specify whether the extra
808/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattner4468c1f2008-03-09 09:38:46 +0000809/// (ISD::AssertSext).
Dan Gohman6183f782007-07-05 20:12:34 +0000810static SDOperand getCopyFromParts(SelectionDAG &DAG,
811 const SDOperand *Parts,
812 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000813 MVT PartVT,
814 MVT ValueVT,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000815 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000816 assert(NumParts > 0 && "No parts to assemble!");
817 TargetLowering &TLI = DAG.getTargetLoweringInfo();
818 SDOperand Val = Parts[0];
Dan Gohman6183f782007-07-05 20:12:34 +0000819
Duncan Sands014e04a2008-02-12 20:46:31 +0000820 if (NumParts > 1) {
821 // Assemble the value from multiple parts.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000822 if (!ValueVT.isVector()) {
823 unsigned PartBits = PartVT.getSizeInBits();
824 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohman6183f782007-07-05 20:12:34 +0000825
Duncan Sands014e04a2008-02-12 20:46:31 +0000826 // Assemble the power of 2 part.
827 unsigned RoundParts = NumParts & (NumParts - 1) ?
828 1 << Log2_32(NumParts) : NumParts;
829 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000830 MVT RoundVT = RoundBits == ValueBits ?
831 ValueVT : MVT::getIntegerVT(RoundBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000832 SDOperand Lo, Hi;
833
834 if (RoundParts > 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000835 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands014e04a2008-02-12 20:46:31 +0000836 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
837 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
838 PartVT, HalfVT);
Dan Gohman6183f782007-07-05 20:12:34 +0000839 } else {
Duncan Sands014e04a2008-02-12 20:46:31 +0000840 Lo = Parts[0];
841 Hi = Parts[1];
Dan Gohman6183f782007-07-05 20:12:34 +0000842 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000843 if (TLI.isBigEndian())
844 std::swap(Lo, Hi);
845 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
846
847 if (RoundParts < NumParts) {
848 // Assemble the trailing non-power-of-2 part.
849 unsigned OddParts = NumParts - RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000850 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000851 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
852
853 // Combine the round and odd parts.
854 Lo = Val;
855 if (TLI.isBigEndian())
856 std::swap(Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000857 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000858 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
859 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000860 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands014e04a2008-02-12 20:46:31 +0000861 TLI.getShiftAmountTy()));
862 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
863 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
864 }
865 } else {
866 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000867 MVT IntermediateVT, RegisterVT;
Duncan Sands014e04a2008-02-12 20:46:31 +0000868 unsigned NumIntermediates;
869 unsigned NumRegs =
870 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
871 RegisterVT);
Duncan Sands014e04a2008-02-12 20:46:31 +0000872 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +0000873 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands014e04a2008-02-12 20:46:31 +0000874 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
875 assert(RegisterVT == Parts[0].getValueType() &&
876 "Part type doesn't match part!");
877
878 // Assemble the parts into intermediate operands.
879 SmallVector<SDOperand, 8> Ops(NumIntermediates);
880 if (NumIntermediates == NumParts) {
881 // If the register was not expanded, truncate or copy the value,
882 // as appropriate.
883 for (unsigned i = 0; i != NumParts; ++i)
884 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
885 PartVT, IntermediateVT);
886 } else if (NumParts > 0) {
887 // If the intermediate type was expanded, build the intermediate operands
888 // from the parts.
889 assert(NumParts % NumIntermediates == 0 &&
890 "Must expand into a divisible number of parts!");
891 unsigned Factor = NumParts / NumIntermediates;
892 for (unsigned i = 0; i != NumIntermediates; ++i)
893 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
894 PartVT, IntermediateVT);
895 }
896
897 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
898 // operands.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000899 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands014e04a2008-02-12 20:46:31 +0000900 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
901 ValueVT, &Ops[0], NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +0000902 }
Dan Gohman6183f782007-07-05 20:12:34 +0000903 }
904
Duncan Sands014e04a2008-02-12 20:46:31 +0000905 // There is now one part, held in Val. Correct it to match ValueVT.
906 PartVT = Val.getValueType();
Dan Gohman6183f782007-07-05 20:12:34 +0000907
Duncan Sands014e04a2008-02-12 20:46:31 +0000908 if (PartVT == ValueVT)
909 return Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000910
Duncan Sands83ec4b62008-06-06 12:08:01 +0000911 if (PartVT.isVector()) {
912 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands014e04a2008-02-12 20:46:31 +0000913 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000914 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000915
Duncan Sands83ec4b62008-06-06 12:08:01 +0000916 if (ValueVT.isVector()) {
917 assert(ValueVT.getVectorElementType() == PartVT &&
918 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +0000919 "Only trivial scalar-to-vector conversions should get here!");
920 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
921 }
922
Duncan Sands83ec4b62008-06-06 12:08:01 +0000923 if (PartVT.isInteger() &&
924 ValueVT.isInteger()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000925 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000926 // For a truncate, see if we have any information to
927 // indicate whether the truncated bits will always be
928 // zero or sign-extension.
929 if (AssertOp != ISD::DELETED_NODE)
930 Val = DAG.getNode(AssertOp, PartVT, Val,
931 DAG.getValueType(ValueVT));
932 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
933 } else {
934 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
935 }
936 }
937
Duncan Sands83ec4b62008-06-06 12:08:01 +0000938 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000939 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattner4468c1f2008-03-09 09:38:46 +0000940 // FP_ROUND's are always exact here.
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000941 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000942 DAG.getIntPtrConstant(1));
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000943 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
944 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000945
Duncan Sands83ec4b62008-06-06 12:08:01 +0000946 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands014e04a2008-02-12 20:46:31 +0000947 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
948
949 assert(0 && "Unknown mismatch!");
Chris Lattnerd27c9912008-03-30 18:22:13 +0000950 return SDOperand();
Dan Gohman6183f782007-07-05 20:12:34 +0000951}
952
Duncan Sandsb988bac2008-02-11 20:58:28 +0000953/// getCopyToParts - Create a series of nodes that contain the specified value
954/// split into legal parts. If the parts contain more bits than Val, then, for
955/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohman6183f782007-07-05 20:12:34 +0000956static void getCopyToParts(SelectionDAG &DAG,
957 SDOperand Val,
958 SDOperand *Parts,
959 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000960 MVT PartVT,
Duncan Sandsb988bac2008-02-11 20:58:28 +0000961 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohman25ac7e82007-08-10 14:59:38 +0000962 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000963 MVT PtrVT = TLI.getPointerTy();
964 MVT ValueVT = Val.getValueType();
965 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands014e04a2008-02-12 20:46:31 +0000966 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohman6183f782007-07-05 20:12:34 +0000967
Duncan Sands014e04a2008-02-12 20:46:31 +0000968 if (!NumParts)
969 return;
970
Duncan Sands83ec4b62008-06-06 12:08:01 +0000971 if (!ValueVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000972 if (PartVT == ValueVT) {
973 assert(NumParts == 1 && "No-op copy with multiple parts!");
974 Parts[0] = Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000975 return;
976 }
977
Duncan Sands83ec4b62008-06-06 12:08:01 +0000978 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000979 // If the parts cover more bits than the value has, promote the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000980 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000981 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohman6183f782007-07-05 20:12:34 +0000982 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000983 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
984 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000985 Val = DAG.getNode(ExtendKind, ValueVT, Val);
986 } else {
987 assert(0 && "Unknown mismatch!");
988 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000989 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000990 // Different types of the same size.
991 assert(NumParts == 1 && PartVT != ValueVT);
992 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000993 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000994 // If the parts cover less bits than value has, truncate the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000995 if (PartVT.isInteger() && ValueVT.isInteger()) {
996 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000997 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000998 } else {
999 assert(0 && "Unknown mismatch!");
1000 }
1001 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001002
1003 // The value may have changed - recompute ValueVT.
1004 ValueVT = Val.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001005 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001006 "Failed to tile the value with PartVT!");
1007
1008 if (NumParts == 1) {
1009 assert(PartVT == ValueVT && "Type conversion failed!");
1010 Parts[0] = Val;
1011 return;
1012 }
1013
1014 // Expand the value into multiple parts.
1015 if (NumParts & (NumParts - 1)) {
1016 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001017 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001018 "Do not know what to expand to!");
1019 unsigned RoundParts = 1 << Log2_32(NumParts);
1020 unsigned RoundBits = RoundParts * PartBits;
1021 unsigned OddParts = NumParts - RoundParts;
1022 SDOperand OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
1023 DAG.getConstant(RoundBits,
1024 TLI.getShiftAmountTy()));
1025 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1026 if (TLI.isBigEndian())
1027 // The odd parts were reversed by getCopyToParts - unreverse them.
1028 std::reverse(Parts + RoundParts, Parts + NumParts);
1029 NumParts = RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001030 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001031 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1032 }
1033
1034 // The number of parts is a power of 2. Repeatedly bisect the value using
1035 // EXTRACT_ELEMENT.
Duncan Sands25eb0432008-03-12 20:30:08 +00001036 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001037 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sands25eb0432008-03-12 20:30:08 +00001038 Val);
Duncan Sands014e04a2008-02-12 20:46:31 +00001039 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1040 for (unsigned i = 0; i < NumParts; i += StepSize) {
1041 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001042 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Duncan Sands25eb0432008-03-12 20:30:08 +00001043 SDOperand &Part0 = Parts[i];
1044 SDOperand &Part1 = Parts[i+StepSize/2];
Duncan Sands014e04a2008-02-12 20:46:31 +00001045
Duncan Sands25eb0432008-03-12 20:30:08 +00001046 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1047 DAG.getConstant(1, PtrVT));
1048 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1049 DAG.getConstant(0, PtrVT));
1050
1051 if (ThisBits == PartBits && ThisVT != PartVT) {
1052 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1053 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1054 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001055 }
1056 }
1057
1058 if (TLI.isBigEndian())
1059 std::reverse(Parts, Parts + NumParts);
1060
1061 return;
1062 }
1063
1064 // Vector ValueVT.
1065 if (NumParts == 1) {
1066 if (PartVT != ValueVT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001067 if (PartVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001068 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1069 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001070 assert(ValueVT.getVectorElementType() == PartVT &&
1071 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001072 "Only trivial vector-to-scalar conversions should get here!");
1073 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1074 DAG.getConstant(0, PtrVT));
1075 }
1076 }
1077
Dan Gohman6183f782007-07-05 20:12:34 +00001078 Parts[0] = Val;
1079 return;
1080 }
1081
1082 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001083 MVT IntermediateVT, RegisterVT;
Dan Gohman6183f782007-07-05 20:12:34 +00001084 unsigned NumIntermediates;
1085 unsigned NumRegs =
1086 DAG.getTargetLoweringInfo()
1087 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1088 RegisterVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001089 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohman6183f782007-07-05 20:12:34 +00001090
1091 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +00001092 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohman6183f782007-07-05 20:12:34 +00001093 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1094
1095 // Split the vector into intermediate operands.
1096 SmallVector<SDOperand, 8> Ops(NumIntermediates);
1097 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001098 if (IntermediateVT.isVector())
Dan Gohman6183f782007-07-05 20:12:34 +00001099 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1100 IntermediateVT, Val,
1101 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohman25ac7e82007-08-10 14:59:38 +00001102 PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001103 else
1104 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1105 IntermediateVT, Val,
Dan Gohman25ac7e82007-08-10 14:59:38 +00001106 DAG.getConstant(i, PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001107
1108 // Split the intermediate operands into legal parts.
1109 if (NumParts == NumIntermediates) {
1110 // If the register was not expanded, promote or copy the value,
1111 // as appropriate.
1112 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001113 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001114 } else if (NumParts > 0) {
1115 // If the intermediate type was expanded, split each the value into
1116 // legal parts.
1117 assert(NumParts % NumIntermediates == 0 &&
1118 "Must expand into a divisible number of parts!");
1119 unsigned Factor = NumParts / NumIntermediates;
1120 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001121 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001122 }
1123}
1124
1125
Chris Lattner199862b2006-03-16 19:57:50 +00001126SDOperand SelectionDAGLowering::getValue(const Value *V) {
1127 SDOperand &N = NodeMap[V];
1128 if (N.Val) return N;
1129
Chris Lattner199862b2006-03-16 19:57:50 +00001130 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001131 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001132
1133 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1134 return N = DAG.getConstant(CI->getValue(), VT);
1135
1136 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001137 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001138
1139 if (isa<ConstantPointerNull>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001140 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001141
1142 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1143 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1144
Dan Gohman1d685a42008-06-07 02:02:36 +00001145 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1146 !V->getType()->isAggregateType())
Chris Lattner6833b062008-04-28 07:16:35 +00001147 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001148
1149 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1150 visit(CE->getOpcode(), *CE);
1151 SDOperand N1 = NodeMap[V];
1152 assert(N1.Val && "visit didn't populate the ValueMap!");
1153 return N1;
1154 }
1155
Dan Gohman1d685a42008-06-07 02:02:36 +00001156 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1157 SmallVector<SDOperand, 4> Constants;
1158 SmallVector<MVT, 4> ValueVTs;
1159 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1160 OI != OE; ++OI) {
1161 SDNode *Val = getValue(*OI).Val;
1162 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) {
1163 Constants.push_back(SDOperand(Val, i));
1164 ValueVTs.push_back(Val->getValueType(i));
1165 }
1166 }
1167 return DAG.getNode(ISD::MERGE_VALUES,
1168 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1169 &Constants[0], Constants.size());
1170 }
1171
1172 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1173 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1174 "Unknown array constant!");
1175 unsigned NumElts = ATy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001176 if (NumElts == 0)
1177 return SDOperand(); // empty array
Dan Gohman1d685a42008-06-07 02:02:36 +00001178 MVT EltVT = TLI.getValueType(ATy->getElementType());
1179 SmallVector<SDOperand, 4> Constants(NumElts);
1180 SmallVector<MVT, 4> ValueVTs(NumElts, EltVT);
1181 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1182 if (isa<UndefValue>(C))
1183 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1184 else if (EltVT.isFloatingPoint())
1185 Constants[i] = DAG.getConstantFP(0, EltVT);
1186 else
1187 Constants[i] = DAG.getConstant(0, EltVT);
1188 }
1189 return DAG.getNode(ISD::MERGE_VALUES,
1190 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1191 &Constants[0], Constants.size());
1192 }
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 }
1212 return DAG.getNode(ISD::MERGE_VALUES,
1213 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1214 &Constants[0], Constants.size());
1215 }
1216
Chris Lattner6833b062008-04-28 07:16:35 +00001217 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001218 unsigned NumElements = VecTy->getNumElements();
Chris Lattnerb606dba2008-04-28 06:44:42 +00001219
Chris Lattner6833b062008-04-28 07:16:35 +00001220 // Now that we know the number and type of the elements, get that number of
1221 // elements into the Ops array based on what kind of constant it is.
1222 SmallVector<SDOperand, 16> Ops;
Chris Lattnerb606dba2008-04-28 06:44:42 +00001223 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1224 for (unsigned i = 0; i != NumElements; ++i)
1225 Ops.push_back(getValue(CP->getOperand(i)));
1226 } else {
Chris Lattner6833b062008-04-28 07:16:35 +00001227 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1228 "Unknown vector constant!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001229 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner6833b062008-04-28 07:16:35 +00001230
Chris Lattnerb606dba2008-04-28 06:44:42 +00001231 SDOperand Op;
Chris Lattner6833b062008-04-28 07:16:35 +00001232 if (isa<UndefValue>(C))
1233 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001234 else if (EltVT.isFloatingPoint())
Chris Lattner6833b062008-04-28 07:16:35 +00001235 Op = DAG.getConstantFP(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001236 else
Chris Lattner6833b062008-04-28 07:16:35 +00001237 Op = DAG.getConstant(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001238 Ops.assign(NumElements, Op);
1239 }
1240
1241 // Create a BUILD_VECTOR node.
1242 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner199862b2006-03-16 19:57:50 +00001243 }
1244
Chris Lattnerb606dba2008-04-28 06:44:42 +00001245 // If this is a static alloca, generate it as the frameindex instead of
1246 // computation.
Chris Lattner199862b2006-03-16 19:57:50 +00001247 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1248 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattnerb606dba2008-04-28 06:44:42 +00001249 FuncInfo.StaticAllocaMap.find(AI);
Chris Lattner199862b2006-03-16 19:57:50 +00001250 if (SI != FuncInfo.StaticAllocaMap.end())
1251 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1252 }
1253
Chris Lattner251db182007-02-25 18:40:32 +00001254 unsigned InReg = FuncInfo.ValueMap[V];
1255 assert(InReg && "Value not in map!");
Chris Lattner199862b2006-03-16 19:57:50 +00001256
Chris Lattner6833b062008-04-28 07:16:35 +00001257 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001258 SDOperand Chain = DAG.getEntryNode();
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001259 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner199862b2006-03-16 19:57:50 +00001260}
1261
1262
Chris Lattner1c08c712005-01-07 07:47:53 +00001263void SelectionDAGLowering::visitRet(ReturnInst &I) {
1264 if (I.getNumOperands() == 0) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001265 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001266 return;
1267 }
Chris Lattnerb606dba2008-04-28 06:44:42 +00001268
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001269 SmallVector<SDOperand, 8> NewValues;
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001270 NewValues.push_back(getControlRoot());
1271 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Nate Begemanee625572006-01-27 21:09:22 +00001272 SDOperand RetOp = getValue(I.getOperand(i));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001273 MVT VT = RetOp.getValueType();
Duncan Sandsb988bac2008-02-11 20:58:28 +00001274
Evan Cheng8e7d0562006-05-26 23:09:09 +00001275 // FIXME: C calling convention requires the return type to be promoted to
1276 // at least 32-bit. But this is not necessary for non-C calling conventions.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001277 if (VT.isInteger()) {
1278 MVT MinVT = TLI.getRegisterType(MVT::i32);
Duncan Sands8e4eb092008-06-08 20:54:56 +00001279 if (VT.bitsLT(MinVT))
Duncan Sandsb988bac2008-02-11 20:58:28 +00001280 VT = MinVT;
1281 }
1282
1283 unsigned NumParts = TLI.getNumRegisters(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001284 MVT PartVT = TLI.getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00001285 SmallVector<SDOperand, 4> Parts(NumParts);
1286 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1287
1288 const Function *F = I.getParent()->getParent();
1289 if (F->paramHasAttr(0, ParamAttr::SExt))
1290 ExtendKind = ISD::SIGN_EXTEND;
1291 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1292 ExtendKind = ISD::ZERO_EXTEND;
1293
1294 getCopyToParts(DAG, RetOp, &Parts[0], NumParts, PartVT, ExtendKind);
1295
1296 for (unsigned i = 0; i < NumParts; ++i) {
1297 NewValues.push_back(Parts[i]);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001298 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
Nate Begemanee625572006-01-27 21:09:22 +00001299 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001300 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001301 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1302 &NewValues[0], NewValues.size()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001303}
1304
Chris Lattner571e4342006-10-27 21:36:01 +00001305/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1306/// the current basic block, add it to ValueMap now so that we'll get a
1307/// CopyTo/FromReg.
1308void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1309 // No need to export constants.
1310 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1311
1312 // Already exported?
1313 if (FuncInfo.isExportedInst(V)) return;
1314
1315 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001316 CopyValueToVirtualRegister(V, Reg);
Chris Lattner571e4342006-10-27 21:36:01 +00001317}
1318
Chris Lattner8c494ab2006-10-27 23:50:33 +00001319bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1320 const BasicBlock *FromBB) {
1321 // The operands of the setcc have to be in this block. We don't know
1322 // how to export them from some other block.
1323 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1324 // Can export from current BB.
1325 if (VI->getParent() == FromBB)
1326 return true;
1327
1328 // Is already exported, noop.
1329 return FuncInfo.isExportedInst(V);
1330 }
1331
1332 // If this is an argument, we can export it if the BB is the entry block or
1333 // if it is already exported.
1334 if (isa<Argument>(V)) {
1335 if (FromBB == &FromBB->getParent()->getEntryBlock())
1336 return true;
1337
1338 // Otherwise, can only export this if it is already exported.
1339 return FuncInfo.isExportedInst(V);
1340 }
1341
1342 // Otherwise, constants can always be exported.
1343 return true;
1344}
1345
Chris Lattner6a586c82006-10-29 21:01:20 +00001346static bool InBlock(const Value *V, const BasicBlock *BB) {
1347 if (const Instruction *I = dyn_cast<Instruction>(V))
1348 return I->getParent() == BB;
1349 return true;
1350}
1351
Chris Lattner571e4342006-10-27 21:36:01 +00001352/// FindMergedConditions - If Cond is an expression like
1353void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1354 MachineBasicBlock *TBB,
1355 MachineBasicBlock *FBB,
1356 MachineBasicBlock *CurBB,
1357 unsigned Opc) {
Chris Lattner571e4342006-10-27 21:36:01 +00001358 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001359 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattner571e4342006-10-27 21:36:01 +00001360
Reid Spencere4d87aa2006-12-23 06:05:41 +00001361 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1362 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattner6a586c82006-10-29 21:01:20 +00001363 BOp->getParent() != CurBB->getBasicBlock() ||
1364 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1365 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattner571e4342006-10-27 21:36:01 +00001366 const BasicBlock *BB = CurBB->getBasicBlock();
1367
Reid Spencere4d87aa2006-12-23 06:05:41 +00001368 // If the leaf of the tree is a comparison, merge the condition into
1369 // the caseblock.
1370 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1371 // The operands of the cmp have to be in this block. We don't know
Chris Lattner5a145f02006-10-29 18:23:37 +00001372 // how to export them from some other block. If this is the first block
1373 // of the sequence, no exporting is needed.
1374 (CurBB == CurMBB ||
1375 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1376 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001377 BOp = cast<Instruction>(Cond);
1378 ISD::CondCode Condition;
1379 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1380 switch (IC->getPredicate()) {
1381 default: assert(0 && "Unknown icmp predicate opcode!");
1382 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1383 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1384 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1385 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1386 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1387 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1388 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1389 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1390 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1391 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1392 }
1393 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1394 ISD::CondCode FPC, FOC;
1395 switch (FC->getPredicate()) {
1396 default: assert(0 && "Unknown fcmp predicate opcode!");
1397 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1398 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1399 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1400 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1401 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1402 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1403 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner6bf30ab2008-05-01 07:26:11 +00001404 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1405 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001406 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1407 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1408 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1409 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1410 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1411 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1412 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1413 }
1414 if (FiniteOnlyFPMath())
1415 Condition = FOC;
1416 else
1417 Condition = FPC;
1418 } else {
Chris Lattner0da331f2007-02-04 01:31:47 +00001419 Condition = ISD::SETEQ; // silence warning.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001420 assert(0 && "Unknown compare instruction");
Chris Lattner571e4342006-10-27 21:36:01 +00001421 }
1422
Chris Lattner571e4342006-10-27 21:36:01 +00001423 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001424 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001425 SwitchCases.push_back(CB);
1426 return;
1427 }
1428
1429 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001430 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001431 NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001432 SwitchCases.push_back(CB);
Chris Lattner571e4342006-10-27 21:36:01 +00001433 return;
1434 }
1435
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001436
1437 // Create TmpBB after CurBB.
Chris Lattner571e4342006-10-27 21:36:01 +00001438 MachineFunction::iterator BBI = CurBB;
1439 MachineBasicBlock *TmpBB = new MachineBasicBlock(CurBB->getBasicBlock());
1440 CurBB->getParent()->getBasicBlockList().insert(++BBI, TmpBB);
1441
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001442 if (Opc == Instruction::Or) {
1443 // Codegen X | Y as:
1444 // jmp_if_X TBB
1445 // jmp TmpBB
1446 // TmpBB:
1447 // jmp_if_Y TBB
1448 // jmp FBB
1449 //
Chris Lattner571e4342006-10-27 21:36:01 +00001450
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001451 // Emit the LHS condition.
1452 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1453
1454 // Emit the RHS condition into TmpBB.
1455 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1456 } else {
1457 assert(Opc == Instruction::And && "Unknown merge op!");
1458 // Codegen X & Y as:
1459 // jmp_if_X TmpBB
1460 // jmp FBB
1461 // TmpBB:
1462 // jmp_if_Y TBB
1463 // jmp FBB
1464 //
1465 // This requires creation of TmpBB after CurBB.
1466
1467 // Emit the LHS condition.
1468 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1469
1470 // Emit the RHS condition into TmpBB.
1471 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1472 }
Chris Lattner571e4342006-10-27 21:36:01 +00001473}
1474
Chris Lattnerdf19f272006-10-31 22:37:42 +00001475/// If the set of cases should be emitted as a series of branches, return true.
1476/// If we should emit this as a bunch of and/or'd together conditions, return
1477/// false.
1478static bool
1479ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1480 if (Cases.size() != 2) return true;
1481
Chris Lattner0ccb5002006-10-31 23:06:00 +00001482 // If this is two comparisons of the same values or'd or and'd together, they
1483 // will get folded into a single comparison, so don't emit two blocks.
1484 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1485 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1486 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1487 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1488 return false;
1489 }
1490
Chris Lattnerdf19f272006-10-31 22:37:42 +00001491 return true;
1492}
1493
Chris Lattner1c08c712005-01-07 07:47:53 +00001494void SelectionDAGLowering::visitBr(BranchInst &I) {
1495 // Update machine-CFG edges.
1496 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner1c08c712005-01-07 07:47:53 +00001497
1498 // Figure out which block is immediately after the current one.
1499 MachineBasicBlock *NextBlock = 0;
1500 MachineFunction::iterator BBI = CurMBB;
1501 if (++BBI != CurMBB->getParent()->end())
1502 NextBlock = BBI;
1503
1504 if (I.isUnconditional()) {
Owen Anderson2d389e82008-06-07 00:00:23 +00001505 // Update machine-CFG edges.
1506 CurMBB->addSuccessor(Succ0MBB);
1507
Chris Lattner1c08c712005-01-07 07:47:53 +00001508 // If this is not a fall-through branch, emit the branch.
1509 if (Succ0MBB != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001510 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001511 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner57ab6592006-10-24 17:57:59 +00001512 return;
1513 }
1514
1515 // If this condition is one of the special cases we handle, do special stuff
1516 // now.
1517 Value *CondVal = I.getCondition();
Chris Lattner57ab6592006-10-24 17:57:59 +00001518 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattner571e4342006-10-27 21:36:01 +00001519
1520 // If this is a series of conditions that are or'd or and'd together, emit
1521 // this as a sequence of branches instead of setcc's with and/or operations.
1522 // For example, instead of something like:
1523 // cmp A, B
1524 // C = seteq
1525 // cmp D, E
1526 // F = setle
1527 // or C, F
1528 // jnz foo
1529 // Emit:
1530 // cmp A, B
1531 // je foo
1532 // cmp D, E
1533 // jle foo
1534 //
1535 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1536 if (BOp->hasOneUse() &&
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001537 (BOp->getOpcode() == Instruction::And ||
Chris Lattner571e4342006-10-27 21:36:01 +00001538 BOp->getOpcode() == Instruction::Or)) {
1539 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattner0ccb5002006-10-31 23:06:00 +00001540 // If the compares in later blocks need to use values not currently
1541 // exported from this block, export them now. This block should always
1542 // be the first entry.
1543 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1544
Chris Lattnerdf19f272006-10-31 22:37:42 +00001545 // Allow some cases to be rejected.
1546 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattnerdf19f272006-10-31 22:37:42 +00001547 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1548 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1549 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1550 }
1551
1552 // Emit the branch for this block.
1553 visitSwitchCase(SwitchCases[0]);
1554 SwitchCases.erase(SwitchCases.begin());
1555 return;
Chris Lattner5a145f02006-10-29 18:23:37 +00001556 }
1557
Chris Lattner0ccb5002006-10-31 23:06:00 +00001558 // Okay, we decided not to do this, remove any inserted MBB's and clear
1559 // SwitchCases.
1560 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1561 CurMBB->getParent()->getBasicBlockList().erase(SwitchCases[i].ThisBB);
1562
Chris Lattnerdf19f272006-10-31 22:37:42 +00001563 SwitchCases.clear();
Chris Lattner571e4342006-10-27 21:36:01 +00001564 }
1565 }
Chris Lattner24525952006-10-24 18:07:37 +00001566
1567 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001568 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001569 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner24525952006-10-24 18:07:37 +00001570 // Use visitSwitchCase to actually insert the fast branch sequence for this
1571 // cond branch.
1572 visitSwitchCase(CB);
Chris Lattner1c08c712005-01-07 07:47:53 +00001573}
1574
Nate Begemanf15485a2006-03-27 01:32:24 +00001575/// visitSwitchCase - Emits the necessary code to represent a single node in
1576/// the binary search tree resulting from lowering a switch instruction.
1577void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Chris Lattner57ab6592006-10-24 17:57:59 +00001578 SDOperand Cond;
1579 SDOperand CondLHS = getValue(CB.CmpLHS);
1580
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001581 // Build the setcc now.
1582 if (CB.CmpMHS == NULL) {
1583 // Fold "(X == true)" to X and "(X == false)" to !X to
1584 // handle common cases produced by branch lowering.
1585 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1586 Cond = CondLHS;
1587 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1588 SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1589 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1590 } else
1591 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1592 } else {
1593 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001594
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001595 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1596 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1597
1598 SDOperand CmpOp = getValue(CB.CmpMHS);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001599 MVT VT = CmpOp.getValueType();
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001600
1601 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1602 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1603 } else {
1604 SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1605 Cond = DAG.getSetCC(MVT::i1, SUB,
1606 DAG.getConstant(High-Low, VT), ISD::SETULE);
1607 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001608 }
1609
Owen Anderson2d389e82008-06-07 00:00:23 +00001610 // Update successor info
1611 CurMBB->addSuccessor(CB.TrueBB);
1612 CurMBB->addSuccessor(CB.FalseBB);
1613
Nate Begemanf15485a2006-03-27 01:32:24 +00001614 // Set NextBlock to be the MBB immediately after the current one, if any.
1615 // This is used to avoid emitting unnecessary branches to the next block.
1616 MachineBasicBlock *NextBlock = 0;
1617 MachineFunction::iterator BBI = CurMBB;
1618 if (++BBI != CurMBB->getParent()->end())
1619 NextBlock = BBI;
1620
1621 // If the lhs block is the next block, invert the condition so that we can
1622 // fall through to the lhs instead of the rhs block.
Chris Lattner57ab6592006-10-24 17:57:59 +00001623 if (CB.TrueBB == NextBlock) {
1624 std::swap(CB.TrueBB, CB.FalseBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00001625 SDOperand True = DAG.getConstant(1, Cond.getValueType());
1626 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1627 }
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001628 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001629 DAG.getBasicBlock(CB.TrueBB));
1630 if (CB.FalseBB == NextBlock)
Nate Begemanf15485a2006-03-27 01:32:24 +00001631 DAG.setRoot(BrCond);
1632 else
1633 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001634 DAG.getBasicBlock(CB.FalseBB)));
Nate Begemanf15485a2006-03-27 01:32:24 +00001635}
1636
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001637/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman37efe672006-04-22 18:53:45 +00001638void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman37efe672006-04-22 18:53:45 +00001639 // Emit the code for the jump table
Scott Michelf147a8d2007-04-24 01:24:20 +00001640 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001641 MVT PTy = TLI.getPointerTy();
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001642 SDOperand Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001643 SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1644 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1645 Table, Index));
1646 return;
Nate Begeman37efe672006-04-22 18:53:45 +00001647}
1648
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001649/// visitJumpTableHeader - This function emits necessary code to produce index
1650/// in the JumpTable from switch case.
1651void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1652 SelectionDAGISel::JumpTableHeader &JTH) {
1653 // Subtract the lowest switch case value from the value being switched on
1654 // and conditional branch to default mbb if the result is greater than the
1655 // difference between smallest and largest cases.
1656 SDOperand SwitchOp = getValue(JTH.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001657 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001658 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1659 DAG.getConstant(JTH.First, VT));
1660
1661 // The SDNode we just created, which holds the value being switched on
1662 // minus the the smallest case value, needs to be copied to a virtual
1663 // register so it can be used as an index into the jump table in a
1664 // subsequent basic block. This value may be smaller or larger than the
1665 // target's pointer type, and therefore require extension or truncating.
Duncan Sands8e4eb092008-06-08 20:54:56 +00001666 if (VT.bitsGT(TLI.getPointerTy()))
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001667 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1668 else
1669 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1670
1671 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001672 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001673 JT.Reg = JumpTableReg;
1674
1675 // Emit the range check for the jump table, and branch to the default
1676 // block for the switch statement if the value being switched on exceeds
1677 // the largest case in the switch.
Scott Michel5b8f82e2008-03-10 15:42:14 +00001678 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001679 DAG.getConstant(JTH.Last-JTH.First,VT),
1680 ISD::SETUGT);
1681
1682 // Set NextBlock to be the MBB immediately after the current one, if any.
1683 // This is used to avoid emitting unnecessary branches to the next block.
1684 MachineBasicBlock *NextBlock = 0;
1685 MachineFunction::iterator BBI = CurMBB;
1686 if (++BBI != CurMBB->getParent()->end())
1687 NextBlock = BBI;
1688
1689 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1690 DAG.getBasicBlock(JT.Default));
1691
1692 if (JT.MBB == NextBlock)
1693 DAG.setRoot(BrCond);
1694 else
1695 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001696 DAG.getBasicBlock(JT.MBB)));
1697
1698 return;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001699}
1700
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001701/// visitBitTestHeader - This function emits necessary code to produce value
1702/// suitable for "bit tests"
1703void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1704 // Subtract the minimum value
1705 SDOperand SwitchOp = getValue(B.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001706 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001707 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1708 DAG.getConstant(B.First, VT));
1709
1710 // Check range
Scott Michel5b8f82e2008-03-10 15:42:14 +00001711 SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001712 DAG.getConstant(B.Range, VT),
1713 ISD::SETUGT);
1714
1715 SDOperand ShiftOp;
Duncan Sands8e4eb092008-06-08 20:54:56 +00001716 if (VT.bitsGT(TLI.getShiftAmountTy()))
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001717 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1718 else
1719 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1720
1721 // Make desired shift
1722 SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1723 DAG.getConstant(1, TLI.getPointerTy()),
1724 ShiftOp);
1725
1726 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001727 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001728 B.Reg = SwitchReg;
1729
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001730 // Set NextBlock to be the MBB immediately after the current one, if any.
1731 // This is used to avoid emitting unnecessary branches to the next block.
1732 MachineBasicBlock *NextBlock = 0;
1733 MachineFunction::iterator BBI = CurMBB;
1734 if (++BBI != CurMBB->getParent()->end())
1735 NextBlock = BBI;
1736
1737 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson2d389e82008-06-07 00:00:23 +00001738
1739 CurMBB->addSuccessor(B.Default);
1740 CurMBB->addSuccessor(MBB);
1741
1742 SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1743 DAG.getBasicBlock(B.Default));
1744
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001745 if (MBB == NextBlock)
1746 DAG.setRoot(BrRange);
1747 else
1748 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1749 DAG.getBasicBlock(MBB)));
1750
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001751 return;
1752}
1753
1754/// visitBitTestCase - this function produces one "bit test"
1755void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1756 unsigned Reg,
1757 SelectionDAGISel::BitTestCase &B) {
1758 // Emit bit tests and jumps
Chris Lattneread0d882008-06-17 06:09:18 +00001759 SDOperand SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
1760 TLI.getPointerTy());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001761
Chris Lattneread0d882008-06-17 06:09:18 +00001762 SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
1763 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Scott Michel5b8f82e2008-03-10 15:42:14 +00001764 SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001765 DAG.getConstant(0, TLI.getPointerTy()),
1766 ISD::SETNE);
Owen Anderson2d389e82008-06-07 00:00:23 +00001767
1768 CurMBB->addSuccessor(B.TargetBB);
1769 CurMBB->addSuccessor(NextMBB);
1770
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001771 SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001772 AndCmp, DAG.getBasicBlock(B.TargetBB));
1773
1774 // Set NextBlock to be the MBB immediately after the current one, if any.
1775 // This is used to avoid emitting unnecessary branches to the next block.
1776 MachineBasicBlock *NextBlock = 0;
1777 MachineFunction::iterator BBI = CurMBB;
1778 if (++BBI != CurMBB->getParent()->end())
1779 NextBlock = BBI;
1780
1781 if (NextMBB == NextBlock)
1782 DAG.setRoot(BrAnd);
1783 else
1784 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1785 DAG.getBasicBlock(NextMBB)));
1786
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001787 return;
1788}
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001789
Jim Laskeyb180aa12007-02-21 22:53:45 +00001790void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1791 // Retrieve successors.
1792 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001793 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands9fac0b52007-06-06 10:05:18 +00001794
Duncan Sandsfd7b3262007-12-17 18:08:19 +00001795 if (isa<InlineAsm>(I.getCalledValue()))
1796 visitInlineAsm(&I);
1797 else
Duncan Sands6f74b482007-12-19 09:48:52 +00001798 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Duncan Sands9fac0b52007-06-06 10:05:18 +00001799
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001800 // If the value of the invoke is used outside of its defining block, make it
1801 // available as a virtual register.
1802 if (!I.use_empty()) {
1803 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1804 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001805 CopyValueToVirtualRegister(&I, VMI->second);
Jim Laskey183f47f2007-02-25 21:43:59 +00001806 }
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001807
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001808 // Update successor info
1809 CurMBB->addSuccessor(Return);
1810 CurMBB->addSuccessor(LandingPad);
Owen Anderson2d389e82008-06-07 00:00:23 +00001811
1812 // Drop into normal successor.
1813 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1814 DAG.getBasicBlock(Return)));
Jim Laskeyb180aa12007-02-21 22:53:45 +00001815}
1816
1817void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1818}
1819
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001820/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001821/// small case ranges).
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001822bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001823 CaseRecVector& WorkList,
1824 Value* SV,
1825 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001826 Case& BackCase = *(CR.Range.second-1);
1827
1828 // Size is the number of Cases represented by this range.
1829 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001830 if (Size > 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001831 return false;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001832
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001833 // Get the MachineFunction which holds the current MBB. This is used when
1834 // inserting any additional MBBs necessary to represent the switch.
1835 MachineFunction *CurMF = CurMBB->getParent();
1836
1837 // Figure out which block is immediately after the current one.
1838 MachineBasicBlock *NextBlock = 0;
1839 MachineFunction::iterator BBI = CR.CaseBB;
1840
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001841 if (++BBI != CurMBB->getParent()->end())
1842 NextBlock = BBI;
1843
1844 // TODO: If any two of the cases has the same destination, and if one value
1845 // is the same as the other, but has one bit unset that the other has set,
1846 // use bit manipulation to do two compares at once. For example:
1847 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1848
1849 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001850 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001851 // The last case block won't fall through into 'NextBlock' if we emit the
1852 // branches in this order. See if rearranging a case value would help.
1853 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001854 if (I->BB == NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001855 std::swap(*I, BackCase);
1856 break;
1857 }
1858 }
1859 }
1860
1861 // Create a CaseBlock record representing a conditional branch to
1862 // the Case's target mbb if the value being switched on SV is equal
1863 // to C.
1864 MachineBasicBlock *CurBlock = CR.CaseBB;
1865 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1866 MachineBasicBlock *FallThrough;
1867 if (I != E-1) {
1868 FallThrough = new MachineBasicBlock(CurBlock->getBasicBlock());
1869 CurMF->getBasicBlockList().insert(BBI, FallThrough);
1870 } else {
1871 // If the last case doesn't match, go to the default block.
1872 FallThrough = Default;
1873 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001874
1875 Value *RHS, *LHS, *MHS;
1876 ISD::CondCode CC;
1877 if (I->High == I->Low) {
1878 // This is just small small case range :) containing exactly 1 case
1879 CC = ISD::SETEQ;
1880 LHS = SV; RHS = I->High; MHS = NULL;
1881 } else {
1882 CC = ISD::SETLE;
1883 LHS = I->Low; MHS = SV; RHS = I->High;
1884 }
1885 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1886 I->BB, FallThrough, CurBlock);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001887
1888 // If emitting the first comparison, just call visitSwitchCase to emit the
1889 // code into the current block. Otherwise, push the CaseBlock onto the
1890 // vector to be later processed by SDISel, and insert the node's MBB
1891 // before the next MBB.
1892 if (CurBlock == CurMBB)
1893 visitSwitchCase(CB);
1894 else
1895 SwitchCases.push_back(CB);
1896
1897 CurBlock = FallThrough;
1898 }
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001899
1900 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001901}
1902
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001903static inline bool areJTsAllowed(const TargetLowering &TLI) {
1904 return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1905 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1906}
1907
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001908/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001909bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001910 CaseRecVector& WorkList,
1911 Value* SV,
1912 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001913 Case& FrontCase = *CR.Range.first;
1914 Case& BackCase = *(CR.Range.second-1);
1915
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001916 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1917 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1918
1919 uint64_t TSize = 0;
1920 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1921 I!=E; ++I)
1922 TSize += I->size();
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001923
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001924 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001925 return false;
1926
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001927 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1928 if (Density < 0.4)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001929 return false;
1930
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001931 DOUT << "Lowering jump table\n"
1932 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001933 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001934
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001935 // Get the MachineFunction which holds the current MBB. This is used when
1936 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001937 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001938
1939 // Figure out which block is immediately after the current one.
1940 MachineBasicBlock *NextBlock = 0;
1941 MachineFunction::iterator BBI = CR.CaseBB;
1942
1943 if (++BBI != CurMBB->getParent()->end())
1944 NextBlock = BBI;
1945
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001946 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1947
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001948 // Create a new basic block to hold the code for loading the address
1949 // of the jump table, and jumping to it. Update successor information;
1950 // we will either branch to the default case for the switch, or the jump
1951 // table.
1952 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
1953 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
1954 CR.CaseBB->addSuccessor(Default);
1955 CR.CaseBB->addSuccessor(JumpTableBB);
1956
1957 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001958 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001959 // a case statement, push the case's BB onto the vector, otherwise, push
1960 // the default BB.
1961 std::vector<MachineBasicBlock*> DestBBs;
1962 int64_t TEI = First;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001963 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1964 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1965 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1966
1967 if ((Low <= TEI) && (TEI <= High)) {
1968 DestBBs.push_back(I->BB);
1969 if (TEI==High)
1970 ++I;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001971 } else {
1972 DestBBs.push_back(Default);
1973 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001974 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001975
1976 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001977 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001978 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1979 E = DestBBs.end(); I != E; ++I) {
1980 if (!SuccsHandled[(*I)->getNumber()]) {
1981 SuccsHandled[(*I)->getNumber()] = true;
1982 JumpTableBB->addSuccessor(*I);
1983 }
1984 }
1985
1986 // Create a jump table index for this jump table, or return an existing
1987 // one.
1988 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1989
1990 // Set the jump table information so that we can codegen it as a second
1991 // MachineBasicBlock
Scott Michelf147a8d2007-04-24 01:24:20 +00001992 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001993 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
1994 (CR.CaseBB == CurMBB));
1995 if (CR.CaseBB == CurMBB)
1996 visitJumpTableHeader(JT, JTH);
1997
1998 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001999
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002000 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002001}
2002
2003/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2004/// 2 subtrees.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002005bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002006 CaseRecVector& WorkList,
2007 Value* SV,
2008 MachineBasicBlock* Default) {
2009 // Get the MachineFunction which holds the current MBB. This is used when
2010 // inserting any additional MBBs necessary to represent the switch.
2011 MachineFunction *CurMF = CurMBB->getParent();
2012
2013 // Figure out which block is immediately after the current one.
2014 MachineBasicBlock *NextBlock = 0;
2015 MachineFunction::iterator BBI = CR.CaseBB;
2016
2017 if (++BBI != CurMBB->getParent()->end())
2018 NextBlock = BBI;
2019
2020 Case& FrontCase = *CR.Range.first;
2021 Case& BackCase = *(CR.Range.second-1);
2022 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2023
2024 // Size is the number of Cases represented by this range.
2025 unsigned Size = CR.Range.second - CR.Range.first;
2026
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002027 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2028 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002029 double FMetric = 0;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002030 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002031
2032 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2033 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002034 uint64_t TSize = 0;
2035 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2036 I!=E; ++I)
2037 TSize += I->size();
2038
2039 uint64_t LSize = FrontCase.size();
2040 uint64_t RSize = TSize-LSize;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002041 DOUT << "Selecting best pivot: \n"
2042 << "First: " << First << ", Last: " << Last <<"\n"
2043 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002044 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002045 J!=E; ++I, ++J) {
2046 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2047 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002048 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002049 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2050 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikov54e2b142007-04-09 21:57:03 +00002051 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002052 // Should always split in some non-trivial place
2053 DOUT <<"=>Step\n"
2054 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2055 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2056 << "Metric: " << Metric << "\n";
2057 if (FMetric < Metric) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002058 Pivot = J;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002059 FMetric = Metric;
2060 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002061 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002062
2063 LSize += J->size();
2064 RSize -= J->size();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002065 }
Anton Korobeynikov7294b582007-05-09 20:07:08 +00002066 if (areJTsAllowed(TLI)) {
2067 // If our case is dense we *really* should handle it earlier!
2068 assert((FMetric > 0) && "Should handle dense range earlier!");
2069 } else {
2070 Pivot = CR.Range.first + Size/2;
2071 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002072
2073 CaseRange LHSR(CR.Range.first, Pivot);
2074 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002075 Constant *C = Pivot->Low;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002076 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2077
2078 // We know that we branch to the LHS if the Value being switched on is
2079 // less than the Pivot value, C. We use this to optimize our binary
2080 // tree a bit, by recognizing that if SV is greater than or equal to the
2081 // LHS's Case Value, and that Case Value is exactly one less than the
2082 // Pivot's Value, then we can branch directly to the LHS's Target,
2083 // rather than creating a leaf node for it.
2084 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002085 LHSR.first->High == CR.GE &&
2086 cast<ConstantInt>(C)->getSExtValue() ==
2087 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2088 TrueBB = LHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002089 } else {
2090 TrueBB = new MachineBasicBlock(LLVMBB);
2091 CurMF->getBasicBlockList().insert(BBI, TrueBB);
2092 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2093 }
2094
2095 // Similar to the optimization above, if the Value being switched on is
2096 // known to be less than the Constant CR.LT, and the current Case Value
2097 // is CR.LT - 1, then we can branch directly to the target block for
2098 // the current Case Value, rather than emitting a RHS leaf node for it.
2099 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002100 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2101 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2102 FalseBB = RHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002103 } else {
2104 FalseBB = new MachineBasicBlock(LLVMBB);
2105 CurMF->getBasicBlockList().insert(BBI, FalseBB);
2106 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2107 }
2108
2109 // Create a CaseBlock record representing a conditional branch to
2110 // the LHS node if the value being switched on SV is less than C.
2111 // Otherwise, branch to LHS.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002112 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2113 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002114
2115 if (CR.CaseBB == CurMBB)
2116 visitSwitchCase(CB);
2117 else
2118 SwitchCases.push_back(CB);
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002119
2120 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002121}
2122
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002123/// handleBitTestsSwitchCase - if current case range has few destination and
2124/// range span less, than machine word bitwidth, encode case range into series
2125/// of masks and emit bit tests with these masks.
2126bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2127 CaseRecVector& WorkList,
2128 Value* SV,
Chris Lattner3ff98172007-04-14 02:26:56 +00002129 MachineBasicBlock* Default){
Duncan Sands83ec4b62008-06-06 12:08:01 +00002130 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002131
2132 Case& FrontCase = *CR.Range.first;
2133 Case& BackCase = *(CR.Range.second-1);
2134
2135 // Get the MachineFunction which holds the current MBB. This is used when
2136 // inserting any additional MBBs necessary to represent the switch.
2137 MachineFunction *CurMF = CurMBB->getParent();
2138
2139 unsigned numCmps = 0;
2140 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2141 I!=E; ++I) {
2142 // Single case counts one, case range - two.
2143 if (I->Low == I->High)
2144 numCmps +=1;
2145 else
2146 numCmps +=2;
2147 }
2148
2149 // Count unique destinations
2150 SmallSet<MachineBasicBlock*, 4> Dests;
2151 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2152 Dests.insert(I->BB);
2153 if (Dests.size() > 3)
2154 // Don't bother the code below, if there are too much unique destinations
2155 return false;
2156 }
2157 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2158 << "Total number of comparisons: " << numCmps << "\n";
2159
2160 // Compute span of values.
2161 Constant* minValue = FrontCase.Low;
2162 Constant* maxValue = BackCase.High;
2163 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2164 cast<ConstantInt>(minValue)->getSExtValue();
2165 DOUT << "Compare range: " << range << "\n"
2166 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2167 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2168
Anton Korobeynikovab8fd402007-04-26 20:44:04 +00002169 if (range>=IntPtrBits ||
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002170 (!(Dests.size() == 1 && numCmps >= 3) &&
2171 !(Dests.size() == 2 && numCmps >= 5) &&
2172 !(Dests.size() >= 3 && numCmps >= 6)))
2173 return false;
2174
2175 DOUT << "Emitting bit tests\n";
2176 int64_t lowBound = 0;
2177
2178 // Optimize the case where all the case values fit in a
2179 // word without having to subtract minValue. In this case,
2180 // we can optimize away the subtraction.
2181 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002182 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002183 range = cast<ConstantInt>(maxValue)->getSExtValue();
2184 } else {
2185 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2186 }
2187
2188 CaseBitsVector CasesBits;
2189 unsigned i, count = 0;
2190
2191 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2192 MachineBasicBlock* Dest = I->BB;
2193 for (i = 0; i < count; ++i)
2194 if (Dest == CasesBits[i].BB)
2195 break;
2196
2197 if (i == count) {
2198 assert((count < 3) && "Too much destinations to test!");
2199 CasesBits.push_back(CaseBits(0, Dest, 0));
2200 count++;
2201 }
2202
2203 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2204 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2205
2206 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002207 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002208 CasesBits[i].Bits++;
2209 }
2210
2211 }
2212 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2213
2214 SelectionDAGISel::BitTestInfo BTC;
2215
2216 // Figure out which block is immediately after the current one.
2217 MachineFunction::iterator BBI = CR.CaseBB;
2218 ++BBI;
2219
2220 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2221
2222 DOUT << "Cases:\n";
2223 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2224 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2225 << ", BB: " << CasesBits[i].BB << "\n";
2226
2227 MachineBasicBlock *CaseBB = new MachineBasicBlock(LLVMBB);
2228 CurMF->getBasicBlockList().insert(BBI, CaseBB);
2229 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2230 CaseBB,
2231 CasesBits[i].BB));
2232 }
2233
2234 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohenefc36622007-04-09 14:32:59 +00002235 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002236 CR.CaseBB, Default, BTC);
2237
2238 if (CR.CaseBB == CurMBB)
2239 visitBitTestHeader(BTB);
2240
2241 BitTestCases.push_back(BTB);
2242
2243 return true;
2244}
2245
2246
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002247/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002248unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2249 const SwitchInst& SI) {
2250 unsigned numCmps = 0;
2251
2252 // Start with "simple" cases
2253 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2254 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2255 Cases.push_back(Case(SI.getSuccessorValue(i),
2256 SI.getSuccessorValue(i),
2257 SMBB));
2258 }
Chris Lattnerb3d9cdb2007-11-27 06:14:32 +00002259 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002260
2261 // Merge case into clusters
2262 if (Cases.size()>=2)
David Greenea2a48852007-06-29 03:42:23 +00002263 // Must recompute end() each iteration because it may be
2264 // invalidated by erase if we hold on to it
Chris Lattner27a6c732007-11-24 07:07:01 +00002265 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002266 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2267 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2268 MachineBasicBlock* nextBB = J->BB;
2269 MachineBasicBlock* currentBB = I->BB;
2270
2271 // If the two neighboring cases go to the same destination, merge them
2272 // into a single case.
2273 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2274 I->High = J->High;
2275 J = Cases.erase(J);
2276 } else {
2277 I = J++;
2278 }
2279 }
2280
2281 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2282 if (I->Low != I->High)
2283 // A range counts double, since it requires two compares.
2284 ++numCmps;
2285 }
2286
2287 return numCmps;
2288}
2289
2290void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002291 // Figure out which block is immediately after the current one.
2292 MachineBasicBlock *NextBlock = 0;
2293 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002294
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002295 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002296
Nate Begemanf15485a2006-03-27 01:32:24 +00002297 // If there is only the default destination, branch to it if it is not the
2298 // next basic block. Otherwise, just fall through.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002299 if (SI.getNumOperands() == 2) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002300 // Update machine-CFG edges.
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002301
Nate Begemanf15485a2006-03-27 01:32:24 +00002302 // If this is not a fall-through branch, emit the branch.
Owen Anderson2d389e82008-06-07 00:00:23 +00002303 CurMBB->addSuccessor(Default);
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002304 if (Default != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002305 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002306 DAG.getBasicBlock(Default)));
Owen Anderson2d389e82008-06-07 00:00:23 +00002307
Nate Begemanf15485a2006-03-27 01:32:24 +00002308 return;
2309 }
2310
2311 // If there are any non-default case statements, create a vector of Cases
2312 // representing each one, and sort the vector so that we can efficiently
2313 // create a binary search tree from them.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002314 CaseVector Cases;
2315 unsigned numCmps = Clusterify(Cases, SI);
2316 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2317 << ". Total compares: " << numCmps << "\n";
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002318
Nate Begemanf15485a2006-03-27 01:32:24 +00002319 // Get the Value to be switched on and default basic blocks, which will be
2320 // inserted into CaseBlock records, representing basic blocks in the binary
2321 // search tree.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002322 Value *SV = SI.getOperand(0);
Nate Begeman37efe672006-04-22 18:53:45 +00002323
Nate Begemanf15485a2006-03-27 01:32:24 +00002324 // Push the initial CaseRec onto the worklist
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002325 CaseRecVector WorkList;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002326 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2327
2328 while (!WorkList.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002329 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002330 CaseRec CR = WorkList.back();
2331 WorkList.pop_back();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002332
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002333 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2334 continue;
2335
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002336 // If the range has few cases (two or less) emit a series of specific
2337 // tests.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002338 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2339 continue;
2340
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002341 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002342 // target supports indirect branches, then emit a jump table rather than
2343 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002344 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2345 continue;
2346
2347 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2348 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2349 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemanf15485a2006-03-27 01:32:24 +00002350 }
2351}
2352
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002353
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002354void SelectionDAGLowering::visitSub(User &I) {
2355 // -0.0 - X --> fneg
Reid Spencer24d6da52007-01-21 00:29:26 +00002356 const Type *Ty = I.getType();
Reid Spencer9d6565a2007-02-15 02:26:10 +00002357 if (isa<VectorType>(Ty)) {
Dan Gohman7f321562007-06-25 16:23:39 +00002358 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2359 const VectorType *DestTy = cast<VectorType>(I.getType());
2360 const Type *ElTy = DestTy->getElementType();
Evan Chengc45453f2007-06-29 21:44:35 +00002361 if (ElTy->isFloatingPoint()) {
2362 unsigned VL = DestTy->getNumElements();
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002363 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Evan Chengc45453f2007-06-29 21:44:35 +00002364 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2365 if (CV == CNZ) {
2366 SDOperand Op2 = getValue(I.getOperand(1));
2367 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2368 return;
2369 }
Dan Gohman7f321562007-06-25 16:23:39 +00002370 }
2371 }
2372 }
2373 if (Ty->isFloatingPoint()) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002374 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002375 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002376 SDOperand Op2 = getValue(I.getOperand(1));
2377 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2378 return;
2379 }
Dan Gohman7f321562007-06-25 16:23:39 +00002380 }
2381
2382 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002383}
2384
Dan Gohman7f321562007-06-25 16:23:39 +00002385void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00002386 SDOperand Op1 = getValue(I.getOperand(0));
2387 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer24d6da52007-01-21 00:29:26 +00002388
2389 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer1628cec2006-10-26 06:15:43 +00002390}
2391
Nate Begemane21ea612005-11-18 07:42:56 +00002392void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2393 SDOperand Op1 = getValue(I.getOperand(0));
2394 SDOperand Op2 = getValue(I.getOperand(1));
2395
Duncan Sands8e4eb092008-06-08 20:54:56 +00002396 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002397 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002398 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002399 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
Nate Begemane21ea612005-11-18 07:42:56 +00002400
Chris Lattner1c08c712005-01-07 07:47:53 +00002401 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2402}
2403
Reid Spencer45fb3f32006-11-20 01:22:35 +00002404void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002405 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2406 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2407 predicate = IC->getPredicate();
2408 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2409 predicate = ICmpInst::Predicate(IC->getPredicate());
2410 SDOperand Op1 = getValue(I.getOperand(0));
2411 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer45fb3f32006-11-20 01:22:35 +00002412 ISD::CondCode Opcode;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002413 switch (predicate) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002414 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2415 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2416 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2417 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2418 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2419 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2420 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2421 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2422 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2423 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2424 default:
2425 assert(!"Invalid ICmp predicate value");
2426 Opcode = ISD::SETEQ;
2427 break;
2428 }
2429 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2430}
2431
2432void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002433 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2434 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2435 predicate = FC->getPredicate();
2436 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2437 predicate = FCmpInst::Predicate(FC->getPredicate());
Chris Lattner1c08c712005-01-07 07:47:53 +00002438 SDOperand Op1 = getValue(I.getOperand(0));
2439 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002440 ISD::CondCode Condition, FOC, FPC;
2441 switch (predicate) {
2442 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2443 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2444 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2445 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2446 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2447 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2448 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmancba3b442008-05-01 23:40:44 +00002449 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2450 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002451 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2452 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2453 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2454 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2455 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2456 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2457 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2458 default:
2459 assert(!"Invalid FCmp predicate value");
2460 FOC = FPC = ISD::SETFALSE;
2461 break;
2462 }
2463 if (FiniteOnlyFPMath())
2464 Condition = FOC;
2465 else
2466 Condition = FPC;
2467 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner1c08c712005-01-07 07:47:53 +00002468}
2469
Nate Begemanb43e9c12008-05-12 19:40:03 +00002470void SelectionDAGLowering::visitVICmp(User &I) {
2471 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2472 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2473 predicate = IC->getPredicate();
2474 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2475 predicate = ICmpInst::Predicate(IC->getPredicate());
2476 SDOperand Op1 = getValue(I.getOperand(0));
2477 SDOperand Op2 = getValue(I.getOperand(1));
2478 ISD::CondCode Opcode;
2479 switch (predicate) {
2480 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2481 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2482 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2483 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2484 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2485 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2486 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2487 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2488 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2489 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2490 default:
2491 assert(!"Invalid ICmp predicate value");
2492 Opcode = ISD::SETEQ;
2493 break;
2494 }
2495 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2496}
2497
2498void SelectionDAGLowering::visitVFCmp(User &I) {
2499 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2500 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2501 predicate = FC->getPredicate();
2502 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2503 predicate = FCmpInst::Predicate(FC->getPredicate());
2504 SDOperand Op1 = getValue(I.getOperand(0));
2505 SDOperand Op2 = getValue(I.getOperand(1));
2506 ISD::CondCode Condition, FOC, FPC;
2507 switch (predicate) {
2508 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2509 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2510 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2511 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2512 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2513 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2514 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2515 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2516 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2517 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2518 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2519 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2520 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2521 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2522 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2523 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2524 default:
2525 assert(!"Invalid VFCmp predicate value");
2526 FOC = FPC = ISD::SETFALSE;
2527 break;
2528 }
2529 if (FiniteOnlyFPMath())
2530 Condition = FOC;
2531 else
2532 Condition = FPC;
2533
Duncan Sands83ec4b62008-06-06 12:08:01 +00002534 MVT DestVT = TLI.getValueType(I.getType());
Nate Begemanb43e9c12008-05-12 19:40:03 +00002535
2536 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2537}
2538
Chris Lattner1c08c712005-01-07 07:47:53 +00002539void SelectionDAGLowering::visitSelect(User &I) {
2540 SDOperand Cond = getValue(I.getOperand(0));
2541 SDOperand TrueVal = getValue(I.getOperand(1));
2542 SDOperand FalseVal = getValue(I.getOperand(2));
Dan Gohman7f321562007-06-25 16:23:39 +00002543 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2544 TrueVal, FalseVal));
Chris Lattner1c08c712005-01-07 07:47:53 +00002545}
2546
Reid Spencer3da59db2006-11-27 01:05:10 +00002547
2548void SelectionDAGLowering::visitTrunc(User &I) {
2549 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2550 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002551 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002552 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2553}
2554
2555void SelectionDAGLowering::visitZExt(User &I) {
2556 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2557 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2558 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002559 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002560 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2561}
2562
2563void SelectionDAGLowering::visitSExt(User &I) {
2564 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2565 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2566 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002567 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002568 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2569}
2570
2571void SelectionDAGLowering::visitFPTrunc(User &I) {
2572 // FPTrunc is never a no-op cast, no need to check
2573 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002574 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner0bd48932008-01-17 07:00:52 +00002575 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Reid Spencer3da59db2006-11-27 01:05:10 +00002576}
2577
2578void SelectionDAGLowering::visitFPExt(User &I){
2579 // FPTrunc is never a no-op cast, no need to check
2580 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002581 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002582 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2583}
2584
2585void SelectionDAGLowering::visitFPToUI(User &I) {
2586 // FPToUI is never a no-op cast, no need to check
2587 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002588 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002589 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2590}
2591
2592void SelectionDAGLowering::visitFPToSI(User &I) {
2593 // FPToSI is never a no-op cast, no need to check
2594 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002595 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002596 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2597}
2598
2599void SelectionDAGLowering::visitUIToFP(User &I) {
2600 // UIToFP is never a no-op cast, no need to check
2601 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002602 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002603 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2604}
2605
2606void SelectionDAGLowering::visitSIToFP(User &I){
2607 // UIToFP is never a no-op cast, no need to check
2608 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002609 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002610 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2611}
2612
2613void SelectionDAGLowering::visitPtrToInt(User &I) {
2614 // What to do depends on the size of the integer and the size of the pointer.
2615 // We can either truncate, zero extend, or no-op, accordingly.
Chris Lattner1c08c712005-01-07 07:47:53 +00002616 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002617 MVT SrcVT = N.getValueType();
2618 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002619 SDOperand Result;
Duncan Sands8e4eb092008-06-08 20:54:56 +00002620 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002621 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2622 else
2623 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2624 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2625 setValue(&I, Result);
2626}
Chris Lattner1c08c712005-01-07 07:47:53 +00002627
Reid Spencer3da59db2006-11-27 01:05:10 +00002628void SelectionDAGLowering::visitIntToPtr(User &I) {
2629 // What to do depends on the size of the integer and the size of the pointer.
2630 // We can either truncate, zero extend, or no-op, accordingly.
2631 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002632 MVT SrcVT = N.getValueType();
2633 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sands8e4eb092008-06-08 20:54:56 +00002634 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002635 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2636 else
2637 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2638 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2639}
2640
2641void SelectionDAGLowering::visitBitCast(User &I) {
2642 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002643 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002644
2645 // BitCast assures us that source and destination are the same size so this
2646 // is either a BIT_CONVERT or a no-op.
2647 if (DestVT != N.getValueType())
2648 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2649 else
2650 setValue(&I, N); // noop cast.
Chris Lattner1c08c712005-01-07 07:47:53 +00002651}
2652
Chris Lattner2bbd8102006-03-29 00:11:43 +00002653void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00002654 SDOperand InVec = getValue(I.getOperand(0));
2655 SDOperand InVal = getValue(I.getOperand(1));
2656 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2657 getValue(I.getOperand(2)));
2658
Dan Gohman7f321562007-06-25 16:23:39 +00002659 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2660 TLI.getValueType(I.getType()),
2661 InVec, InVal, InIdx));
Chris Lattnerc7029802006-03-18 01:44:44 +00002662}
2663
Chris Lattner2bbd8102006-03-29 00:11:43 +00002664void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00002665 SDOperand InVec = getValue(I.getOperand(0));
2666 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2667 getValue(I.getOperand(1)));
Dan Gohman7f321562007-06-25 16:23:39 +00002668 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner384504c2006-03-21 20:44:12 +00002669 TLI.getValueType(I.getType()), InVec, InIdx));
2670}
Chris Lattnerc7029802006-03-18 01:44:44 +00002671
Chris Lattner3e104b12006-04-08 04:15:24 +00002672void SelectionDAGLowering::visitShuffleVector(User &I) {
2673 SDOperand V1 = getValue(I.getOperand(0));
2674 SDOperand V2 = getValue(I.getOperand(1));
2675 SDOperand Mask = getValue(I.getOperand(2));
2676
Dan Gohman7f321562007-06-25 16:23:39 +00002677 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2678 TLI.getValueType(I.getType()),
2679 V1, V2, Mask));
Chris Lattner3e104b12006-04-08 04:15:24 +00002680}
2681
Dan Gohman1d685a42008-06-07 02:02:36 +00002682void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2683 const Value *Op0 = I.getOperand(0);
2684 const Value *Op1 = I.getOperand(1);
2685 const Type *AggTy = I.getType();
2686 const Type *ValTy = Op1->getType();
2687 bool IntoUndef = isa<UndefValue>(Op0);
2688 bool FromUndef = isa<UndefValue>(Op1);
2689
2690 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2691 I.idx_begin(), I.idx_end());
2692
2693 SmallVector<MVT, 4> AggValueVTs;
2694 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2695 SmallVector<MVT, 4> ValValueVTs;
2696 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2697
2698 unsigned NumAggValues = AggValueVTs.size();
2699 unsigned NumValValues = ValValueVTs.size();
2700 SmallVector<SDOperand, 4> Values(NumAggValues);
2701
2702 SDOperand Agg = getValue(Op0);
2703 SDOperand Val = getValue(Op1);
2704 unsigned i = 0;
2705 // Copy the beginning value(s) from the original aggregate.
2706 for (; i != LinearIndex; ++i)
2707 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2708 SDOperand(Agg.Val, Agg.ResNo + i);
2709 // Copy values from the inserted value(s).
2710 for (; i != LinearIndex + NumValValues; ++i)
2711 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2712 SDOperand(Val.Val, Val.ResNo + i - LinearIndex);
2713 // Copy remaining value(s) from the original aggregate.
2714 for (; i != NumAggValues; ++i)
2715 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2716 SDOperand(Agg.Val, Agg.ResNo + i);
2717
2718 setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
2719 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2720 &Values[0], NumAggValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002721}
2722
Dan Gohman1d685a42008-06-07 02:02:36 +00002723void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2724 const Value *Op0 = I.getOperand(0);
2725 const Type *AggTy = Op0->getType();
2726 const Type *ValTy = I.getType();
2727 bool OutOfUndef = isa<UndefValue>(Op0);
2728
2729 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2730 I.idx_begin(), I.idx_end());
2731
2732 SmallVector<MVT, 4> ValValueVTs;
2733 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2734
2735 unsigned NumValValues = ValValueVTs.size();
2736 SmallVector<SDOperand, 4> Values(NumValValues);
2737
2738 SDOperand Agg = getValue(Op0);
2739 // Copy out the selected value(s).
2740 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2741 Values[i - LinearIndex] =
Dan Gohmandded0fd2008-06-20 00:54:19 +00002742 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
2743 SDOperand(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002744
2745 setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
2746 DAG.getVTList(&ValValueVTs[0], NumValValues),
2747 &Values[0], NumValValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002748}
2749
Chris Lattner3e104b12006-04-08 04:15:24 +00002750
Chris Lattner1c08c712005-01-07 07:47:53 +00002751void SelectionDAGLowering::visitGetElementPtr(User &I) {
2752 SDOperand N = getValue(I.getOperand(0));
2753 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00002754
2755 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2756 OI != E; ++OI) {
2757 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002758 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002759 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner1c08c712005-01-07 07:47:53 +00002760 if (Field) {
2761 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +00002762 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner1c08c712005-01-07 07:47:53 +00002763 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner0bd48932008-01-17 07:00:52 +00002764 DAG.getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00002765 }
2766 Ty = StTy->getElementType(Field);
2767 } else {
2768 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00002769
Chris Lattner7c0104b2005-11-09 04:45:33 +00002770 // If this is a constant subscript, handle it quickly.
2771 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002772 if (CI->getZExtValue() == 0) continue;
Reid Spencer47857812006-12-31 05:55:36 +00002773 uint64_t Offs =
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002774 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00002775 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2776 DAG.getIntPtrConstant(Offs));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002777 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00002778 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00002779
2780 // N = N + Idx * ElementSize;
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002781 uint64_t ElementSize = TD->getABITypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002782 SDOperand IdxN = getValue(Idx);
2783
2784 // If the index is smaller or larger than intptr_t, truncate or extend
2785 // it.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002786 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +00002787 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002788 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Chris Lattner7c0104b2005-11-09 04:45:33 +00002789 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2790
2791 // If this is a multiply by a power of two, turn it into a shl
2792 // immediately. This is a very common case.
2793 if (isPowerOf2_64(ElementSize)) {
2794 unsigned Amt = Log2_64(ElementSize);
2795 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00002796 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002797 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2798 continue;
2799 }
2800
Chris Lattner0bd48932008-01-17 07:00:52 +00002801 SDOperand Scale = DAG.getIntPtrConstant(ElementSize);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002802 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2803 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00002804 }
2805 }
2806 setValue(&I, N);
2807}
2808
2809void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2810 // If this is a fixed sized alloca in the entry block of the function,
2811 // allocate it statically on the stack.
2812 if (FuncInfo.StaticAllocaMap.count(&I))
2813 return; // getValue will auto-populate this.
2814
2815 const Type *Ty = I.getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +00002816 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00002817 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00002818 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner58092e32007-01-20 22:35:55 +00002819 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00002820
2821 SDOperand AllocSize = getValue(I.getArraySize());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002822 MVT IntPtr = TLI.getPointerTy();
Duncan Sands8e4eb092008-06-08 20:54:56 +00002823 if (IntPtr.bitsLT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002824 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002825 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002826 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00002827
Chris Lattner68cd65e2005-01-22 23:04:37 +00002828 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002829 DAG.getIntPtrConstant(TySize));
Chris Lattner1c08c712005-01-07 07:47:53 +00002830
Evan Cheng45157792007-08-16 23:46:29 +00002831 // Handle alignment. If the requested alignment is less than or equal to
2832 // the stack alignment, ignore it. If the size is greater than or equal to
2833 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner1c08c712005-01-07 07:47:53 +00002834 unsigned StackAlign =
2835 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng45157792007-08-16 23:46:29 +00002836 if (Align <= StackAlign)
Chris Lattner1c08c712005-01-07 07:47:53 +00002837 Align = 0;
Evan Cheng45157792007-08-16 23:46:29 +00002838
2839 // Round the size of the allocation up to the stack alignment size
2840 // by add SA-1 to the size.
2841 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002842 DAG.getIntPtrConstant(StackAlign-1));
Evan Cheng45157792007-08-16 23:46:29 +00002843 // Mask out the low bits for alignment purposes.
2844 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002845 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner1c08c712005-01-07 07:47:53 +00002846
Chris Lattner0bd48932008-01-17 07:00:52 +00002847 SDOperand Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands83ec4b62008-06-06 12:08:01 +00002848 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002849 MVT::Other);
2850 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner0da331f2007-02-04 01:31:47 +00002851 setValue(&I, DSA);
2852 DAG.setRoot(DSA.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002853
2854 // Inform the Frame Information that we have just allocated a variable-sized
2855 // object.
2856 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2857}
2858
Chris Lattner1c08c712005-01-07 07:47:53 +00002859void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002860 const Value *SV = I.getOperand(0);
2861 SDOperand Ptr = getValue(SV);
2862
2863 const Type *Ty = I.getType();
2864 bool isVolatile = I.isVolatile();
2865 unsigned Alignment = I.getAlignment();
2866
2867 SmallVector<MVT, 4> ValueVTs;
2868 SmallVector<uint64_t, 4> Offsets;
2869 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2870 unsigned NumValues = ValueVTs.size();
2871 if (NumValues == 0)
2872 return;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002873
Chris Lattnerd3948112005-01-17 22:19:26 +00002874 SDOperand Root;
2875 if (I.isVolatile())
2876 Root = getRoot();
2877 else {
2878 // Do not serialize non-volatile loads against each other.
2879 Root = DAG.getRoot();
2880 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002881
Dan Gohman1d685a42008-06-07 02:02:36 +00002882 SmallVector<SDOperand, 4> Values(NumValues);
2883 SmallVector<SDOperand, 4> Chains(NumValues);
2884 MVT PtrVT = Ptr.getValueType();
2885 for (unsigned i = 0; i != NumValues; ++i) {
2886 SDOperand L = DAG.getLoad(ValueVTs[i], Root,
2887 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2888 DAG.getConstant(Offsets[i], PtrVT)),
2889 SV, Offsets[i],
2890 isVolatile, Alignment);
2891 Values[i] = L;
2892 Chains[i] = L.getValue(1);
2893 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002894
Dan Gohman1d685a42008-06-07 02:02:36 +00002895 SDOperand Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2896 &Chains[0], NumValues);
2897 if (isVolatile)
2898 DAG.setRoot(Chain);
2899 else
2900 PendingLoads.push_back(Chain);
2901
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002902 setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
2903 DAG.getVTList(&ValueVTs[0], NumValues),
2904 &Values[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002905}
2906
2907
2908void SelectionDAGLowering::visitStore(StoreInst &I) {
2909 Value *SrcV = I.getOperand(0);
2910 SDOperand Src = getValue(SrcV);
Dan Gohman1d685a42008-06-07 02:02:36 +00002911 Value *PtrV = I.getOperand(1);
2912 SDOperand Ptr = getValue(PtrV);
2913
2914 SmallVector<MVT, 4> ValueVTs;
2915 SmallVector<uint64_t, 4> Offsets;
2916 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2917 unsigned NumValues = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002918 if (NumValues == 0)
2919 return;
Dan Gohman1d685a42008-06-07 02:02:36 +00002920
2921 SDOperand Root = getRoot();
2922 SmallVector<SDOperand, 4> Chains(NumValues);
2923 MVT PtrVT = Ptr.getValueType();
2924 bool isVolatile = I.isVolatile();
2925 unsigned Alignment = I.getAlignment();
2926 for (unsigned i = 0; i != NumValues; ++i)
2927 Chains[i] = DAG.getStore(Root, SDOperand(Src.Val, Src.ResNo + i),
2928 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2929 DAG.getConstant(Offsets[i], PtrVT)),
2930 PtrV, Offsets[i],
2931 isVolatile, Alignment);
2932
2933 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002934}
2935
Chris Lattner0eade312006-03-24 02:22:33 +00002936/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2937/// node.
2938void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2939 unsigned Intrinsic) {
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002940 bool HasChain = !I.doesNotAccessMemory();
2941 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2942
Chris Lattner0eade312006-03-24 02:22:33 +00002943 // Build the operand list.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002944 SmallVector<SDOperand, 8> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00002945 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2946 if (OnlyLoad) {
2947 // We don't need to serialize loads against other loads.
2948 Ops.push_back(DAG.getRoot());
2949 } else {
2950 Ops.push_back(getRoot());
2951 }
2952 }
Chris Lattner0eade312006-03-24 02:22:33 +00002953
2954 // Add the intrinsic ID as an integer operand.
2955 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2956
2957 // Add all operands of the call to the operand list.
2958 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2959 SDOperand Op = getValue(I.getOperand(i));
Chris Lattner0eade312006-03-24 02:22:33 +00002960 assert(TLI.isTypeLegal(Op.getValueType()) &&
2961 "Intrinsic uses a non-legal type?");
2962 Ops.push_back(Op);
2963 }
2964
Duncan Sands83ec4b62008-06-06 12:08:01 +00002965 std::vector<MVT> VTs;
Chris Lattner0eade312006-03-24 02:22:33 +00002966 if (I.getType() != Type::VoidTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002967 MVT VT = TLI.getValueType(I.getType());
2968 if (VT.isVector()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002969 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002970 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Chris Lattner0eade312006-03-24 02:22:33 +00002971
Duncan Sands83ec4b62008-06-06 12:08:01 +00002972 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Chris Lattner0eade312006-03-24 02:22:33 +00002973 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2974 }
2975
2976 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2977 VTs.push_back(VT);
2978 }
2979 if (HasChain)
2980 VTs.push_back(MVT::Other);
2981
Duncan Sands83ec4b62008-06-06 12:08:01 +00002982 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002983
Chris Lattner0eade312006-03-24 02:22:33 +00002984 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00002985 SDOperand Result;
2986 if (!HasChain)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002987 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2988 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002989 else if (I.getType() != Type::VoidTy)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002990 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2991 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002992 else
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002993 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
2994 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002995
Chris Lattnere58a7802006-04-02 03:41:14 +00002996 if (HasChain) {
2997 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
2998 if (OnlyLoad)
2999 PendingLoads.push_back(Chain);
3000 else
3001 DAG.setRoot(Chain);
3002 }
Chris Lattner0eade312006-03-24 02:22:33 +00003003 if (I.getType() != Type::VoidTy) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003004 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003005 MVT VT = TLI.getValueType(PTy);
Dan Gohman7f321562007-06-25 16:23:39 +00003006 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattner0eade312006-03-24 02:22:33 +00003007 }
3008 setValue(&I, Result);
3009 }
3010}
3011
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003012/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003013static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003014 V = V->stripPointerCasts();
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003015 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003016 assert ((GV || isa<ConstantPointerNull>(V)) &&
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003017 "TypeInfo must be a global variable or NULL");
3018 return GV;
3019}
3020
Duncan Sandsf4070822007-06-15 19:04:19 +00003021/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003022/// call, and add them to the specified machine basic block.
Duncan Sandsf4070822007-06-15 19:04:19 +00003023static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3024 MachineBasicBlock *MBB) {
3025 // Inform the MachineModuleInfo of the personality for this landing pad.
3026 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3027 assert(CE->getOpcode() == Instruction::BitCast &&
3028 isa<Function>(CE->getOperand(0)) &&
3029 "Personality should be a function");
3030 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3031
3032 // Gather all the type infos for this landing pad and pass them along to
3033 // MachineModuleInfo.
3034 std::vector<GlobalVariable *> TyInfo;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003035 unsigned N = I.getNumOperands();
3036
3037 for (unsigned i = N - 1; i > 2; --i) {
3038 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3039 unsigned FilterLength = CI->getZExtValue();
Duncan Sands6590b042007-08-27 15:47:50 +00003040 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003041 assert (FirstCatch <= N && "Invalid filter length");
3042
3043 if (FirstCatch < N) {
3044 TyInfo.reserve(N - FirstCatch);
3045 for (unsigned j = FirstCatch; j < N; ++j)
3046 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3047 MMI->addCatchTypeInfo(MBB, TyInfo);
3048 TyInfo.clear();
3049 }
3050
Duncan Sands6590b042007-08-27 15:47:50 +00003051 if (!FilterLength) {
3052 // Cleanup.
3053 MMI->addCleanup(MBB);
3054 } else {
3055 // Filter.
3056 TyInfo.reserve(FilterLength - 1);
3057 for (unsigned j = i + 1; j < FirstCatch; ++j)
3058 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3059 MMI->addFilterTypeInfo(MBB, TyInfo);
3060 TyInfo.clear();
3061 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003062
3063 N = i;
3064 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003065 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003066
3067 if (N > 3) {
3068 TyInfo.reserve(N - 3);
3069 for (unsigned j = 3; j < N; ++j)
3070 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sandsf4070822007-06-15 19:04:19 +00003071 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003072 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003073}
3074
Mon P Wang63307c32008-05-05 19:05:59 +00003075
3076/// Inlined utility function to implement binary input atomic intrinsics for
3077// visitIntrinsicCall: I is a call instruction
3078// Op is the associated NodeType for I
3079const char *
3080SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
3081 SDOperand Root = getRoot();
3082 SDOperand O2 = getValue(I.getOperand(2));
3083 SDOperand L = DAG.getAtomic(Op, Root,
3084 getValue(I.getOperand(1)),
3085 O2, O2.getValueType());
3086 setValue(&I, L);
3087 DAG.setRoot(L.getValue(1));
3088 return 0;
3089}
3090
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003091/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3092/// we want to emit this as a call to a named external function, return the name
3093/// otherwise lower it and return null.
3094const char *
3095SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3096 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00003097 default:
3098 // By default, turn this into a target intrinsic node.
3099 visitTargetIntrinsic(I, Intrinsic);
3100 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003101 case Intrinsic::vastart: visitVAStart(I); return 0;
3102 case Intrinsic::vaend: visitVAEnd(I); return 0;
3103 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemanbcc5f362007-01-29 22:58:52 +00003104 case Intrinsic::returnaddress:
3105 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3106 getValue(I.getOperand(1))));
3107 return 0;
3108 case Intrinsic::frameaddress:
3109 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3110 getValue(I.getOperand(1))));
3111 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003112 case Intrinsic::setjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003113 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003114 break;
3115 case Intrinsic::longjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003116 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003117 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00003118 case Intrinsic::memcpy_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003119 case Intrinsic::memcpy_i64: {
3120 SDOperand Op1 = getValue(I.getOperand(1));
3121 SDOperand Op2 = getValue(I.getOperand(2));
3122 SDOperand Op3 = getValue(I.getOperand(3));
3123 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3124 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3125 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003126 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003127 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003128 case Intrinsic::memset_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003129 case Intrinsic::memset_i64: {
3130 SDOperand Op1 = getValue(I.getOperand(1));
3131 SDOperand Op2 = getValue(I.getOperand(2));
3132 SDOperand Op3 = getValue(I.getOperand(3));
3133 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3134 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3135 I.getOperand(1), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003136 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003137 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003138 case Intrinsic::memmove_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003139 case Intrinsic::memmove_i64: {
3140 SDOperand Op1 = getValue(I.getOperand(1));
3141 SDOperand Op2 = getValue(I.getOperand(2));
3142 SDOperand Op3 = getValue(I.getOperand(3));
3143 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3144
3145 // If the source and destination are known to not be aliases, we can
3146 // lower memmove as memcpy.
3147 uint64_t Size = -1ULL;
3148 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3149 Size = C->getValue();
3150 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3151 AliasAnalysis::NoAlias) {
3152 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3153 I.getOperand(1), 0, I.getOperand(2), 0));
3154 return 0;
3155 }
3156
3157 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3158 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003159 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003160 }
Chris Lattner86cb6432005-12-13 17:40:33 +00003161 case Intrinsic::dbg_stoppoint: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003162 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003163 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003164 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003165 SDOperand Ops[5];
Chris Lattner36ce6912005-11-29 06:21:05 +00003166
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003167 Ops[0] = getRoot();
3168 Ops[1] = getValue(SPI.getLineValue());
3169 Ops[2] = getValue(SPI.getColumnValue());
Chris Lattner36ce6912005-11-29 06:21:05 +00003170
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003171 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00003172 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00003173 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
3174
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003175 Ops[3] = DAG.getString(CompileUnit->getFileName());
3176 Ops[4] = DAG.getString(CompileUnit->getDirectory());
Jim Laskeyce72b172006-02-11 01:01:30 +00003177
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003178 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops, 5));
Chris Lattner86cb6432005-12-13 17:40:33 +00003179 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003180
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003181 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00003182 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003183 case Intrinsic::dbg_region_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003184 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003185 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003186 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3187 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Jim Laskey1ee29252007-01-26 14:34:52 +00003188 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003189 DAG.getConstant(LabelID, MVT::i32),
3190 DAG.getConstant(0, MVT::i32)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003191 }
3192
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003193 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003194 }
3195 case Intrinsic::dbg_region_end: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003196 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003197 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003198 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3199 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Evan Chengbb81d972008-01-31 09:59:15 +00003200 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
3201 DAG.getConstant(LabelID, MVT::i32),
3202 DAG.getConstant(0, MVT::i32)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003203 }
3204
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003205 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003206 }
3207 case Intrinsic::dbg_func_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003208 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003209 if (!MMI) return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003210 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003211 Value *SP = FSI.getSubprogram();
3212 if (SP && MMI->Verify(SP)) {
3213 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3214 // what (most?) gdb expects.
3215 DebugInfoDesc *DD = MMI->getDescFor(SP);
3216 assert(DD && "Not a debug information descriptor");
3217 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3218 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
3219 unsigned SrcFile = MMI->RecordSource(CompileUnit->getDirectory(),
3220 CompileUnit->getFileName());
3221 // Record the source line but does create a label. It will be emitted
3222 // at asm emission time.
3223 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Jim Laskey43970fe2006-03-23 18:06:46 +00003224 }
3225
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003226 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003227 }
3228 case Intrinsic::dbg_declare: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003229 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003230 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Chenga844bde2008-02-02 04:07:54 +00003231 Value *Variable = DI.getVariable();
3232 if (MMI && Variable && MMI->Verify(Variable))
3233 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3234 getValue(DI.getAddress()), getValue(Variable)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003235 return 0;
3236 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003237
Jim Laskeyb180aa12007-02-21 22:53:45 +00003238 case Intrinsic::eh_exception: {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003239 if (!CurMBB->isLandingPad()) {
3240 // FIXME: Mark exception register as live in. Hack for PR1508.
3241 unsigned Reg = TLI.getExceptionAddressRegister();
3242 if (Reg) CurMBB->addLiveIn(Reg);
Jim Laskey735b6f82007-02-22 15:38:06 +00003243 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003244 // Insert the EXCEPTIONADDR instruction.
3245 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3246 SDOperand Ops[1];
3247 Ops[0] = DAG.getRoot();
3248 SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
3249 setValue(&I, Op);
3250 DAG.setRoot(Op.getValue(1));
Jim Laskeyb180aa12007-02-21 22:53:45 +00003251 return 0;
3252 }
3253
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003254 case Intrinsic::eh_selector_i32:
3255 case Intrinsic::eh_selector_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003256 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003257 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003258 MVT::i32 : MVT::i64);
3259
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003260 if (MMI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00003261 if (CurMBB->isLandingPad())
3262 addCatchInfo(I, MMI, CurMBB);
Evan Chenge47c3332007-06-27 18:45:32 +00003263 else {
Duncan Sandsf4070822007-06-15 19:04:19 +00003264#ifndef NDEBUG
Duncan Sandsf4070822007-06-15 19:04:19 +00003265 FuncInfo.CatchInfoLost.insert(&I);
3266#endif
Duncan Sands90291952007-07-06 09:18:59 +00003267 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3268 unsigned Reg = TLI.getExceptionSelectorRegister();
3269 if (Reg) CurMBB->addLiveIn(Reg);
Evan Chenge47c3332007-06-27 18:45:32 +00003270 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003271
3272 // Insert the EHSELECTION instruction.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003273 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Jim Laskey735b6f82007-02-22 15:38:06 +00003274 SDOperand Ops[2];
3275 Ops[0] = getValue(I.getOperand(1));
3276 Ops[1] = getRoot();
3277 SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
3278 setValue(&I, Op);
3279 DAG.setRoot(Op.getValue(1));
Jim Laskey7a1de982007-02-24 09:45:44 +00003280 } else {
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003281 setValue(&I, DAG.getConstant(0, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003282 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003283
3284 return 0;
3285 }
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003286
3287 case Intrinsic::eh_typeid_for_i32:
3288 case Intrinsic::eh_typeid_for_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003289 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003290 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003291 MVT::i32 : MVT::i64);
Jim Laskeyb180aa12007-02-21 22:53:45 +00003292
Jim Laskey735b6f82007-02-22 15:38:06 +00003293 if (MMI) {
3294 // Find the type id for the given typeinfo.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003295 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands3b346362007-05-04 17:12:26 +00003296
Jim Laskey735b6f82007-02-22 15:38:06 +00003297 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003298 setValue(&I, DAG.getConstant(TypeID, VT));
Jim Laskey7a1de982007-02-24 09:45:44 +00003299 } else {
Duncan Sandsf664e412007-07-06 14:46:23 +00003300 // Return something different to eh_selector.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003301 setValue(&I, DAG.getConstant(1, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003302 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003303
3304 return 0;
3305 }
3306
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003307 case Intrinsic::eh_return: {
3308 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3309
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003310 if (MMI) {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003311 MMI->setCallsEHReturn(true);
3312 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3313 MVT::Other,
Dan Gohman86e1ebf2008-03-27 19:56:19 +00003314 getControlRoot(),
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003315 getValue(I.getOperand(1)),
3316 getValue(I.getOperand(2))));
3317 } else {
3318 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3319 }
3320
3321 return 0;
3322 }
3323
3324 case Intrinsic::eh_unwind_init: {
3325 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3326 MMI->setCallsUnwindInit(true);
3327 }
3328
3329 return 0;
3330 }
3331
3332 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003333 MVT VT = getValue(I.getOperand(1)).getValueType();
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003334 SDOperand CfaArg;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003335 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003336 CfaArg = DAG.getNode(ISD::TRUNCATE,
3337 TLI.getPointerTy(), getValue(I.getOperand(1)));
3338 else
3339 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3340 TLI.getPointerTy(), getValue(I.getOperand(1)));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003341
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003342 SDOperand Offset = DAG.getNode(ISD::ADD,
3343 TLI.getPointerTy(),
3344 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3345 TLI.getPointerTy()),
3346 CfaArg);
3347 setValue(&I, DAG.getNode(ISD::ADD,
3348 TLI.getPointerTy(),
3349 DAG.getNode(ISD::FRAMEADDR,
3350 TLI.getPointerTy(),
3351 DAG.getConstant(0,
3352 TLI.getPointerTy())),
3353 Offset));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003354 return 0;
3355 }
3356
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003357 case Intrinsic::sqrt:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003358 setValue(&I, DAG.getNode(ISD::FSQRT,
3359 getValue(I.getOperand(1)).getValueType(),
3360 getValue(I.getOperand(1))));
3361 return 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003362 case Intrinsic::powi:
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003363 setValue(&I, DAG.getNode(ISD::FPOWI,
3364 getValue(I.getOperand(1)).getValueType(),
3365 getValue(I.getOperand(1)),
3366 getValue(I.getOperand(2))));
3367 return 0;
Dan Gohmanac9385a2007-10-12 00:01:22 +00003368 case Intrinsic::sin:
3369 setValue(&I, DAG.getNode(ISD::FSIN,
3370 getValue(I.getOperand(1)).getValueType(),
3371 getValue(I.getOperand(1))));
3372 return 0;
3373 case Intrinsic::cos:
3374 setValue(&I, DAG.getNode(ISD::FCOS,
3375 getValue(I.getOperand(1)).getValueType(),
3376 getValue(I.getOperand(1))));
3377 return 0;
3378 case Intrinsic::pow:
3379 setValue(&I, DAG.getNode(ISD::FPOW,
3380 getValue(I.getOperand(1)).getValueType(),
3381 getValue(I.getOperand(1)),
3382 getValue(I.getOperand(2))));
3383 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003384 case Intrinsic::pcmarker: {
3385 SDOperand Tmp = getValue(I.getOperand(1));
3386 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3387 return 0;
3388 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003389 case Intrinsic::readcyclecounter: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003390 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003391 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
3392 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3393 &Op, 1);
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003394 setValue(&I, Tmp);
3395 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003396 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003397 }
Chris Lattnerc6eb6d72007-04-10 03:20:39 +00003398 case Intrinsic::part_select: {
Reid Spencer3f108cb2007-04-05 01:20:18 +00003399 // Currently not implemented: just abort
Reid Spencerf75b8742007-04-12 02:48:46 +00003400 assert(0 && "part_select intrinsic not implemented");
3401 abort();
3402 }
3403 case Intrinsic::part_set: {
3404 // Currently not implemented: just abort
3405 assert(0 && "part_set intrinsic not implemented");
Reid Spencer3f108cb2007-04-05 01:20:18 +00003406 abort();
Reid Spenceraddd11d2007-04-04 23:48:25 +00003407 }
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003408 case Intrinsic::bswap:
Nate Begemand88fc032006-01-14 03:14:10 +00003409 setValue(&I, DAG.getNode(ISD::BSWAP,
3410 getValue(I.getOperand(1)).getValueType(),
3411 getValue(I.getOperand(1))));
3412 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003413 case Intrinsic::cttz: {
3414 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003415 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003416 SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003417 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003418 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003419 }
3420 case Intrinsic::ctlz: {
3421 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003422 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003423 SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003424 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003425 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003426 }
3427 case Intrinsic::ctpop: {
3428 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003429 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003430 SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003431 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003432 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003433 }
Chris Lattner140d53c2006-01-13 02:50:02 +00003434 case Intrinsic::stacksave: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003435 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003436 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
3437 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattner140d53c2006-01-13 02:50:02 +00003438 setValue(&I, Tmp);
3439 DAG.setRoot(Tmp.getValue(1));
3440 return 0;
3441 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00003442 case Intrinsic::stackrestore: {
3443 SDOperand Tmp = getValue(I.getOperand(1));
3444 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00003445 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00003446 }
Tanya Lattner24e5aad2007-06-15 22:26:58 +00003447 case Intrinsic::var_annotation:
3448 // Discard annotate attributes
3449 return 0;
Duncan Sands36397f52007-07-27 12:58:54 +00003450
Duncan Sands36397f52007-07-27 12:58:54 +00003451 case Intrinsic::init_trampoline: {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003452 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands36397f52007-07-27 12:58:54 +00003453
3454 SDOperand Ops[6];
3455 Ops[0] = getRoot();
3456 Ops[1] = getValue(I.getOperand(1));
3457 Ops[2] = getValue(I.getOperand(2));
3458 Ops[3] = getValue(I.getOperand(3));
3459 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3460 Ops[5] = DAG.getSrcValue(F);
3461
Duncan Sandsf7331b32007-09-11 14:10:23 +00003462 SDOperand Tmp = DAG.getNode(ISD::TRAMPOLINE,
3463 DAG.getNodeValueTypes(TLI.getPointerTy(),
3464 MVT::Other), 2,
3465 Ops, 6);
3466
3467 setValue(&I, Tmp);
3468 DAG.setRoot(Tmp.getValue(1));
Duncan Sands36397f52007-07-27 12:58:54 +00003469 return 0;
3470 }
Gordon Henriksence224772008-01-07 01:30:38 +00003471
3472 case Intrinsic::gcroot:
3473 if (GCI) {
3474 Value *Alloca = I.getOperand(1);
3475 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3476
3477 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3478 GCI->addStackRoot(FI->getIndex(), TypeMap);
3479 }
3480 return 0;
3481
3482 case Intrinsic::gcread:
3483 case Intrinsic::gcwrite:
3484 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3485 return 0;
3486
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003487 case Intrinsic::flt_rounds: {
Dan Gohman1a024862008-01-31 00:41:03 +00003488 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003489 return 0;
3490 }
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003491
3492 case Intrinsic::trap: {
3493 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3494 return 0;
3495 }
Evan Cheng27b7db52008-03-08 00:58:38 +00003496 case Intrinsic::prefetch: {
3497 SDOperand Ops[4];
3498 Ops[0] = getRoot();
3499 Ops[1] = getValue(I.getOperand(1));
3500 Ops[2] = getValue(I.getOperand(2));
3501 Ops[3] = getValue(I.getOperand(3));
3502 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3503 return 0;
3504 }
3505
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003506 case Intrinsic::memory_barrier: {
3507 SDOperand Ops[6];
3508 Ops[0] = getRoot();
3509 for (int x = 1; x < 6; ++x)
3510 Ops[x] = getValue(I.getOperand(x));
3511
3512 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3513 return 0;
3514 }
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003515 case Intrinsic::atomic_lcs: {
3516 SDOperand Root = getRoot();
3517 SDOperand O3 = getValue(I.getOperand(3));
3518 SDOperand L = DAG.getAtomic(ISD::ATOMIC_LCS, Root,
3519 getValue(I.getOperand(1)),
3520 getValue(I.getOperand(2)),
3521 O3, O3.getValueType());
3522 setValue(&I, L);
3523 DAG.setRoot(L.getValue(1));
3524 return 0;
3525 }
Mon P Wang63307c32008-05-05 19:05:59 +00003526 case Intrinsic::atomic_las:
3527 return implVisitBinaryAtomic(I, ISD::ATOMIC_LAS);
3528 case Intrinsic::atomic_lss:
3529 return implVisitBinaryAtomic(I, ISD::ATOMIC_LSS);
3530 case Intrinsic::atomic_load_and:
3531 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3532 case Intrinsic::atomic_load_or:
3533 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3534 case Intrinsic::atomic_load_xor:
3535 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003536 case Intrinsic::atomic_load_nand:
3537 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang63307c32008-05-05 19:05:59 +00003538 case Intrinsic::atomic_load_min:
3539 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3540 case Intrinsic::atomic_load_max:
3541 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3542 case Intrinsic::atomic_load_umin:
3543 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3544 case Intrinsic::atomic_load_umax:
3545 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3546 case Intrinsic::atomic_swap:
3547 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003548 }
3549}
3550
3551
Duncan Sands6f74b482007-12-19 09:48:52 +00003552void SelectionDAGLowering::LowerCallTo(CallSite CS, SDOperand Callee,
Jim Laskey1da20a72007-02-23 21:45:01 +00003553 bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003554 MachineBasicBlock *LandingPad) {
Duncan Sands6f74b482007-12-19 09:48:52 +00003555 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Jim Laskey735b6f82007-02-22 15:38:06 +00003556 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003557 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3558 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sands6f74b482007-12-19 09:48:52 +00003559
Jim Laskey735b6f82007-02-22 15:38:06 +00003560 TargetLowering::ArgListTy Args;
3561 TargetLowering::ArgListEntry Entry;
Duncan Sands6f74b482007-12-19 09:48:52 +00003562 Args.reserve(CS.arg_size());
3563 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3564 i != e; ++i) {
3565 SDOperand ArgNode = getValue(*i);
3566 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Duncan Sands4fee7032007-05-07 20:49:28 +00003567
Duncan Sands6f74b482007-12-19 09:48:52 +00003568 unsigned attrInd = i - CS.arg_begin() + 1;
3569 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3570 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3571 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3572 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3573 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3574 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen08e78b12008-02-22 17:49:45 +00003575 Entry.Alignment = CS.getParamAlignment(attrInd);
Jim Laskey735b6f82007-02-22 15:38:06 +00003576 Args.push_back(Entry);
3577 }
3578
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003579 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003580 // Insert a label before the invoke call to mark the try range. This can be
3581 // used to detect deletion of the invoke via the MachineModuleInfo.
3582 BeginLabel = MMI->NextLabelID();
Dale Johannesena4091d32008-04-04 23:48:31 +00003583 // Both PendingLoads and PendingExports must be flushed here;
3584 // this call might not return.
3585 (void)getRoot();
3586 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getControlRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003587 DAG.getConstant(BeginLabel, MVT::i32),
3588 DAG.getConstant(1, MVT::i32)));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003589 }
Duncan Sands6f74b482007-12-19 09:48:52 +00003590
Jim Laskey735b6f82007-02-22 15:38:06 +00003591 std::pair<SDOperand,SDOperand> Result =
Duncan Sands6f74b482007-12-19 09:48:52 +00003592 TLI.LowerCallTo(getRoot(), CS.getType(),
3593 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sands00fee652008-02-14 17:28:50 +00003594 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sands6f74b482007-12-19 09:48:52 +00003595 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Jim Laskey735b6f82007-02-22 15:38:06 +00003596 Callee, Args, DAG);
Duncan Sands6f74b482007-12-19 09:48:52 +00003597 if (CS.getType() != Type::VoidTy)
3598 setValue(CS.getInstruction(), Result.first);
Jim Laskey735b6f82007-02-22 15:38:06 +00003599 DAG.setRoot(Result.second);
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003600
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003601 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003602 // Insert a label at the end of the invoke call to mark the try range. This
3603 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3604 EndLabel = MMI->NextLabelID();
3605 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003606 DAG.getConstant(EndLabel, MVT::i32),
3607 DAG.getConstant(1, MVT::i32)));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003608
Duncan Sands6f74b482007-12-19 09:48:52 +00003609 // Inform MachineModuleInfo of range.
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003610 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3611 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003612}
3613
3614
Chris Lattner1c08c712005-01-07 07:47:53 +00003615void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00003616 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003617 if (Function *F = I.getCalledFunction()) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003618 if (F->isDeclaration()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003619 if (unsigned IID = F->getIntrinsicID()) {
3620 RenameFn = visitIntrinsicCall(I, IID);
3621 if (!RenameFn)
3622 return;
Chris Lattner87b51bc2007-09-10 21:15:22 +00003623 }
3624 }
3625
3626 // Check for well-known libc/libm calls. If the function is internal, it
3627 // can't be a library call.
3628 unsigned NameLen = F->getNameLen();
3629 if (!F->hasInternalLinkage() && NameLen) {
3630 const char *NameStr = F->getNameStart();
3631 if (NameStr[0] == 'c' &&
3632 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3633 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3634 if (I.getNumOperands() == 3 && // Basic sanity checks.
3635 I.getOperand(1)->getType()->isFloatingPoint() &&
3636 I.getType() == I.getOperand(1)->getType() &&
3637 I.getType() == I.getOperand(2)->getType()) {
3638 SDOperand LHS = getValue(I.getOperand(1));
3639 SDOperand RHS = getValue(I.getOperand(2));
3640 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3641 LHS, RHS));
3642 return;
3643 }
3644 } else if (NameStr[0] == 'f' &&
3645 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003646 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3647 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003648 if (I.getNumOperands() == 2 && // Basic sanity checks.
3649 I.getOperand(1)->getType()->isFloatingPoint() &&
3650 I.getType() == I.getOperand(1)->getType()) {
3651 SDOperand Tmp = getValue(I.getOperand(1));
3652 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3653 return;
3654 }
3655 } else if (NameStr[0] == 's' &&
3656 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003657 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3658 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003659 if (I.getNumOperands() == 2 && // Basic sanity checks.
3660 I.getOperand(1)->getType()->isFloatingPoint() &&
3661 I.getType() == I.getOperand(1)->getType()) {
3662 SDOperand Tmp = getValue(I.getOperand(1));
3663 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3664 return;
3665 }
3666 } else if (NameStr[0] == 'c' &&
3667 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003668 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3669 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003670 if (I.getNumOperands() == 2 && // Basic sanity checks.
3671 I.getOperand(1)->getType()->isFloatingPoint() &&
3672 I.getType() == I.getOperand(1)->getType()) {
3673 SDOperand Tmp = getValue(I.getOperand(1));
3674 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3675 return;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003676 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00003677 }
Chris Lattner87b51bc2007-09-10 21:15:22 +00003678 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00003679 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00003680 visitInlineAsm(&I);
Chris Lattnerce7518c2006-01-26 22:24:51 +00003681 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003682 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003683
Chris Lattner64e14b12005-01-08 22:48:57 +00003684 SDOperand Callee;
3685 if (!RenameFn)
3686 Callee = getValue(I.getOperand(0));
3687 else
3688 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003689
Duncan Sands6f74b482007-12-19 09:48:52 +00003690 LowerCallTo(&I, Callee, I.isTailCall());
Chris Lattner1c08c712005-01-07 07:47:53 +00003691}
3692
Jim Laskey735b6f82007-02-22 15:38:06 +00003693
Dan Gohmanef5d1942008-03-11 21:11:25 +00003694void SelectionDAGLowering::visitGetResult(GetResultInst &I) {
Dan Gohman67780f12008-04-23 20:25:16 +00003695 if (isa<UndefValue>(I.getOperand(0))) {
Dan Gohman3dc34f62008-04-23 20:21:29 +00003696 SDOperand Undef = DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()));
3697 setValue(&I, Undef);
Chris Lattner6833b062008-04-28 07:16:35 +00003698 return;
Dan Gohman3dc34f62008-04-23 20:21:29 +00003699 }
Chris Lattner6833b062008-04-28 07:16:35 +00003700
3701 // To add support for individual return values with aggregate types,
3702 // we'd need a way to take a getresult index and determine which
3703 // values of the Call SDNode are associated with it.
3704 assert(TLI.getValueType(I.getType(), true) != MVT::Other &&
3705 "Individual return values must not be aggregates!");
3706
3707 SDOperand Call = getValue(I.getOperand(0));
3708 setValue(&I, SDOperand(Call.Val, I.getIndex()));
Dan Gohmanef5d1942008-03-11 21:11:25 +00003709}
3710
3711
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003712/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3713/// this value and returns the result as a ValueVT value. This uses
3714/// Chain/Flag as the input and updates them for the output Chain/Flag.
3715/// If the Flag pointer is NULL, no flag is used.
Chris Lattneread0d882008-06-17 06:09:18 +00003716SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner6833b062008-04-28 07:16:35 +00003717 SDOperand &Chain,
3718 SDOperand *Flag) const {
Dan Gohman23ce5022008-04-25 18:27:55 +00003719 // Assemble the legal parts into the final values.
3720 SmallVector<SDOperand, 4> Values(ValueVTs.size());
Chris Lattner6833b062008-04-28 07:16:35 +00003721 SmallVector<SDOperand, 8> Parts;
3722 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman23ce5022008-04-25 18:27:55 +00003723 // Copy the legal parts from the registers.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003724 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003725 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003726 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003727
Chris Lattner6833b062008-04-28 07:16:35 +00003728 Parts.resize(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003729 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003730 SDOperand P;
3731 if (Flag == 0)
3732 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3733 else {
3734 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman23ce5022008-04-25 18:27:55 +00003735 *Flag = P.getValue(2);
Chris Lattner6833b062008-04-28 07:16:35 +00003736 }
3737 Chain = P.getValue(1);
Chris Lattneread0d882008-06-17 06:09:18 +00003738
3739 // If the source register was virtual and if we know something about it,
3740 // add an assert node.
3741 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3742 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3743 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3744 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3745 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3746 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3747
3748 unsigned RegSize = RegisterVT.getSizeInBits();
3749 unsigned NumSignBits = LOI.NumSignBits;
3750 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3751
3752 // FIXME: We capture more information than the dag can represent. For
3753 // now, just use the tightest assertzext/assertsext possible.
3754 bool isSExt = true;
3755 MVT FromVT(MVT::Other);
3756 if (NumSignBits == RegSize)
3757 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3758 else if (NumZeroBits >= RegSize-1)
3759 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3760 else if (NumSignBits > RegSize-8)
3761 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3762 else if (NumZeroBits >= RegSize-9)
3763 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3764 else if (NumSignBits > RegSize-16)
3765 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3766 else if (NumZeroBits >= RegSize-17)
3767 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3768 else if (NumSignBits > RegSize-32)
3769 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3770 else if (NumZeroBits >= RegSize-33)
3771 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3772
3773 if (FromVT != MVT::Other) {
3774 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3775 RegisterVT, P, DAG.getValueType(FromVT));
3776
3777 }
3778 }
3779 }
3780
Dan Gohman23ce5022008-04-25 18:27:55 +00003781 Parts[Part+i] = P;
3782 }
Chris Lattner5df99b32007-03-25 05:00:54 +00003783
Dan Gohman23ce5022008-04-25 18:27:55 +00003784 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3785 ValueVT);
3786 Part += NumRegs;
3787 }
Chris Lattner6833b062008-04-28 07:16:35 +00003788
3789 if (ValueVTs.size() == 1)
3790 return Values[0];
3791
Dan Gohman23ce5022008-04-25 18:27:55 +00003792 return DAG.getNode(ISD::MERGE_VALUES,
3793 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3794 &Values[0], ValueVTs.size());
Chris Lattner864635a2006-02-22 22:37:12 +00003795}
3796
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003797/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3798/// specified value into the registers specified by this object. This uses
3799/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003800/// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003801void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003802 SDOperand &Chain, SDOperand *Flag) const {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003803 // Get the list of the values's legal parts.
Dan Gohman23ce5022008-04-25 18:27:55 +00003804 unsigned NumRegs = Regs.size();
3805 SmallVector<SDOperand, 8> Parts(NumRegs);
Chris Lattner6833b062008-04-28 07:16:35 +00003806 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003807 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003808 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003809 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003810
3811 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3812 &Parts[Part], NumParts, RegisterVT);
3813 Part += NumParts;
3814 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003815
3816 // Copy the parts into the registers.
Dan Gohman23ce5022008-04-25 18:27:55 +00003817 SmallVector<SDOperand, 8> Chains(NumRegs);
3818 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003819 SDOperand Part;
3820 if (Flag == 0)
3821 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3822 else {
3823 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003824 *Flag = Part.getValue(1);
Chris Lattner6833b062008-04-28 07:16:35 +00003825 }
3826 Chains[i] = Part.getValue(0);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003827 }
Chris Lattner6833b062008-04-28 07:16:35 +00003828
Evan Cheng33bf38a2008-04-28 22:07:13 +00003829 if (NumRegs == 1 || Flag)
3830 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3831 // flagged to it. That is the CopyToReg nodes and the user are considered
3832 // a single scheduling unit. If we create a TokenFactor and return it as
3833 // chain, then the TokenFactor is both a predecessor (operand) of the
3834 // user as well as a successor (the TF operands are flagged to the user).
3835 // c1, f1 = CopyToReg
3836 // c2, f2 = CopyToReg
3837 // c3 = TokenFactor c1, c2
3838 // ...
3839 // = op c3, ..., f2
3840 Chain = Chains[NumRegs-1];
Chris Lattner6833b062008-04-28 07:16:35 +00003841 else
3842 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003843}
Chris Lattner864635a2006-02-22 22:37:12 +00003844
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003845/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3846/// operand list. This adds the code marker and includes the number of
3847/// values added into it.
3848void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00003849 std::vector<SDOperand> &Ops) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003850 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner4b993b12007-04-09 00:33:58 +00003851 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner6833b062008-04-28 07:16:35 +00003852 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3853 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003854 MVT RegisterVT = RegVTs[Value];
Chris Lattner6833b062008-04-28 07:16:35 +00003855 for (unsigned i = 0; i != NumRegs; ++i)
3856 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman23ce5022008-04-25 18:27:55 +00003857 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003858}
Chris Lattner864635a2006-02-22 22:37:12 +00003859
3860/// isAllocatableRegister - If the specified register is safe to allocate,
3861/// i.e. it isn't a stack pointer or some other special register, return the
3862/// register class for the register. Otherwise, return null.
3863static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003864isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman6f0d0242008-02-10 18:45:23 +00003865 const TargetLowering &TLI,
3866 const TargetRegisterInfo *TRI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003867 MVT FoundVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003868 const TargetRegisterClass *FoundRC = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +00003869 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3870 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003871 MVT ThisVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003872
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003873 const TargetRegisterClass *RC = *RCI;
3874 // If none of the the value types for this register class are valid, we
3875 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003876 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3877 I != E; ++I) {
3878 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003879 // If we have already found this register in a different register class,
3880 // choose the one with the largest VT specified. For example, on
3881 // PowerPC, we favor f64 register classes over f32.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003882 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003883 ThisVT = *I;
3884 break;
3885 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003886 }
3887 }
3888
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003889 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003890
Chris Lattner864635a2006-02-22 22:37:12 +00003891 // NOTE: This isn't ideal. In particular, this might allocate the
3892 // frame pointer in functions that need it (due to them not being taken
3893 // out of allocation, because a variable sized allocation hasn't been seen
3894 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003895 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3896 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003897 if (*I == Reg) {
3898 // We found a matching register class. Keep looking at others in case
3899 // we find one with larger registers that this physreg is also in.
3900 FoundRC = RC;
3901 FoundVT = ThisVT;
3902 break;
3903 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00003904 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003905 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00003906}
3907
Chris Lattner4e4b5762006-02-01 18:59:47 +00003908
Chris Lattner0c583402007-04-28 20:49:53 +00003909namespace {
3910/// AsmOperandInfo - This contains information for each constraint that we are
3911/// lowering.
Evan Cheng5c807602008-02-26 02:33:44 +00003912struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3913 /// CallOperand - If this is the result output operand or a clobber
3914 /// this is null, otherwise it is the incoming operand to the CallInst.
3915 /// This gets modified as the asm is processed.
Chris Lattner0c583402007-04-28 20:49:53 +00003916 SDOperand CallOperand;
Evan Cheng5c807602008-02-26 02:33:44 +00003917
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003918 /// AssignedRegs - If this is a register or register class operand, this
3919 /// contains the set of register corresponding to the operand.
3920 RegsForValue AssignedRegs;
3921
Dan Gohman23ce5022008-04-25 18:27:55 +00003922 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Cheng5c807602008-02-26 02:33:44 +00003923 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Chris Lattner0c583402007-04-28 20:49:53 +00003924 }
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003925
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003926 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3927 /// busy in OutputRegs/InputRegs.
3928 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3929 std::set<unsigned> &OutputRegs,
Chris Lattner7cbeb242008-02-21 04:55:52 +00003930 std::set<unsigned> &InputRegs,
3931 const TargetRegisterInfo &TRI) const {
3932 if (isOutReg) {
3933 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3934 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3935 }
3936 if (isInReg) {
3937 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3938 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3939 }
3940 }
3941
3942private:
3943 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3944 /// specified set.
3945 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3946 const TargetRegisterInfo &TRI) {
3947 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3948 Regs.insert(Reg);
3949 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3950 for (; *Aliases; ++Aliases)
3951 Regs.insert(*Aliases);
3952 }
Chris Lattner0c583402007-04-28 20:49:53 +00003953};
3954} // end anon namespace.
Chris Lattner864635a2006-02-22 22:37:12 +00003955
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003956
Chris Lattner0fe71e92008-02-21 19:43:13 +00003957/// GetRegistersForValue - Assign registers (virtual or physical) for the
3958/// specified operand. We prefer to assign virtual registers, to allow the
3959/// register allocator handle the assignment process. However, if the asm uses
3960/// features that we can't model on machineinstrs, we have SDISel do the
3961/// allocation. This produces generally horrible, but correct, code.
3962///
3963/// OpInfo describes the operand.
3964/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3965/// or any explicitly clobbered registers.
3966/// Input and OutputRegs are the set of already allocated physical registers.
3967///
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003968void SelectionDAGLowering::
Evan Cheng5c807602008-02-26 02:33:44 +00003969GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnerbf996f12007-04-30 17:29:31 +00003970 std::set<unsigned> &OutputRegs,
3971 std::set<unsigned> &InputRegs) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003972 // Compute whether this value requires an input register, an output register,
3973 // or both.
3974 bool isOutReg = false;
3975 bool isInReg = false;
3976 switch (OpInfo.Type) {
3977 case InlineAsm::isOutput:
3978 isOutReg = true;
3979
3980 // If this is an early-clobber output, or if there is an input
3981 // constraint that matches this, we need to reserve the input register
3982 // so no other inputs allocate to it.
3983 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3984 break;
3985 case InlineAsm::isInput:
3986 isInReg = true;
3987 isOutReg = false;
3988 break;
3989 case InlineAsm::isClobber:
3990 isOutReg = true;
3991 isInReg = true;
3992 break;
3993 }
3994
3995
3996 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerb606dba2008-04-28 06:44:42 +00003997 SmallVector<unsigned, 4> Regs;
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003998
3999 // If this is a constraint for a single physreg, or a constraint for a
4000 // register class, find it.
4001 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4002 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4003 OpInfo.ConstraintVT);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004004
4005 unsigned NumRegs = 1;
4006 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohmanb9f10192007-06-21 14:42:22 +00004007 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004008 MVT RegVT;
4009 MVT ValueVT = OpInfo.ConstraintVT;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004010
Chris Lattnerbf996f12007-04-30 17:29:31 +00004011
4012 // If this is a constraint for a specific physical register, like {r17},
4013 // assign it now.
4014 if (PhysReg.first) {
4015 if (OpInfo.ConstraintVT == MVT::Other)
4016 ValueVT = *PhysReg.second->vt_begin();
4017
4018 // Get the actual register value type. This is important, because the user
4019 // may have asked for (e.g.) the AX register in i32 type. We need to
4020 // remember that AX is actually i16 to get the right extension.
4021 RegVT = *PhysReg.second->vt_begin();
4022
4023 // This is a explicit reference to a physical register.
4024 Regs.push_back(PhysReg.first);
4025
4026 // If this is an expanded reference, add the rest of the regs to Regs.
4027 if (NumRegs != 1) {
4028 TargetRegisterClass::iterator I = PhysReg.second->begin();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004029 for (; *I != PhysReg.first; ++I)
Evan Cheng50871242008-05-14 20:07:51 +00004030 assert(I != PhysReg.second->end() && "Didn't find reg!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004031
4032 // Already added the first reg.
4033 --NumRegs; ++I;
4034 for (; NumRegs; --NumRegs, ++I) {
Evan Cheng50871242008-05-14 20:07:51 +00004035 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004036 Regs.push_back(*I);
4037 }
4038 }
Dan Gohman23ce5022008-04-25 18:27:55 +00004039 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004040 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4041 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004042 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004043 }
4044
4045 // Otherwise, if this was a reference to an LLVM register class, create vregs
4046 // for this reference.
4047 std::vector<unsigned> RegClassRegs;
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004048 const TargetRegisterClass *RC = PhysReg.second;
4049 if (RC) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004050 // If this is an early clobber or tied register, our regalloc doesn't know
4051 // how to maintain the constraint. If it isn't, go ahead and create vreg
4052 // and let the regalloc do the right thing.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004053 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4054 // If there is some other early clobber and this is an input register,
4055 // then we are forced to pre-allocate the input reg so it doesn't
4056 // conflict with the earlyclobber.
4057 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004058 RegVT = *PhysReg.second->vt_begin();
4059
4060 if (OpInfo.ConstraintVT == MVT::Other)
4061 ValueVT = RegVT;
4062
4063 // Create the appropriate number of virtual registers.
Chris Lattner84bc5422007-12-31 04:13:23 +00004064 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004065 for (; NumRegs; --NumRegs)
Chris Lattner84bc5422007-12-31 04:13:23 +00004066 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Chris Lattnerbf996f12007-04-30 17:29:31 +00004067
Dan Gohman23ce5022008-04-25 18:27:55 +00004068 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004069 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004070 }
4071
4072 // Otherwise, we can't allocate it. Let the code below figure out how to
4073 // maintain these constraints.
4074 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4075
4076 } else {
4077 // This is a reference to a register class that doesn't directly correspond
4078 // to an LLVM register class. Allocate NumRegs consecutive, available,
4079 // registers from the class.
4080 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4081 OpInfo.ConstraintVT);
4082 }
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004083
Dan Gohman6f0d0242008-02-10 18:45:23 +00004084 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004085 unsigned NumAllocated = 0;
4086 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4087 unsigned Reg = RegClassRegs[i];
4088 // See if this register is available.
4089 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4090 (isInReg && InputRegs.count(Reg))) { // Already used.
4091 // Make sure we find consecutive registers.
4092 NumAllocated = 0;
4093 continue;
4094 }
4095
4096 // Check to see if this register is allocatable (i.e. don't give out the
4097 // stack pointer).
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004098 if (RC == 0) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004099 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004100 if (!RC) { // Couldn't allocate this register.
4101 // Reset NumAllocated to make sure we return consecutive registers.
4102 NumAllocated = 0;
4103 continue;
4104 }
Chris Lattnerbf996f12007-04-30 17:29:31 +00004105 }
4106
4107 // Okay, this register is good, we can use it.
4108 ++NumAllocated;
4109
4110 // If we allocated enough consecutive registers, succeed.
4111 if (NumAllocated == NumRegs) {
4112 unsigned RegStart = (i-NumAllocated)+1;
4113 unsigned RegEnd = i+1;
4114 // Mark all of the allocated registers used.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004115 for (unsigned i = RegStart; i != RegEnd; ++i)
4116 Regs.push_back(RegClassRegs[i]);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004117
Dan Gohman23ce5022008-04-25 18:27:55 +00004118 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004119 OpInfo.ConstraintVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004120 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004121 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004122 }
4123 }
4124
4125 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattnerbf996f12007-04-30 17:29:31 +00004126}
4127
4128
Chris Lattnerce7518c2006-01-26 22:24:51 +00004129/// visitInlineAsm - Handle a call to an InlineAsm object.
4130///
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004131void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4132 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004133
Chris Lattner0c583402007-04-28 20:49:53 +00004134 /// ConstraintOperands - Information about all of the constraints.
Evan Cheng5c807602008-02-26 02:33:44 +00004135 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004136
4137 SDOperand Chain = getRoot();
4138 SDOperand Flag;
4139
Chris Lattner4e4b5762006-02-01 18:59:47 +00004140 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004141
Chris Lattner0c583402007-04-28 20:49:53 +00004142 // Do a prepass over the constraints, canonicalizing them, and building up the
4143 // ConstraintOperands list.
4144 std::vector<InlineAsm::ConstraintInfo>
4145 ConstraintInfos = IA->ParseConstraints();
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004146
4147 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4148 // constraint. If so, we can't let the register allocator allocate any input
4149 // registers, because it will not know to avoid the earlyclobbered output reg.
4150 bool SawEarlyClobber = false;
4151
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004152 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattneracf8b012008-04-27 23:44:28 +00004153 unsigned ResNo = 0; // ResNo - The result number of the next output.
Chris Lattner0c583402007-04-28 20:49:53 +00004154 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004155 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4156 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Chris Lattner0c583402007-04-28 20:49:53 +00004157
Duncan Sands83ec4b62008-06-06 12:08:01 +00004158 MVT OpVT = MVT::Other;
Chris Lattner0c583402007-04-28 20:49:53 +00004159
4160 // Compute the value type for each operand.
4161 switch (OpInfo.Type) {
Chris Lattner1efa40f2006-02-22 00:56:39 +00004162 case InlineAsm::isOutput:
Chris Lattneracf8b012008-04-27 23:44:28 +00004163 // Indirect outputs just consume an argument.
4164 if (OpInfo.isIndirect) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004165 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattneracf8b012008-04-27 23:44:28 +00004166 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004167 }
Chris Lattneracf8b012008-04-27 23:44:28 +00004168 // The return value of the call is this value. As such, there is no
4169 // corresponding argument.
4170 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4171 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4172 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4173 } else {
4174 assert(ResNo == 0 && "Asm only has one result!");
4175 OpVT = TLI.getValueType(CS.getType());
4176 }
4177 ++ResNo;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004178 break;
4179 case InlineAsm::isInput:
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004180 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner1efa40f2006-02-22 00:56:39 +00004181 break;
4182 case InlineAsm::isClobber:
Chris Lattner0c583402007-04-28 20:49:53 +00004183 // Nothing to do.
Chris Lattner1efa40f2006-02-22 00:56:39 +00004184 break;
4185 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004186
Chris Lattner0c583402007-04-28 20:49:53 +00004187 // If this is an input or an indirect output, process the call argument.
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004188 // BasicBlocks are labels, currently appearing only in asm's.
Chris Lattner0c583402007-04-28 20:49:53 +00004189 if (OpInfo.CallOperandVal) {
Chris Lattner507ffd22008-04-27 00:16:18 +00004190 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4191 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004192 else {
4193 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4194 const Type *OpTy = OpInfo.CallOperandVal->getType();
4195 // If this is an indirect operand, the operand is a pointer to the
4196 // accessed type.
4197 if (OpInfo.isIndirect)
4198 OpTy = cast<PointerType>(OpTy)->getElementType();
4199
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004200 // If OpTy is not a single value, it may be a struct/union that we
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004201 // can tile with integers.
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004202 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004203 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4204 switch (BitSize) {
4205 default: break;
4206 case 1:
4207 case 8:
4208 case 16:
4209 case 32:
4210 case 64:
4211 OpTy = IntegerType::get(BitSize);
4212 break;
4213 }
Chris Lattner6995cf62007-04-29 18:58:03 +00004214 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004215
4216 OpVT = TLI.getValueType(OpTy, true);
Chris Lattner0c583402007-04-28 20:49:53 +00004217 }
4218 }
4219
4220 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a600be2007-04-28 21:01:43 +00004221
Chris Lattner3ff90dc2007-04-30 17:16:27 +00004222 // Compute the constraint code and ConstraintType to use.
Chris Lattner5a096902008-04-27 00:37:18 +00004223 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Chris Lattner0c583402007-04-28 20:49:53 +00004224
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004225 // Keep track of whether we see an earlyclobber.
4226 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004227
Chris Lattner0fe71e92008-02-21 19:43:13 +00004228 // If we see a clobber of a register, it is an early clobber.
Chris Lattner69e6a8d2008-02-21 20:54:31 +00004229 if (!SawEarlyClobber &&
4230 OpInfo.Type == InlineAsm::isClobber &&
4231 OpInfo.ConstraintType == TargetLowering::C_Register) {
4232 // Note that we want to ignore things that we don't trick here, like
4233 // dirflag, fpsr, flags, etc.
4234 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4235 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4236 OpInfo.ConstraintVT);
4237 if (PhysReg.first || PhysReg.second) {
4238 // This is a register we know of.
4239 SawEarlyClobber = true;
4240 }
4241 }
Chris Lattner0fe71e92008-02-21 19:43:13 +00004242
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004243 // If this is a memory input, and if the operand is not indirect, do what we
4244 // need to to provide an address for the memory input.
4245 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4246 !OpInfo.isIndirect) {
4247 assert(OpInfo.Type == InlineAsm::isInput &&
4248 "Can only indirectify direct input operands!");
4249
4250 // Memory operands really want the address of the value. If we don't have
4251 // an indirect input, put it in the constpool if we can, otherwise spill
4252 // it to a stack slot.
4253
4254 // If the operand is a float, integer, or vector constant, spill to a
4255 // constant pool entry to get its address.
4256 Value *OpVal = OpInfo.CallOperandVal;
4257 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4258 isa<ConstantVector>(OpVal)) {
4259 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4260 TLI.getPointerTy());
4261 } else {
4262 // Otherwise, create a stack slot and emit a store to it before the
4263 // asm.
4264 const Type *Ty = OpVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +00004265 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004266 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4267 MachineFunction &MF = DAG.getMachineFunction();
4268 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
4269 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4270 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4271 OpInfo.CallOperand = StackSlot;
4272 }
4273
4274 // There is no longer a Value* corresponding to this operand.
4275 OpInfo.CallOperandVal = 0;
4276 // It is now an indirect operand.
4277 OpInfo.isIndirect = true;
4278 }
4279
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004280 // If this constraint is for a specific register, allocate it before
4281 // anything else.
4282 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4283 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattner0c583402007-04-28 20:49:53 +00004284 }
Chris Lattner0c583402007-04-28 20:49:53 +00004285 ConstraintInfos.clear();
4286
4287
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004288 // Second pass - Loop over all of the operands, assigning virtual or physregs
4289 // to registerclass operands.
4290 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004291 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004292
4293 // C_Register operands have already been allocated, Other/Memory don't need
4294 // to be.
4295 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4296 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4297 }
4298
Chris Lattner0c583402007-04-28 20:49:53 +00004299 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
4300 std::vector<SDOperand> AsmNodeOperands;
4301 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
4302 AsmNodeOperands.push_back(
4303 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4304
Chris Lattner2cc2f662006-02-01 01:28:23 +00004305
Chris Lattner0f0b7d42006-02-21 23:12:12 +00004306 // Loop over all of the inputs, copying the operand values into the
4307 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00004308 RegsForValue RetValRegs;
Chris Lattner41f62592008-04-29 04:29:54 +00004309
Chris Lattner0c583402007-04-28 20:49:53 +00004310 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4311 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4312
4313 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004314 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner1efa40f2006-02-22 00:56:39 +00004315
Chris Lattner0c583402007-04-28 20:49:53 +00004316 switch (OpInfo.Type) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00004317 case InlineAsm::isOutput: {
Chris Lattnerc83994e2007-04-28 21:03:16 +00004318 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4319 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerf2f3cd52007-04-28 06:08:13 +00004320 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004321 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner22873462006-02-27 23:45:39 +00004322
Chris Lattner22873462006-02-27 23:45:39 +00004323 // Add information to the INLINEASM node to know about this output.
4324 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004325 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4326 TLI.getPointerTy()));
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004327 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner22873462006-02-27 23:45:39 +00004328 break;
4329 }
4330
Chris Lattner2a600be2007-04-28 21:01:43 +00004331 // Otherwise, this is a register or register class output.
Chris Lattner22873462006-02-27 23:45:39 +00004332
Chris Lattner864635a2006-02-22 22:37:12 +00004333 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00004334 // we can use.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004335 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sandsa47c6c32008-06-17 03:24:13 +00004336 cerr << "Couldn't allocate output reg for constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004337 << OpInfo.ConstraintCode << "'!\n";
Chris Lattnerd03f1582006-10-31 07:33:13 +00004338 exit(1);
4339 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004340
Chris Lattner41f62592008-04-29 04:29:54 +00004341 // If this is an indirect operand, store through the pointer after the
4342 // asm.
4343 if (OpInfo.isIndirect) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004344 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattner0c583402007-04-28 20:49:53 +00004345 OpInfo.CallOperandVal));
Chris Lattner41f62592008-04-29 04:29:54 +00004346 } else {
4347 // This is the result value of the call.
4348 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4349 // Concatenate this output onto the outputs list.
4350 RetValRegs.append(OpInfo.AssignedRegs);
Chris Lattner2cc2f662006-02-01 01:28:23 +00004351 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004352
4353 // Add information to the INLINEASM node to know that this register is
4354 // set.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004355 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4356 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004357 break;
4358 }
4359 case InlineAsm::isInput: {
Chris Lattner0c583402007-04-28 20:49:53 +00004360 SDOperand InOperandVal = OpInfo.CallOperand;
Chris Lattner3d81fee2006-02-04 02:16:44 +00004361
Chris Lattner0c583402007-04-28 20:49:53 +00004362 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner2223aea2006-02-02 00:25:23 +00004363 // If this is required to match an output register we have already set,
4364 // just use its register.
Chris Lattner0c583402007-04-28 20:49:53 +00004365 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00004366
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004367 // Scan until we find the definition we already emitted of this operand.
4368 // When we find it, create a RegsForValue operand.
4369 unsigned CurOp = 2; // The first operand.
4370 for (; OperandNo; --OperandNo) {
4371 // Advance to the next operand.
4372 unsigned NumOps =
4373 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00004374 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4375 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004376 "Skipped past definitions?");
4377 CurOp += (NumOps>>3)+1;
4378 }
4379
4380 unsigned NumOps =
4381 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattner527fae12007-02-01 01:21:12 +00004382 if ((NumOps & 7) == 2 /*REGDEF*/) {
4383 // Add NumOps>>3 registers to MatchedRegs.
4384 RegsForValue MatchedRegs;
Dan Gohman23ce5022008-04-25 18:27:55 +00004385 MatchedRegs.TLI = &TLI;
Dan Gohman1fa850b2008-05-02 00:03:54 +00004386 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4387 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Chris Lattner527fae12007-02-01 01:21:12 +00004388 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4389 unsigned Reg =
4390 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4391 MatchedRegs.Regs.push_back(Reg);
4392 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004393
Chris Lattner527fae12007-02-01 01:21:12 +00004394 // Use the produced MatchedRegs object to
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004395 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner527fae12007-02-01 01:21:12 +00004396 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4397 break;
4398 } else {
4399 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattnerf9853bc2008-02-21 05:27:19 +00004400 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4401 // Add information to the INLINEASM node to know about this input.
4402 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4403 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4404 TLI.getPointerTy()));
4405 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4406 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004407 }
Chris Lattner2223aea2006-02-02 00:25:23 +00004408 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004409
Chris Lattner2a600be2007-04-28 21:01:43 +00004410 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Chris Lattner0c583402007-04-28 20:49:53 +00004411 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004412 "Don't know how to handle indirect other inputs yet!");
4413
Chris Lattner48884cd2007-08-25 00:47:38 +00004414 std::vector<SDOperand> Ops;
4415 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4416 Ops, DAG);
4417 if (Ops.empty()) {
Bill Wendling832171c2006-12-07 20:04:42 +00004418 cerr << "Invalid operand for inline asm constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004419 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner53069fb2006-10-31 19:41:18 +00004420 exit(1);
4421 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004422
4423 // Add information to the INLINEASM node to know about this input.
Chris Lattner48884cd2007-08-25 00:47:38 +00004424 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004425 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4426 TLI.getPointerTy()));
Chris Lattner48884cd2007-08-25 00:47:38 +00004427 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004428 break;
Chris Lattner2a600be2007-04-28 21:01:43 +00004429 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004430 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner44b2c502007-04-28 06:42:38 +00004431 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4432 "Memory operands expect pointer values");
4433
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004434 // Add information to the INLINEASM node to know about this input.
4435 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004436 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4437 TLI.getPointerTy()));
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004438 AsmNodeOperands.push_back(InOperandVal);
4439 break;
4440 }
4441
Chris Lattner2a600be2007-04-28 21:01:43 +00004442 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4443 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4444 "Unknown constraint type!");
Chris Lattner0c583402007-04-28 20:49:53 +00004445 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004446 "Don't know how to handle indirect register inputs yet!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004447
4448 // Copy the input into the appropriate registers.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004449 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4450 "Couldn't allocate input reg!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004451
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004452 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004453
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004454 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4455 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004456 break;
4457 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004458 case InlineAsm::isClobber: {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004459 // Add the clobbered value to the operand list, so that the register
4460 // allocator is aware that the physreg got clobbered.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004461 if (!OpInfo.AssignedRegs.Regs.empty())
4462 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4463 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004464 break;
4465 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004466 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004467 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004468
4469 // Finish up input operands.
4470 AsmNodeOperands[0] = Chain;
4471 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4472
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004473 Chain = DAG.getNode(ISD::INLINEASM,
4474 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004475 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004476 Flag = Chain.getValue(1);
4477
Chris Lattner6656dd12006-01-31 02:03:41 +00004478 // If this asm returns a register value, copy the result from that register
4479 // and set it as the value of the call.
Chris Lattner3a508c92007-04-12 06:00:20 +00004480 if (!RetValRegs.Regs.empty()) {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004481 SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner3fb29682008-04-29 04:48:56 +00004482
4483 // If any of the results of the inline asm is a vector, it may have the
4484 // wrong width/num elts. This can happen for register classes that can
4485 // contain multiple different value types. The preg or vreg allocated may
4486 // not have the same VT as was expected. Convert it to the right type with
Dan Gohman7f321562007-06-25 16:23:39 +00004487 // bit_convert.
Chris Lattner3fb29682008-04-29 04:48:56 +00004488 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4489 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004490 if (Val.Val->getValueType(i).isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004491 Val = DAG.getNode(ISD::BIT_CONVERT,
4492 TLI.getValueType(ResSTy->getElementType(i)), Val);
4493 }
4494 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004495 if (Val.getValueType().isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004496 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4497 Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004498 }
Chris Lattner3fb29682008-04-29 04:48:56 +00004499
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004500 setValue(CS.getInstruction(), Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004501 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004502
Chris Lattner6656dd12006-01-31 02:03:41 +00004503 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
4504
4505 // Process indirect outputs, first output all of the flagged copies out of
4506 // physregs.
4507 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00004508 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00004509 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004510 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner864635a2006-02-22 22:37:12 +00004511 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00004512 }
4513
4514 // Emit the non-flagged stores from the physregs.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004515 SmallVector<SDOperand, 8> OutChains;
Chris Lattner6656dd12006-01-31 02:03:41 +00004516 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattner0c583402007-04-28 20:49:53 +00004517 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner6656dd12006-01-31 02:03:41 +00004518 getValue(StoresToEmit[i].second),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004519 StoresToEmit[i].second, 0));
Chris Lattner6656dd12006-01-31 02:03:41 +00004520 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004521 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4522 &OutChains[0], OutChains.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004523 DAG.setRoot(Chain);
4524}
4525
4526
Chris Lattner1c08c712005-01-07 07:47:53 +00004527void SelectionDAGLowering::visitMalloc(MallocInst &I) {
4528 SDOperand Src = getValue(I.getOperand(0));
4529
Duncan Sands83ec4b62008-06-06 12:08:01 +00004530 MVT IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00004531
Duncan Sands8e4eb092008-06-08 20:54:56 +00004532 if (IntPtr.bitsLT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004533 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004534 else if (IntPtr.bitsGT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004535 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00004536
4537 // Scale the source by the type size.
Duncan Sands514ab342007-11-01 20:53:16 +00004538 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00004539 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner0bd48932008-01-17 07:00:52 +00004540 Src, DAG.getIntPtrConstant(ElementSize));
Chris Lattner1c08c712005-01-07 07:47:53 +00004541
Reid Spencer47857812006-12-31 05:55:36 +00004542 TargetLowering::ArgListTy Args;
4543 TargetLowering::ArgListEntry Entry;
4544 Entry.Node = Src;
4545 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004546 Args.push_back(Entry);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004547
4548 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004549 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4550 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004551 setValue(&I, Result.first); // Pointers always fit in registers
4552 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004553}
4554
4555void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencer47857812006-12-31 05:55:36 +00004556 TargetLowering::ArgListTy Args;
4557 TargetLowering::ArgListEntry Entry;
4558 Entry.Node = getValue(I.getOperand(0));
4559 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004560 Args.push_back(Entry);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004561 MVT IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00004562 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004563 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4564 CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00004565 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4566 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004567}
4568
Evan Chengff9b3732008-01-30 18:18:23 +00004569// EmitInstrWithCustomInserter - This method should be implemented by targets
4570// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +00004571// instructions are special in various ways, which require special support to
4572// insert. The specified MachineInstr is created but not inserted into any
4573// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +00004574MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Chris Lattner025c39b2005-08-26 20:54:47 +00004575 MachineBasicBlock *MBB) {
Bill Wendling832171c2006-12-07 20:04:42 +00004576 cerr << "If a target marks an instruction with "
4577 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chengff9b3732008-01-30 18:18:23 +00004578 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Chris Lattner025c39b2005-08-26 20:54:47 +00004579 abort();
4580 return 0;
4581}
4582
Chris Lattner39ae3622005-01-09 00:00:49 +00004583void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004584 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4585 getValue(I.getOperand(1)),
4586 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00004587}
4588
4589void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004590 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
4591 getValue(I.getOperand(0)),
4592 DAG.getSrcValue(I.getOperand(0)));
4593 setValue(&I, V);
4594 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00004595}
4596
4597void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004598 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4599 getValue(I.getOperand(1)),
4600 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004601}
4602
4603void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004604 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4605 getValue(I.getOperand(1)),
4606 getValue(I.getOperand(2)),
4607 DAG.getSrcValue(I.getOperand(1)),
4608 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004609}
4610
Chris Lattnerfdfded52006-04-12 16:20:43 +00004611/// TargetLowering::LowerArguments - This is the default LowerArguments
4612/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004613/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4614/// integrated into SDISel.
Chris Lattnerfdfded52006-04-12 16:20:43 +00004615std::vector<SDOperand>
4616TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
4617 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
4618 std::vector<SDOperand> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004619 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00004620 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4621 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4622
4623 // Add one result value for each formal argument.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004624 std::vector<MVT> RetVals;
Anton Korobeynikov6aa279d2007-01-28 18:01:49 +00004625 unsigned j = 1;
Anton Korobeynikovac2b2cf2007-01-28 16:04:40 +00004626 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4627 I != E; ++I, ++j) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004628 SmallVector<MVT, 4> ValueVTs;
4629 ComputeValueVTs(*this, I->getType(), ValueVTs);
4630 for (unsigned Value = 0, NumValues = ValueVTs.size();
4631 Value != NumValues; ++Value) {
4632 MVT VT = ValueVTs[Value];
4633 const Type *ArgTy = VT.getTypeForMVT();
4634 ISD::ArgFlagsTy Flags;
4635 unsigned OriginalAlignment =
4636 getTargetData()->getABITypeAlignment(ArgTy);
Lauro Ramos Venancio7aa47b62007-02-13 13:50:08 +00004637
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004638 if (F.paramHasAttr(j, ParamAttr::ZExt))
4639 Flags.setZExt();
4640 if (F.paramHasAttr(j, ParamAttr::SExt))
4641 Flags.setSExt();
4642 if (F.paramHasAttr(j, ParamAttr::InReg))
4643 Flags.setInReg();
4644 if (F.paramHasAttr(j, ParamAttr::StructRet))
4645 Flags.setSRet();
4646 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4647 Flags.setByVal();
4648 const PointerType *Ty = cast<PointerType>(I->getType());
4649 const Type *ElementTy = Ty->getElementType();
4650 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4651 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4652 // For ByVal, alignment should be passed from FE. BE will guess if
4653 // this info is not there but there are cases it cannot get right.
4654 if (F.getParamAlignment(j))
4655 FrameAlign = F.getParamAlignment(j);
4656 Flags.setByValAlign(FrameAlign);
4657 Flags.setByValSize(FrameSize);
4658 }
4659 if (F.paramHasAttr(j, ParamAttr::Nest))
4660 Flags.setNest();
4661 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004662
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004663 MVT RegisterVT = getRegisterType(VT);
4664 unsigned NumRegs = getNumRegisters(VT);
4665 for (unsigned i = 0; i != NumRegs; ++i) {
4666 RetVals.push_back(RegisterVT);
4667 ISD::ArgFlagsTy MyFlags = Flags;
4668 if (NumRegs > 1 && i == 0)
4669 MyFlags.setSplit();
4670 // if it isn't first piece, alignment must be 1
4671 else if (i > 0)
4672 MyFlags.setOrigAlign(1);
4673 Ops.push_back(DAG.getArgFlags(MyFlags));
4674 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004675 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004676 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00004677
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004678 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00004679
4680 // Create the node.
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004681 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004682 DAG.getVTList(&RetVals[0], RetVals.size()),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004683 &Ops[0], Ops.size()).Val;
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004684
4685 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4686 // allows exposing the loads that may be part of the argument access to the
4687 // first DAGCombiner pass.
4688 SDOperand TmpRes = LowerOperation(SDOperand(Result, 0), DAG);
4689
4690 // The number of results should match up, except that the lowered one may have
4691 // an extra flag result.
4692 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4693 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4694 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4695 && "Lowering produced unexpected number of results!");
4696 Result = TmpRes.Val;
4697
Dan Gohman27a70be2007-07-02 16:18:06 +00004698 unsigned NumArgRegs = Result->getNumValues() - 1;
4699 DAG.setRoot(SDOperand(Result, NumArgRegs));
Chris Lattnerfdfded52006-04-12 16:20:43 +00004700
4701 // Set up the return result vector.
4702 Ops.clear();
4703 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 Gohmanf5025cf2008-06-09 21:19:23 +00004725 Ops.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4726 AssertOp));
4727 }
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 return Ops;
4731}
4732
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004733
4734/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4735/// implementation, which just inserts an ISD::CALL node, which is later custom
4736/// lowered by the target to something concrete. FIXME: When all targets are
4737/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
4738std::pair<SDOperand, SDOperand>
Duncan Sands00fee652008-02-14 17:28:50 +00004739TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
4740 bool RetSExt, bool RetZExt, bool isVarArg,
4741 unsigned CallingConv, bool isTailCall,
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004742 SDOperand Callee,
4743 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattnerbe384162006-08-16 22:57:46 +00004744 SmallVector<SDOperand, 32> Ops;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004745 Ops.push_back(Chain); // Op#0 - Chain
4746 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4747 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4748 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4749 Ops.push_back(Callee);
4750
4751 // Handle all of the outgoing arguments.
4752 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004753 SmallVector<MVT, 4> ValueVTs;
4754 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4755 for (unsigned Value = 0, NumValues = ValueVTs.size();
4756 Value != NumValues; ++Value) {
4757 MVT VT = ValueVTs[Value];
4758 const Type *ArgTy = VT.getTypeForMVT();
4759 SDOperand Op = SDOperand(Args[i].Node.Val, Args[i].Node.ResNo + Value);
4760 ISD::ArgFlagsTy Flags;
4761 unsigned OriginalAlignment =
4762 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sands276dcbd2008-03-21 09:14:45 +00004763
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004764 if (Args[i].isZExt)
4765 Flags.setZExt();
4766 if (Args[i].isSExt)
4767 Flags.setSExt();
4768 if (Args[i].isInReg)
4769 Flags.setInReg();
4770 if (Args[i].isSRet)
4771 Flags.setSRet();
4772 if (Args[i].isByVal) {
4773 Flags.setByVal();
4774 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4775 const Type *ElementTy = Ty->getElementType();
4776 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4777 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4778 // For ByVal, alignment should come from FE. BE will guess if this
4779 // info is not there but there are cases it cannot get right.
4780 if (Args[i].Alignment)
4781 FrameAlign = Args[i].Alignment;
4782 Flags.setByValAlign(FrameAlign);
4783 Flags.setByValSize(FrameSize);
4784 }
4785 if (Args[i].isNest)
4786 Flags.setNest();
4787 Flags.setOrigAlign(OriginalAlignment);
Dan Gohman27a70be2007-07-02 16:18:06 +00004788
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004789 MVT PartVT = getRegisterType(VT);
4790 unsigned NumParts = getNumRegisters(VT);
4791 SmallVector<SDOperand, 4> Parts(NumParts);
4792 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004793
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004794 if (Args[i].isSExt)
4795 ExtendKind = ISD::SIGN_EXTEND;
4796 else if (Args[i].isZExt)
4797 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004798
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004799 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004800
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004801 for (unsigned i = 0; i != NumParts; ++i) {
4802 // if it isn't first piece, alignment must be 1
4803 ISD::ArgFlagsTy MyFlags = Flags;
4804 if (NumParts > 1 && i == 0)
4805 MyFlags.setSplit();
4806 else if (i != 0)
4807 MyFlags.setOrigAlign(1);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004808
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004809 Ops.push_back(Parts[i]);
4810 Ops.push_back(DAG.getArgFlags(MyFlags));
4811 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004812 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004813 }
4814
Dan Gohmanef5d1942008-03-11 21:11:25 +00004815 // Figure out the result value types. We start by making a list of
Dan Gohman23ce5022008-04-25 18:27:55 +00004816 // the potentially illegal return value types.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004817 SmallVector<MVT, 4> LoweredRetTys;
4818 SmallVector<MVT, 4> RetTys;
Dan Gohman23ce5022008-04-25 18:27:55 +00004819 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004820
Dan Gohman23ce5022008-04-25 18:27:55 +00004821 // Then we translate that to a list of legal types.
4822 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004823 MVT VT = RetTys[I];
4824 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004825 unsigned NumRegs = getNumRegisters(VT);
4826 for (unsigned i = 0; i != NumRegs; ++i)
4827 LoweredRetTys.push_back(RegisterVT);
4828 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004829
Dan Gohmanef5d1942008-03-11 21:11:25 +00004830 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004831
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004832 // Create the CALL node.
Chris Lattnerbe384162006-08-16 22:57:46 +00004833 SDOperand Res = DAG.getNode(ISD::CALL,
Dan Gohmanef5d1942008-03-11 21:11:25 +00004834 DAG.getVTList(&LoweredRetTys[0],
4835 LoweredRetTys.size()),
Chris Lattnerbe384162006-08-16 22:57:46 +00004836 &Ops[0], Ops.size());
Dan Gohmanef5d1942008-03-11 21:11:25 +00004837 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004838
4839 // Gather up the call result into a single value.
4840 if (RetTy != Type::VoidTy) {
Duncan Sands00fee652008-02-14 17:28:50 +00004841 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4842
4843 if (RetSExt)
4844 AssertOp = ISD::AssertSext;
4845 else if (RetZExt)
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004846 AssertOp = ISD::AssertZext;
Duncan Sands00fee652008-02-14 17:28:50 +00004847
Dan Gohmanef5d1942008-03-11 21:11:25 +00004848 SmallVector<SDOperand, 4> ReturnValues;
4849 unsigned RegNo = 0;
Dan Gohman23ce5022008-04-25 18:27:55 +00004850 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004851 MVT VT = RetTys[I];
4852 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004853 unsigned NumRegs = getNumRegisters(VT);
4854 unsigned RegNoEnd = NumRegs + RegNo;
4855 SmallVector<SDOperand, 4> Results;
4856 for (; RegNo != RegNoEnd; ++RegNo)
4857 Results.push_back(Res.getValue(RegNo));
4858 SDOperand ReturnValue =
4859 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4860 AssertOp);
4861 ReturnValues.push_back(ReturnValue);
4862 }
4863 Res = ReturnValues.size() == 1 ? ReturnValues.front() :
4864 DAG.getNode(ISD::MERGE_VALUES,
4865 DAG.getVTList(&RetTys[0], RetTys.size()),
4866 &ReturnValues[0], ReturnValues.size());
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004867 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004868
4869 return std::make_pair(Res, Chain);
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004870}
4871
Chris Lattner50381b62005-05-14 05:50:48 +00004872SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00004873 assert(0 && "LowerOperation not implemented for this target!");
4874 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00004875 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00004876}
4877
Nate Begeman0aed7842006-01-28 03:14:31 +00004878SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
4879 SelectionDAG &DAG) {
4880 assert(0 && "CustomPromoteOperation not implemented for this target!");
4881 abort();
4882 return SDOperand();
4883}
4884
Chris Lattner7041ee32005-01-11 05:56:49 +00004885//===----------------------------------------------------------------------===//
4886// SelectionDAGISel code
4887//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00004888
Duncan Sands83ec4b62008-06-06 12:08:01 +00004889unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +00004890 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +00004891}
4892
Chris Lattner495a0b52005-08-17 06:37:43 +00004893void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004894 AU.addRequired<AliasAnalysis>();
Gordon Henriksence224772008-01-07 01:30:38 +00004895 AU.addRequired<CollectorModuleMetadata>();
Chris Lattnerc8d288f2007-03-31 04:18:03 +00004896 AU.setPreservesAll();
Chris Lattner495a0b52005-08-17 06:37:43 +00004897}
Chris Lattner1c08c712005-01-07 07:47:53 +00004898
Chris Lattner1c08c712005-01-07 07:47:53 +00004899bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman5f43f922007-08-27 16:26:13 +00004900 // Get alias analysis for load/store combining.
4901 AA = &getAnalysis<AliasAnalysis>();
4902
Chris Lattner1c08c712005-01-07 07:47:53 +00004903 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksence224772008-01-07 01:30:38 +00004904 if (MF.getFunction()->hasCollector())
4905 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4906 else
4907 GCI = 0;
Chris Lattner84bc5422007-12-31 04:13:23 +00004908 RegInfo = &MF.getRegInfo();
Bill Wendling832171c2006-12-07 20:04:42 +00004909 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00004910
4911 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4912
Dale Johannesen1532f3d2008-04-02 00:25:04 +00004913 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4914 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4915 // Mark landing pad.
4916 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +00004917
4918 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +00004919 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00004920
Evan Chengad2070c2007-02-10 02:43:39 +00004921 // Add function live-ins to entry block live-in set.
4922 BasicBlock *EntryBB = &Fn.getEntryBlock();
4923 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner84bc5422007-12-31 04:13:23 +00004924 if (!RegInfo->livein_empty())
4925 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4926 E = RegInfo->livein_end(); I != E; ++I)
Evan Chengad2070c2007-02-10 02:43:39 +00004927 BB->addLiveIn(I->first);
4928
Duncan Sandsf4070822007-06-15 19:04:19 +00004929#ifndef NDEBUG
4930 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4931 "Not all catch info was assigned to a landing pad!");
4932#endif
4933
Chris Lattner1c08c712005-01-07 07:47:53 +00004934 return true;
4935}
4936
Chris Lattner6833b062008-04-28 07:16:35 +00004937void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Chris Lattner571e4342006-10-27 21:36:01 +00004938 SDOperand Op = getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00004939 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004940 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00004941 "Copy from a reg to the same reg!");
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004942 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004943
Dan Gohman23ce5022008-04-25 18:27:55 +00004944 RegsForValue RFV(TLI, Reg, V->getType());
4945 SDOperand Chain = DAG.getEntryNode();
4946 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4947 PendingExports.push_back(Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00004948}
4949
Chris Lattner068a81e2005-01-17 17:15:02 +00004950void SelectionDAGISel::
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004951LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Chris Lattner068a81e2005-01-17 17:15:02 +00004952 // If this is the entry block, emit arguments.
Evan Cheng15699fc2007-02-10 01:08:18 +00004953 Function &F = *LLVMBB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00004954 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00004955 SDOperand OldRoot = SDL.DAG.getRoot();
4956 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner068a81e2005-01-17 17:15:02 +00004957
Chris Lattnerbf209482005-10-30 19:42:35 +00004958 unsigned a = 0;
4959 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004960 AI != E; ++AI) {
4961 SmallVector<MVT, 4> ValueVTs;
4962 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4963 unsigned NumValues = ValueVTs.size();
Chris Lattnerbf209482005-10-30 19:42:35 +00004964 if (!AI->use_empty()) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004965 SmallVector<MVT, 4> LegalValueVTs(NumValues);
4966 for (unsigned VI = 0; VI != NumValues; ++VI)
4967 LegalValueVTs[VI] = Args[a + VI].getValueType();
4968 SDL.setValue(AI, SDL.DAG.getNode(ISD::MERGE_VALUES,
4969 SDL.DAG.getVTList(&LegalValueVTs[0],
4970 NumValues),
4971 &Args[a], NumValues));
Chris Lattnerbf209482005-10-30 19:42:35 +00004972 // If this argument is live outside of the entry block, insert a copy from
4973 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner251db182007-02-25 18:40:32 +00004974 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4975 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004976 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattnerbf209482005-10-30 19:42:35 +00004977 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00004978 }
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004979 a += NumValues;
4980 }
Chris Lattnerbf209482005-10-30 19:42:35 +00004981
Chris Lattnerbf209482005-10-30 19:42:35 +00004982 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00004983 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00004984 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00004985}
4986
Duncan Sandsf4070822007-06-15 19:04:19 +00004987static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4988 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004989 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00004990 if (isSelector(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004991 // Apply the catch info to DestBB.
4992 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4993#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +00004994 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4995 FLI.CatchInfoFound.insert(I);
Duncan Sandsf4070822007-06-15 19:04:19 +00004996#endif
4997 }
4998}
4999
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005000/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
5001/// whether object offset >= 0.
5002static bool
5003IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDOperand Op) {
5004 if (!isa<FrameIndexSDNode>(Op)) return false;
5005
5006 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
5007 int FrameIdx = FrameIdxNode->getIndex();
5008 return MFI->isFixedObjectIndex(FrameIdx) &&
5009 MFI->getObjectOffset(FrameIdx) >= 0;
5010}
5011
5012/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
5013/// possibly be overwritten when lowering the outgoing arguments in a tail
5014/// call. Currently the implementation of this call is very conservative and
5015/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
5016/// virtual registers would be overwritten by direct lowering.
5017static bool IsPossiblyOverwrittenArgumentOfTailCall(SDOperand Op,
5018 MachineFrameInfo * MFI) {
5019 RegisterSDNode * OpReg = NULL;
5020 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
5021 (Op.getOpcode()== ISD::CopyFromReg &&
5022 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
5023 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
5024 (Op.getOpcode() == ISD::LOAD &&
5025 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
5026 (Op.getOpcode() == ISD::MERGE_VALUES &&
5027 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5028 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5029 getOperand(1))))
5030 return true;
5031 return false;
5032}
5033
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005034/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005035/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005036static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5037 TargetLowering& TLI) {
5038 SDNode * Ret = NULL;
5039 SDOperand Terminator = DAG.getRoot();
5040
5041 // Find RET node.
5042 if (Terminator.getOpcode() == ISD::RET) {
5043 Ret = Terminator.Val;
5044 }
5045
5046 // Fix tail call attribute of CALL nodes.
5047 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
5048 BI = prior(DAG.allnodes_end()); BI != BE; --BI) {
5049 if (BI->getOpcode() == ISD::CALL) {
5050 SDOperand OpRet(Ret, 0);
5051 SDOperand OpCall(static_cast<SDNode*>(BI), 0);
5052 bool isMarkedTailCall =
5053 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5054 // If CALL node has tail call attribute set to true and the call is not
5055 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005056 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005057 // must correctly identify tail call optimizable calls.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005058 if (!isMarkedTailCall) continue;
5059 if (Ret==NULL ||
5060 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5061 // Not eligible. Mark CALL node as non tail call.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005062 SmallVector<SDOperand, 32> Ops;
5063 unsigned idx=0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005064 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5065 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005066 if (idx!=3)
5067 Ops.push_back(*I);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005068 else
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005069 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5070 }
5071 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005072 } else {
5073 // Look for tail call clobbered arguments. Emit a series of
5074 // copyto/copyfrom virtual register nodes to protect them.
5075 SmallVector<SDOperand, 32> Ops;
5076 SDOperand Chain = OpCall.getOperand(0), InFlag;
5077 unsigned idx=0;
5078 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5079 E = OpCall.Val->op_end(); I != E; I++, idx++) {
5080 SDOperand Arg = *I;
5081 if (idx > 4 && (idx % 2)) {
5082 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5083 getArgFlags().isByVal();
5084 MachineFunction &MF = DAG.getMachineFunction();
5085 MachineFrameInfo *MFI = MF.getFrameInfo();
5086 if (!isByVal &&
5087 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005088 MVT VT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005089 unsigned VReg = MF.getRegInfo().
5090 createVirtualRegister(TLI.getRegClassFor(VT));
5091 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5092 InFlag = Chain.getValue(1);
5093 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5094 Chain = Arg.getValue(1);
5095 InFlag = Arg.getValue(2);
5096 }
5097 }
5098 Ops.push_back(Arg);
5099 }
5100 // Link in chain of CopyTo/CopyFromReg.
5101 Ops[0] = Chain;
5102 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005103 }
5104 }
5105 }
5106}
5107
Chris Lattner1c08c712005-01-07 07:47:53 +00005108void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5109 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00005110 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksence224772008-01-07 01:30:38 +00005111 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerddb870b2005-01-13 17:59:43 +00005112
Chris Lattnerbf209482005-10-30 19:42:35 +00005113 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +00005114 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005115 LowerArguments(LLVMBB, SDL);
Chris Lattner1c08c712005-01-07 07:47:53 +00005116
5117 BB = FuncInfo.MBBMap[LLVMBB];
5118 SDL.setCurrentBasicBlock(BB);
5119
Duncan Sandsf4070822007-06-15 19:04:19 +00005120 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands9fac0b52007-06-06 10:05:18 +00005121
Dale Johannesen1532f3d2008-04-02 00:25:04 +00005122 if (MMI && BB->isLandingPad()) {
Duncan Sandsf4070822007-06-15 19:04:19 +00005123 // Add a label to mark the beginning of the landing pad. Deletion of the
5124 // landing pad can thus be detected via the MachineModuleInfo.
5125 unsigned LabelID = MMI->addLandingPad(BB);
5126 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, DAG.getEntryNode(),
Evan Chengbb81d972008-01-31 09:59:15 +00005127 DAG.getConstant(LabelID, MVT::i32),
5128 DAG.getConstant(1, MVT::i32)));
Duncan Sandsf4070822007-06-15 19:04:19 +00005129
Evan Chenge47c3332007-06-27 18:45:32 +00005130 // Mark exception register as live in.
5131 unsigned Reg = TLI.getExceptionAddressRegister();
5132 if (Reg) BB->addLiveIn(Reg);
5133
5134 // Mark exception selector register as live in.
5135 Reg = TLI.getExceptionSelectorRegister();
5136 if (Reg) BB->addLiveIn(Reg);
5137
Duncan Sandsf4070822007-06-15 19:04:19 +00005138 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5139 // function and list of typeids logically belong to the invoke (or, if you
5140 // like, the basic block containing the invoke), and need to be associated
5141 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005142 // information is provided by an intrinsic (eh.selector) that can be moved
5143 // to unexpected places by the optimizers: if the unwind edge is critical,
5144 // then breaking it can result in the intrinsics being in the successor of
5145 // the landing pad, not the landing pad itself. This results in exceptions
5146 // not being caught because no typeids are associated with the invoke.
5147 // This may not be the only way things can go wrong, but it is the only way
5148 // we try to work around for the moment.
Duncan Sandsf4070822007-06-15 19:04:19 +00005149 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5150
5151 if (Br && Br->isUnconditional()) { // Critical edge?
5152 BasicBlock::iterator I, E;
5153 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005154 if (isSelector(I))
Duncan Sandsf4070822007-06-15 19:04:19 +00005155 break;
5156
5157 if (I == E)
5158 // No catch info found - try to extract some from the successor.
5159 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands9fac0b52007-06-06 10:05:18 +00005160 }
5161 }
5162
Chris Lattner1c08c712005-01-07 07:47:53 +00005163 // Lower all of the non-terminator instructions.
5164 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5165 I != E; ++I)
5166 SDL.visit(*I);
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005167
Chris Lattner1c08c712005-01-07 07:47:53 +00005168 // Ensure that all instructions which are used outside of their defining
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005169 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner1c08c712005-01-07 07:47:53 +00005170 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005171 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner9f24ad72007-02-04 01:35:11 +00005172 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00005173 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005174 SDL.CopyValueToVirtualRegister(I, VMI->second);
Chris Lattner1c08c712005-01-07 07:47:53 +00005175 }
5176
5177 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5178 // ensure constants are generated when needed. Remember the virtual registers
5179 // that need to be added to the Machine PHI nodes as input. We cannot just
5180 // directly add them, because expansion might result in multiple MBB's for one
5181 // BB. As such, the start of the BB might correspond to a different MBB than
5182 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00005183 //
Chris Lattner8c494ab2006-10-27 23:50:33 +00005184 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner1c08c712005-01-07 07:47:53 +00005185
5186 // Emit constants only once even if used by multiple PHI nodes.
5187 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005188
Chris Lattner8c494ab2006-10-27 23:50:33 +00005189 // Vector bool would be better, but vector<bool> is really slow.
5190 std::vector<unsigned char> SuccsHandled;
5191 if (TI->getNumSuccessors())
5192 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5193
Dan Gohman532dc2e2007-07-09 20:59:04 +00005194 // Check successor nodes' PHI nodes that expect a constant to be available
5195 // from this block.
Chris Lattner1c08c712005-01-07 07:47:53 +00005196 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5197 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005198 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner8c494ab2006-10-27 23:50:33 +00005199 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005200
Chris Lattner8c494ab2006-10-27 23:50:33 +00005201 // If this terminator has multiple identical successors (common for
5202 // switches), only handle each succ once.
5203 unsigned SuccMBBNo = SuccMBB->getNumber();
5204 if (SuccsHandled[SuccMBBNo]) continue;
5205 SuccsHandled[SuccMBBNo] = true;
5206
5207 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner1c08c712005-01-07 07:47:53 +00005208 PHINode *PN;
5209
5210 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5211 // nodes and Machine PHI nodes, but the incoming operands have not been
5212 // emitted yet.
5213 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8c494ab2006-10-27 23:50:33 +00005214 (PN = dyn_cast<PHINode>(I)); ++I) {
5215 // Ignore dead phi's.
5216 if (PN->use_empty()) continue;
5217
5218 unsigned Reg;
5219 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner3f7927c2006-11-29 01:12:32 +00005220
Chris Lattner8c494ab2006-10-27 23:50:33 +00005221 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5222 unsigned &RegOut = ConstantsOut[C];
5223 if (RegOut == 0) {
5224 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005225 SDL.CopyValueToVirtualRegister(C, RegOut);
Chris Lattner1c08c712005-01-07 07:47:53 +00005226 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005227 Reg = RegOut;
5228 } else {
5229 Reg = FuncInfo.ValueMap[PHIOp];
5230 if (Reg == 0) {
5231 assert(isa<AllocaInst>(PHIOp) &&
5232 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5233 "Didn't codegen value into a register!??");
5234 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005235 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Chris Lattner7e021512006-03-31 02:12:18 +00005236 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005237 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005238
5239 // Remember that this register needs to added to the machine PHI node as
5240 // the input for this MBB.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005241 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +00005242 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohmanb9f10192007-06-21 14:42:22 +00005243 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Chris Lattner8c494ab2006-10-27 23:50:33 +00005244 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5245 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005246 }
5247 ConstantsOut.clear();
5248
5249 // Lower the terminator after the copies are emitted.
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005250 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00005251
Nate Begemanf15485a2006-03-27 01:32:24 +00005252 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00005253 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00005254 SwitchCases.clear();
5255 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005256 JTCases.clear();
5257 JTCases = SDL.JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005258 BitTestCases.clear();
5259 BitTestCases = SDL.BitTestCases;
5260
Chris Lattnera651cf62005-01-17 19:43:36 +00005261 // Make sure the root of the DAG is up-to-date.
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005262 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005263
5264 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5265 // with correct tailcall attribute so that the target can rely on the tailcall
5266 // attribute indicating whether the call is really eligible for tail call
5267 // optimization.
5268 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Chris Lattner1c08c712005-01-07 07:47:53 +00005269}
5270
Chris Lattneread0d882008-06-17 06:09:18 +00005271void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5272 SmallPtrSet<SDNode*, 128> VisitedNodes;
5273 SmallVector<SDNode*, 128> Worklist;
5274
5275 Worklist.push_back(DAG.getRoot().Val);
5276
5277 APInt Mask;
5278 APInt KnownZero;
5279 APInt KnownOne;
5280
5281 while (!Worklist.empty()) {
5282 SDNode *N = Worklist.back();
5283 Worklist.pop_back();
5284
5285 // If we've already seen this node, ignore it.
5286 if (!VisitedNodes.insert(N))
5287 continue;
5288
5289 // Otherwise, add all chain operands to the worklist.
5290 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5291 if (N->getOperand(i).getValueType() == MVT::Other)
5292 Worklist.push_back(N->getOperand(i).Val);
5293
5294 // If this is a CopyToReg with a vreg dest, process it.
5295 if (N->getOpcode() != ISD::CopyToReg)
5296 continue;
5297
5298 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5299 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5300 continue;
5301
5302 // Ignore non-scalar or non-integer values.
5303 SDOperand Src = N->getOperand(2);
5304 MVT SrcVT = Src.getValueType();
5305 if (!SrcVT.isInteger() || SrcVT.isVector())
5306 continue;
5307
5308 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5309 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5310 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5311
5312 // Only install this information if it tells us something.
5313 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5314 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5315 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5316 if (DestReg >= FLI.LiveOutRegInfo.size())
5317 FLI.LiveOutRegInfo.resize(DestReg+1);
5318 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5319 LOI.NumSignBits = NumSignBits;
5320 LOI.KnownOne = NumSignBits;
5321 LOI.KnownZero = NumSignBits;
5322 }
5323 }
5324}
5325
Nate Begemanf15485a2006-03-27 01:32:24 +00005326void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohman417e11b2007-10-08 15:12:17 +00005327 DOUT << "Lowered selection DAG:\n";
5328 DEBUG(DAG.dump());
5329
Chris Lattneraf21d552005-10-10 16:47:10 +00005330 // Run the DAG combiner in pre-legalize mode.
Dan Gohman5f43f922007-08-27 16:26:13 +00005331 DAG.Combine(false, *AA);
Nate Begeman2300f552005-09-07 00:15:36 +00005332
Dan Gohman417e11b2007-10-08 15:12:17 +00005333 DOUT << "Optimized lowered selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005334 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005335
Chris Lattner1c08c712005-01-07 07:47:53 +00005336 // Second step, hack on the DAG until it only uses operations and types that
5337 // the target supports.
Chris Lattner01d029b2007-10-15 06:10:22 +00005338#if 0 // Enable this some day.
5339 DAG.LegalizeTypes();
5340 // Someday even later, enable a dag combine pass here.
5341#endif
Chris Lattnerac9dc082005-01-23 04:36:26 +00005342 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00005343
Bill Wendling832171c2006-12-07 20:04:42 +00005344 DOUT << "Legalized selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005345 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005346
Chris Lattneraf21d552005-10-10 16:47:10 +00005347 // Run the DAG combiner in post-legalize mode.
Dan Gohman5f43f922007-08-27 16:26:13 +00005348 DAG.Combine(true, *AA);
Nate Begeman2300f552005-09-07 00:15:36 +00005349
Dan Gohman417e11b2007-10-08 15:12:17 +00005350 DOUT << "Optimized legalized selection DAG:\n";
5351 DEBUG(DAG.dump());
5352
Evan Chenga9c20912006-01-21 02:32:06 +00005353 if (ViewISelDAGs) DAG.viewGraph();
Chris Lattneread0d882008-06-17 06:09:18 +00005354
5355 if (EnableValueProp) // FIXME: Only do this if !fast.
5356 ComputeLiveOutVRegInfo(DAG);
Evan Cheng552c4a82006-04-28 02:09:19 +00005357
Chris Lattnera33ef482005-03-30 01:10:47 +00005358 // Third, instruction select all of the operations to machine code, adding the
5359 // code to the MachineBasicBlock.
Chris Lattner1c08c712005-01-07 07:47:53 +00005360 InstructionSelectBasicBlock(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00005361
Bill Wendling832171c2006-12-07 20:04:42 +00005362 DOUT << "Selected machine code:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005363 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005364}
Chris Lattner1c08c712005-01-07 07:47:53 +00005365
Nate Begemanf15485a2006-03-27 01:32:24 +00005366void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5367 FunctionLoweringInfo &FuncInfo) {
5368 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5369 {
Chris Lattneread0d882008-06-17 06:09:18 +00005370 SelectionDAG DAG(TLI, MF, FuncInfo,
5371 getAnalysisToUpdate<MachineModuleInfo>());
Nate Begemanf15485a2006-03-27 01:32:24 +00005372 CurDAG = &DAG;
5373
5374 // First step, lower LLVM code to some DAG. This DAG may use operations and
5375 // types that are not supported by the target.
5376 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5377
5378 // Second step, emit the lowered DAG as machine code.
5379 CodeGenAndEmitDAG(DAG);
5380 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005381
5382 DOUT << "Total amount of phi nodes to update: "
5383 << PHINodesToUpdate.size() << "\n";
5384 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5385 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5386 << ", " << PHINodesToUpdate[i].second << ")\n";);
Nate Begemanf15485a2006-03-27 01:32:24 +00005387
Chris Lattnera33ef482005-03-30 01:10:47 +00005388 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00005389 // PHI nodes in successors.
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005390 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005391 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5392 MachineInstr *PHI = PHINodesToUpdate[i].first;
5393 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5394 "This is not a machine PHI node that we are updating!");
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005395 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5396 false));
5397 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +00005398 }
5399 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00005400 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005401
5402 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5403 // Lower header first, if it wasn't already lowered
5404 if (!BitTestCases[i].Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005405 SelectionDAG HSDAG(TLI, MF, FuncInfo,
5406 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005407 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005408 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005409 // Set the current basic block to the mbb we wish to insert the code into
5410 BB = BitTestCases[i].Parent;
5411 HSDL.setCurrentBasicBlock(BB);
5412 // Emit the code
5413 HSDL.visitBitTestHeader(BitTestCases[i]);
5414 HSDAG.setRoot(HSDL.getRoot());
5415 CodeGenAndEmitDAG(HSDAG);
5416 }
5417
5418 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattneread0d882008-06-17 06:09:18 +00005419 SelectionDAG BSDAG(TLI, MF, FuncInfo,
5420 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005421 CurDAG = &BSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005422 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005423 // Set the current basic block to the mbb we wish to insert the code into
5424 BB = BitTestCases[i].Cases[j].ThisBB;
5425 BSDL.setCurrentBasicBlock(BB);
5426 // Emit the code
5427 if (j+1 != ej)
5428 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5429 BitTestCases[i].Reg,
5430 BitTestCases[i].Cases[j]);
5431 else
5432 BSDL.visitBitTestCase(BitTestCases[i].Default,
5433 BitTestCases[i].Reg,
5434 BitTestCases[i].Cases[j]);
5435
5436
5437 BSDAG.setRoot(BSDL.getRoot());
5438 CodeGenAndEmitDAG(BSDAG);
5439 }
5440
5441 // Update PHI Nodes
5442 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5443 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5444 MachineBasicBlock *PHIBB = PHI->getParent();
5445 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5446 "This is not a machine PHI node that we are updating!");
5447 // This is "default" BB. We have two jumps to it. From "header" BB and
5448 // from last "case" BB.
5449 if (PHIBB == BitTestCases[i].Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005450 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5451 false));
5452 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5453 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5454 false));
5455 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5456 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005457 }
5458 // One of "cases" BB.
5459 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5460 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5461 if (cBB->succ_end() !=
5462 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005463 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5464 false));
5465 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005466 }
5467 }
5468 }
5469 }
5470
Nate Begeman9453eea2006-04-23 06:26:20 +00005471 // If the JumpTable record is filled in, then we need to emit a jump table.
5472 // Updating the PHI nodes is tricky in this case, since we need to determine
5473 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005474 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5475 // Lower header first, if it wasn't already lowered
5476 if (!JTCases[i].first.Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005477 SelectionDAG HSDAG(TLI, MF, FuncInfo,
5478 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005479 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005480 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005481 // Set the current basic block to the mbb we wish to insert the code into
5482 BB = JTCases[i].first.HeaderBB;
5483 HSDL.setCurrentBasicBlock(BB);
5484 // Emit the code
5485 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5486 HSDAG.setRoot(HSDL.getRoot());
5487 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005488 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005489
Chris Lattneread0d882008-06-17 06:09:18 +00005490 SelectionDAG JSDAG(TLI, MF, FuncInfo,
5491 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005492 CurDAG = &JSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005493 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Nate Begeman37efe672006-04-22 18:53:45 +00005494 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005495 BB = JTCases[i].second.MBB;
5496 JSDL.setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00005497 // Emit the code
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005498 JSDL.visitJumpTable(JTCases[i].second);
5499 JSDAG.setRoot(JSDL.getRoot());
5500 CodeGenAndEmitDAG(JSDAG);
5501
Nate Begeman37efe672006-04-22 18:53:45 +00005502 // Update PHI Nodes
5503 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5504 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5505 MachineBasicBlock *PHIBB = PHI->getParent();
5506 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5507 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005508 // "default" BB. We can go there only from header BB.
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005509 if (PHIBB == JTCases[i].second.Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005510 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5511 false));
5512 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +00005513 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005514 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +00005515 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005516 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5517 false));
5518 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +00005519 }
5520 }
Nate Begeman37efe672006-04-22 18:53:45 +00005521 }
5522
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005523 // If the switch block involved a branch to one of the actual successors, we
5524 // need to update PHI nodes in that block.
5525 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5526 MachineInstr *PHI = PHINodesToUpdate[i].first;
5527 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5528 "This is not a machine PHI node that we are updating!");
5529 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005530 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5531 false));
5532 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005533 }
5534 }
5535
Nate Begemanf15485a2006-03-27 01:32:24 +00005536 // If we generated any switch lowering information, build and codegen any
5537 // additional DAGs necessary.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005538 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattneread0d882008-06-17 06:09:18 +00005539 SelectionDAG SDAG(TLI, MF, FuncInfo,
5540 getAnalysisToUpdate<MachineModuleInfo>());
Nate Begemanf15485a2006-03-27 01:32:24 +00005541 CurDAG = &SDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005542 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005543
Nate Begemanf15485a2006-03-27 01:32:24 +00005544 // Set the current basic block to the mbb we wish to insert the code into
5545 BB = SwitchCases[i].ThisBB;
5546 SDL.setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005547
Nate Begemanf15485a2006-03-27 01:32:24 +00005548 // Emit the code
5549 SDL.visitSwitchCase(SwitchCases[i]);
5550 SDAG.setRoot(SDL.getRoot());
5551 CodeGenAndEmitDAG(SDAG);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005552
5553 // Handle any PHI nodes in successors of this chunk, as if we were coming
5554 // from the original BB before switch expansion. Note that PHI nodes can
5555 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5556 // handle them the right number of times.
Chris Lattner57ab6592006-10-24 17:57:59 +00005557 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005558 for (MachineBasicBlock::iterator Phi = BB->begin();
5559 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5560 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5561 for (unsigned pn = 0; ; ++pn) {
5562 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5563 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005564 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5565 second, false));
5566 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005567 break;
5568 }
5569 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005570 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005571
5572 // Don't process RHS if same block as LHS.
Chris Lattner57ab6592006-10-24 17:57:59 +00005573 if (BB == SwitchCases[i].FalseBB)
5574 SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005575
5576 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner24525952006-10-24 18:07:37 +00005577 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner57ab6592006-10-24 17:57:59 +00005578 SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00005579 }
Chris Lattner57ab6592006-10-24 17:57:59 +00005580 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00005581 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005582}
Evan Chenga9c20912006-01-21 02:32:06 +00005583
Jim Laskey13ec7022006-08-01 14:21:23 +00005584
Evan Chenga9c20912006-01-21 02:32:06 +00005585//===----------------------------------------------------------------------===//
5586/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
5587/// target node in the graph.
5588void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
5589 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00005590
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005591 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00005592
5593 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005594 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00005595 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00005596 }
Jim Laskey13ec7022006-08-01 14:21:23 +00005597
Jim Laskey9ff542f2006-08-01 18:29:48 +00005598 ScheduleDAG *SL = Ctor(this, &DAG, BB);
Chris Lattnera3818e62006-01-21 19:12:11 +00005599 BB = SL->Run();
Dan Gohman3e1a7ae2007-08-28 20:32:58 +00005600
5601 if (ViewSUnitDAGs) SL->viewGraph();
5602
Evan Chengcccf1232006-02-04 06:49:00 +00005603 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00005604}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005605
Chris Lattner03fc53c2006-03-06 00:22:00 +00005606
Jim Laskey9ff542f2006-08-01 18:29:48 +00005607HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5608 return new HazardRecognizer();
5609}
5610
Chris Lattner75548062006-10-11 03:58:02 +00005611//===----------------------------------------------------------------------===//
5612// Helper functions used by the generated instruction selector.
5613//===----------------------------------------------------------------------===//
5614// Calls to these methods are generated by tblgen.
5615
5616/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5617/// the dag combiner simplified the 255, we still want to match. RHS is the
5618/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5619/// specified in the .td file (e.g. 255).
5620bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00005621 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005622 const APInt &ActualMask = RHS->getAPIntValue();
5623 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005624
5625 // If the actual mask exactly matches, success!
5626 if (ActualMask == DesiredMask)
5627 return true;
5628
5629 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005630 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005631 return false;
5632
5633 // Otherwise, the DAG Combiner may have proven that the value coming in is
5634 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005635 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00005636 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00005637 return true;
5638
5639 // TODO: check to see if missing bits are just not demanded.
5640
5641 // Otherwise, this pattern doesn't match.
5642 return false;
5643}
5644
5645/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5646/// the dag combiner simplified the 255, we still want to match. RHS is the
5647/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5648/// specified in the .td file (e.g. 255).
5649bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005650 int64_t DesiredMaskS) const {
5651 const APInt &ActualMask = RHS->getAPIntValue();
5652 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005653
5654 // If the actual mask exactly matches, success!
5655 if (ActualMask == DesiredMask)
5656 return true;
5657
5658 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005659 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005660 return false;
5661
5662 // Otherwise, the DAG Combiner may have proven that the value coming in is
5663 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005664 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00005665
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005666 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005667 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00005668
5669 // If all the missing bits in the or are already known to be set, match!
5670 if ((NeededMask & KnownOne) == NeededMask)
5671 return true;
5672
5673 // TODO: check to see if missing bits are just not demanded.
5674
5675 // Otherwise, this pattern doesn't match.
5676 return false;
5677}
5678
Jim Laskey9ff542f2006-08-01 18:29:48 +00005679
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005680/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5681/// by tblgen. Others should not call it.
5682void SelectionDAGISel::
5683SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
5684 std::vector<SDOperand> InOps;
5685 std::swap(InOps, Ops);
5686
5687 Ops.push_back(InOps[0]); // input chain.
5688 Ops.push_back(InOps[1]); // input asm string.
5689
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005690 unsigned i = 2, e = InOps.size();
5691 if (InOps[e-1].getValueType() == MVT::Flag)
5692 --e; // Don't process a flag operand if it is here.
5693
5694 while (i != e) {
5695 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5696 if ((Flags & 7) != 4 /*MEM*/) {
5697 // Just skip over this operand, copying the operands verbatim.
5698 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5699 i += (Flags >> 3) + 1;
5700 } else {
5701 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5702 // Otherwise, this is a memory operand. Ask the target to select it.
5703 std::vector<SDOperand> SelOps;
5704 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling832171c2006-12-07 20:04:42 +00005705 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005706 exit(1);
5707 }
5708
5709 // Add this to the output node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005710 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner36d43962006-12-16 21:14:48 +00005711 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattner4b993b12007-04-09 00:33:58 +00005712 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005713 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5714 i += 2;
5715 }
5716 }
5717
5718 // Add the flag input back if present.
5719 if (e != InOps.size())
5720 Ops.push_back(InOps.back());
5721}
Devang Patel794fd752007-05-01 21:15:47 +00005722
Devang Patel19974732007-05-03 01:11:54 +00005723char SelectionDAGISel::ID = 0;