blob: b4b81cd4f1368a11e70d27c9a55a337b1a684b95 [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 Lattnera4f0b3a2006-08-27 12:54:02 +000045#include "llvm/Support/Compiler.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000046#include "llvm/Support/Debug.h"
47#include "llvm/Support/MathExtras.h"
48#include "llvm/Support/Timer.h"
Jeff Cohen7e881032006-02-24 02:52:40 +000049#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000050using namespace llvm;
51
Chris Lattneread0d882008-06-17 06:09:18 +000052static cl::opt<bool>
Chris Lattner70587ea2008-07-10 23:37:50 +000053EnableValueProp("enable-value-prop", cl::Hidden);
54static cl::opt<bool>
55EnableLegalizeTypes("enable-legalize-types", cl::Hidden);
Chris Lattneread0d882008-06-17 06:09:18 +000056
57
Chris Lattnerda8abb02005-09-01 18:44:10 +000058#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000059static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000060ViewISelDAGs("view-isel-dags", cl::Hidden,
61 cl::desc("Pop up a window to show isel dags as they are selected"));
62static cl::opt<bool>
63ViewSchedDAGs("view-sched-dags", cl::Hidden,
64 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000065static cl::opt<bool>
66ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +000067 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000068#else
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000069static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0, ViewSUnitDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000070#endif
71
Jim Laskeyeb577ba2006-08-02 12:30:23 +000072//===---------------------------------------------------------------------===//
73///
74/// RegisterScheduler class - Track the registration of instruction schedulers.
75///
76//===---------------------------------------------------------------------===//
77MachinePassRegistry RegisterScheduler::Registry;
78
79//===---------------------------------------------------------------------===//
80///
81/// ISHeuristic command line option for instruction schedulers.
82///
83//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +000084static cl::opt<RegisterScheduler::FunctionPassCtor, false,
85 RegisterPassParser<RegisterScheduler> >
86ISHeuristic("pre-RA-sched",
87 cl::init(&createDefaultScheduler),
88 cl::desc("Instruction schedulers available (before register"
89 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +000090
Dan Gohman844731a2008-05-13 00:00:25 +000091static RegisterScheduler
92defaultListDAGScheduler("default", " Best scheduler for the target",
93 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +000094
Evan Cheng5c807602008-02-26 02:33:44 +000095namespace { struct SDISelAsmOperandInfo; }
Chris Lattnerbf996f12007-04-30 17:29:31 +000096
Dan Gohman1d685a42008-06-07 02:02:36 +000097/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
98/// insertvalue or extractvalue indices that identify a member, return
99/// the linearized index of the start of the member.
100///
101static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
102 const unsigned *Indices,
103 const unsigned *IndicesEnd,
104 unsigned CurIndex = 0) {
105 // Base case: We're done.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000106 if (Indices && Indices == IndicesEnd)
Dan Gohman1d685a42008-06-07 02:02:36 +0000107 return CurIndex;
108
Chris Lattnerf899fce2008-04-27 23:48:12 +0000109 // Given a struct type, recursively traverse the elements.
110 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000111 for (StructType::element_iterator EB = STy->element_begin(),
112 EI = EB,
Dan Gohman1d685a42008-06-07 02:02:36 +0000113 EE = STy->element_end();
114 EI != EE; ++EI) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000115 if (Indices && *Indices == unsigned(EI - EB))
116 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
117 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000118 }
119 }
120 // Given an array type, recursively traverse the elements.
121 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
122 const Type *EltTy = ATy->getElementType();
123 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000124 if (Indices && *Indices == i)
125 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
126 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000127 }
128 }
129 // We haven't found the type we're looking for, so keep searching.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000130 return CurIndex + 1;
Dan Gohman1d685a42008-06-07 02:02:36 +0000131}
132
133/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
134/// MVTs that represent all the individual underlying
135/// non-aggregate types that comprise it.
136///
137/// If Offsets is non-null, it points to a vector to be filled in
138/// with the in-memory offsets of each of the individual values.
139///
140static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
141 SmallVectorImpl<MVT> &ValueVTs,
142 SmallVectorImpl<uint64_t> *Offsets = 0,
143 uint64_t StartingOffset = 0) {
144 // Given a struct type, recursively traverse the elements.
145 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
146 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
147 for (StructType::element_iterator EB = STy->element_begin(),
148 EI = EB,
149 EE = STy->element_end();
150 EI != EE; ++EI)
151 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
152 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattnerf899fce2008-04-27 23:48:12 +0000153 return;
Dan Gohman23ce5022008-04-25 18:27:55 +0000154 }
Chris Lattnerf899fce2008-04-27 23:48:12 +0000155 // Given an array type, recursively traverse the elements.
156 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
157 const Type *EltTy = ATy->getElementType();
Dan Gohman1d685a42008-06-07 02:02:36 +0000158 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000159 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +0000160 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
161 StartingOffset + i * EltSize);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000162 return;
163 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000164 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattnerf899fce2008-04-27 23:48:12 +0000165 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman1d685a42008-06-07 02:02:36 +0000166 if (Offsets)
167 Offsets->push_back(StartingOffset);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000168}
Dan Gohman23ce5022008-04-25 18:27:55 +0000169
Chris Lattnerf899fce2008-04-27 23:48:12 +0000170namespace {
Dan Gohman0fe00902008-04-28 18:10:39 +0000171 /// RegsForValue - This struct represents the registers (physical or virtual)
172 /// that a particular set of values is assigned, and the type information about
173 /// the value. The most common situation is to represent one value at a time,
174 /// but struct or array values are handled element-wise as multiple values.
175 /// The splitting of aggregates is performed recursively, so that we never
176 /// have aggregate-typed registers. The values at this point do not necessarily
177 /// have legal types, so each value may require one or more registers of some
178 /// legal type.
179 ///
Chris Lattner95255282006-06-28 23:17:24 +0000180 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman23ce5022008-04-25 18:27:55 +0000181 /// TLI - The TargetLowering object.
Dan Gohman0fe00902008-04-28 18:10:39 +0000182 ///
Dan Gohman23ce5022008-04-25 18:27:55 +0000183 const TargetLowering *TLI;
184
Dan Gohman0fe00902008-04-28 18:10:39 +0000185 /// ValueVTs - The value types of the values, which may not be legal, and
186 /// may need be promoted or synthesized from one or more registers.
187 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000188 SmallVector<MVT, 4> ValueVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000189
Dan Gohman0fe00902008-04-28 18:10:39 +0000190 /// RegVTs - The value types of the registers. This is the same size as
191 /// ValueVTs and it records, for each value, what the type of the assigned
192 /// register or registers are. (Individual values are never synthesized
193 /// from more than one type of register.)
194 ///
195 /// With virtual registers, the contents of RegVTs is redundant with TLI's
196 /// getRegisterType member function, however when with physical registers
197 /// it is necessary to have a separate record of the types.
Chris Lattner864635a2006-02-22 22:37:12 +0000198 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000199 SmallVector<MVT, 4> RegVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000200
Dan Gohman0fe00902008-04-28 18:10:39 +0000201 /// Regs - This list holds the registers assigned to the values.
202 /// Each legal or promoted value requires one register, and each
203 /// expanded value requires multiple registers.
204 ///
205 SmallVector<unsigned, 4> Regs;
Chris Lattner864635a2006-02-22 22:37:12 +0000206
Dan Gohman23ce5022008-04-25 18:27:55 +0000207 RegsForValue() : TLI(0) {}
Chris Lattner864635a2006-02-22 22:37:12 +0000208
Dan Gohman23ce5022008-04-25 18:27:55 +0000209 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000210 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000211 MVT regvt, MVT valuevt)
Dan Gohman0fe00902008-04-28 18:10:39 +0000212 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000213 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000214 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000215 const SmallVector<MVT, 4> &regvts,
216 const SmallVector<MVT, 4> &valuevts)
Dan Gohman0fe00902008-04-28 18:10:39 +0000217 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000218 RegsForValue(const TargetLowering &tli,
219 unsigned Reg, const Type *Ty) : TLI(&tli) {
220 ComputeValueVTs(tli, Ty, ValueVTs);
221
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000222 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000223 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +0000224 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000225 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000226 for (unsigned i = 0; i != NumRegs; ++i)
227 Regs.push_back(Reg + i);
228 RegVTs.push_back(RegisterVT);
229 Reg += NumRegs;
230 }
Chris Lattner864635a2006-02-22 22:37:12 +0000231 }
232
Chris Lattner41f62592008-04-29 04:29:54 +0000233 /// append - Add the specified values to this one.
234 void append(const RegsForValue &RHS) {
235 TLI = RHS.TLI;
236 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
237 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
238 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
239 }
240
241
Chris Lattner864635a2006-02-22 22:37:12 +0000242 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman23ce5022008-04-25 18:27:55 +0000243 /// this value and returns the result as a ValueVTs value. This uses
Chris Lattner864635a2006-02-22 22:37:12 +0000244 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000245 /// If the Flag pointer is NULL, no flag is used.
Chris Lattner864635a2006-02-22 22:37:12 +0000246 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000247 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000248
249 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
250 /// specified value into the registers specified by this object. This uses
251 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000252 /// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000253 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000254 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000255
256 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
257 /// operand list. This adds the code marker and includes the number of
258 /// values added into it.
259 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000260 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000261 };
262}
Evan Cheng4ef10862006-01-23 07:01:07 +0000263
Chris Lattner1c08c712005-01-07 07:47:53 +0000264namespace llvm {
265 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000266 /// createDefaultScheduler - This creates an instruction scheduler appropriate
267 /// for the target.
268 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
269 SelectionDAG *DAG,
Evan Cheng4576f6d2008-07-01 18:05:03 +0000270 MachineBasicBlock *BB,
271 bool Fast) {
Jim Laskey9373beb2006-08-01 19:14:14 +0000272 TargetLowering &TLI = IS->getTargetLowering();
273
274 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
Evan Cheng4576f6d2008-07-01 18:05:03 +0000275 return createTDListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000276 } else {
277 assert(TLI.getSchedulingPreference() ==
278 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng4576f6d2008-07-01 18:05:03 +0000279 return createBURRListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000280 }
281 }
282
283
284 //===--------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000285 /// FunctionLoweringInfo - This contains information that is global to a
286 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000287 class FunctionLoweringInfo {
288 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000289 TargetLowering &TLI;
290 Function &Fn;
291 MachineFunction &MF;
Chris Lattner84bc5422007-12-31 04:13:23 +0000292 MachineRegisterInfo &RegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000293
294 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
295
296 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
297 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
298
299 /// ValueMap - Since we emit code for the function a basic block at a time,
300 /// we must remember which virtual registers hold the values for
301 /// cross-basic-block values.
Chris Lattner9f24ad72007-02-04 01:35:11 +0000302 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000303
304 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
305 /// the entry block. This allows the allocas to be efficiently referenced
306 /// anywhere in the function.
307 std::map<const AllocaInst*, int> StaticAllocaMap;
308
Duncan Sandsf4070822007-06-15 19:04:19 +0000309#ifndef NDEBUG
310 SmallSet<Instruction*, 8> CatchInfoLost;
311 SmallSet<Instruction*, 8> CatchInfoFound;
312#endif
313
Duncan Sands83ec4b62008-06-06 12:08:01 +0000314 unsigned MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000315 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000316 }
Chris Lattner571e4342006-10-27 21:36:01 +0000317
318 /// isExportedInst - Return true if the specified value is an instruction
319 /// exported from its block.
320 bool isExportedInst(const Value *V) {
321 return ValueMap.count(V);
322 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000323
Chris Lattner3c384492006-03-16 19:51:18 +0000324 unsigned CreateRegForValue(const Value *V);
325
Chris Lattner1c08c712005-01-07 07:47:53 +0000326 unsigned InitializeRegForValue(const Value *V) {
327 unsigned &R = ValueMap[V];
328 assert(R == 0 && "Already initialized this value register!");
329 return R = CreateRegForValue(V);
330 }
Chris Lattneread0d882008-06-17 06:09:18 +0000331
332 struct LiveOutInfo {
333 unsigned NumSignBits;
334 APInt KnownOne, KnownZero;
335 LiveOutInfo() : NumSignBits(0) {}
336 };
337
338 /// LiveOutRegInfo - Information about live out vregs, indexed by their
339 /// register number offset by 'FirstVirtualRegister'.
340 std::vector<LiveOutInfo> LiveOutRegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000341 };
342}
343
Duncan Sandscf26d7c2007-07-04 20:52:51 +0000344/// isSelector - Return true if this instruction is a call to the
345/// eh.selector intrinsic.
346static bool isSelector(Instruction *I) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000347 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000348 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
349 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Duncan Sandsf4070822007-06-15 19:04:19 +0000350 return false;
351}
352
Chris Lattner1c08c712005-01-07 07:47:53 +0000353/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000354/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000355/// switch or atomic instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000356static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
357 if (isa<PHINode>(I)) return true;
358 BasicBlock *BB = I->getParent();
359 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000360 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattner571e4342006-10-27 21:36:01 +0000361 // FIXME: Remove switchinst special case.
Nate Begemanf15485a2006-03-27 01:32:24 +0000362 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000363 return true;
364 return false;
365}
366
Chris Lattnerbf209482005-10-30 19:42:35 +0000367/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000368/// entry block, return true. This includes arguments used by switches, since
369/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000370static bool isOnlyUsedInEntryBlock(Argument *A) {
371 BasicBlock *Entry = A->getParent()->begin();
372 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000373 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000374 return false; // Use not in entry block.
375 return true;
376}
377
Chris Lattner1c08c712005-01-07 07:47:53 +0000378FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000379 Function &fn, MachineFunction &mf)
Chris Lattner84bc5422007-12-31 04:13:23 +0000380 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000381
Chris Lattnerbf209482005-10-30 19:42:35 +0000382 // Create a vreg for each argument register that is not dead and is used
383 // outside of the entry block for the function.
384 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
385 AI != E; ++AI)
386 if (!isOnlyUsedInEntryBlock(AI))
387 InitializeRegForValue(AI);
388
Chris Lattner1c08c712005-01-07 07:47:53 +0000389 // Initialize the mapping of values to registers. This is only set up for
390 // instruction values that are used outside of the block that defines
391 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000392 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000393 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
394 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencerb83eb642006-10-20 07:07:24 +0000395 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000396 const Type *Ty = AI->getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +0000397 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000398 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000399 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000400 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000401
Reid Spencerb83eb642006-10-20 07:07:24 +0000402 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000403 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000404 StaticAllocaMap[AI] =
Chris Lattner6266c182007-04-25 04:08:28 +0000405 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000406 }
407
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000408 for (; BB != EB; ++BB)
409 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000410 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
411 if (!isa<AllocaInst>(I) ||
412 !StaticAllocaMap.count(cast<AllocaInst>(I)))
413 InitializeRegForValue(I);
414
415 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
416 // also creates the initial PHI MachineInstrs, though none of the input
417 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000418 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Dan Gohman0e5f1302008-07-07 23:02:41 +0000419 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000420 MBBMap[BB] = MBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +0000421 MF.push_back(MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000422
423 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
424 // appropriate.
425 PHINode *PN;
Chris Lattner8c494ab2006-10-27 23:50:33 +0000426 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
427 if (PN->use_empty()) continue;
428
Duncan Sands83ec4b62008-06-06 12:08:01 +0000429 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +0000430 unsigned NumRegisters = TLI.getNumRegisters(VT);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000431 unsigned PHIReg = ValueMap[PN];
432 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Evan Chengc0f64ff2006-11-27 23:37:22 +0000433 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
Dan Gohmanb9f10192007-06-21 14:42:22 +0000434 for (unsigned i = 0; i != NumRegisters; ++i)
Evan Chengc0f64ff2006-11-27 23:37:22 +0000435 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000436 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000437 }
438}
439
Chris Lattner3c384492006-03-16 19:51:18 +0000440/// CreateRegForValue - Allocate the appropriate number of virtual registers of
441/// the correctly promoted or expanded types. Assign these registers
442/// consecutive vreg numbers and return the first assigned number.
Dan Gohman10a6b7a2008-04-28 18:19:43 +0000443///
444/// In the case that the given value has struct or array type, this function
445/// will assign registers for each member or element.
446///
Chris Lattner3c384492006-03-16 19:51:18 +0000447unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000448 SmallVector<MVT, 4> ValueVTs;
Chris Lattnerb606dba2008-04-28 06:44:42 +0000449 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Bill Wendling95b39552007-04-24 21:13:23 +0000450
Dan Gohman23ce5022008-04-25 18:27:55 +0000451 unsigned FirstReg = 0;
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000452 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000453 MVT ValueVT = ValueVTs[Value];
454 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohman8c8c5fc2007-06-27 14:34:07 +0000455
Chris Lattnerb606dba2008-04-28 06:44:42 +0000456 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000457 for (unsigned i = 0; i != NumRegs; ++i) {
458 unsigned R = MakeReg(RegisterVT);
459 if (!FirstReg) FirstReg = R;
460 }
461 }
462 return FirstReg;
Chris Lattner3c384492006-03-16 19:51:18 +0000463}
Chris Lattner1c08c712005-01-07 07:47:53 +0000464
465//===----------------------------------------------------------------------===//
466/// SelectionDAGLowering - This is the common target-independent lowering
467/// implementation that is parameterized by a TargetLowering object.
468/// Also, targets can overload any lowering method.
469///
470namespace llvm {
471class SelectionDAGLowering {
472 MachineBasicBlock *CurMBB;
473
Chris Lattner0da331f2007-02-04 01:31:47 +0000474 DenseMap<const Value*, SDOperand> NodeMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000475
Chris Lattnerd3948112005-01-17 22:19:26 +0000476 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
477 /// them up and then emit token factor nodes when possible. This allows us to
478 /// get simple disambiguation between loads without worrying about alias
479 /// analysis.
Dan Gohmana44b6742008-06-30 20:31:15 +0000480 SmallVector<SDOperand, 8> PendingLoads;
Chris Lattnerd3948112005-01-17 22:19:26 +0000481
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000482 /// PendingExports - CopyToReg nodes that copy values to virtual registers
483 /// for export to other blocks need to be emitted before any terminator
484 /// instruction, but they have no other ordering requirements. We bunch them
485 /// up and the emit a single tokenfactor for them just before terminator
486 /// instructions.
487 std::vector<SDOperand> PendingExports;
488
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000489 /// Case - A struct to record the Value for a switch case, and the
490 /// case's target basic block.
491 struct Case {
492 Constant* Low;
493 Constant* High;
494 MachineBasicBlock* BB;
495
496 Case() : Low(0), High(0), BB(0) { }
497 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
498 Low(low), High(high), BB(bb) { }
499 uint64_t size() const {
500 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
501 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
502 return (rHigh - rLow + 1ULL);
503 }
504 };
505
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000506 struct CaseBits {
507 uint64_t Mask;
508 MachineBasicBlock* BB;
509 unsigned Bits;
510
511 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
512 Mask(mask), BB(bb), Bits(bits) { }
513 };
514
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000515 typedef std::vector<Case> CaseVector;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000516 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000517 typedef CaseVector::iterator CaseItr;
518 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemanf15485a2006-03-27 01:32:24 +0000519
520 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
521 /// of conditional branches.
522 struct CaseRec {
523 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
524 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
525
526 /// CaseBB - The MBB in which to emit the compare and branch
527 MachineBasicBlock *CaseBB;
528 /// LT, GE - If nonzero, we know the current case value must be less-than or
529 /// greater-than-or-equal-to these Constants.
530 Constant *LT;
531 Constant *GE;
532 /// Range - A pair of iterators representing the range of case values to be
533 /// processed at this point in the binary search tree.
534 CaseRange Range;
535 };
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000536
537 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000538
539 /// The comparison function for sorting the switch case values in the vector.
540 /// WARNING: Case ranges should be disjoint!
Nate Begemanf15485a2006-03-27 01:32:24 +0000541 struct CaseCmp {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000542 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000543 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
544 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
545 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
546 return CI1->getValue().slt(CI2->getValue());
Nate Begemanf15485a2006-03-27 01:32:24 +0000547 }
548 };
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000549
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000550 struct CaseBitsCmp {
551 bool operator () (const CaseBits& C1, const CaseBits& C2) {
552 return C1.Bits > C2.Bits;
553 }
554 };
555
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000556 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemanf15485a2006-03-27 01:32:24 +0000557
Chris Lattner1c08c712005-01-07 07:47:53 +0000558public:
559 // TLI - This is information that describes the available target features we
560 // need for lowering. This indicates when operations are unavailable,
561 // implemented with a libcall, etc.
562 TargetLowering &TLI;
563 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000564 const TargetData *TD;
Dan Gohman5f43f922007-08-27 16:26:13 +0000565 AliasAnalysis &AA;
Chris Lattner1c08c712005-01-07 07:47:53 +0000566
Nate Begemanf15485a2006-03-27 01:32:24 +0000567 /// SwitchCases - Vector of CaseBlock structures used to communicate
568 /// SwitchInst code generation information.
569 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000570 /// JTCases - Vector of JumpTable structures used to communicate
571 /// SwitchInst code generation information.
572 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000573 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemanf15485a2006-03-27 01:32:24 +0000574
Chris Lattner1c08c712005-01-07 07:47:53 +0000575 /// FuncInfo - Information about the function as a whole.
576 ///
577 FunctionLoweringInfo &FuncInfo;
Gordon Henriksence224772008-01-07 01:30:38 +0000578
579 /// GCI - Garbage collection metadata for the function.
580 CollectorMetadata *GCI;
Chris Lattner1c08c712005-01-07 07:47:53 +0000581
582 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman5f43f922007-08-27 16:26:13 +0000583 AliasAnalysis &aa,
Gordon Henriksence224772008-01-07 01:30:38 +0000584 FunctionLoweringInfo &funcinfo,
585 CollectorMetadata *gci)
Dan Gohman5f43f922007-08-27 16:26:13 +0000586 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksence224772008-01-07 01:30:38 +0000587 FuncInfo(funcinfo), GCI(gci) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000588 }
589
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000590 /// getRoot - Return the current virtual root of the Selection DAG,
591 /// flushing any PendingLoad items. This must be done before emitting
592 /// a store or any other node that may need to be ordered after any
593 /// prior load instructions.
Chris Lattnera651cf62005-01-17 19:43:36 +0000594 ///
595 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000596 if (PendingLoads.empty())
597 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000598
Chris Lattnerd3948112005-01-17 22:19:26 +0000599 if (PendingLoads.size() == 1) {
600 SDOperand Root = PendingLoads[0];
601 DAG.setRoot(Root);
602 PendingLoads.clear();
603 return Root;
604 }
605
606 // Otherwise, we have to make a token factor node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000607 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
608 &PendingLoads[0], PendingLoads.size());
Chris Lattnerd3948112005-01-17 22:19:26 +0000609 PendingLoads.clear();
610 DAG.setRoot(Root);
611 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000612 }
613
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000614 /// getControlRoot - Similar to getRoot, but instead of flushing all the
615 /// PendingLoad items, flush all the PendingExports items. It is necessary
616 /// to do this before emitting a terminator instruction.
617 ///
618 SDOperand getControlRoot() {
619 SDOperand Root = DAG.getRoot();
620
621 if (PendingExports.empty())
622 return Root;
623
624 // Turn all of the CopyToReg chains into one factored node.
625 if (Root.getOpcode() != ISD::EntryToken) {
626 unsigned i = 0, e = PendingExports.size();
627 for (; i != e; ++i) {
628 assert(PendingExports[i].Val->getNumOperands() > 1);
629 if (PendingExports[i].Val->getOperand(0) == Root)
630 break; // Don't add the root if we already indirectly depend on it.
631 }
632
633 if (i == e)
634 PendingExports.push_back(Root);
635 }
636
637 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
638 &PendingExports[0],
639 PendingExports.size());
640 PendingExports.clear();
641 DAG.setRoot(Root);
642 return Root;
643 }
644
645 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Chris Lattner571e4342006-10-27 21:36:01 +0000646
Chris Lattner1c08c712005-01-07 07:47:53 +0000647 void visit(Instruction &I) { visit(I.getOpcode(), I); }
648
649 void visit(unsigned Opcode, User &I) {
Chris Lattner1e7aa5c2006-11-10 04:41:34 +0000650 // Note: this doesn't use InstVisitor, because it has to work with
651 // ConstantExpr's in addition to instructions.
Chris Lattner1c08c712005-01-07 07:47:53 +0000652 switch (Opcode) {
653 default: assert(0 && "Unknown instruction type encountered!");
654 abort();
655 // Build the switch statement using the Instruction.def file.
656#define HANDLE_INST(NUM, OPCODE, CLASS) \
657 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
658#include "llvm/Instruction.def"
659 }
660 }
661
662 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
663
Chris Lattner199862b2006-03-16 19:57:50 +0000664 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000665
Chris Lattner0da331f2007-02-04 01:31:47 +0000666 void setValue(const Value *V, SDOperand NewN) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000667 SDOperand &N = NodeMap[V];
668 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner0da331f2007-02-04 01:31:47 +0000669 N = NewN;
Chris Lattner1c08c712005-01-07 07:47:53 +0000670 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000671
Evan Cheng5c807602008-02-26 02:33:44 +0000672 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnere7cf56a2007-04-30 21:11:17 +0000673 std::set<unsigned> &OutputRegs,
674 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000675
Chris Lattner571e4342006-10-27 21:36:01 +0000676 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
677 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
678 unsigned Opc);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000679 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattner571e4342006-10-27 21:36:01 +0000680 void ExportFromCurrentBlock(Value *V);
Duncan Sands6f74b482007-12-19 09:48:52 +0000681 void LowerCallTo(CallSite CS, SDOperand Callee, bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000682 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsdc024672007-11-27 13:23:08 +0000683
Chris Lattner1c08c712005-01-07 07:47:53 +0000684 // Terminator instructions.
685 void visitRet(ReturnInst &I);
686 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000687 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000688 void visitUnreachable(UnreachableInst &I) { /* noop */ }
689
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000690 // Helpers for visitSwitch
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000691 bool handleSmallSwitchRange(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 handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000696 CaseRecVector& WorkList,
697 Value* SV,
698 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000699 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000700 CaseRecVector& WorkList,
701 Value* SV,
702 MachineBasicBlock* Default);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000703 bool handleBitTestsSwitchCase(CaseRec& CR,
704 CaseRecVector& WorkList,
705 Value* SV,
706 MachineBasicBlock* Default);
Nate Begemanf15485a2006-03-27 01:32:24 +0000707 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000708 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
709 void visitBitTestCase(MachineBasicBlock* NextMBB,
710 unsigned Reg,
711 SelectionDAGISel::BitTestCase &B);
Nate Begeman37efe672006-04-22 18:53:45 +0000712 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000713 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
714 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemanf15485a2006-03-27 01:32:24 +0000715
Chris Lattner1c08c712005-01-07 07:47:53 +0000716 // These all get lowered before this pass.
Jim Laskeyb180aa12007-02-21 22:53:45 +0000717 void visitInvoke(InvokeInst &I);
718 void visitUnwind(UnwindInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000719
Dan Gohman7f321562007-06-25 16:23:39 +0000720 void visitBinary(User &I, unsigned OpCode);
Nate Begemane21ea612005-11-18 07:42:56 +0000721 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000722 void visitAdd(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000723 if (I.getType()->isFPOrFPVector())
724 visitBinary(I, ISD::FADD);
Reid Spencer1628cec2006-10-26 06:15:43 +0000725 else
Dan Gohman7f321562007-06-25 16:23:39 +0000726 visitBinary(I, ISD::ADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000727 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000728 void visitSub(User &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000729 void visitMul(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000730 if (I.getType()->isFPOrFPVector())
731 visitBinary(I, ISD::FMUL);
Reid Spencer1628cec2006-10-26 06:15:43 +0000732 else
Dan Gohman7f321562007-06-25 16:23:39 +0000733 visitBinary(I, ISD::MUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000734 }
Dan Gohman7f321562007-06-25 16:23:39 +0000735 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
736 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
737 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
738 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
739 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
740 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
741 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
742 void visitOr (User &I) { visitBinary(I, ISD::OR); }
743 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer24d6da52007-01-21 00:29:26 +0000744 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencer3822ff52006-11-08 06:47:33 +0000745 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
746 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000747 void visitICmp(User &I);
748 void visitFCmp(User &I);
Nate Begemanb43e9c12008-05-12 19:40:03 +0000749 void visitVICmp(User &I);
750 void visitVFCmp(User &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000751 // Visit the conversion instructions
752 void visitTrunc(User &I);
753 void visitZExt(User &I);
754 void visitSExt(User &I);
755 void visitFPTrunc(User &I);
756 void visitFPExt(User &I);
757 void visitFPToUI(User &I);
758 void visitFPToSI(User &I);
759 void visitUIToFP(User &I);
760 void visitSIToFP(User &I);
761 void visitPtrToInt(User &I);
762 void visitIntToPtr(User &I);
763 void visitBitCast(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000764
Chris Lattner2bbd8102006-03-29 00:11:43 +0000765 void visitExtractElement(User &I);
766 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000767 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000768
Dan Gohman1d685a42008-06-07 02:02:36 +0000769 void visitExtractValue(ExtractValueInst &I);
770 void visitInsertValue(InsertValueInst &I);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000771
Chris Lattner1c08c712005-01-07 07:47:53 +0000772 void visitGetElementPtr(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000773 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000774
775 void visitMalloc(MallocInst &I);
776 void visitFree(FreeInst &I);
777 void visitAlloca(AllocaInst &I);
778 void visitLoad(LoadInst &I);
779 void visitStore(StoreInst &I);
780 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
781 void visitCall(CallInst &I);
Duncan Sandsfd7b3262007-12-17 18:08:19 +0000782 void visitInlineAsm(CallSite CS);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000783 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000784 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000785
Chris Lattner1c08c712005-01-07 07:47:53 +0000786 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000787 void visitVAArg(VAArgInst &I);
788 void visitVAEnd(CallInst &I);
789 void visitVACopy(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000790
Dan Gohmanef5d1942008-03-11 21:11:25 +0000791 void visitGetResult(GetResultInst &I);
Devang Patel40a04212008-02-19 22:15:16 +0000792
Chris Lattner1c08c712005-01-07 07:47:53 +0000793 void visitUserOp1(Instruction &I) {
794 assert(0 && "UserOp1 should not exist at instruction selection time!");
795 abort();
796 }
797 void visitUserOp2(Instruction &I) {
798 assert(0 && "UserOp2 should not exist at instruction selection time!");
799 abort();
800 }
Mon P Wang63307c32008-05-05 19:05:59 +0000801
802private:
803 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
804
Chris Lattner1c08c712005-01-07 07:47:53 +0000805};
806} // end namespace llvm
807
Dan Gohman6183f782007-07-05 20:12:34 +0000808
Duncan Sandsb988bac2008-02-11 20:58:28 +0000809/// getCopyFromParts - Create a value that contains the specified legal parts
810/// combined into the value they represent. If the parts combine to a type
811/// larger then ValueVT then AssertOp can be used to specify whether the extra
812/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattner4468c1f2008-03-09 09:38:46 +0000813/// (ISD::AssertSext).
Dan Gohman6183f782007-07-05 20:12:34 +0000814static SDOperand getCopyFromParts(SelectionDAG &DAG,
815 const SDOperand *Parts,
816 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000817 MVT PartVT,
818 MVT ValueVT,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000819 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000820 assert(NumParts > 0 && "No parts to assemble!");
821 TargetLowering &TLI = DAG.getTargetLoweringInfo();
822 SDOperand Val = Parts[0];
Dan Gohman6183f782007-07-05 20:12:34 +0000823
Duncan Sands014e04a2008-02-12 20:46:31 +0000824 if (NumParts > 1) {
825 // Assemble the value from multiple parts.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000826 if (!ValueVT.isVector()) {
827 unsigned PartBits = PartVT.getSizeInBits();
828 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohman6183f782007-07-05 20:12:34 +0000829
Duncan Sands014e04a2008-02-12 20:46:31 +0000830 // Assemble the power of 2 part.
831 unsigned RoundParts = NumParts & (NumParts - 1) ?
832 1 << Log2_32(NumParts) : NumParts;
833 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000834 MVT RoundVT = RoundBits == ValueBits ?
835 ValueVT : MVT::getIntegerVT(RoundBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000836 SDOperand Lo, Hi;
837
838 if (RoundParts > 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000839 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands014e04a2008-02-12 20:46:31 +0000840 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
841 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
842 PartVT, HalfVT);
Dan Gohman6183f782007-07-05 20:12:34 +0000843 } else {
Duncan Sands014e04a2008-02-12 20:46:31 +0000844 Lo = Parts[0];
845 Hi = Parts[1];
Dan Gohman6183f782007-07-05 20:12:34 +0000846 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000847 if (TLI.isBigEndian())
848 std::swap(Lo, Hi);
849 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
850
851 if (RoundParts < NumParts) {
852 // Assemble the trailing non-power-of-2 part.
853 unsigned OddParts = NumParts - RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000854 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000855 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
856
857 // Combine the round and odd parts.
858 Lo = Val;
859 if (TLI.isBigEndian())
860 std::swap(Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000861 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000862 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
863 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000864 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands014e04a2008-02-12 20:46:31 +0000865 TLI.getShiftAmountTy()));
866 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
867 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
868 }
869 } else {
870 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000871 MVT IntermediateVT, RegisterVT;
Duncan Sands014e04a2008-02-12 20:46:31 +0000872 unsigned NumIntermediates;
873 unsigned NumRegs =
874 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
875 RegisterVT);
Duncan Sands014e04a2008-02-12 20:46:31 +0000876 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +0000877 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands014e04a2008-02-12 20:46:31 +0000878 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
879 assert(RegisterVT == Parts[0].getValueType() &&
880 "Part type doesn't match part!");
881
882 // Assemble the parts into intermediate operands.
883 SmallVector<SDOperand, 8> Ops(NumIntermediates);
884 if (NumIntermediates == NumParts) {
885 // If the register was not expanded, truncate or copy the value,
886 // as appropriate.
887 for (unsigned i = 0; i != NumParts; ++i)
888 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
889 PartVT, IntermediateVT);
890 } else if (NumParts > 0) {
891 // If the intermediate type was expanded, build the intermediate operands
892 // from the parts.
893 assert(NumParts % NumIntermediates == 0 &&
894 "Must expand into a divisible number of parts!");
895 unsigned Factor = NumParts / NumIntermediates;
896 for (unsigned i = 0; i != NumIntermediates; ++i)
897 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
898 PartVT, IntermediateVT);
899 }
900
901 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
902 // operands.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000903 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands014e04a2008-02-12 20:46:31 +0000904 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
905 ValueVT, &Ops[0], NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +0000906 }
Dan Gohman6183f782007-07-05 20:12:34 +0000907 }
908
Duncan Sands014e04a2008-02-12 20:46:31 +0000909 // There is now one part, held in Val. Correct it to match ValueVT.
910 PartVT = Val.getValueType();
Dan Gohman6183f782007-07-05 20:12:34 +0000911
Duncan Sands014e04a2008-02-12 20:46:31 +0000912 if (PartVT == ValueVT)
913 return Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000914
Duncan Sands83ec4b62008-06-06 12:08:01 +0000915 if (PartVT.isVector()) {
916 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands014e04a2008-02-12 20:46:31 +0000917 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000918 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000919
Duncan Sands83ec4b62008-06-06 12:08:01 +0000920 if (ValueVT.isVector()) {
921 assert(ValueVT.getVectorElementType() == PartVT &&
922 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +0000923 "Only trivial scalar-to-vector conversions should get here!");
924 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
925 }
926
Duncan Sands83ec4b62008-06-06 12:08:01 +0000927 if (PartVT.isInteger() &&
928 ValueVT.isInteger()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000929 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000930 // For a truncate, see if we have any information to
931 // indicate whether the truncated bits will always be
932 // zero or sign-extension.
933 if (AssertOp != ISD::DELETED_NODE)
934 Val = DAG.getNode(AssertOp, PartVT, Val,
935 DAG.getValueType(ValueVT));
936 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
937 } else {
938 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
939 }
940 }
941
Duncan Sands83ec4b62008-06-06 12:08:01 +0000942 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000943 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattner4468c1f2008-03-09 09:38:46 +0000944 // FP_ROUND's are always exact here.
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000945 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000946 DAG.getIntPtrConstant(1));
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000947 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
948 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000949
Duncan Sands83ec4b62008-06-06 12:08:01 +0000950 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands014e04a2008-02-12 20:46:31 +0000951 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
952
953 assert(0 && "Unknown mismatch!");
Chris Lattnerd27c9912008-03-30 18:22:13 +0000954 return SDOperand();
Dan Gohman6183f782007-07-05 20:12:34 +0000955}
956
Duncan Sandsb988bac2008-02-11 20:58:28 +0000957/// getCopyToParts - Create a series of nodes that contain the specified value
958/// split into legal parts. If the parts contain more bits than Val, then, for
959/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohman6183f782007-07-05 20:12:34 +0000960static void getCopyToParts(SelectionDAG &DAG,
961 SDOperand Val,
962 SDOperand *Parts,
963 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000964 MVT PartVT,
Duncan Sandsb988bac2008-02-11 20:58:28 +0000965 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohman25ac7e82007-08-10 14:59:38 +0000966 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000967 MVT PtrVT = TLI.getPointerTy();
968 MVT ValueVT = Val.getValueType();
969 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands014e04a2008-02-12 20:46:31 +0000970 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohman6183f782007-07-05 20:12:34 +0000971
Duncan Sands014e04a2008-02-12 20:46:31 +0000972 if (!NumParts)
973 return;
974
Duncan Sands83ec4b62008-06-06 12:08:01 +0000975 if (!ValueVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000976 if (PartVT == ValueVT) {
977 assert(NumParts == 1 && "No-op copy with multiple parts!");
978 Parts[0] = Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000979 return;
980 }
981
Duncan Sands83ec4b62008-06-06 12:08:01 +0000982 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000983 // If the parts cover more bits than the value has, promote the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000984 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000985 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohman6183f782007-07-05 20:12:34 +0000986 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000987 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
988 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000989 Val = DAG.getNode(ExtendKind, ValueVT, Val);
990 } else {
991 assert(0 && "Unknown mismatch!");
992 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000993 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000994 // Different types of the same size.
995 assert(NumParts == 1 && PartVT != ValueVT);
996 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000997 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000998 // If the parts cover less bits than value has, truncate the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000999 if (PartVT.isInteger() && ValueVT.isInteger()) {
1000 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001001 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +00001002 } else {
1003 assert(0 && "Unknown mismatch!");
1004 }
1005 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001006
1007 // The value may have changed - recompute ValueVT.
1008 ValueVT = Val.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001009 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001010 "Failed to tile the value with PartVT!");
1011
1012 if (NumParts == 1) {
1013 assert(PartVT == ValueVT && "Type conversion failed!");
1014 Parts[0] = Val;
1015 return;
1016 }
1017
1018 // Expand the value into multiple parts.
1019 if (NumParts & (NumParts - 1)) {
1020 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001021 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001022 "Do not know what to expand to!");
1023 unsigned RoundParts = 1 << Log2_32(NumParts);
1024 unsigned RoundBits = RoundParts * PartBits;
1025 unsigned OddParts = NumParts - RoundParts;
1026 SDOperand OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
1027 DAG.getConstant(RoundBits,
1028 TLI.getShiftAmountTy()));
1029 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1030 if (TLI.isBigEndian())
1031 // The odd parts were reversed by getCopyToParts - unreverse them.
1032 std::reverse(Parts + RoundParts, Parts + NumParts);
1033 NumParts = RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001034 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001035 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1036 }
1037
1038 // The number of parts is a power of 2. Repeatedly bisect the value using
1039 // EXTRACT_ELEMENT.
Duncan Sands25eb0432008-03-12 20:30:08 +00001040 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001041 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sands25eb0432008-03-12 20:30:08 +00001042 Val);
Duncan Sands014e04a2008-02-12 20:46:31 +00001043 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1044 for (unsigned i = 0; i < NumParts; i += StepSize) {
1045 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001046 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Duncan Sands25eb0432008-03-12 20:30:08 +00001047 SDOperand &Part0 = Parts[i];
1048 SDOperand &Part1 = Parts[i+StepSize/2];
Duncan Sands014e04a2008-02-12 20:46:31 +00001049
Duncan Sands25eb0432008-03-12 20:30:08 +00001050 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1051 DAG.getConstant(1, PtrVT));
1052 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1053 DAG.getConstant(0, PtrVT));
1054
1055 if (ThisBits == PartBits && ThisVT != PartVT) {
1056 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1057 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1058 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001059 }
1060 }
1061
1062 if (TLI.isBigEndian())
1063 std::reverse(Parts, Parts + NumParts);
1064
1065 return;
1066 }
1067
1068 // Vector ValueVT.
1069 if (NumParts == 1) {
1070 if (PartVT != ValueVT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001071 if (PartVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001072 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1073 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001074 assert(ValueVT.getVectorElementType() == PartVT &&
1075 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001076 "Only trivial vector-to-scalar conversions should get here!");
1077 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1078 DAG.getConstant(0, PtrVT));
1079 }
1080 }
1081
Dan Gohman6183f782007-07-05 20:12:34 +00001082 Parts[0] = Val;
1083 return;
1084 }
1085
1086 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001087 MVT IntermediateVT, RegisterVT;
Dan Gohman6183f782007-07-05 20:12:34 +00001088 unsigned NumIntermediates;
1089 unsigned NumRegs =
1090 DAG.getTargetLoweringInfo()
1091 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1092 RegisterVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001093 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohman6183f782007-07-05 20:12:34 +00001094
1095 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +00001096 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohman6183f782007-07-05 20:12:34 +00001097 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1098
1099 // Split the vector into intermediate operands.
1100 SmallVector<SDOperand, 8> Ops(NumIntermediates);
1101 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001102 if (IntermediateVT.isVector())
Dan Gohman6183f782007-07-05 20:12:34 +00001103 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1104 IntermediateVT, Val,
1105 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohman25ac7e82007-08-10 14:59:38 +00001106 PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001107 else
1108 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1109 IntermediateVT, Val,
Dan Gohman25ac7e82007-08-10 14:59:38 +00001110 DAG.getConstant(i, PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001111
1112 // Split the intermediate operands into legal parts.
1113 if (NumParts == NumIntermediates) {
1114 // If the register was not expanded, promote or copy the value,
1115 // as appropriate.
1116 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001117 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001118 } else if (NumParts > 0) {
1119 // If the intermediate type was expanded, split each the value into
1120 // legal parts.
1121 assert(NumParts % NumIntermediates == 0 &&
1122 "Must expand into a divisible number of parts!");
1123 unsigned Factor = NumParts / NumIntermediates;
1124 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001125 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001126 }
1127}
1128
1129
Chris Lattner199862b2006-03-16 19:57:50 +00001130SDOperand SelectionDAGLowering::getValue(const Value *V) {
1131 SDOperand &N = NodeMap[V];
1132 if (N.Val) return N;
1133
Chris Lattner199862b2006-03-16 19:57:50 +00001134 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001135 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001136
1137 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1138 return N = DAG.getConstant(CI->getValue(), VT);
1139
1140 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001141 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001142
1143 if (isa<ConstantPointerNull>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001144 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001145
1146 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1147 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1148
Dan Gohman1d685a42008-06-07 02:02:36 +00001149 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1150 !V->getType()->isAggregateType())
Chris Lattner6833b062008-04-28 07:16:35 +00001151 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001152
1153 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1154 visit(CE->getOpcode(), *CE);
1155 SDOperand N1 = NodeMap[V];
1156 assert(N1.Val && "visit didn't populate the ValueMap!");
1157 return N1;
1158 }
1159
Dan Gohman1d685a42008-06-07 02:02:36 +00001160 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1161 SmallVector<SDOperand, 4> Constants;
Dan Gohman1d685a42008-06-07 02:02:36 +00001162 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1163 OI != OE; ++OI) {
1164 SDNode *Val = getValue(*OI).Val;
Duncan Sands4bdcb612008-07-02 17:40:58 +00001165 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +00001166 Constants.push_back(SDOperand(Val, i));
Dan Gohman1d685a42008-06-07 02:02:36 +00001167 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001168 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001169 }
1170
1171 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1172 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1173 "Unknown array constant!");
1174 unsigned NumElts = ATy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001175 if (NumElts == 0)
1176 return SDOperand(); // empty array
Dan Gohman1d685a42008-06-07 02:02:36 +00001177 MVT EltVT = TLI.getValueType(ATy->getElementType());
1178 SmallVector<SDOperand, 4> Constants(NumElts);
Dan Gohman1d685a42008-06-07 02:02:36 +00001179 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1180 if (isa<UndefValue>(C))
1181 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1182 else if (EltVT.isFloatingPoint())
1183 Constants[i] = DAG.getConstantFP(0, EltVT);
1184 else
1185 Constants[i] = DAG.getConstant(0, EltVT);
1186 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001187 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001188 }
1189
1190 if (const StructType *STy = dyn_cast<StructType>(C->getType())) {
1191 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1192 "Unknown struct constant!");
1193 unsigned NumElts = STy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001194 if (NumElts == 0)
1195 return SDOperand(); // empty struct
Dan Gohman1d685a42008-06-07 02:02:36 +00001196 SmallVector<SDOperand, 4> Constants(NumElts);
Dan Gohman1d685a42008-06-07 02:02:36 +00001197 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1198 MVT EltVT = TLI.getValueType(STy->getElementType(i));
Dan Gohman1d685a42008-06-07 02:02:36 +00001199 if (isa<UndefValue>(C))
1200 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1201 else if (EltVT.isFloatingPoint())
1202 Constants[i] = DAG.getConstantFP(0, EltVT);
1203 else
1204 Constants[i] = DAG.getConstant(0, EltVT);
1205 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001206 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001207 }
1208
Chris Lattner6833b062008-04-28 07:16:35 +00001209 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001210 unsigned NumElements = VecTy->getNumElements();
Chris Lattnerb606dba2008-04-28 06:44:42 +00001211
Chris Lattner6833b062008-04-28 07:16:35 +00001212 // Now that we know the number and type of the elements, get that number of
1213 // elements into the Ops array based on what kind of constant it is.
1214 SmallVector<SDOperand, 16> Ops;
Chris Lattnerb606dba2008-04-28 06:44:42 +00001215 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1216 for (unsigned i = 0; i != NumElements; ++i)
1217 Ops.push_back(getValue(CP->getOperand(i)));
1218 } else {
Chris Lattner6833b062008-04-28 07:16:35 +00001219 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1220 "Unknown vector constant!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001221 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner6833b062008-04-28 07:16:35 +00001222
Chris Lattnerb606dba2008-04-28 06:44:42 +00001223 SDOperand Op;
Chris Lattner6833b062008-04-28 07:16:35 +00001224 if (isa<UndefValue>(C))
1225 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001226 else if (EltVT.isFloatingPoint())
Chris Lattner6833b062008-04-28 07:16:35 +00001227 Op = DAG.getConstantFP(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001228 else
Chris Lattner6833b062008-04-28 07:16:35 +00001229 Op = DAG.getConstant(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001230 Ops.assign(NumElements, Op);
1231 }
1232
1233 // Create a BUILD_VECTOR node.
1234 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner199862b2006-03-16 19:57:50 +00001235 }
1236
Chris Lattnerb606dba2008-04-28 06:44:42 +00001237 // If this is a static alloca, generate it as the frameindex instead of
1238 // computation.
Chris Lattner199862b2006-03-16 19:57:50 +00001239 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1240 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattnerb606dba2008-04-28 06:44:42 +00001241 FuncInfo.StaticAllocaMap.find(AI);
Chris Lattner199862b2006-03-16 19:57:50 +00001242 if (SI != FuncInfo.StaticAllocaMap.end())
1243 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1244 }
1245
Chris Lattner251db182007-02-25 18:40:32 +00001246 unsigned InReg = FuncInfo.ValueMap[V];
1247 assert(InReg && "Value not in map!");
Chris Lattner199862b2006-03-16 19:57:50 +00001248
Chris Lattner6833b062008-04-28 07:16:35 +00001249 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001250 SDOperand Chain = DAG.getEntryNode();
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001251 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner199862b2006-03-16 19:57:50 +00001252}
1253
1254
Chris Lattner1c08c712005-01-07 07:47:53 +00001255void SelectionDAGLowering::visitRet(ReturnInst &I) {
1256 if (I.getNumOperands() == 0) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001257 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001258 return;
1259 }
Chris Lattnerb606dba2008-04-28 06:44:42 +00001260
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001261 SmallVector<SDOperand, 8> NewValues;
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001262 NewValues.push_back(getControlRoot());
1263 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Nate Begemanee625572006-01-27 21:09:22 +00001264 SDOperand RetOp = getValue(I.getOperand(i));
Duncan Sandsb988bac2008-02-11 20:58:28 +00001265
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001266 SmallVector<MVT, 4> ValueVTs;
1267 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1268 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1269 MVT VT = ValueVTs[j];
Duncan Sandsb988bac2008-02-11 20:58:28 +00001270
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001271 // FIXME: C calling convention requires the return type to be promoted to
1272 // at least 32-bit. But this is not necessary for non-C calling conventions.
1273 if (VT.isInteger()) {
1274 MVT MinVT = TLI.getRegisterType(MVT::i32);
1275 if (VT.bitsLT(MinVT))
1276 VT = MinVT;
1277 }
Duncan Sandsb988bac2008-02-11 20:58:28 +00001278
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001279 unsigned NumParts = TLI.getNumRegisters(VT);
1280 MVT PartVT = TLI.getRegisterType(VT);
1281 SmallVector<SDOperand, 4> Parts(NumParts);
1282 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1283
1284 const Function *F = I.getParent()->getParent();
1285 if (F->paramHasAttr(0, ParamAttr::SExt))
1286 ExtendKind = ISD::SIGN_EXTEND;
1287 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1288 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00001289
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001290 getCopyToParts(DAG, SDOperand(RetOp.Val, RetOp.ResNo + j),
1291 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00001292
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001293 for (unsigned i = 0; i < NumParts; ++i) {
1294 NewValues.push_back(Parts[i]);
1295 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1296 }
Nate Begemanee625572006-01-27 21:09:22 +00001297 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001298 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001299 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1300 &NewValues[0], NewValues.size()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001301}
1302
Chris Lattner571e4342006-10-27 21:36:01 +00001303/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1304/// the current basic block, add it to ValueMap now so that we'll get a
1305/// CopyTo/FromReg.
1306void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1307 // No need to export constants.
1308 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1309
1310 // Already exported?
1311 if (FuncInfo.isExportedInst(V)) return;
1312
1313 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001314 CopyValueToVirtualRegister(V, Reg);
Chris Lattner571e4342006-10-27 21:36:01 +00001315}
1316
Chris Lattner8c494ab2006-10-27 23:50:33 +00001317bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1318 const BasicBlock *FromBB) {
1319 // The operands of the setcc have to be in this block. We don't know
1320 // how to export them from some other block.
1321 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1322 // Can export from current BB.
1323 if (VI->getParent() == FromBB)
1324 return true;
1325
1326 // Is already exported, noop.
1327 return FuncInfo.isExportedInst(V);
1328 }
1329
1330 // If this is an argument, we can export it if the BB is the entry block or
1331 // if it is already exported.
1332 if (isa<Argument>(V)) {
1333 if (FromBB == &FromBB->getParent()->getEntryBlock())
1334 return true;
1335
1336 // Otherwise, can only export this if it is already exported.
1337 return FuncInfo.isExportedInst(V);
1338 }
1339
1340 // Otherwise, constants can always be exported.
1341 return true;
1342}
1343
Chris Lattner6a586c82006-10-29 21:01:20 +00001344static bool InBlock(const Value *V, const BasicBlock *BB) {
1345 if (const Instruction *I = dyn_cast<Instruction>(V))
1346 return I->getParent() == BB;
1347 return true;
1348}
1349
Chris Lattner571e4342006-10-27 21:36:01 +00001350/// FindMergedConditions - If Cond is an expression like
1351void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1352 MachineBasicBlock *TBB,
1353 MachineBasicBlock *FBB,
1354 MachineBasicBlock *CurBB,
1355 unsigned Opc) {
Chris Lattner571e4342006-10-27 21:36:01 +00001356 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001357 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattner571e4342006-10-27 21:36:01 +00001358
Reid Spencere4d87aa2006-12-23 06:05:41 +00001359 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1360 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattner6a586c82006-10-29 21:01:20 +00001361 BOp->getParent() != CurBB->getBasicBlock() ||
1362 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1363 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattner571e4342006-10-27 21:36:01 +00001364 const BasicBlock *BB = CurBB->getBasicBlock();
1365
Reid Spencere4d87aa2006-12-23 06:05:41 +00001366 // If the leaf of the tree is a comparison, merge the condition into
1367 // the caseblock.
1368 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1369 // The operands of the cmp have to be in this block. We don't know
Chris Lattner5a145f02006-10-29 18:23:37 +00001370 // how to export them from some other block. If this is the first block
1371 // of the sequence, no exporting is needed.
1372 (CurBB == CurMBB ||
1373 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1374 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001375 BOp = cast<Instruction>(Cond);
1376 ISD::CondCode Condition;
1377 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1378 switch (IC->getPredicate()) {
1379 default: assert(0 && "Unknown icmp predicate opcode!");
1380 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1381 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1382 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1383 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1384 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1385 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1386 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1387 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1388 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1389 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1390 }
1391 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1392 ISD::CondCode FPC, FOC;
1393 switch (FC->getPredicate()) {
1394 default: assert(0 && "Unknown fcmp predicate opcode!");
1395 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1396 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1397 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1398 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1399 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1400 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1401 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner6bf30ab2008-05-01 07:26:11 +00001402 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1403 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001404 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1405 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1406 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1407 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1408 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1409 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1410 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1411 }
1412 if (FiniteOnlyFPMath())
1413 Condition = FOC;
1414 else
1415 Condition = FPC;
1416 } else {
Chris Lattner0da331f2007-02-04 01:31:47 +00001417 Condition = ISD::SETEQ; // silence warning.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001418 assert(0 && "Unknown compare instruction");
Chris Lattner571e4342006-10-27 21:36:01 +00001419 }
1420
Chris Lattner571e4342006-10-27 21:36:01 +00001421 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001422 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001423 SwitchCases.push_back(CB);
1424 return;
1425 }
1426
1427 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001428 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001429 NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001430 SwitchCases.push_back(CB);
Chris Lattner571e4342006-10-27 21:36:01 +00001431 return;
1432 }
1433
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001434
1435 // Create TmpBB after CurBB.
Chris Lattner571e4342006-10-27 21:36:01 +00001436 MachineFunction::iterator BBI = CurBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +00001437 MachineFunction &MF = DAG.getMachineFunction();
1438 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1439 CurBB->getParent()->insert(++BBI, TmpBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001440
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001441 if (Opc == Instruction::Or) {
1442 // Codegen X | Y as:
1443 // jmp_if_X TBB
1444 // jmp TmpBB
1445 // TmpBB:
1446 // jmp_if_Y TBB
1447 // jmp FBB
1448 //
Chris Lattner571e4342006-10-27 21:36:01 +00001449
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001450 // Emit the LHS condition.
1451 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1452
1453 // Emit the RHS condition into TmpBB.
1454 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1455 } else {
1456 assert(Opc == Instruction::And && "Unknown merge op!");
1457 // Codegen X & Y as:
1458 // jmp_if_X TmpBB
1459 // jmp FBB
1460 // TmpBB:
1461 // jmp_if_Y TBB
1462 // jmp FBB
1463 //
1464 // This requires creation of TmpBB after CurBB.
1465
1466 // Emit the LHS condition.
1467 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1468
1469 // Emit the RHS condition into TmpBB.
1470 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1471 }
Chris Lattner571e4342006-10-27 21:36:01 +00001472}
1473
Chris Lattnerdf19f272006-10-31 22:37:42 +00001474/// If the set of cases should be emitted as a series of branches, return true.
1475/// If we should emit this as a bunch of and/or'd together conditions, return
1476/// false.
1477static bool
1478ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1479 if (Cases.size() != 2) return true;
1480
Chris Lattner0ccb5002006-10-31 23:06:00 +00001481 // If this is two comparisons of the same values or'd or and'd together, they
1482 // will get folded into a single comparison, so don't emit two blocks.
1483 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1484 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1485 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1486 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1487 return false;
1488 }
1489
Chris Lattnerdf19f272006-10-31 22:37:42 +00001490 return true;
1491}
1492
Chris Lattner1c08c712005-01-07 07:47:53 +00001493void SelectionDAGLowering::visitBr(BranchInst &I) {
1494 // Update machine-CFG edges.
1495 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner1c08c712005-01-07 07:47:53 +00001496
1497 // Figure out which block is immediately after the current one.
1498 MachineBasicBlock *NextBlock = 0;
1499 MachineFunction::iterator BBI = CurMBB;
1500 if (++BBI != CurMBB->getParent()->end())
1501 NextBlock = BBI;
1502
1503 if (I.isUnconditional()) {
Owen Anderson2d389e82008-06-07 00:00:23 +00001504 // Update machine-CFG edges.
1505 CurMBB->addSuccessor(Succ0MBB);
1506
Chris Lattner1c08c712005-01-07 07:47:53 +00001507 // If this is not a fall-through branch, emit the branch.
1508 if (Succ0MBB != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001509 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001510 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner57ab6592006-10-24 17:57:59 +00001511 return;
1512 }
1513
1514 // If this condition is one of the special cases we handle, do special stuff
1515 // now.
1516 Value *CondVal = I.getCondition();
Chris Lattner57ab6592006-10-24 17:57:59 +00001517 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattner571e4342006-10-27 21:36:01 +00001518
1519 // If this is a series of conditions that are or'd or and'd together, emit
1520 // this as a sequence of branches instead of setcc's with and/or operations.
1521 // For example, instead of something like:
1522 // cmp A, B
1523 // C = seteq
1524 // cmp D, E
1525 // F = setle
1526 // or C, F
1527 // jnz foo
1528 // Emit:
1529 // cmp A, B
1530 // je foo
1531 // cmp D, E
1532 // jle foo
1533 //
1534 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1535 if (BOp->hasOneUse() &&
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001536 (BOp->getOpcode() == Instruction::And ||
Chris Lattner571e4342006-10-27 21:36:01 +00001537 BOp->getOpcode() == Instruction::Or)) {
1538 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattner0ccb5002006-10-31 23:06:00 +00001539 // If the compares in later blocks need to use values not currently
1540 // exported from this block, export them now. This block should always
1541 // be the first entry.
1542 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1543
Chris Lattnerdf19f272006-10-31 22:37:42 +00001544 // Allow some cases to be rejected.
1545 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattnerdf19f272006-10-31 22:37:42 +00001546 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1547 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1548 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1549 }
1550
1551 // Emit the branch for this block.
1552 visitSwitchCase(SwitchCases[0]);
1553 SwitchCases.erase(SwitchCases.begin());
1554 return;
Chris Lattner5a145f02006-10-29 18:23:37 +00001555 }
1556
Chris Lattner0ccb5002006-10-31 23:06:00 +00001557 // Okay, we decided not to do this, remove any inserted MBB's and clear
1558 // SwitchCases.
1559 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0e5f1302008-07-07 23:02:41 +00001560 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Chris Lattner0ccb5002006-10-31 23:06:00 +00001561
Chris Lattnerdf19f272006-10-31 22:37:42 +00001562 SwitchCases.clear();
Chris Lattner571e4342006-10-27 21:36:01 +00001563 }
1564 }
Chris Lattner24525952006-10-24 18:07:37 +00001565
1566 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001567 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001568 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner24525952006-10-24 18:07:37 +00001569 // Use visitSwitchCase to actually insert the fast branch sequence for this
1570 // cond branch.
1571 visitSwitchCase(CB);
Chris Lattner1c08c712005-01-07 07:47:53 +00001572}
1573
Nate Begemanf15485a2006-03-27 01:32:24 +00001574/// visitSwitchCase - Emits the necessary code to represent a single node in
1575/// the binary search tree resulting from lowering a switch instruction.
1576void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Chris Lattner57ab6592006-10-24 17:57:59 +00001577 SDOperand Cond;
1578 SDOperand CondLHS = getValue(CB.CmpLHS);
1579
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001580 // Build the setcc now.
1581 if (CB.CmpMHS == NULL) {
1582 // Fold "(X == true)" to X and "(X == false)" to !X to
1583 // handle common cases produced by branch lowering.
1584 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1585 Cond = CondLHS;
1586 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1587 SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1588 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1589 } else
1590 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1591 } else {
1592 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001593
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001594 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1595 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1596
1597 SDOperand CmpOp = getValue(CB.CmpMHS);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001598 MVT VT = CmpOp.getValueType();
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001599
1600 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1601 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1602 } else {
1603 SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1604 Cond = DAG.getSetCC(MVT::i1, SUB,
1605 DAG.getConstant(High-Low, VT), ISD::SETULE);
1606 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001607 }
1608
Owen Anderson2d389e82008-06-07 00:00:23 +00001609 // Update successor info
1610 CurMBB->addSuccessor(CB.TrueBB);
1611 CurMBB->addSuccessor(CB.FalseBB);
1612
Nate Begemanf15485a2006-03-27 01:32:24 +00001613 // Set NextBlock to be the MBB immediately after the current one, if any.
1614 // This is used to avoid emitting unnecessary branches to the next block.
1615 MachineBasicBlock *NextBlock = 0;
1616 MachineFunction::iterator BBI = CurMBB;
1617 if (++BBI != CurMBB->getParent()->end())
1618 NextBlock = BBI;
1619
1620 // If the lhs block is the next block, invert the condition so that we can
1621 // fall through to the lhs instead of the rhs block.
Chris Lattner57ab6592006-10-24 17:57:59 +00001622 if (CB.TrueBB == NextBlock) {
1623 std::swap(CB.TrueBB, CB.FalseBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00001624 SDOperand True = DAG.getConstant(1, Cond.getValueType());
1625 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1626 }
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001627 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001628 DAG.getBasicBlock(CB.TrueBB));
1629 if (CB.FalseBB == NextBlock)
Nate Begemanf15485a2006-03-27 01:32:24 +00001630 DAG.setRoot(BrCond);
1631 else
1632 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001633 DAG.getBasicBlock(CB.FalseBB)));
Nate Begemanf15485a2006-03-27 01:32:24 +00001634}
1635
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001636/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman37efe672006-04-22 18:53:45 +00001637void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman37efe672006-04-22 18:53:45 +00001638 // Emit the code for the jump table
Scott Michelf147a8d2007-04-24 01:24:20 +00001639 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001640 MVT PTy = TLI.getPointerTy();
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001641 SDOperand Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001642 SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1643 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1644 Table, Index));
1645 return;
Nate Begeman37efe672006-04-22 18:53:45 +00001646}
1647
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001648/// visitJumpTableHeader - This function emits necessary code to produce index
1649/// in the JumpTable from switch case.
1650void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1651 SelectionDAGISel::JumpTableHeader &JTH) {
1652 // Subtract the lowest switch case value from the value being switched on
1653 // and conditional branch to default mbb if the result is greater than the
1654 // difference between smallest and largest cases.
1655 SDOperand SwitchOp = getValue(JTH.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001656 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001657 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1658 DAG.getConstant(JTH.First, VT));
1659
1660 // The SDNode we just created, which holds the value being switched on
1661 // minus the the smallest case value, needs to be copied to a virtual
1662 // register so it can be used as an index into the jump table in a
1663 // subsequent basic block. This value may be smaller or larger than the
1664 // target's pointer type, and therefore require extension or truncating.
Duncan Sands8e4eb092008-06-08 20:54:56 +00001665 if (VT.bitsGT(TLI.getPointerTy()))
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001666 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1667 else
1668 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1669
1670 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001671 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001672 JT.Reg = JumpTableReg;
1673
1674 // Emit the range check for the jump table, and branch to the default
1675 // block for the switch statement if the value being switched on exceeds
1676 // the largest case in the switch.
Scott Michel5b8f82e2008-03-10 15:42:14 +00001677 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001678 DAG.getConstant(JTH.Last-JTH.First,VT),
1679 ISD::SETUGT);
1680
1681 // Set NextBlock to be the MBB immediately after the current one, if any.
1682 // This is used to avoid emitting unnecessary branches to the next block.
1683 MachineBasicBlock *NextBlock = 0;
1684 MachineFunction::iterator BBI = CurMBB;
1685 if (++BBI != CurMBB->getParent()->end())
1686 NextBlock = BBI;
1687
1688 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1689 DAG.getBasicBlock(JT.Default));
1690
1691 if (JT.MBB == NextBlock)
1692 DAG.setRoot(BrCond);
1693 else
1694 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001695 DAG.getBasicBlock(JT.MBB)));
1696
1697 return;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001698}
1699
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001700/// visitBitTestHeader - This function emits necessary code to produce value
1701/// suitable for "bit tests"
1702void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1703 // Subtract the minimum value
1704 SDOperand SwitchOp = getValue(B.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001705 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001706 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1707 DAG.getConstant(B.First, VT));
1708
1709 // Check range
Scott Michel5b8f82e2008-03-10 15:42:14 +00001710 SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001711 DAG.getConstant(B.Range, VT),
1712 ISD::SETUGT);
1713
1714 SDOperand ShiftOp;
Duncan Sands8e4eb092008-06-08 20:54:56 +00001715 if (VT.bitsGT(TLI.getShiftAmountTy()))
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001716 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1717 else
1718 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1719
1720 // Make desired shift
1721 SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1722 DAG.getConstant(1, TLI.getPointerTy()),
1723 ShiftOp);
1724
1725 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001726 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001727 B.Reg = SwitchReg;
1728
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001729 // Set NextBlock to be the MBB immediately after the current one, if any.
1730 // This is used to avoid emitting unnecessary branches to the next block.
1731 MachineBasicBlock *NextBlock = 0;
1732 MachineFunction::iterator BBI = CurMBB;
1733 if (++BBI != CurMBB->getParent()->end())
1734 NextBlock = BBI;
1735
1736 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson2d389e82008-06-07 00:00:23 +00001737
1738 CurMBB->addSuccessor(B.Default);
1739 CurMBB->addSuccessor(MBB);
1740
1741 SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1742 DAG.getBasicBlock(B.Default));
1743
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001744 if (MBB == NextBlock)
1745 DAG.setRoot(BrRange);
1746 else
1747 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1748 DAG.getBasicBlock(MBB)));
1749
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001750 return;
1751}
1752
1753/// visitBitTestCase - this function produces one "bit test"
1754void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1755 unsigned Reg,
1756 SelectionDAGISel::BitTestCase &B) {
1757 // Emit bit tests and jumps
Chris Lattneread0d882008-06-17 06:09:18 +00001758 SDOperand SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
1759 TLI.getPointerTy());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001760
Chris Lattneread0d882008-06-17 06:09:18 +00001761 SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
1762 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Scott Michel5b8f82e2008-03-10 15:42:14 +00001763 SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001764 DAG.getConstant(0, TLI.getPointerTy()),
1765 ISD::SETNE);
Owen Anderson2d389e82008-06-07 00:00:23 +00001766
1767 CurMBB->addSuccessor(B.TargetBB);
1768 CurMBB->addSuccessor(NextMBB);
1769
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001770 SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001771 AndCmp, DAG.getBasicBlock(B.TargetBB));
1772
1773 // Set NextBlock to be the MBB immediately after the current one, if any.
1774 // This is used to avoid emitting unnecessary branches to the next block.
1775 MachineBasicBlock *NextBlock = 0;
1776 MachineFunction::iterator BBI = CurMBB;
1777 if (++BBI != CurMBB->getParent()->end())
1778 NextBlock = BBI;
1779
1780 if (NextMBB == NextBlock)
1781 DAG.setRoot(BrAnd);
1782 else
1783 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1784 DAG.getBasicBlock(NextMBB)));
1785
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001786 return;
1787}
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001788
Jim Laskeyb180aa12007-02-21 22:53:45 +00001789void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1790 // Retrieve successors.
1791 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001792 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands9fac0b52007-06-06 10:05:18 +00001793
Duncan Sandsfd7b3262007-12-17 18:08:19 +00001794 if (isa<InlineAsm>(I.getCalledValue()))
1795 visitInlineAsm(&I);
1796 else
Duncan Sands6f74b482007-12-19 09:48:52 +00001797 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Duncan Sands9fac0b52007-06-06 10:05:18 +00001798
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001799 // If the value of the invoke is used outside of its defining block, make it
1800 // available as a virtual register.
1801 if (!I.use_empty()) {
1802 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1803 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001804 CopyValueToVirtualRegister(&I, VMI->second);
Jim Laskey183f47f2007-02-25 21:43:59 +00001805 }
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001806
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001807 // Update successor info
1808 CurMBB->addSuccessor(Return);
1809 CurMBB->addSuccessor(LandingPad);
Owen Anderson2d389e82008-06-07 00:00:23 +00001810
1811 // Drop into normal successor.
1812 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1813 DAG.getBasicBlock(Return)));
Jim Laskeyb180aa12007-02-21 22:53:45 +00001814}
1815
1816void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1817}
1818
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001819/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001820/// small case ranges).
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001821bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001822 CaseRecVector& WorkList,
1823 Value* SV,
1824 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001825 Case& BackCase = *(CR.Range.second-1);
1826
1827 // Size is the number of Cases represented by this range.
1828 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001829 if (Size > 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001830 return false;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001831
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001832 // Get the MachineFunction which holds the current MBB. This is used when
1833 // inserting any additional MBBs necessary to represent the switch.
1834 MachineFunction *CurMF = CurMBB->getParent();
1835
1836 // Figure out which block is immediately after the current one.
1837 MachineBasicBlock *NextBlock = 0;
1838 MachineFunction::iterator BBI = CR.CaseBB;
1839
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001840 if (++BBI != CurMBB->getParent()->end())
1841 NextBlock = BBI;
1842
1843 // TODO: If any two of the cases has the same destination, and if one value
1844 // is the same as the other, but has one bit unset that the other has set,
1845 // use bit manipulation to do two compares at once. For example:
1846 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1847
1848 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001849 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001850 // The last case block won't fall through into 'NextBlock' if we emit the
1851 // branches in this order. See if rearranging a case value would help.
1852 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001853 if (I->BB == NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001854 std::swap(*I, BackCase);
1855 break;
1856 }
1857 }
1858 }
1859
1860 // Create a CaseBlock record representing a conditional branch to
1861 // the Case's target mbb if the value being switched on SV is equal
1862 // to C.
1863 MachineBasicBlock *CurBlock = CR.CaseBB;
1864 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1865 MachineBasicBlock *FallThrough;
1866 if (I != E-1) {
Dan Gohman0e5f1302008-07-07 23:02:41 +00001867 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1868 CurMF->insert(BBI, FallThrough);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001869 } else {
1870 // If the last case doesn't match, go to the default block.
1871 FallThrough = Default;
1872 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001873
1874 Value *RHS, *LHS, *MHS;
1875 ISD::CondCode CC;
1876 if (I->High == I->Low) {
1877 // This is just small small case range :) containing exactly 1 case
1878 CC = ISD::SETEQ;
1879 LHS = SV; RHS = I->High; MHS = NULL;
1880 } else {
1881 CC = ISD::SETLE;
1882 LHS = I->Low; MHS = SV; RHS = I->High;
1883 }
1884 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1885 I->BB, FallThrough, CurBlock);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001886
1887 // If emitting the first comparison, just call visitSwitchCase to emit the
1888 // code into the current block. Otherwise, push the CaseBlock onto the
1889 // vector to be later processed by SDISel, and insert the node's MBB
1890 // before the next MBB.
1891 if (CurBlock == CurMBB)
1892 visitSwitchCase(CB);
1893 else
1894 SwitchCases.push_back(CB);
1895
1896 CurBlock = FallThrough;
1897 }
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001898
1899 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001900}
1901
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001902static inline bool areJTsAllowed(const TargetLowering &TLI) {
1903 return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1904 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1905}
1906
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001907/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001908bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001909 CaseRecVector& WorkList,
1910 Value* SV,
1911 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001912 Case& FrontCase = *CR.Range.first;
1913 Case& BackCase = *(CR.Range.second-1);
1914
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001915 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1916 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1917
1918 uint64_t TSize = 0;
1919 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1920 I!=E; ++I)
1921 TSize += I->size();
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001922
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001923 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001924 return false;
1925
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001926 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1927 if (Density < 0.4)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001928 return false;
1929
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001930 DOUT << "Lowering jump table\n"
1931 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001932 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001933
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001934 // Get the MachineFunction which holds the current MBB. This is used when
1935 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001936 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001937
1938 // Figure out which block is immediately after the current one.
1939 MachineBasicBlock *NextBlock = 0;
1940 MachineFunction::iterator BBI = CR.CaseBB;
1941
1942 if (++BBI != CurMBB->getParent()->end())
1943 NextBlock = BBI;
1944
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001945 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1946
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001947 // Create a new basic block to hold the code for loading the address
1948 // of the jump table, and jumping to it. Update successor information;
1949 // we will either branch to the default case for the switch, or the jump
1950 // table.
Dan Gohman0e5f1302008-07-07 23:02:41 +00001951 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1952 CurMF->insert(BBI, JumpTableBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001953 CR.CaseBB->addSuccessor(Default);
1954 CR.CaseBB->addSuccessor(JumpTableBB);
1955
1956 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001957 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001958 // a case statement, push the case's BB onto the vector, otherwise, push
1959 // the default BB.
1960 std::vector<MachineBasicBlock*> DestBBs;
1961 int64_t TEI = First;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001962 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1963 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1964 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1965
1966 if ((Low <= TEI) && (TEI <= High)) {
1967 DestBBs.push_back(I->BB);
1968 if (TEI==High)
1969 ++I;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001970 } else {
1971 DestBBs.push_back(Default);
1972 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001973 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001974
1975 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001976 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001977 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1978 E = DestBBs.end(); I != E; ++I) {
1979 if (!SuccsHandled[(*I)->getNumber()]) {
1980 SuccsHandled[(*I)->getNumber()] = true;
1981 JumpTableBB->addSuccessor(*I);
1982 }
1983 }
1984
1985 // Create a jump table index for this jump table, or return an existing
1986 // one.
1987 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1988
1989 // Set the jump table information so that we can codegen it as a second
1990 // MachineBasicBlock
Scott Michelf147a8d2007-04-24 01:24:20 +00001991 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001992 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
1993 (CR.CaseBB == CurMBB));
1994 if (CR.CaseBB == CurMBB)
1995 visitJumpTableHeader(JT, JTH);
1996
1997 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001998
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001999 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002000}
2001
2002/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2003/// 2 subtrees.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002004bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002005 CaseRecVector& WorkList,
2006 Value* SV,
2007 MachineBasicBlock* Default) {
2008 // Get the MachineFunction which holds the current MBB. This is used when
2009 // inserting any additional MBBs necessary to represent the switch.
2010 MachineFunction *CurMF = CurMBB->getParent();
2011
2012 // Figure out which block is immediately after the current one.
2013 MachineBasicBlock *NextBlock = 0;
2014 MachineFunction::iterator BBI = CR.CaseBB;
2015
2016 if (++BBI != CurMBB->getParent()->end())
2017 NextBlock = BBI;
2018
2019 Case& FrontCase = *CR.Range.first;
2020 Case& BackCase = *(CR.Range.second-1);
2021 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2022
2023 // Size is the number of Cases represented by this range.
2024 unsigned Size = CR.Range.second - CR.Range.first;
2025
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002026 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2027 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002028 double FMetric = 0;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002029 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002030
2031 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2032 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002033 uint64_t TSize = 0;
2034 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2035 I!=E; ++I)
2036 TSize += I->size();
2037
2038 uint64_t LSize = FrontCase.size();
2039 uint64_t RSize = TSize-LSize;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002040 DOUT << "Selecting best pivot: \n"
2041 << "First: " << First << ", Last: " << Last <<"\n"
2042 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002043 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002044 J!=E; ++I, ++J) {
2045 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2046 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002047 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002048 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2049 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikov54e2b142007-04-09 21:57:03 +00002050 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002051 // Should always split in some non-trivial place
2052 DOUT <<"=>Step\n"
2053 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2054 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2055 << "Metric: " << Metric << "\n";
2056 if (FMetric < Metric) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002057 Pivot = J;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002058 FMetric = Metric;
2059 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002060 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002061
2062 LSize += J->size();
2063 RSize -= J->size();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002064 }
Anton Korobeynikov7294b582007-05-09 20:07:08 +00002065 if (areJTsAllowed(TLI)) {
2066 // If our case is dense we *really* should handle it earlier!
2067 assert((FMetric > 0) && "Should handle dense range earlier!");
2068 } else {
2069 Pivot = CR.Range.first + Size/2;
2070 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002071
2072 CaseRange LHSR(CR.Range.first, Pivot);
2073 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002074 Constant *C = Pivot->Low;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002075 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2076
2077 // We know that we branch to the LHS if the Value being switched on is
2078 // less than the Pivot value, C. We use this to optimize our binary
2079 // tree a bit, by recognizing that if SV is greater than or equal to the
2080 // LHS's Case Value, and that Case Value is exactly one less than the
2081 // Pivot's Value, then we can branch directly to the LHS's Target,
2082 // rather than creating a leaf node for it.
2083 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002084 LHSR.first->High == CR.GE &&
2085 cast<ConstantInt>(C)->getSExtValue() ==
2086 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2087 TrueBB = LHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002088 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002089 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2090 CurMF->insert(BBI, TrueBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002091 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2092 }
2093
2094 // Similar to the optimization above, if the Value being switched on is
2095 // known to be less than the Constant CR.LT, and the current Case Value
2096 // is CR.LT - 1, then we can branch directly to the target block for
2097 // the current Case Value, rather than emitting a RHS leaf node for it.
2098 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002099 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2100 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2101 FalseBB = RHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002102 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002103 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2104 CurMF->insert(BBI, FalseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002105 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2106 }
2107
2108 // Create a CaseBlock record representing a conditional branch to
2109 // the LHS node if the value being switched on SV is less than C.
2110 // Otherwise, branch to LHS.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002111 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2112 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002113
2114 if (CR.CaseBB == CurMBB)
2115 visitSwitchCase(CB);
2116 else
2117 SwitchCases.push_back(CB);
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002118
2119 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002120}
2121
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002122/// handleBitTestsSwitchCase - if current case range has few destination and
2123/// range span less, than machine word bitwidth, encode case range into series
2124/// of masks and emit bit tests with these masks.
2125bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2126 CaseRecVector& WorkList,
2127 Value* SV,
Chris Lattner3ff98172007-04-14 02:26:56 +00002128 MachineBasicBlock* Default){
Duncan Sands83ec4b62008-06-06 12:08:01 +00002129 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002130
2131 Case& FrontCase = *CR.Range.first;
2132 Case& BackCase = *(CR.Range.second-1);
2133
2134 // Get the MachineFunction which holds the current MBB. This is used when
2135 // inserting any additional MBBs necessary to represent the switch.
2136 MachineFunction *CurMF = CurMBB->getParent();
2137
2138 unsigned numCmps = 0;
2139 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2140 I!=E; ++I) {
2141 // Single case counts one, case range - two.
2142 if (I->Low == I->High)
2143 numCmps +=1;
2144 else
2145 numCmps +=2;
2146 }
2147
2148 // Count unique destinations
2149 SmallSet<MachineBasicBlock*, 4> Dests;
2150 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2151 Dests.insert(I->BB);
2152 if (Dests.size() > 3)
2153 // Don't bother the code below, if there are too much unique destinations
2154 return false;
2155 }
2156 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2157 << "Total number of comparisons: " << numCmps << "\n";
2158
2159 // Compute span of values.
2160 Constant* minValue = FrontCase.Low;
2161 Constant* maxValue = BackCase.High;
2162 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2163 cast<ConstantInt>(minValue)->getSExtValue();
2164 DOUT << "Compare range: " << range << "\n"
2165 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2166 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2167
Anton Korobeynikovab8fd402007-04-26 20:44:04 +00002168 if (range>=IntPtrBits ||
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002169 (!(Dests.size() == 1 && numCmps >= 3) &&
2170 !(Dests.size() == 2 && numCmps >= 5) &&
2171 !(Dests.size() >= 3 && numCmps >= 6)))
2172 return false;
2173
2174 DOUT << "Emitting bit tests\n";
2175 int64_t lowBound = 0;
2176
2177 // Optimize the case where all the case values fit in a
2178 // word without having to subtract minValue. In this case,
2179 // we can optimize away the subtraction.
2180 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002181 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002182 range = cast<ConstantInt>(maxValue)->getSExtValue();
2183 } else {
2184 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2185 }
2186
2187 CaseBitsVector CasesBits;
2188 unsigned i, count = 0;
2189
2190 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2191 MachineBasicBlock* Dest = I->BB;
2192 for (i = 0; i < count; ++i)
2193 if (Dest == CasesBits[i].BB)
2194 break;
2195
2196 if (i == count) {
2197 assert((count < 3) && "Too much destinations to test!");
2198 CasesBits.push_back(CaseBits(0, Dest, 0));
2199 count++;
2200 }
2201
2202 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2203 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2204
2205 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002206 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002207 CasesBits[i].Bits++;
2208 }
2209
2210 }
2211 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2212
2213 SelectionDAGISel::BitTestInfo BTC;
2214
2215 // Figure out which block is immediately after the current one.
2216 MachineFunction::iterator BBI = CR.CaseBB;
2217 ++BBI;
2218
2219 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2220
2221 DOUT << "Cases:\n";
2222 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2223 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2224 << ", BB: " << CasesBits[i].BB << "\n";
2225
Dan Gohman0e5f1302008-07-07 23:02:41 +00002226 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2227 CurMF->insert(BBI, CaseBB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002228 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2229 CaseBB,
2230 CasesBits[i].BB));
2231 }
2232
2233 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohenefc36622007-04-09 14:32:59 +00002234 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002235 CR.CaseBB, Default, BTC);
2236
2237 if (CR.CaseBB == CurMBB)
2238 visitBitTestHeader(BTB);
2239
2240 BitTestCases.push_back(BTB);
2241
2242 return true;
2243}
2244
2245
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002246/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002247unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2248 const SwitchInst& SI) {
2249 unsigned numCmps = 0;
2250
2251 // Start with "simple" cases
2252 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2253 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2254 Cases.push_back(Case(SI.getSuccessorValue(i),
2255 SI.getSuccessorValue(i),
2256 SMBB));
2257 }
Chris Lattnerb3d9cdb2007-11-27 06:14:32 +00002258 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002259
2260 // Merge case into clusters
2261 if (Cases.size()>=2)
David Greenea2a48852007-06-29 03:42:23 +00002262 // Must recompute end() each iteration because it may be
2263 // invalidated by erase if we hold on to it
Chris Lattner27a6c732007-11-24 07:07:01 +00002264 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002265 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2266 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2267 MachineBasicBlock* nextBB = J->BB;
2268 MachineBasicBlock* currentBB = I->BB;
2269
2270 // If the two neighboring cases go to the same destination, merge them
2271 // into a single case.
2272 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2273 I->High = J->High;
2274 J = Cases.erase(J);
2275 } else {
2276 I = J++;
2277 }
2278 }
2279
2280 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2281 if (I->Low != I->High)
2282 // A range counts double, since it requires two compares.
2283 ++numCmps;
2284 }
2285
2286 return numCmps;
2287}
2288
2289void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002290 // Figure out which block is immediately after the current one.
2291 MachineBasicBlock *NextBlock = 0;
2292 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002293
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002294 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002295
Nate Begemanf15485a2006-03-27 01:32:24 +00002296 // If there is only the default destination, branch to it if it is not the
2297 // next basic block. Otherwise, just fall through.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002298 if (SI.getNumOperands() == 2) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002299 // Update machine-CFG edges.
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002300
Nate Begemanf15485a2006-03-27 01:32:24 +00002301 // If this is not a fall-through branch, emit the branch.
Owen Anderson2d389e82008-06-07 00:00:23 +00002302 CurMBB->addSuccessor(Default);
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002303 if (Default != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002304 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002305 DAG.getBasicBlock(Default)));
Owen Anderson2d389e82008-06-07 00:00:23 +00002306
Nate Begemanf15485a2006-03-27 01:32:24 +00002307 return;
2308 }
2309
2310 // If there are any non-default case statements, create a vector of Cases
2311 // representing each one, and sort the vector so that we can efficiently
2312 // create a binary search tree from them.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002313 CaseVector Cases;
2314 unsigned numCmps = Clusterify(Cases, SI);
2315 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2316 << ". Total compares: " << numCmps << "\n";
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002317
Nate Begemanf15485a2006-03-27 01:32:24 +00002318 // Get the Value to be switched on and default basic blocks, which will be
2319 // inserted into CaseBlock records, representing basic blocks in the binary
2320 // search tree.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002321 Value *SV = SI.getOperand(0);
Nate Begeman37efe672006-04-22 18:53:45 +00002322
Nate Begemanf15485a2006-03-27 01:32:24 +00002323 // Push the initial CaseRec onto the worklist
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002324 CaseRecVector WorkList;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002325 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2326
2327 while (!WorkList.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002328 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002329 CaseRec CR = WorkList.back();
2330 WorkList.pop_back();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002331
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002332 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2333 continue;
2334
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002335 // If the range has few cases (two or less) emit a series of specific
2336 // tests.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002337 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2338 continue;
2339
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002340 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002341 // target supports indirect branches, then emit a jump table rather than
2342 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002343 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2344 continue;
2345
2346 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2347 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2348 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemanf15485a2006-03-27 01:32:24 +00002349 }
2350}
2351
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002352
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002353void SelectionDAGLowering::visitSub(User &I) {
2354 // -0.0 - X --> fneg
Reid Spencer24d6da52007-01-21 00:29:26 +00002355 const Type *Ty = I.getType();
Reid Spencer9d6565a2007-02-15 02:26:10 +00002356 if (isa<VectorType>(Ty)) {
Dan Gohman7f321562007-06-25 16:23:39 +00002357 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2358 const VectorType *DestTy = cast<VectorType>(I.getType());
2359 const Type *ElTy = DestTy->getElementType();
Evan Chengc45453f2007-06-29 21:44:35 +00002360 if (ElTy->isFloatingPoint()) {
2361 unsigned VL = DestTy->getNumElements();
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002362 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Evan Chengc45453f2007-06-29 21:44:35 +00002363 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2364 if (CV == CNZ) {
2365 SDOperand Op2 = getValue(I.getOperand(1));
2366 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2367 return;
2368 }
Dan Gohman7f321562007-06-25 16:23:39 +00002369 }
2370 }
2371 }
2372 if (Ty->isFloatingPoint()) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002373 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002374 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002375 SDOperand Op2 = getValue(I.getOperand(1));
2376 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2377 return;
2378 }
Dan Gohman7f321562007-06-25 16:23:39 +00002379 }
2380
2381 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002382}
2383
Dan Gohman7f321562007-06-25 16:23:39 +00002384void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00002385 SDOperand Op1 = getValue(I.getOperand(0));
2386 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer24d6da52007-01-21 00:29:26 +00002387
2388 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer1628cec2006-10-26 06:15:43 +00002389}
2390
Nate Begemane21ea612005-11-18 07:42:56 +00002391void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2392 SDOperand Op1 = getValue(I.getOperand(0));
2393 SDOperand Op2 = getValue(I.getOperand(1));
2394
Duncan Sands8e4eb092008-06-08 20:54:56 +00002395 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002396 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002397 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002398 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
Nate Begemane21ea612005-11-18 07:42:56 +00002399
Chris Lattner1c08c712005-01-07 07:47:53 +00002400 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2401}
2402
Reid Spencer45fb3f32006-11-20 01:22:35 +00002403void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002404 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2405 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2406 predicate = IC->getPredicate();
2407 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2408 predicate = ICmpInst::Predicate(IC->getPredicate());
2409 SDOperand Op1 = getValue(I.getOperand(0));
2410 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer45fb3f32006-11-20 01:22:35 +00002411 ISD::CondCode Opcode;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002412 switch (predicate) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002413 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2414 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2415 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2416 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2417 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2418 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2419 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2420 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2421 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2422 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2423 default:
2424 assert(!"Invalid ICmp predicate value");
2425 Opcode = ISD::SETEQ;
2426 break;
2427 }
2428 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2429}
2430
2431void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002432 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2433 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2434 predicate = FC->getPredicate();
2435 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2436 predicate = FCmpInst::Predicate(FC->getPredicate());
Chris Lattner1c08c712005-01-07 07:47:53 +00002437 SDOperand Op1 = getValue(I.getOperand(0));
2438 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002439 ISD::CondCode Condition, FOC, FPC;
2440 switch (predicate) {
2441 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2442 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2443 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2444 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2445 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2446 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2447 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmancba3b442008-05-01 23:40:44 +00002448 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2449 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002450 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2451 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2452 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2453 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2454 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2455 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2456 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2457 default:
2458 assert(!"Invalid FCmp predicate value");
2459 FOC = FPC = ISD::SETFALSE;
2460 break;
2461 }
2462 if (FiniteOnlyFPMath())
2463 Condition = FOC;
2464 else
2465 Condition = FPC;
2466 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner1c08c712005-01-07 07:47:53 +00002467}
2468
Nate Begemanb43e9c12008-05-12 19:40:03 +00002469void SelectionDAGLowering::visitVICmp(User &I) {
2470 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2471 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2472 predicate = IC->getPredicate();
2473 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2474 predicate = ICmpInst::Predicate(IC->getPredicate());
2475 SDOperand Op1 = getValue(I.getOperand(0));
2476 SDOperand Op2 = getValue(I.getOperand(1));
2477 ISD::CondCode Opcode;
2478 switch (predicate) {
2479 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2480 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2481 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2482 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2483 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2484 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2485 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2486 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2487 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2488 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2489 default:
2490 assert(!"Invalid ICmp predicate value");
2491 Opcode = ISD::SETEQ;
2492 break;
2493 }
2494 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2495}
2496
2497void SelectionDAGLowering::visitVFCmp(User &I) {
2498 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2499 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2500 predicate = FC->getPredicate();
2501 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2502 predicate = FCmpInst::Predicate(FC->getPredicate());
2503 SDOperand Op1 = getValue(I.getOperand(0));
2504 SDOperand Op2 = getValue(I.getOperand(1));
2505 ISD::CondCode Condition, FOC, FPC;
2506 switch (predicate) {
2507 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2508 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2509 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2510 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2511 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2512 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2513 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2514 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2515 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2516 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2517 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2518 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2519 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2520 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2521 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2522 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2523 default:
2524 assert(!"Invalid VFCmp predicate value");
2525 FOC = FPC = ISD::SETFALSE;
2526 break;
2527 }
2528 if (FiniteOnlyFPMath())
2529 Condition = FOC;
2530 else
2531 Condition = FPC;
2532
Duncan Sands83ec4b62008-06-06 12:08:01 +00002533 MVT DestVT = TLI.getValueType(I.getType());
Nate Begemanb43e9c12008-05-12 19:40:03 +00002534
2535 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2536}
2537
Chris Lattner1c08c712005-01-07 07:47:53 +00002538void SelectionDAGLowering::visitSelect(User &I) {
2539 SDOperand Cond = getValue(I.getOperand(0));
2540 SDOperand TrueVal = getValue(I.getOperand(1));
2541 SDOperand FalseVal = getValue(I.getOperand(2));
Dan Gohman7f321562007-06-25 16:23:39 +00002542 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2543 TrueVal, FalseVal));
Chris Lattner1c08c712005-01-07 07:47:53 +00002544}
2545
Reid Spencer3da59db2006-11-27 01:05:10 +00002546
2547void SelectionDAGLowering::visitTrunc(User &I) {
2548 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2549 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002550 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002551 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2552}
2553
2554void SelectionDAGLowering::visitZExt(User &I) {
2555 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2556 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2557 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002558 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002559 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2560}
2561
2562void SelectionDAGLowering::visitSExt(User &I) {
2563 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2564 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2565 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002566 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002567 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2568}
2569
2570void SelectionDAGLowering::visitFPTrunc(User &I) {
2571 // FPTrunc is never a no-op cast, no need to check
2572 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002573 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner0bd48932008-01-17 07:00:52 +00002574 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Reid Spencer3da59db2006-11-27 01:05:10 +00002575}
2576
2577void SelectionDAGLowering::visitFPExt(User &I){
2578 // FPTrunc is never a no-op cast, no need to check
2579 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002580 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002581 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2582}
2583
2584void SelectionDAGLowering::visitFPToUI(User &I) {
2585 // FPToUI is never a no-op cast, no need to check
2586 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002587 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002588 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2589}
2590
2591void SelectionDAGLowering::visitFPToSI(User &I) {
2592 // FPToSI is never a no-op cast, no need to check
2593 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002594 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002595 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2596}
2597
2598void SelectionDAGLowering::visitUIToFP(User &I) {
2599 // UIToFP is never a no-op cast, no need to check
2600 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002601 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002602 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2603}
2604
2605void SelectionDAGLowering::visitSIToFP(User &I){
2606 // UIToFP is never a no-op cast, no need to check
2607 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002608 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002609 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2610}
2611
2612void SelectionDAGLowering::visitPtrToInt(User &I) {
2613 // What to do depends on the size of the integer and the size of the pointer.
2614 // We can either truncate, zero extend, or no-op, accordingly.
Chris Lattner1c08c712005-01-07 07:47:53 +00002615 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002616 MVT SrcVT = N.getValueType();
2617 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002618 SDOperand Result;
Duncan Sands8e4eb092008-06-08 20:54:56 +00002619 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002620 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2621 else
2622 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2623 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2624 setValue(&I, Result);
2625}
Chris Lattner1c08c712005-01-07 07:47:53 +00002626
Reid Spencer3da59db2006-11-27 01:05:10 +00002627void SelectionDAGLowering::visitIntToPtr(User &I) {
2628 // What to do depends on the size of the integer and the size of the pointer.
2629 // We can either truncate, zero extend, or no-op, accordingly.
2630 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002631 MVT SrcVT = N.getValueType();
2632 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sands8e4eb092008-06-08 20:54:56 +00002633 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002634 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2635 else
2636 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2637 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2638}
2639
2640void SelectionDAGLowering::visitBitCast(User &I) {
2641 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002642 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002643
2644 // BitCast assures us that source and destination are the same size so this
2645 // is either a BIT_CONVERT or a no-op.
2646 if (DestVT != N.getValueType())
2647 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2648 else
2649 setValue(&I, N); // noop cast.
Chris Lattner1c08c712005-01-07 07:47:53 +00002650}
2651
Chris Lattner2bbd8102006-03-29 00:11:43 +00002652void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00002653 SDOperand InVec = getValue(I.getOperand(0));
2654 SDOperand InVal = getValue(I.getOperand(1));
2655 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2656 getValue(I.getOperand(2)));
2657
Dan Gohman7f321562007-06-25 16:23:39 +00002658 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2659 TLI.getValueType(I.getType()),
2660 InVec, InVal, InIdx));
Chris Lattnerc7029802006-03-18 01:44:44 +00002661}
2662
Chris Lattner2bbd8102006-03-29 00:11:43 +00002663void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00002664 SDOperand InVec = getValue(I.getOperand(0));
2665 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2666 getValue(I.getOperand(1)));
Dan Gohman7f321562007-06-25 16:23:39 +00002667 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner384504c2006-03-21 20:44:12 +00002668 TLI.getValueType(I.getType()), InVec, InIdx));
2669}
Chris Lattnerc7029802006-03-18 01:44:44 +00002670
Chris Lattner3e104b12006-04-08 04:15:24 +00002671void SelectionDAGLowering::visitShuffleVector(User &I) {
2672 SDOperand V1 = getValue(I.getOperand(0));
2673 SDOperand V2 = getValue(I.getOperand(1));
2674 SDOperand Mask = getValue(I.getOperand(2));
2675
Dan Gohman7f321562007-06-25 16:23:39 +00002676 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2677 TLI.getValueType(I.getType()),
2678 V1, V2, Mask));
Chris Lattner3e104b12006-04-08 04:15:24 +00002679}
2680
Dan Gohman1d685a42008-06-07 02:02:36 +00002681void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2682 const Value *Op0 = I.getOperand(0);
2683 const Value *Op1 = I.getOperand(1);
2684 const Type *AggTy = I.getType();
2685 const Type *ValTy = Op1->getType();
2686 bool IntoUndef = isa<UndefValue>(Op0);
2687 bool FromUndef = isa<UndefValue>(Op1);
2688
2689 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2690 I.idx_begin(), I.idx_end());
2691
2692 SmallVector<MVT, 4> AggValueVTs;
2693 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2694 SmallVector<MVT, 4> ValValueVTs;
2695 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2696
2697 unsigned NumAggValues = AggValueVTs.size();
2698 unsigned NumValValues = ValValueVTs.size();
2699 SmallVector<SDOperand, 4> Values(NumAggValues);
2700
2701 SDOperand Agg = getValue(Op0);
2702 SDOperand Val = getValue(Op1);
2703 unsigned i = 0;
2704 // Copy the beginning value(s) from the original aggregate.
2705 for (; i != LinearIndex; ++i)
2706 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2707 SDOperand(Agg.Val, Agg.ResNo + i);
2708 // Copy values from the inserted value(s).
2709 for (; i != LinearIndex + NumValValues; ++i)
2710 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2711 SDOperand(Val.Val, Val.ResNo + i - LinearIndex);
2712 // Copy remaining value(s) from the original aggregate.
2713 for (; i != NumAggValues; ++i)
2714 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2715 SDOperand(Agg.Val, Agg.ResNo + i);
2716
Duncan Sandsf9516202008-06-30 10:19:09 +00002717 setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2718 &Values[0], NumAggValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002719}
2720
Dan Gohman1d685a42008-06-07 02:02:36 +00002721void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2722 const Value *Op0 = I.getOperand(0);
2723 const Type *AggTy = Op0->getType();
2724 const Type *ValTy = I.getType();
2725 bool OutOfUndef = isa<UndefValue>(Op0);
2726
2727 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2728 I.idx_begin(), I.idx_end());
2729
2730 SmallVector<MVT, 4> ValValueVTs;
2731 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2732
2733 unsigned NumValValues = ValValueVTs.size();
2734 SmallVector<SDOperand, 4> Values(NumValValues);
2735
2736 SDOperand Agg = getValue(Op0);
2737 // Copy out the selected value(s).
2738 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2739 Values[i - LinearIndex] =
Dan Gohmandded0fd2008-06-20 00:54:19 +00002740 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
2741 SDOperand(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002742
Duncan Sandsf9516202008-06-30 10:19:09 +00002743 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2744 &Values[0], NumValValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002745}
2746
Chris Lattner3e104b12006-04-08 04:15:24 +00002747
Chris Lattner1c08c712005-01-07 07:47:53 +00002748void SelectionDAGLowering::visitGetElementPtr(User &I) {
2749 SDOperand N = getValue(I.getOperand(0));
2750 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00002751
2752 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2753 OI != E; ++OI) {
2754 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002755 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002756 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner1c08c712005-01-07 07:47:53 +00002757 if (Field) {
2758 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +00002759 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner1c08c712005-01-07 07:47:53 +00002760 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner0bd48932008-01-17 07:00:52 +00002761 DAG.getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00002762 }
2763 Ty = StTy->getElementType(Field);
2764 } else {
2765 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00002766
Chris Lattner7c0104b2005-11-09 04:45:33 +00002767 // If this is a constant subscript, handle it quickly.
2768 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002769 if (CI->getZExtValue() == 0) continue;
Reid Spencer47857812006-12-31 05:55:36 +00002770 uint64_t Offs =
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002771 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00002772 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2773 DAG.getIntPtrConstant(Offs));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002774 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00002775 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00002776
2777 // N = N + Idx * ElementSize;
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002778 uint64_t ElementSize = TD->getABITypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002779 SDOperand IdxN = getValue(Idx);
2780
2781 // If the index is smaller or larger than intptr_t, truncate or extend
2782 // it.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002783 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +00002784 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002785 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Chris Lattner7c0104b2005-11-09 04:45:33 +00002786 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2787
2788 // If this is a multiply by a power of two, turn it into a shl
2789 // immediately. This is a very common case.
2790 if (isPowerOf2_64(ElementSize)) {
2791 unsigned Amt = Log2_64(ElementSize);
2792 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00002793 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002794 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2795 continue;
2796 }
2797
Chris Lattner0bd48932008-01-17 07:00:52 +00002798 SDOperand Scale = DAG.getIntPtrConstant(ElementSize);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002799 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2800 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00002801 }
2802 }
2803 setValue(&I, N);
2804}
2805
2806void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2807 // If this is a fixed sized alloca in the entry block of the function,
2808 // allocate it statically on the stack.
2809 if (FuncInfo.StaticAllocaMap.count(&I))
2810 return; // getValue will auto-populate this.
2811
2812 const Type *Ty = I.getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +00002813 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00002814 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00002815 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner58092e32007-01-20 22:35:55 +00002816 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00002817
2818 SDOperand AllocSize = getValue(I.getArraySize());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002819 MVT IntPtr = TLI.getPointerTy();
Duncan Sands8e4eb092008-06-08 20:54:56 +00002820 if (IntPtr.bitsLT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002821 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002822 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002823 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00002824
Chris Lattner68cd65e2005-01-22 23:04:37 +00002825 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002826 DAG.getIntPtrConstant(TySize));
Chris Lattner1c08c712005-01-07 07:47:53 +00002827
Evan Cheng45157792007-08-16 23:46:29 +00002828 // Handle alignment. If the requested alignment is less than or equal to
2829 // the stack alignment, ignore it. If the size is greater than or equal to
2830 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner1c08c712005-01-07 07:47:53 +00002831 unsigned StackAlign =
2832 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng45157792007-08-16 23:46:29 +00002833 if (Align <= StackAlign)
Chris Lattner1c08c712005-01-07 07:47:53 +00002834 Align = 0;
Evan Cheng45157792007-08-16 23:46:29 +00002835
2836 // Round the size of the allocation up to the stack alignment size
2837 // by add SA-1 to the size.
2838 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002839 DAG.getIntPtrConstant(StackAlign-1));
Evan Cheng45157792007-08-16 23:46:29 +00002840 // Mask out the low bits for alignment purposes.
2841 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002842 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner1c08c712005-01-07 07:47:53 +00002843
Chris Lattner0bd48932008-01-17 07:00:52 +00002844 SDOperand Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands83ec4b62008-06-06 12:08:01 +00002845 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002846 MVT::Other);
2847 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner0da331f2007-02-04 01:31:47 +00002848 setValue(&I, DSA);
2849 DAG.setRoot(DSA.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002850
2851 // Inform the Frame Information that we have just allocated a variable-sized
2852 // object.
2853 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2854}
2855
Chris Lattner1c08c712005-01-07 07:47:53 +00002856void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002857 const Value *SV = I.getOperand(0);
2858 SDOperand Ptr = getValue(SV);
2859
2860 const Type *Ty = I.getType();
2861 bool isVolatile = I.isVolatile();
2862 unsigned Alignment = I.getAlignment();
2863
2864 SmallVector<MVT, 4> ValueVTs;
2865 SmallVector<uint64_t, 4> Offsets;
2866 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2867 unsigned NumValues = ValueVTs.size();
2868 if (NumValues == 0)
2869 return;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002870
Chris Lattnerd3948112005-01-17 22:19:26 +00002871 SDOperand Root;
2872 if (I.isVolatile())
2873 Root = getRoot();
2874 else {
2875 // Do not serialize non-volatile loads against each other.
2876 Root = DAG.getRoot();
2877 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002878
Dan Gohman1d685a42008-06-07 02:02:36 +00002879 SmallVector<SDOperand, 4> Values(NumValues);
2880 SmallVector<SDOperand, 4> Chains(NumValues);
2881 MVT PtrVT = Ptr.getValueType();
2882 for (unsigned i = 0; i != NumValues; ++i) {
2883 SDOperand L = DAG.getLoad(ValueVTs[i], Root,
2884 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2885 DAG.getConstant(Offsets[i], PtrVT)),
2886 SV, Offsets[i],
2887 isVolatile, Alignment);
2888 Values[i] = L;
2889 Chains[i] = L.getValue(1);
2890 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002891
Dan Gohman1d685a42008-06-07 02:02:36 +00002892 SDOperand Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2893 &Chains[0], NumValues);
2894 if (isVolatile)
2895 DAG.setRoot(Chain);
2896 else
2897 PendingLoads.push_back(Chain);
2898
Duncan Sandsf9516202008-06-30 10:19:09 +00002899 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2900 &Values[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002901}
2902
2903
2904void SelectionDAGLowering::visitStore(StoreInst &I) {
2905 Value *SrcV = I.getOperand(0);
2906 SDOperand Src = getValue(SrcV);
Dan Gohman1d685a42008-06-07 02:02:36 +00002907 Value *PtrV = I.getOperand(1);
2908 SDOperand Ptr = getValue(PtrV);
2909
2910 SmallVector<MVT, 4> ValueVTs;
2911 SmallVector<uint64_t, 4> Offsets;
2912 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2913 unsigned NumValues = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002914 if (NumValues == 0)
2915 return;
Dan Gohman1d685a42008-06-07 02:02:36 +00002916
2917 SDOperand Root = getRoot();
2918 SmallVector<SDOperand, 4> Chains(NumValues);
2919 MVT PtrVT = Ptr.getValueType();
2920 bool isVolatile = I.isVolatile();
2921 unsigned Alignment = I.getAlignment();
2922 for (unsigned i = 0; i != NumValues; ++i)
2923 Chains[i] = DAG.getStore(Root, SDOperand(Src.Val, Src.ResNo + i),
2924 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2925 DAG.getConstant(Offsets[i], PtrVT)),
2926 PtrV, Offsets[i],
2927 isVolatile, Alignment);
2928
2929 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002930}
2931
Chris Lattner0eade312006-03-24 02:22:33 +00002932/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2933/// node.
2934void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2935 unsigned Intrinsic) {
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002936 bool HasChain = !I.doesNotAccessMemory();
2937 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2938
Chris Lattner0eade312006-03-24 02:22:33 +00002939 // Build the operand list.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002940 SmallVector<SDOperand, 8> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00002941 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2942 if (OnlyLoad) {
2943 // We don't need to serialize loads against other loads.
2944 Ops.push_back(DAG.getRoot());
2945 } else {
2946 Ops.push_back(getRoot());
2947 }
2948 }
Chris Lattner0eade312006-03-24 02:22:33 +00002949
2950 // Add the intrinsic ID as an integer operand.
2951 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2952
2953 // Add all operands of the call to the operand list.
2954 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2955 SDOperand Op = getValue(I.getOperand(i));
Chris Lattner0eade312006-03-24 02:22:33 +00002956 assert(TLI.isTypeLegal(Op.getValueType()) &&
2957 "Intrinsic uses a non-legal type?");
2958 Ops.push_back(Op);
2959 }
2960
Duncan Sands83ec4b62008-06-06 12:08:01 +00002961 std::vector<MVT> VTs;
Chris Lattner0eade312006-03-24 02:22:33 +00002962 if (I.getType() != Type::VoidTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002963 MVT VT = TLI.getValueType(I.getType());
2964 if (VT.isVector()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002965 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002966 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Chris Lattner0eade312006-03-24 02:22:33 +00002967
Duncan Sands83ec4b62008-06-06 12:08:01 +00002968 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Chris Lattner0eade312006-03-24 02:22:33 +00002969 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2970 }
2971
2972 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2973 VTs.push_back(VT);
2974 }
2975 if (HasChain)
2976 VTs.push_back(MVT::Other);
2977
Duncan Sands83ec4b62008-06-06 12:08:01 +00002978 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002979
Chris Lattner0eade312006-03-24 02:22:33 +00002980 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00002981 SDOperand Result;
2982 if (!HasChain)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002983 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2984 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002985 else if (I.getType() != Type::VoidTy)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002986 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2987 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002988 else
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002989 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
2990 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002991
Chris Lattnere58a7802006-04-02 03:41:14 +00002992 if (HasChain) {
2993 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
2994 if (OnlyLoad)
2995 PendingLoads.push_back(Chain);
2996 else
2997 DAG.setRoot(Chain);
2998 }
Chris Lattner0eade312006-03-24 02:22:33 +00002999 if (I.getType() != Type::VoidTy) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003000 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003001 MVT VT = TLI.getValueType(PTy);
Dan Gohman7f321562007-06-25 16:23:39 +00003002 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattner0eade312006-03-24 02:22:33 +00003003 }
3004 setValue(&I, Result);
3005 }
3006}
3007
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003008/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003009static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003010 V = V->stripPointerCasts();
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003011 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003012 assert ((GV || isa<ConstantPointerNull>(V)) &&
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003013 "TypeInfo must be a global variable or NULL");
3014 return GV;
3015}
3016
Duncan Sandsf4070822007-06-15 19:04:19 +00003017/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003018/// call, and add them to the specified machine basic block.
Duncan Sandsf4070822007-06-15 19:04:19 +00003019static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3020 MachineBasicBlock *MBB) {
3021 // Inform the MachineModuleInfo of the personality for this landing pad.
3022 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3023 assert(CE->getOpcode() == Instruction::BitCast &&
3024 isa<Function>(CE->getOperand(0)) &&
3025 "Personality should be a function");
3026 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3027
3028 // Gather all the type infos for this landing pad and pass them along to
3029 // MachineModuleInfo.
3030 std::vector<GlobalVariable *> TyInfo;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003031 unsigned N = I.getNumOperands();
3032
3033 for (unsigned i = N - 1; i > 2; --i) {
3034 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3035 unsigned FilterLength = CI->getZExtValue();
Duncan Sands6590b042007-08-27 15:47:50 +00003036 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003037 assert (FirstCatch <= N && "Invalid filter length");
3038
3039 if (FirstCatch < N) {
3040 TyInfo.reserve(N - FirstCatch);
3041 for (unsigned j = FirstCatch; j < N; ++j)
3042 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3043 MMI->addCatchTypeInfo(MBB, TyInfo);
3044 TyInfo.clear();
3045 }
3046
Duncan Sands6590b042007-08-27 15:47:50 +00003047 if (!FilterLength) {
3048 // Cleanup.
3049 MMI->addCleanup(MBB);
3050 } else {
3051 // Filter.
3052 TyInfo.reserve(FilterLength - 1);
3053 for (unsigned j = i + 1; j < FirstCatch; ++j)
3054 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3055 MMI->addFilterTypeInfo(MBB, TyInfo);
3056 TyInfo.clear();
3057 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003058
3059 N = i;
3060 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003061 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003062
3063 if (N > 3) {
3064 TyInfo.reserve(N - 3);
3065 for (unsigned j = 3; j < N; ++j)
3066 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sandsf4070822007-06-15 19:04:19 +00003067 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003068 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003069}
3070
Mon P Wang63307c32008-05-05 19:05:59 +00003071
3072/// Inlined utility function to implement binary input atomic intrinsics for
3073// visitIntrinsicCall: I is a call instruction
3074// Op is the associated NodeType for I
3075const char *
3076SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
3077 SDOperand Root = getRoot();
Mon P Wang63307c32008-05-05 19:05:59 +00003078 SDOperand L = DAG.getAtomic(Op, Root,
3079 getValue(I.getOperand(1)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003080 getValue(I.getOperand(2)),
Mon P Wang28873102008-06-25 08:15:39 +00003081 I.getOperand(1));
Mon P Wang63307c32008-05-05 19:05:59 +00003082 setValue(&I, L);
3083 DAG.setRoot(L.getValue(1));
3084 return 0;
3085}
3086
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003087/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3088/// we want to emit this as a call to a named external function, return the name
3089/// otherwise lower it and return null.
3090const char *
3091SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3092 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00003093 default:
3094 // By default, turn this into a target intrinsic node.
3095 visitTargetIntrinsic(I, Intrinsic);
3096 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003097 case Intrinsic::vastart: visitVAStart(I); return 0;
3098 case Intrinsic::vaend: visitVAEnd(I); return 0;
3099 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemanbcc5f362007-01-29 22:58:52 +00003100 case Intrinsic::returnaddress:
3101 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3102 getValue(I.getOperand(1))));
3103 return 0;
3104 case Intrinsic::frameaddress:
3105 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3106 getValue(I.getOperand(1))));
3107 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003108 case Intrinsic::setjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003109 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003110 break;
3111 case Intrinsic::longjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003112 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003113 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00003114 case Intrinsic::memcpy_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003115 case Intrinsic::memcpy_i64: {
3116 SDOperand Op1 = getValue(I.getOperand(1));
3117 SDOperand Op2 = getValue(I.getOperand(2));
3118 SDOperand Op3 = getValue(I.getOperand(3));
3119 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3120 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3121 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003122 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003123 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003124 case Intrinsic::memset_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003125 case Intrinsic::memset_i64: {
3126 SDOperand Op1 = getValue(I.getOperand(1));
3127 SDOperand Op2 = getValue(I.getOperand(2));
3128 SDOperand Op3 = getValue(I.getOperand(3));
3129 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3130 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3131 I.getOperand(1), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003132 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003133 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003134 case Intrinsic::memmove_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003135 case Intrinsic::memmove_i64: {
3136 SDOperand Op1 = getValue(I.getOperand(1));
3137 SDOperand Op2 = getValue(I.getOperand(2));
3138 SDOperand Op3 = getValue(I.getOperand(3));
3139 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3140
3141 // If the source and destination are known to not be aliases, we can
3142 // lower memmove as memcpy.
3143 uint64_t Size = -1ULL;
3144 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3145 Size = C->getValue();
3146 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3147 AliasAnalysis::NoAlias) {
3148 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3149 I.getOperand(1), 0, I.getOperand(2), 0));
3150 return 0;
3151 }
3152
3153 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3154 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003155 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003156 }
Chris Lattner86cb6432005-12-13 17:40:33 +00003157 case Intrinsic::dbg_stoppoint: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003158 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003159 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003160 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003161 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00003162 assert(DD && "Not a debug information descriptor");
Dan Gohman7f460202008-06-30 20:59:49 +00003163 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3164 SPI.getLine(),
3165 SPI.getColumn(),
3166 cast<CompileUnitDesc>(DD)));
Chris Lattner86cb6432005-12-13 17:40:33 +00003167 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003168
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003169 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00003170 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003171 case Intrinsic::dbg_region_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003172 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003173 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003174 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3175 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003176 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003177 }
3178
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003179 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003180 }
3181 case Intrinsic::dbg_region_end: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003182 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003183 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003184 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3185 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003186 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003187 }
3188
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003189 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003190 }
3191 case Intrinsic::dbg_func_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003192 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003193 if (!MMI) return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003194 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003195 Value *SP = FSI.getSubprogram();
3196 if (SP && MMI->Verify(SP)) {
3197 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3198 // what (most?) gdb expects.
3199 DebugInfoDesc *DD = MMI->getDescFor(SP);
3200 assert(DD && "Not a debug information descriptor");
3201 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3202 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
Dan Gohman99fe47b2008-06-30 22:21:03 +00003203 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003204 // Record the source line but does create a label. It will be emitted
3205 // at asm emission time.
3206 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Jim Laskey43970fe2006-03-23 18:06:46 +00003207 }
3208
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003209 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003210 }
3211 case Intrinsic::dbg_declare: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003212 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003213 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Chenga844bde2008-02-02 04:07:54 +00003214 Value *Variable = DI.getVariable();
3215 if (MMI && Variable && MMI->Verify(Variable))
3216 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3217 getValue(DI.getAddress()), getValue(Variable)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003218 return 0;
3219 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003220
Jim Laskeyb180aa12007-02-21 22:53:45 +00003221 case Intrinsic::eh_exception: {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003222 if (!CurMBB->isLandingPad()) {
3223 // FIXME: Mark exception register as live in. Hack for PR1508.
3224 unsigned Reg = TLI.getExceptionAddressRegister();
3225 if (Reg) CurMBB->addLiveIn(Reg);
Jim Laskey735b6f82007-02-22 15:38:06 +00003226 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003227 // Insert the EXCEPTIONADDR instruction.
3228 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3229 SDOperand Ops[1];
3230 Ops[0] = DAG.getRoot();
3231 SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
3232 setValue(&I, Op);
3233 DAG.setRoot(Op.getValue(1));
Jim Laskeyb180aa12007-02-21 22:53:45 +00003234 return 0;
3235 }
3236
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003237 case Intrinsic::eh_selector_i32:
3238 case Intrinsic::eh_selector_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003239 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003240 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003241 MVT::i32 : MVT::i64);
3242
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003243 if (MMI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00003244 if (CurMBB->isLandingPad())
3245 addCatchInfo(I, MMI, CurMBB);
Evan Chenge47c3332007-06-27 18:45:32 +00003246 else {
Duncan Sandsf4070822007-06-15 19:04:19 +00003247#ifndef NDEBUG
Duncan Sandsf4070822007-06-15 19:04:19 +00003248 FuncInfo.CatchInfoLost.insert(&I);
3249#endif
Duncan Sands90291952007-07-06 09:18:59 +00003250 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3251 unsigned Reg = TLI.getExceptionSelectorRegister();
3252 if (Reg) CurMBB->addLiveIn(Reg);
Evan Chenge47c3332007-06-27 18:45:32 +00003253 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003254
3255 // Insert the EHSELECTION instruction.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003256 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Jim Laskey735b6f82007-02-22 15:38:06 +00003257 SDOperand Ops[2];
3258 Ops[0] = getValue(I.getOperand(1));
3259 Ops[1] = getRoot();
3260 SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
3261 setValue(&I, Op);
3262 DAG.setRoot(Op.getValue(1));
Jim Laskey7a1de982007-02-24 09:45:44 +00003263 } else {
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003264 setValue(&I, DAG.getConstant(0, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003265 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003266
3267 return 0;
3268 }
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003269
3270 case Intrinsic::eh_typeid_for_i32:
3271 case Intrinsic::eh_typeid_for_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003272 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003273 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003274 MVT::i32 : MVT::i64);
Jim Laskeyb180aa12007-02-21 22:53:45 +00003275
Jim Laskey735b6f82007-02-22 15:38:06 +00003276 if (MMI) {
3277 // Find the type id for the given typeinfo.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003278 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands3b346362007-05-04 17:12:26 +00003279
Jim Laskey735b6f82007-02-22 15:38:06 +00003280 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003281 setValue(&I, DAG.getConstant(TypeID, VT));
Jim Laskey7a1de982007-02-24 09:45:44 +00003282 } else {
Duncan Sandsf664e412007-07-06 14:46:23 +00003283 // Return something different to eh_selector.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003284 setValue(&I, DAG.getConstant(1, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003285 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003286
3287 return 0;
3288 }
3289
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003290 case Intrinsic::eh_return: {
3291 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3292
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003293 if (MMI) {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003294 MMI->setCallsEHReturn(true);
3295 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3296 MVT::Other,
Dan Gohman86e1ebf2008-03-27 19:56:19 +00003297 getControlRoot(),
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003298 getValue(I.getOperand(1)),
3299 getValue(I.getOperand(2))));
3300 } else {
3301 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3302 }
3303
3304 return 0;
3305 }
3306
3307 case Intrinsic::eh_unwind_init: {
3308 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3309 MMI->setCallsUnwindInit(true);
3310 }
3311
3312 return 0;
3313 }
3314
3315 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003316 MVT VT = getValue(I.getOperand(1)).getValueType();
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003317 SDOperand CfaArg;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003318 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003319 CfaArg = DAG.getNode(ISD::TRUNCATE,
3320 TLI.getPointerTy(), getValue(I.getOperand(1)));
3321 else
3322 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3323 TLI.getPointerTy(), getValue(I.getOperand(1)));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003324
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003325 SDOperand Offset = DAG.getNode(ISD::ADD,
3326 TLI.getPointerTy(),
3327 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3328 TLI.getPointerTy()),
3329 CfaArg);
3330 setValue(&I, DAG.getNode(ISD::ADD,
3331 TLI.getPointerTy(),
3332 DAG.getNode(ISD::FRAMEADDR,
3333 TLI.getPointerTy(),
3334 DAG.getConstant(0,
3335 TLI.getPointerTy())),
3336 Offset));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003337 return 0;
3338 }
3339
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003340 case Intrinsic::sqrt:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003341 setValue(&I, DAG.getNode(ISD::FSQRT,
3342 getValue(I.getOperand(1)).getValueType(),
3343 getValue(I.getOperand(1))));
3344 return 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003345 case Intrinsic::powi:
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003346 setValue(&I, DAG.getNode(ISD::FPOWI,
3347 getValue(I.getOperand(1)).getValueType(),
3348 getValue(I.getOperand(1)),
3349 getValue(I.getOperand(2))));
3350 return 0;
Dan Gohmanac9385a2007-10-12 00:01:22 +00003351 case Intrinsic::sin:
3352 setValue(&I, DAG.getNode(ISD::FSIN,
3353 getValue(I.getOperand(1)).getValueType(),
3354 getValue(I.getOperand(1))));
3355 return 0;
3356 case Intrinsic::cos:
3357 setValue(&I, DAG.getNode(ISD::FCOS,
3358 getValue(I.getOperand(1)).getValueType(),
3359 getValue(I.getOperand(1))));
3360 return 0;
3361 case Intrinsic::pow:
3362 setValue(&I, DAG.getNode(ISD::FPOW,
3363 getValue(I.getOperand(1)).getValueType(),
3364 getValue(I.getOperand(1)),
3365 getValue(I.getOperand(2))));
3366 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003367 case Intrinsic::pcmarker: {
3368 SDOperand Tmp = getValue(I.getOperand(1));
3369 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3370 return 0;
3371 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003372 case Intrinsic::readcyclecounter: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003373 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003374 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
3375 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3376 &Op, 1);
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003377 setValue(&I, Tmp);
3378 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003379 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003380 }
Chris Lattnerc6eb6d72007-04-10 03:20:39 +00003381 case Intrinsic::part_select: {
Reid Spencer3f108cb2007-04-05 01:20:18 +00003382 // Currently not implemented: just abort
Reid Spencerf75b8742007-04-12 02:48:46 +00003383 assert(0 && "part_select intrinsic not implemented");
3384 abort();
3385 }
3386 case Intrinsic::part_set: {
3387 // Currently not implemented: just abort
3388 assert(0 && "part_set intrinsic not implemented");
Reid Spencer3f108cb2007-04-05 01:20:18 +00003389 abort();
Reid Spenceraddd11d2007-04-04 23:48:25 +00003390 }
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003391 case Intrinsic::bswap:
Nate Begemand88fc032006-01-14 03:14:10 +00003392 setValue(&I, DAG.getNode(ISD::BSWAP,
3393 getValue(I.getOperand(1)).getValueType(),
3394 getValue(I.getOperand(1))));
3395 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003396 case Intrinsic::cttz: {
3397 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003398 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003399 SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003400 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003401 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003402 }
3403 case Intrinsic::ctlz: {
3404 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003405 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003406 SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003407 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003408 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003409 }
3410 case Intrinsic::ctpop: {
3411 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003412 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003413 SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003414 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003415 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003416 }
Chris Lattner140d53c2006-01-13 02:50:02 +00003417 case Intrinsic::stacksave: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003418 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003419 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
3420 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattner140d53c2006-01-13 02:50:02 +00003421 setValue(&I, Tmp);
3422 DAG.setRoot(Tmp.getValue(1));
3423 return 0;
3424 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00003425 case Intrinsic::stackrestore: {
3426 SDOperand Tmp = getValue(I.getOperand(1));
3427 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00003428 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00003429 }
Tanya Lattner24e5aad2007-06-15 22:26:58 +00003430 case Intrinsic::var_annotation:
3431 // Discard annotate attributes
3432 return 0;
Duncan Sands36397f52007-07-27 12:58:54 +00003433
Duncan Sands36397f52007-07-27 12:58:54 +00003434 case Intrinsic::init_trampoline: {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003435 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands36397f52007-07-27 12:58:54 +00003436
3437 SDOperand Ops[6];
3438 Ops[0] = getRoot();
3439 Ops[1] = getValue(I.getOperand(1));
3440 Ops[2] = getValue(I.getOperand(2));
3441 Ops[3] = getValue(I.getOperand(3));
3442 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3443 Ops[5] = DAG.getSrcValue(F);
3444
Duncan Sandsf7331b32007-09-11 14:10:23 +00003445 SDOperand Tmp = DAG.getNode(ISD::TRAMPOLINE,
3446 DAG.getNodeValueTypes(TLI.getPointerTy(),
3447 MVT::Other), 2,
3448 Ops, 6);
3449
3450 setValue(&I, Tmp);
3451 DAG.setRoot(Tmp.getValue(1));
Duncan Sands36397f52007-07-27 12:58:54 +00003452 return 0;
3453 }
Gordon Henriksence224772008-01-07 01:30:38 +00003454
3455 case Intrinsic::gcroot:
3456 if (GCI) {
3457 Value *Alloca = I.getOperand(1);
3458 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3459
3460 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3461 GCI->addStackRoot(FI->getIndex(), TypeMap);
3462 }
3463 return 0;
3464
3465 case Intrinsic::gcread:
3466 case Intrinsic::gcwrite:
3467 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3468 return 0;
3469
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003470 case Intrinsic::flt_rounds: {
Dan Gohman1a024862008-01-31 00:41:03 +00003471 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003472 return 0;
3473 }
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003474
3475 case Intrinsic::trap: {
3476 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3477 return 0;
3478 }
Evan Cheng27b7db52008-03-08 00:58:38 +00003479 case Intrinsic::prefetch: {
3480 SDOperand Ops[4];
3481 Ops[0] = getRoot();
3482 Ops[1] = getValue(I.getOperand(1));
3483 Ops[2] = getValue(I.getOperand(2));
3484 Ops[3] = getValue(I.getOperand(3));
3485 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3486 return 0;
3487 }
3488
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003489 case Intrinsic::memory_barrier: {
3490 SDOperand Ops[6];
3491 Ops[0] = getRoot();
3492 for (int x = 1; x < 6; ++x)
3493 Ops[x] = getValue(I.getOperand(x));
3494
3495 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3496 return 0;
3497 }
Mon P Wang28873102008-06-25 08:15:39 +00003498 case Intrinsic::atomic_cmp_swap: {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003499 SDOperand Root = getRoot();
Mon P Wang28873102008-06-25 08:15:39 +00003500 SDOperand L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003501 getValue(I.getOperand(1)),
3502 getValue(I.getOperand(2)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003503 getValue(I.getOperand(3)),
Mon P Wang28873102008-06-25 08:15:39 +00003504 I.getOperand(1));
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003505 setValue(&I, L);
3506 DAG.setRoot(L.getValue(1));
3507 return 0;
3508 }
Mon P Wang28873102008-06-25 08:15:39 +00003509 case Intrinsic::atomic_load_add:
3510 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3511 case Intrinsic::atomic_load_sub:
3512 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang63307c32008-05-05 19:05:59 +00003513 case Intrinsic::atomic_load_and:
3514 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3515 case Intrinsic::atomic_load_or:
3516 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3517 case Intrinsic::atomic_load_xor:
3518 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003519 case Intrinsic::atomic_load_nand:
3520 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang63307c32008-05-05 19:05:59 +00003521 case Intrinsic::atomic_load_min:
3522 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3523 case Intrinsic::atomic_load_max:
3524 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3525 case Intrinsic::atomic_load_umin:
3526 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3527 case Intrinsic::atomic_load_umax:
3528 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3529 case Intrinsic::atomic_swap:
3530 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003531 }
3532}
3533
3534
Duncan Sands6f74b482007-12-19 09:48:52 +00003535void SelectionDAGLowering::LowerCallTo(CallSite CS, SDOperand Callee,
Jim Laskey1da20a72007-02-23 21:45:01 +00003536 bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003537 MachineBasicBlock *LandingPad) {
Duncan Sands6f74b482007-12-19 09:48:52 +00003538 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Jim Laskey735b6f82007-02-22 15:38:06 +00003539 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003540 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3541 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sands6f74b482007-12-19 09:48:52 +00003542
Jim Laskey735b6f82007-02-22 15:38:06 +00003543 TargetLowering::ArgListTy Args;
3544 TargetLowering::ArgListEntry Entry;
Duncan Sands6f74b482007-12-19 09:48:52 +00003545 Args.reserve(CS.arg_size());
3546 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3547 i != e; ++i) {
3548 SDOperand ArgNode = getValue(*i);
3549 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Duncan Sands4fee7032007-05-07 20:49:28 +00003550
Duncan Sands6f74b482007-12-19 09:48:52 +00003551 unsigned attrInd = i - CS.arg_begin() + 1;
3552 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3553 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3554 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3555 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3556 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3557 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen08e78b12008-02-22 17:49:45 +00003558 Entry.Alignment = CS.getParamAlignment(attrInd);
Jim Laskey735b6f82007-02-22 15:38:06 +00003559 Args.push_back(Entry);
3560 }
3561
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003562 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003563 // Insert a label before the invoke call to mark the try range. This can be
3564 // used to detect deletion of the invoke via the MachineModuleInfo.
3565 BeginLabel = MMI->NextLabelID();
Dale Johannesena4091d32008-04-04 23:48:31 +00003566 // Both PendingLoads and PendingExports must be flushed here;
3567 // this call might not return.
3568 (void)getRoot();
Dan Gohman44066042008-07-01 00:05:16 +00003569 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003570 }
Duncan Sands6f74b482007-12-19 09:48:52 +00003571
Jim Laskey735b6f82007-02-22 15:38:06 +00003572 std::pair<SDOperand,SDOperand> Result =
Duncan Sands6f74b482007-12-19 09:48:52 +00003573 TLI.LowerCallTo(getRoot(), CS.getType(),
3574 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sands00fee652008-02-14 17:28:50 +00003575 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sands6f74b482007-12-19 09:48:52 +00003576 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Jim Laskey735b6f82007-02-22 15:38:06 +00003577 Callee, Args, DAG);
Duncan Sands6f74b482007-12-19 09:48:52 +00003578 if (CS.getType() != Type::VoidTy)
3579 setValue(CS.getInstruction(), Result.first);
Jim Laskey735b6f82007-02-22 15:38:06 +00003580 DAG.setRoot(Result.second);
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003581
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003582 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003583 // Insert a label at the end of the invoke call to mark the try range. This
3584 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3585 EndLabel = MMI->NextLabelID();
Dan Gohman44066042008-07-01 00:05:16 +00003586 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003587
Duncan Sands6f74b482007-12-19 09:48:52 +00003588 // Inform MachineModuleInfo of range.
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003589 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3590 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003591}
3592
3593
Chris Lattner1c08c712005-01-07 07:47:53 +00003594void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00003595 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003596 if (Function *F = I.getCalledFunction()) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003597 if (F->isDeclaration()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003598 if (unsigned IID = F->getIntrinsicID()) {
3599 RenameFn = visitIntrinsicCall(I, IID);
3600 if (!RenameFn)
3601 return;
Chris Lattner87b51bc2007-09-10 21:15:22 +00003602 }
3603 }
3604
3605 // Check for well-known libc/libm calls. If the function is internal, it
3606 // can't be a library call.
3607 unsigned NameLen = F->getNameLen();
3608 if (!F->hasInternalLinkage() && NameLen) {
3609 const char *NameStr = F->getNameStart();
3610 if (NameStr[0] == 'c' &&
3611 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3612 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3613 if (I.getNumOperands() == 3 && // Basic sanity checks.
3614 I.getOperand(1)->getType()->isFloatingPoint() &&
3615 I.getType() == I.getOperand(1)->getType() &&
3616 I.getType() == I.getOperand(2)->getType()) {
3617 SDOperand LHS = getValue(I.getOperand(1));
3618 SDOperand RHS = getValue(I.getOperand(2));
3619 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3620 LHS, RHS));
3621 return;
3622 }
3623 } else if (NameStr[0] == 'f' &&
3624 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003625 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3626 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003627 if (I.getNumOperands() == 2 && // Basic sanity checks.
3628 I.getOperand(1)->getType()->isFloatingPoint() &&
3629 I.getType() == I.getOperand(1)->getType()) {
3630 SDOperand Tmp = getValue(I.getOperand(1));
3631 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3632 return;
3633 }
3634 } else if (NameStr[0] == 's' &&
3635 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003636 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3637 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003638 if (I.getNumOperands() == 2 && // Basic sanity checks.
3639 I.getOperand(1)->getType()->isFloatingPoint() &&
3640 I.getType() == I.getOperand(1)->getType()) {
3641 SDOperand Tmp = getValue(I.getOperand(1));
3642 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3643 return;
3644 }
3645 } else if (NameStr[0] == 'c' &&
3646 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003647 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3648 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003649 if (I.getNumOperands() == 2 && // Basic sanity checks.
3650 I.getOperand(1)->getType()->isFloatingPoint() &&
3651 I.getType() == I.getOperand(1)->getType()) {
3652 SDOperand Tmp = getValue(I.getOperand(1));
3653 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3654 return;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003655 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00003656 }
Chris Lattner87b51bc2007-09-10 21:15:22 +00003657 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00003658 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00003659 visitInlineAsm(&I);
Chris Lattnerce7518c2006-01-26 22:24:51 +00003660 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003661 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003662
Chris Lattner64e14b12005-01-08 22:48:57 +00003663 SDOperand Callee;
3664 if (!RenameFn)
3665 Callee = getValue(I.getOperand(0));
3666 else
3667 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003668
Duncan Sands6f74b482007-12-19 09:48:52 +00003669 LowerCallTo(&I, Callee, I.isTailCall());
Chris Lattner1c08c712005-01-07 07:47:53 +00003670}
3671
Jim Laskey735b6f82007-02-22 15:38:06 +00003672
Dan Gohmanef5d1942008-03-11 21:11:25 +00003673void SelectionDAGLowering::visitGetResult(GetResultInst &I) {
Dan Gohman67780f12008-04-23 20:25:16 +00003674 if (isa<UndefValue>(I.getOperand(0))) {
Dan Gohman3dc34f62008-04-23 20:21:29 +00003675 SDOperand Undef = DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()));
3676 setValue(&I, Undef);
Chris Lattner6833b062008-04-28 07:16:35 +00003677 return;
Dan Gohman3dc34f62008-04-23 20:21:29 +00003678 }
Chris Lattner6833b062008-04-28 07:16:35 +00003679
3680 // To add support for individual return values with aggregate types,
3681 // we'd need a way to take a getresult index and determine which
3682 // values of the Call SDNode are associated with it.
3683 assert(TLI.getValueType(I.getType(), true) != MVT::Other &&
3684 "Individual return values must not be aggregates!");
3685
3686 SDOperand Call = getValue(I.getOperand(0));
3687 setValue(&I, SDOperand(Call.Val, I.getIndex()));
Dan Gohmanef5d1942008-03-11 21:11:25 +00003688}
3689
3690
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003691/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3692/// this value and returns the result as a ValueVT value. This uses
3693/// Chain/Flag as the input and updates them for the output Chain/Flag.
3694/// If the Flag pointer is NULL, no flag is used.
Chris Lattneread0d882008-06-17 06:09:18 +00003695SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner6833b062008-04-28 07:16:35 +00003696 SDOperand &Chain,
3697 SDOperand *Flag) const {
Dan Gohman23ce5022008-04-25 18:27:55 +00003698 // Assemble the legal parts into the final values.
3699 SmallVector<SDOperand, 4> Values(ValueVTs.size());
Chris Lattner6833b062008-04-28 07:16:35 +00003700 SmallVector<SDOperand, 8> Parts;
3701 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman23ce5022008-04-25 18:27:55 +00003702 // Copy the legal parts from the registers.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003703 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003704 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003705 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003706
Chris Lattner6833b062008-04-28 07:16:35 +00003707 Parts.resize(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003708 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003709 SDOperand P;
3710 if (Flag == 0)
3711 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3712 else {
3713 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman23ce5022008-04-25 18:27:55 +00003714 *Flag = P.getValue(2);
Chris Lattner6833b062008-04-28 07:16:35 +00003715 }
3716 Chain = P.getValue(1);
Chris Lattneread0d882008-06-17 06:09:18 +00003717
3718 // If the source register was virtual and if we know something about it,
3719 // add an assert node.
3720 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3721 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3722 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3723 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3724 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3725 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3726
3727 unsigned RegSize = RegisterVT.getSizeInBits();
3728 unsigned NumSignBits = LOI.NumSignBits;
3729 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3730
3731 // FIXME: We capture more information than the dag can represent. For
3732 // now, just use the tightest assertzext/assertsext possible.
3733 bool isSExt = true;
3734 MVT FromVT(MVT::Other);
3735 if (NumSignBits == RegSize)
3736 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3737 else if (NumZeroBits >= RegSize-1)
3738 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3739 else if (NumSignBits > RegSize-8)
3740 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3741 else if (NumZeroBits >= RegSize-9)
3742 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3743 else if (NumSignBits > RegSize-16)
3744 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3745 else if (NumZeroBits >= RegSize-17)
3746 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3747 else if (NumSignBits > RegSize-32)
3748 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3749 else if (NumZeroBits >= RegSize-33)
3750 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3751
3752 if (FromVT != MVT::Other) {
3753 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3754 RegisterVT, P, DAG.getValueType(FromVT));
3755
3756 }
3757 }
3758 }
3759
Dan Gohman23ce5022008-04-25 18:27:55 +00003760 Parts[Part+i] = P;
3761 }
Chris Lattner5df99b32007-03-25 05:00:54 +00003762
Dan Gohman23ce5022008-04-25 18:27:55 +00003763 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3764 ValueVT);
3765 Part += NumRegs;
3766 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00003767
Duncan Sandsf9516202008-06-30 10:19:09 +00003768 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3769 &Values[0], ValueVTs.size());
Chris Lattner864635a2006-02-22 22:37:12 +00003770}
3771
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003772/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3773/// specified value into the registers specified by this object. This uses
3774/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003775/// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003776void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003777 SDOperand &Chain, SDOperand *Flag) const {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003778 // Get the list of the values's legal parts.
Dan Gohman23ce5022008-04-25 18:27:55 +00003779 unsigned NumRegs = Regs.size();
3780 SmallVector<SDOperand, 8> Parts(NumRegs);
Chris Lattner6833b062008-04-28 07:16:35 +00003781 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003782 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003783 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003784 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003785
3786 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3787 &Parts[Part], NumParts, RegisterVT);
3788 Part += NumParts;
3789 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003790
3791 // Copy the parts into the registers.
Dan Gohman23ce5022008-04-25 18:27:55 +00003792 SmallVector<SDOperand, 8> Chains(NumRegs);
3793 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003794 SDOperand Part;
3795 if (Flag == 0)
3796 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3797 else {
3798 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003799 *Flag = Part.getValue(1);
Chris Lattner6833b062008-04-28 07:16:35 +00003800 }
3801 Chains[i] = Part.getValue(0);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003802 }
Chris Lattner6833b062008-04-28 07:16:35 +00003803
Evan Cheng33bf38a2008-04-28 22:07:13 +00003804 if (NumRegs == 1 || Flag)
3805 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3806 // flagged to it. That is the CopyToReg nodes and the user are considered
3807 // a single scheduling unit. If we create a TokenFactor and return it as
3808 // chain, then the TokenFactor is both a predecessor (operand) of the
3809 // user as well as a successor (the TF operands are flagged to the user).
3810 // c1, f1 = CopyToReg
3811 // c2, f2 = CopyToReg
3812 // c3 = TokenFactor c1, c2
3813 // ...
3814 // = op c3, ..., f2
3815 Chain = Chains[NumRegs-1];
Chris Lattner6833b062008-04-28 07:16:35 +00003816 else
3817 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003818}
Chris Lattner864635a2006-02-22 22:37:12 +00003819
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003820/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3821/// operand list. This adds the code marker and includes the number of
3822/// values added into it.
3823void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00003824 std::vector<SDOperand> &Ops) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003825 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner4b993b12007-04-09 00:33:58 +00003826 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner6833b062008-04-28 07:16:35 +00003827 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3828 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003829 MVT RegisterVT = RegVTs[Value];
Chris Lattner6833b062008-04-28 07:16:35 +00003830 for (unsigned i = 0; i != NumRegs; ++i)
3831 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman23ce5022008-04-25 18:27:55 +00003832 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003833}
Chris Lattner864635a2006-02-22 22:37:12 +00003834
3835/// isAllocatableRegister - If the specified register is safe to allocate,
3836/// i.e. it isn't a stack pointer or some other special register, return the
3837/// register class for the register. Otherwise, return null.
3838static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003839isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman6f0d0242008-02-10 18:45:23 +00003840 const TargetLowering &TLI,
3841 const TargetRegisterInfo *TRI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003842 MVT FoundVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003843 const TargetRegisterClass *FoundRC = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +00003844 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3845 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003846 MVT ThisVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003847
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003848 const TargetRegisterClass *RC = *RCI;
3849 // If none of the the value types for this register class are valid, we
3850 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003851 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3852 I != E; ++I) {
3853 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003854 // If we have already found this register in a different register class,
3855 // choose the one with the largest VT specified. For example, on
3856 // PowerPC, we favor f64 register classes over f32.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003857 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003858 ThisVT = *I;
3859 break;
3860 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003861 }
3862 }
3863
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003864 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003865
Chris Lattner864635a2006-02-22 22:37:12 +00003866 // NOTE: This isn't ideal. In particular, this might allocate the
3867 // frame pointer in functions that need it (due to them not being taken
3868 // out of allocation, because a variable sized allocation hasn't been seen
3869 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003870 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3871 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003872 if (*I == Reg) {
3873 // We found a matching register class. Keep looking at others in case
3874 // we find one with larger registers that this physreg is also in.
3875 FoundRC = RC;
3876 FoundVT = ThisVT;
3877 break;
3878 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00003879 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003880 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00003881}
3882
Chris Lattner4e4b5762006-02-01 18:59:47 +00003883
Chris Lattner0c583402007-04-28 20:49:53 +00003884namespace {
3885/// AsmOperandInfo - This contains information for each constraint that we are
3886/// lowering.
Evan Cheng5c807602008-02-26 02:33:44 +00003887struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3888 /// CallOperand - If this is the result output operand or a clobber
3889 /// this is null, otherwise it is the incoming operand to the CallInst.
3890 /// This gets modified as the asm is processed.
Chris Lattner0c583402007-04-28 20:49:53 +00003891 SDOperand CallOperand;
Evan Cheng5c807602008-02-26 02:33:44 +00003892
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003893 /// AssignedRegs - If this is a register or register class operand, this
3894 /// contains the set of register corresponding to the operand.
3895 RegsForValue AssignedRegs;
3896
Dan Gohman23ce5022008-04-25 18:27:55 +00003897 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Cheng5c807602008-02-26 02:33:44 +00003898 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Chris Lattner0c583402007-04-28 20:49:53 +00003899 }
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003900
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003901 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3902 /// busy in OutputRegs/InputRegs.
3903 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3904 std::set<unsigned> &OutputRegs,
Chris Lattner7cbeb242008-02-21 04:55:52 +00003905 std::set<unsigned> &InputRegs,
3906 const TargetRegisterInfo &TRI) const {
3907 if (isOutReg) {
3908 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3909 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3910 }
3911 if (isInReg) {
3912 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3913 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3914 }
3915 }
3916
3917private:
3918 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3919 /// specified set.
3920 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3921 const TargetRegisterInfo &TRI) {
3922 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3923 Regs.insert(Reg);
3924 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3925 for (; *Aliases; ++Aliases)
3926 Regs.insert(*Aliases);
3927 }
Chris Lattner0c583402007-04-28 20:49:53 +00003928};
3929} // end anon namespace.
Chris Lattner864635a2006-02-22 22:37:12 +00003930
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003931
Chris Lattner0fe71e92008-02-21 19:43:13 +00003932/// GetRegistersForValue - Assign registers (virtual or physical) for the
3933/// specified operand. We prefer to assign virtual registers, to allow the
3934/// register allocator handle the assignment process. However, if the asm uses
3935/// features that we can't model on machineinstrs, we have SDISel do the
3936/// allocation. This produces generally horrible, but correct, code.
3937///
3938/// OpInfo describes the operand.
3939/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3940/// or any explicitly clobbered registers.
3941/// Input and OutputRegs are the set of already allocated physical registers.
3942///
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003943void SelectionDAGLowering::
Evan Cheng5c807602008-02-26 02:33:44 +00003944GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnerbf996f12007-04-30 17:29:31 +00003945 std::set<unsigned> &OutputRegs,
3946 std::set<unsigned> &InputRegs) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003947 // Compute whether this value requires an input register, an output register,
3948 // or both.
3949 bool isOutReg = false;
3950 bool isInReg = false;
3951 switch (OpInfo.Type) {
3952 case InlineAsm::isOutput:
3953 isOutReg = true;
3954
3955 // If this is an early-clobber output, or if there is an input
3956 // constraint that matches this, we need to reserve the input register
3957 // so no other inputs allocate to it.
3958 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3959 break;
3960 case InlineAsm::isInput:
3961 isInReg = true;
3962 isOutReg = false;
3963 break;
3964 case InlineAsm::isClobber:
3965 isOutReg = true;
3966 isInReg = true;
3967 break;
3968 }
3969
3970
3971 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerb606dba2008-04-28 06:44:42 +00003972 SmallVector<unsigned, 4> Regs;
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003973
3974 // If this is a constraint for a single physreg, or a constraint for a
3975 // register class, find it.
3976 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
3977 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3978 OpInfo.ConstraintVT);
Chris Lattnerbf996f12007-04-30 17:29:31 +00003979
3980 unsigned NumRegs = 1;
3981 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohmanb9f10192007-06-21 14:42:22 +00003982 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003983 MVT RegVT;
3984 MVT ValueVT = OpInfo.ConstraintVT;
Chris Lattnerbf996f12007-04-30 17:29:31 +00003985
Chris Lattnerbf996f12007-04-30 17:29:31 +00003986
3987 // If this is a constraint for a specific physical register, like {r17},
3988 // assign it now.
3989 if (PhysReg.first) {
3990 if (OpInfo.ConstraintVT == MVT::Other)
3991 ValueVT = *PhysReg.second->vt_begin();
3992
3993 // Get the actual register value type. This is important, because the user
3994 // may have asked for (e.g.) the AX register in i32 type. We need to
3995 // remember that AX is actually i16 to get the right extension.
3996 RegVT = *PhysReg.second->vt_begin();
3997
3998 // This is a explicit reference to a physical register.
3999 Regs.push_back(PhysReg.first);
4000
4001 // If this is an expanded reference, add the rest of the regs to Regs.
4002 if (NumRegs != 1) {
4003 TargetRegisterClass::iterator I = PhysReg.second->begin();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004004 for (; *I != PhysReg.first; ++I)
Evan Cheng50871242008-05-14 20:07:51 +00004005 assert(I != PhysReg.second->end() && "Didn't find reg!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004006
4007 // Already added the first reg.
4008 --NumRegs; ++I;
4009 for (; NumRegs; --NumRegs, ++I) {
Evan Cheng50871242008-05-14 20:07:51 +00004010 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004011 Regs.push_back(*I);
4012 }
4013 }
Dan Gohman23ce5022008-04-25 18:27:55 +00004014 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004015 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4016 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004017 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004018 }
4019
4020 // Otherwise, if this was a reference to an LLVM register class, create vregs
4021 // for this reference.
4022 std::vector<unsigned> RegClassRegs;
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004023 const TargetRegisterClass *RC = PhysReg.second;
4024 if (RC) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004025 // If this is an early clobber or tied register, our regalloc doesn't know
4026 // how to maintain the constraint. If it isn't, go ahead and create vreg
4027 // and let the regalloc do the right thing.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004028 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4029 // If there is some other early clobber and this is an input register,
4030 // then we are forced to pre-allocate the input reg so it doesn't
4031 // conflict with the earlyclobber.
4032 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004033 RegVT = *PhysReg.second->vt_begin();
4034
4035 if (OpInfo.ConstraintVT == MVT::Other)
4036 ValueVT = RegVT;
4037
4038 // Create the appropriate number of virtual registers.
Chris Lattner84bc5422007-12-31 04:13:23 +00004039 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004040 for (; NumRegs; --NumRegs)
Chris Lattner84bc5422007-12-31 04:13:23 +00004041 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Chris Lattnerbf996f12007-04-30 17:29:31 +00004042
Dan Gohman23ce5022008-04-25 18:27:55 +00004043 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004044 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004045 }
4046
4047 // Otherwise, we can't allocate it. Let the code below figure out how to
4048 // maintain these constraints.
4049 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4050
4051 } else {
4052 // This is a reference to a register class that doesn't directly correspond
4053 // to an LLVM register class. Allocate NumRegs consecutive, available,
4054 // registers from the class.
4055 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4056 OpInfo.ConstraintVT);
4057 }
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004058
Dan Gohman6f0d0242008-02-10 18:45:23 +00004059 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004060 unsigned NumAllocated = 0;
4061 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4062 unsigned Reg = RegClassRegs[i];
4063 // See if this register is available.
4064 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4065 (isInReg && InputRegs.count(Reg))) { // Already used.
4066 // Make sure we find consecutive registers.
4067 NumAllocated = 0;
4068 continue;
4069 }
4070
4071 // Check to see if this register is allocatable (i.e. don't give out the
4072 // stack pointer).
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004073 if (RC == 0) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004074 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004075 if (!RC) { // Couldn't allocate this register.
4076 // Reset NumAllocated to make sure we return consecutive registers.
4077 NumAllocated = 0;
4078 continue;
4079 }
Chris Lattnerbf996f12007-04-30 17:29:31 +00004080 }
4081
4082 // Okay, this register is good, we can use it.
4083 ++NumAllocated;
4084
4085 // If we allocated enough consecutive registers, succeed.
4086 if (NumAllocated == NumRegs) {
4087 unsigned RegStart = (i-NumAllocated)+1;
4088 unsigned RegEnd = i+1;
4089 // Mark all of the allocated registers used.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004090 for (unsigned i = RegStart; i != RegEnd; ++i)
4091 Regs.push_back(RegClassRegs[i]);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004092
Dan Gohman23ce5022008-04-25 18:27:55 +00004093 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004094 OpInfo.ConstraintVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004095 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004096 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004097 }
4098 }
4099
4100 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattnerbf996f12007-04-30 17:29:31 +00004101}
4102
4103
Chris Lattnerce7518c2006-01-26 22:24:51 +00004104/// visitInlineAsm - Handle a call to an InlineAsm object.
4105///
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004106void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4107 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004108
Chris Lattner0c583402007-04-28 20:49:53 +00004109 /// ConstraintOperands - Information about all of the constraints.
Evan Cheng5c807602008-02-26 02:33:44 +00004110 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004111
4112 SDOperand Chain = getRoot();
4113 SDOperand Flag;
4114
Chris Lattner4e4b5762006-02-01 18:59:47 +00004115 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004116
Chris Lattner0c583402007-04-28 20:49:53 +00004117 // Do a prepass over the constraints, canonicalizing them, and building up the
4118 // ConstraintOperands list.
4119 std::vector<InlineAsm::ConstraintInfo>
4120 ConstraintInfos = IA->ParseConstraints();
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004121
4122 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4123 // constraint. If so, we can't let the register allocator allocate any input
4124 // registers, because it will not know to avoid the earlyclobbered output reg.
4125 bool SawEarlyClobber = false;
4126
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004127 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattneracf8b012008-04-27 23:44:28 +00004128 unsigned ResNo = 0; // ResNo - The result number of the next output.
Chris Lattner0c583402007-04-28 20:49:53 +00004129 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004130 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4131 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Chris Lattner0c583402007-04-28 20:49:53 +00004132
Duncan Sands83ec4b62008-06-06 12:08:01 +00004133 MVT OpVT = MVT::Other;
Chris Lattner0c583402007-04-28 20:49:53 +00004134
4135 // Compute the value type for each operand.
4136 switch (OpInfo.Type) {
Chris Lattner1efa40f2006-02-22 00:56:39 +00004137 case InlineAsm::isOutput:
Chris Lattneracf8b012008-04-27 23:44:28 +00004138 // Indirect outputs just consume an argument.
4139 if (OpInfo.isIndirect) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004140 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattneracf8b012008-04-27 23:44:28 +00004141 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004142 }
Chris Lattneracf8b012008-04-27 23:44:28 +00004143 // The return value of the call is this value. As such, there is no
4144 // corresponding argument.
4145 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4146 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4147 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4148 } else {
4149 assert(ResNo == 0 && "Asm only has one result!");
4150 OpVT = TLI.getValueType(CS.getType());
4151 }
4152 ++ResNo;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004153 break;
4154 case InlineAsm::isInput:
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004155 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner1efa40f2006-02-22 00:56:39 +00004156 break;
4157 case InlineAsm::isClobber:
Chris Lattner0c583402007-04-28 20:49:53 +00004158 // Nothing to do.
Chris Lattner1efa40f2006-02-22 00:56:39 +00004159 break;
4160 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004161
Chris Lattner0c583402007-04-28 20:49:53 +00004162 // If this is an input or an indirect output, process the call argument.
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004163 // BasicBlocks are labels, currently appearing only in asm's.
Chris Lattner0c583402007-04-28 20:49:53 +00004164 if (OpInfo.CallOperandVal) {
Chris Lattner507ffd22008-04-27 00:16:18 +00004165 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4166 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004167 else {
4168 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4169 const Type *OpTy = OpInfo.CallOperandVal->getType();
4170 // If this is an indirect operand, the operand is a pointer to the
4171 // accessed type.
4172 if (OpInfo.isIndirect)
4173 OpTy = cast<PointerType>(OpTy)->getElementType();
4174
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004175 // If OpTy is not a single value, it may be a struct/union that we
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004176 // can tile with integers.
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004177 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004178 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4179 switch (BitSize) {
4180 default: break;
4181 case 1:
4182 case 8:
4183 case 16:
4184 case 32:
4185 case 64:
4186 OpTy = IntegerType::get(BitSize);
4187 break;
4188 }
Chris Lattner6995cf62007-04-29 18:58:03 +00004189 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004190
4191 OpVT = TLI.getValueType(OpTy, true);
Chris Lattner0c583402007-04-28 20:49:53 +00004192 }
4193 }
4194
4195 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a600be2007-04-28 21:01:43 +00004196
Chris Lattner3ff90dc2007-04-30 17:16:27 +00004197 // Compute the constraint code and ConstraintType to use.
Chris Lattner5a096902008-04-27 00:37:18 +00004198 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Chris Lattner0c583402007-04-28 20:49:53 +00004199
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004200 // Keep track of whether we see an earlyclobber.
4201 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004202
Chris Lattner0fe71e92008-02-21 19:43:13 +00004203 // If we see a clobber of a register, it is an early clobber.
Chris Lattner69e6a8d2008-02-21 20:54:31 +00004204 if (!SawEarlyClobber &&
4205 OpInfo.Type == InlineAsm::isClobber &&
4206 OpInfo.ConstraintType == TargetLowering::C_Register) {
4207 // Note that we want to ignore things that we don't trick here, like
4208 // dirflag, fpsr, flags, etc.
4209 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4210 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4211 OpInfo.ConstraintVT);
4212 if (PhysReg.first || PhysReg.second) {
4213 // This is a register we know of.
4214 SawEarlyClobber = true;
4215 }
4216 }
Chris Lattner0fe71e92008-02-21 19:43:13 +00004217
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004218 // If this is a memory input, and if the operand is not indirect, do what we
4219 // need to to provide an address for the memory input.
4220 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4221 !OpInfo.isIndirect) {
4222 assert(OpInfo.Type == InlineAsm::isInput &&
4223 "Can only indirectify direct input operands!");
4224
4225 // Memory operands really want the address of the value. If we don't have
4226 // an indirect input, put it in the constpool if we can, otherwise spill
4227 // it to a stack slot.
4228
4229 // If the operand is a float, integer, or vector constant, spill to a
4230 // constant pool entry to get its address.
4231 Value *OpVal = OpInfo.CallOperandVal;
4232 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4233 isa<ConstantVector>(OpVal)) {
4234 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4235 TLI.getPointerTy());
4236 } else {
4237 // Otherwise, create a stack slot and emit a store to it before the
4238 // asm.
4239 const Type *Ty = OpVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +00004240 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004241 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4242 MachineFunction &MF = DAG.getMachineFunction();
4243 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
4244 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4245 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4246 OpInfo.CallOperand = StackSlot;
4247 }
4248
4249 // There is no longer a Value* corresponding to this operand.
4250 OpInfo.CallOperandVal = 0;
4251 // It is now an indirect operand.
4252 OpInfo.isIndirect = true;
4253 }
4254
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004255 // If this constraint is for a specific register, allocate it before
4256 // anything else.
4257 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4258 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattner0c583402007-04-28 20:49:53 +00004259 }
Chris Lattner0c583402007-04-28 20:49:53 +00004260 ConstraintInfos.clear();
4261
4262
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004263 // Second pass - Loop over all of the operands, assigning virtual or physregs
4264 // to registerclass operands.
4265 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004266 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004267
4268 // C_Register operands have already been allocated, Other/Memory don't need
4269 // to be.
4270 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4271 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4272 }
4273
Chris Lattner0c583402007-04-28 20:49:53 +00004274 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
4275 std::vector<SDOperand> AsmNodeOperands;
4276 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
4277 AsmNodeOperands.push_back(
4278 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4279
Chris Lattner2cc2f662006-02-01 01:28:23 +00004280
Chris Lattner0f0b7d42006-02-21 23:12:12 +00004281 // Loop over all of the inputs, copying the operand values into the
4282 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00004283 RegsForValue RetValRegs;
Chris Lattner41f62592008-04-29 04:29:54 +00004284
Chris Lattner0c583402007-04-28 20:49:53 +00004285 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4286 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4287
4288 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004289 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner1efa40f2006-02-22 00:56:39 +00004290
Chris Lattner0c583402007-04-28 20:49:53 +00004291 switch (OpInfo.Type) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00004292 case InlineAsm::isOutput: {
Chris Lattnerc83994e2007-04-28 21:03:16 +00004293 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4294 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerf2f3cd52007-04-28 06:08:13 +00004295 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004296 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner22873462006-02-27 23:45:39 +00004297
Chris Lattner22873462006-02-27 23:45:39 +00004298 // Add information to the INLINEASM node to know about this output.
4299 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004300 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4301 TLI.getPointerTy()));
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004302 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner22873462006-02-27 23:45:39 +00004303 break;
4304 }
4305
Chris Lattner2a600be2007-04-28 21:01:43 +00004306 // Otherwise, this is a register or register class output.
Chris Lattner22873462006-02-27 23:45:39 +00004307
Chris Lattner864635a2006-02-22 22:37:12 +00004308 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00004309 // we can use.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004310 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sandsa47c6c32008-06-17 03:24:13 +00004311 cerr << "Couldn't allocate output reg for constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004312 << OpInfo.ConstraintCode << "'!\n";
Chris Lattnerd03f1582006-10-31 07:33:13 +00004313 exit(1);
4314 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004315
Chris Lattner41f62592008-04-29 04:29:54 +00004316 // If this is an indirect operand, store through the pointer after the
4317 // asm.
4318 if (OpInfo.isIndirect) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004319 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattner0c583402007-04-28 20:49:53 +00004320 OpInfo.CallOperandVal));
Chris Lattner41f62592008-04-29 04:29:54 +00004321 } else {
4322 // This is the result value of the call.
4323 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4324 // Concatenate this output onto the outputs list.
4325 RetValRegs.append(OpInfo.AssignedRegs);
Chris Lattner2cc2f662006-02-01 01:28:23 +00004326 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004327
4328 // Add information to the INLINEASM node to know that this register is
4329 // set.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004330 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4331 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004332 break;
4333 }
4334 case InlineAsm::isInput: {
Chris Lattner0c583402007-04-28 20:49:53 +00004335 SDOperand InOperandVal = OpInfo.CallOperand;
Chris Lattner3d81fee2006-02-04 02:16:44 +00004336
Chris Lattner0c583402007-04-28 20:49:53 +00004337 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner2223aea2006-02-02 00:25:23 +00004338 // If this is required to match an output register we have already set,
4339 // just use its register.
Chris Lattner0c583402007-04-28 20:49:53 +00004340 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00004341
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004342 // Scan until we find the definition we already emitted of this operand.
4343 // When we find it, create a RegsForValue operand.
4344 unsigned CurOp = 2; // The first operand.
4345 for (; OperandNo; --OperandNo) {
4346 // Advance to the next operand.
4347 unsigned NumOps =
4348 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00004349 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4350 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004351 "Skipped past definitions?");
4352 CurOp += (NumOps>>3)+1;
4353 }
4354
4355 unsigned NumOps =
4356 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattner527fae12007-02-01 01:21:12 +00004357 if ((NumOps & 7) == 2 /*REGDEF*/) {
4358 // Add NumOps>>3 registers to MatchedRegs.
4359 RegsForValue MatchedRegs;
Dan Gohman23ce5022008-04-25 18:27:55 +00004360 MatchedRegs.TLI = &TLI;
Dan Gohman1fa850b2008-05-02 00:03:54 +00004361 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4362 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Chris Lattner527fae12007-02-01 01:21:12 +00004363 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4364 unsigned Reg =
4365 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4366 MatchedRegs.Regs.push_back(Reg);
4367 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004368
Chris Lattner527fae12007-02-01 01:21:12 +00004369 // Use the produced MatchedRegs object to
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004370 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner527fae12007-02-01 01:21:12 +00004371 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4372 break;
4373 } else {
4374 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattnerf9853bc2008-02-21 05:27:19 +00004375 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4376 // Add information to the INLINEASM node to know about this input.
4377 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4378 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4379 TLI.getPointerTy()));
4380 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4381 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004382 }
Chris Lattner2223aea2006-02-02 00:25:23 +00004383 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004384
Chris Lattner2a600be2007-04-28 21:01:43 +00004385 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Chris Lattner0c583402007-04-28 20:49:53 +00004386 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004387 "Don't know how to handle indirect other inputs yet!");
4388
Chris Lattner48884cd2007-08-25 00:47:38 +00004389 std::vector<SDOperand> Ops;
4390 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4391 Ops, DAG);
4392 if (Ops.empty()) {
Bill Wendling832171c2006-12-07 20:04:42 +00004393 cerr << "Invalid operand for inline asm constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004394 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner53069fb2006-10-31 19:41:18 +00004395 exit(1);
4396 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004397
4398 // Add information to the INLINEASM node to know about this input.
Chris Lattner48884cd2007-08-25 00:47:38 +00004399 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004400 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4401 TLI.getPointerTy()));
Chris Lattner48884cd2007-08-25 00:47:38 +00004402 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004403 break;
Chris Lattner2a600be2007-04-28 21:01:43 +00004404 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004405 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner44b2c502007-04-28 06:42:38 +00004406 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4407 "Memory operands expect pointer values");
4408
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004409 // Add information to the INLINEASM node to know about this input.
4410 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004411 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4412 TLI.getPointerTy()));
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004413 AsmNodeOperands.push_back(InOperandVal);
4414 break;
4415 }
4416
Chris Lattner2a600be2007-04-28 21:01:43 +00004417 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4418 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4419 "Unknown constraint type!");
Chris Lattner0c583402007-04-28 20:49:53 +00004420 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004421 "Don't know how to handle indirect register inputs yet!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004422
4423 // Copy the input into the appropriate registers.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004424 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4425 "Couldn't allocate input reg!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004426
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004427 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004428
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004429 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4430 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004431 break;
4432 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004433 case InlineAsm::isClobber: {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004434 // Add the clobbered value to the operand list, so that the register
4435 // allocator is aware that the physreg got clobbered.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004436 if (!OpInfo.AssignedRegs.Regs.empty())
4437 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4438 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004439 break;
4440 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004441 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004442 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004443
4444 // Finish up input operands.
4445 AsmNodeOperands[0] = Chain;
4446 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4447
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004448 Chain = DAG.getNode(ISD::INLINEASM,
4449 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004450 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004451 Flag = Chain.getValue(1);
4452
Chris Lattner6656dd12006-01-31 02:03:41 +00004453 // If this asm returns a register value, copy the result from that register
4454 // and set it as the value of the call.
Chris Lattner3a508c92007-04-12 06:00:20 +00004455 if (!RetValRegs.Regs.empty()) {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004456 SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner3fb29682008-04-29 04:48:56 +00004457
4458 // If any of the results of the inline asm is a vector, it may have the
4459 // wrong width/num elts. This can happen for register classes that can
4460 // contain multiple different value types. The preg or vreg allocated may
4461 // not have the same VT as was expected. Convert it to the right type with
Dan Gohman7f321562007-06-25 16:23:39 +00004462 // bit_convert.
Chris Lattner3fb29682008-04-29 04:48:56 +00004463 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4464 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004465 if (Val.Val->getValueType(i).isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004466 Val = DAG.getNode(ISD::BIT_CONVERT,
4467 TLI.getValueType(ResSTy->getElementType(i)), Val);
4468 }
4469 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004470 if (Val.getValueType().isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004471 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4472 Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004473 }
Chris Lattner3fb29682008-04-29 04:48:56 +00004474
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004475 setValue(CS.getInstruction(), Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004476 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004477
Chris Lattner6656dd12006-01-31 02:03:41 +00004478 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
4479
4480 // Process indirect outputs, first output all of the flagged copies out of
4481 // physregs.
4482 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00004483 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00004484 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004485 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner864635a2006-02-22 22:37:12 +00004486 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00004487 }
4488
4489 // Emit the non-flagged stores from the physregs.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004490 SmallVector<SDOperand, 8> OutChains;
Chris Lattner6656dd12006-01-31 02:03:41 +00004491 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattner0c583402007-04-28 20:49:53 +00004492 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner6656dd12006-01-31 02:03:41 +00004493 getValue(StoresToEmit[i].second),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004494 StoresToEmit[i].second, 0));
Chris Lattner6656dd12006-01-31 02:03:41 +00004495 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004496 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4497 &OutChains[0], OutChains.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004498 DAG.setRoot(Chain);
4499}
4500
4501
Chris Lattner1c08c712005-01-07 07:47:53 +00004502void SelectionDAGLowering::visitMalloc(MallocInst &I) {
4503 SDOperand Src = getValue(I.getOperand(0));
4504
Duncan Sands83ec4b62008-06-06 12:08:01 +00004505 MVT IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00004506
Duncan Sands8e4eb092008-06-08 20:54:56 +00004507 if (IntPtr.bitsLT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004508 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004509 else if (IntPtr.bitsGT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004510 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00004511
4512 // Scale the source by the type size.
Duncan Sands514ab342007-11-01 20:53:16 +00004513 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00004514 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner0bd48932008-01-17 07:00:52 +00004515 Src, DAG.getIntPtrConstant(ElementSize));
Chris Lattner1c08c712005-01-07 07:47:53 +00004516
Reid Spencer47857812006-12-31 05:55:36 +00004517 TargetLowering::ArgListTy Args;
4518 TargetLowering::ArgListEntry Entry;
4519 Entry.Node = Src;
4520 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004521 Args.push_back(Entry);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004522
4523 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004524 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4525 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004526 setValue(&I, Result.first); // Pointers always fit in registers
4527 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004528}
4529
4530void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencer47857812006-12-31 05:55:36 +00004531 TargetLowering::ArgListTy Args;
4532 TargetLowering::ArgListEntry Entry;
4533 Entry.Node = getValue(I.getOperand(0));
4534 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004535 Args.push_back(Entry);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004536 MVT IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00004537 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004538 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4539 CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00004540 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4541 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004542}
4543
Evan Chengff9b3732008-01-30 18:18:23 +00004544// EmitInstrWithCustomInserter - This method should be implemented by targets
4545// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +00004546// instructions are special in various ways, which require special support to
4547// insert. The specified MachineInstr is created but not inserted into any
4548// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +00004549MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Chris Lattner025c39b2005-08-26 20:54:47 +00004550 MachineBasicBlock *MBB) {
Bill Wendling832171c2006-12-07 20:04:42 +00004551 cerr << "If a target marks an instruction with "
4552 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chengff9b3732008-01-30 18:18:23 +00004553 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Chris Lattner025c39b2005-08-26 20:54:47 +00004554 abort();
4555 return 0;
4556}
4557
Chris Lattner39ae3622005-01-09 00:00:49 +00004558void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004559 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4560 getValue(I.getOperand(1)),
4561 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00004562}
4563
4564void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004565 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
4566 getValue(I.getOperand(0)),
4567 DAG.getSrcValue(I.getOperand(0)));
4568 setValue(&I, V);
4569 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00004570}
4571
4572void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004573 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4574 getValue(I.getOperand(1)),
4575 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004576}
4577
4578void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004579 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4580 getValue(I.getOperand(1)),
4581 getValue(I.getOperand(2)),
4582 DAG.getSrcValue(I.getOperand(1)),
4583 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004584}
4585
Chris Lattnerfdfded52006-04-12 16:20:43 +00004586/// TargetLowering::LowerArguments - This is the default LowerArguments
4587/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004588/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4589/// integrated into SDISel.
Dan Gohmana44b6742008-06-30 20:31:15 +00004590void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
4591 SmallVectorImpl<SDOperand> &ArgValues) {
Chris Lattnerfdfded52006-04-12 16:20:43 +00004592 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
Dan Gohmana44b6742008-06-30 20:31:15 +00004593 SmallVector<SDOperand, 3+16> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004594 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00004595 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4596 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4597
4598 // Add one result value for each formal argument.
Dan Gohmana44b6742008-06-30 20:31:15 +00004599 SmallVector<MVT, 16> RetVals;
Anton Korobeynikov6aa279d2007-01-28 18:01:49 +00004600 unsigned j = 1;
Anton Korobeynikovac2b2cf2007-01-28 16:04:40 +00004601 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4602 I != E; ++I, ++j) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004603 SmallVector<MVT, 4> ValueVTs;
4604 ComputeValueVTs(*this, I->getType(), ValueVTs);
4605 for (unsigned Value = 0, NumValues = ValueVTs.size();
4606 Value != NumValues; ++Value) {
4607 MVT VT = ValueVTs[Value];
4608 const Type *ArgTy = VT.getTypeForMVT();
4609 ISD::ArgFlagsTy Flags;
4610 unsigned OriginalAlignment =
4611 getTargetData()->getABITypeAlignment(ArgTy);
Lauro Ramos Venancio7aa47b62007-02-13 13:50:08 +00004612
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004613 if (F.paramHasAttr(j, ParamAttr::ZExt))
4614 Flags.setZExt();
4615 if (F.paramHasAttr(j, ParamAttr::SExt))
4616 Flags.setSExt();
4617 if (F.paramHasAttr(j, ParamAttr::InReg))
4618 Flags.setInReg();
4619 if (F.paramHasAttr(j, ParamAttr::StructRet))
4620 Flags.setSRet();
4621 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4622 Flags.setByVal();
4623 const PointerType *Ty = cast<PointerType>(I->getType());
4624 const Type *ElementTy = Ty->getElementType();
4625 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4626 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4627 // For ByVal, alignment should be passed from FE. BE will guess if
4628 // this info is not there but there are cases it cannot get right.
4629 if (F.getParamAlignment(j))
4630 FrameAlign = F.getParamAlignment(j);
4631 Flags.setByValAlign(FrameAlign);
4632 Flags.setByValSize(FrameSize);
4633 }
4634 if (F.paramHasAttr(j, ParamAttr::Nest))
4635 Flags.setNest();
4636 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004637
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004638 MVT RegisterVT = getRegisterType(VT);
4639 unsigned NumRegs = getNumRegisters(VT);
4640 for (unsigned i = 0; i != NumRegs; ++i) {
4641 RetVals.push_back(RegisterVT);
4642 ISD::ArgFlagsTy MyFlags = Flags;
4643 if (NumRegs > 1 && i == 0)
4644 MyFlags.setSplit();
4645 // if it isn't first piece, alignment must be 1
4646 else if (i > 0)
4647 MyFlags.setOrigAlign(1);
4648 Ops.push_back(DAG.getArgFlags(MyFlags));
4649 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004650 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004651 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00004652
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004653 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00004654
4655 // Create the node.
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004656 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004657 DAG.getVTList(&RetVals[0], RetVals.size()),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004658 &Ops[0], Ops.size()).Val;
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004659
4660 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4661 // allows exposing the loads that may be part of the argument access to the
4662 // first DAGCombiner pass.
4663 SDOperand TmpRes = LowerOperation(SDOperand(Result, 0), DAG);
4664
4665 // The number of results should match up, except that the lowered one may have
4666 // an extra flag result.
4667 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4668 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4669 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4670 && "Lowering produced unexpected number of results!");
4671 Result = TmpRes.Val;
4672
Dan Gohman27a70be2007-07-02 16:18:06 +00004673 unsigned NumArgRegs = Result->getNumValues() - 1;
4674 DAG.setRoot(SDOperand(Result, NumArgRegs));
Chris Lattnerfdfded52006-04-12 16:20:43 +00004675
4676 // Set up the return result vector.
Chris Lattnerfdfded52006-04-12 16:20:43 +00004677 unsigned i = 0;
Reid Spencer47857812006-12-31 05:55:36 +00004678 unsigned Idx = 1;
4679 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4680 ++I, ++Idx) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004681 SmallVector<MVT, 4> ValueVTs;
4682 ComputeValueVTs(*this, I->getType(), ValueVTs);
4683 for (unsigned Value = 0, NumValues = ValueVTs.size();
4684 Value != NumValues; ++Value) {
4685 MVT VT = ValueVTs[Value];
4686 MVT PartVT = getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004687
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004688 unsigned NumParts = getNumRegisters(VT);
4689 SmallVector<SDOperand, 4> Parts(NumParts);
4690 for (unsigned j = 0; j != NumParts; ++j)
4691 Parts[j] = SDOperand(Result, i++);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004692
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004693 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4694 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4695 AssertOp = ISD::AssertSext;
4696 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4697 AssertOp = ISD::AssertZext;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004698
Dan Gohmana44b6742008-06-30 20:31:15 +00004699 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4700 AssertOp));
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004701 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004702 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004703 assert(i == NumArgRegs && "Argument register count mismatch!");
Chris Lattnerfdfded52006-04-12 16:20:43 +00004704}
4705
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004706
4707/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4708/// implementation, which just inserts an ISD::CALL node, which is later custom
4709/// lowered by the target to something concrete. FIXME: When all targets are
4710/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
4711std::pair<SDOperand, SDOperand>
Duncan Sands00fee652008-02-14 17:28:50 +00004712TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
4713 bool RetSExt, bool RetZExt, bool isVarArg,
4714 unsigned CallingConv, bool isTailCall,
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004715 SDOperand Callee,
4716 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattnerbe384162006-08-16 22:57:46 +00004717 SmallVector<SDOperand, 32> Ops;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004718 Ops.push_back(Chain); // Op#0 - Chain
4719 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4720 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4721 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4722 Ops.push_back(Callee);
4723
4724 // Handle all of the outgoing arguments.
4725 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004726 SmallVector<MVT, 4> ValueVTs;
4727 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4728 for (unsigned Value = 0, NumValues = ValueVTs.size();
4729 Value != NumValues; ++Value) {
4730 MVT VT = ValueVTs[Value];
4731 const Type *ArgTy = VT.getTypeForMVT();
4732 SDOperand Op = SDOperand(Args[i].Node.Val, Args[i].Node.ResNo + Value);
4733 ISD::ArgFlagsTy Flags;
4734 unsigned OriginalAlignment =
4735 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sands276dcbd2008-03-21 09:14:45 +00004736
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004737 if (Args[i].isZExt)
4738 Flags.setZExt();
4739 if (Args[i].isSExt)
4740 Flags.setSExt();
4741 if (Args[i].isInReg)
4742 Flags.setInReg();
4743 if (Args[i].isSRet)
4744 Flags.setSRet();
4745 if (Args[i].isByVal) {
4746 Flags.setByVal();
4747 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4748 const Type *ElementTy = Ty->getElementType();
4749 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4750 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4751 // For ByVal, alignment should come from FE. BE will guess if this
4752 // info is not there but there are cases it cannot get right.
4753 if (Args[i].Alignment)
4754 FrameAlign = Args[i].Alignment;
4755 Flags.setByValAlign(FrameAlign);
4756 Flags.setByValSize(FrameSize);
4757 }
4758 if (Args[i].isNest)
4759 Flags.setNest();
4760 Flags.setOrigAlign(OriginalAlignment);
Dan Gohman27a70be2007-07-02 16:18:06 +00004761
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004762 MVT PartVT = getRegisterType(VT);
4763 unsigned NumParts = getNumRegisters(VT);
4764 SmallVector<SDOperand, 4> Parts(NumParts);
4765 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004766
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004767 if (Args[i].isSExt)
4768 ExtendKind = ISD::SIGN_EXTEND;
4769 else if (Args[i].isZExt)
4770 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004771
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004772 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004773
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004774 for (unsigned i = 0; i != NumParts; ++i) {
4775 // if it isn't first piece, alignment must be 1
4776 ISD::ArgFlagsTy MyFlags = Flags;
4777 if (NumParts > 1 && i == 0)
4778 MyFlags.setSplit();
4779 else if (i != 0)
4780 MyFlags.setOrigAlign(1);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004781
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004782 Ops.push_back(Parts[i]);
4783 Ops.push_back(DAG.getArgFlags(MyFlags));
4784 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004785 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004786 }
4787
Dan Gohmanef5d1942008-03-11 21:11:25 +00004788 // Figure out the result value types. We start by making a list of
Dan Gohman23ce5022008-04-25 18:27:55 +00004789 // the potentially illegal return value types.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004790 SmallVector<MVT, 4> LoweredRetTys;
4791 SmallVector<MVT, 4> RetTys;
Dan Gohman23ce5022008-04-25 18:27:55 +00004792 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004793
Dan Gohman23ce5022008-04-25 18:27:55 +00004794 // Then we translate that to a list of legal types.
4795 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004796 MVT VT = RetTys[I];
4797 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004798 unsigned NumRegs = getNumRegisters(VT);
4799 for (unsigned i = 0; i != NumRegs; ++i)
4800 LoweredRetTys.push_back(RegisterVT);
4801 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004802
Dan Gohmanef5d1942008-03-11 21:11:25 +00004803 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004804
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004805 // Create the CALL node.
Chris Lattnerbe384162006-08-16 22:57:46 +00004806 SDOperand Res = DAG.getNode(ISD::CALL,
Dan Gohmanef5d1942008-03-11 21:11:25 +00004807 DAG.getVTList(&LoweredRetTys[0],
4808 LoweredRetTys.size()),
Chris Lattnerbe384162006-08-16 22:57:46 +00004809 &Ops[0], Ops.size());
Dan Gohmanef5d1942008-03-11 21:11:25 +00004810 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004811
4812 // Gather up the call result into a single value.
4813 if (RetTy != Type::VoidTy) {
Duncan Sands00fee652008-02-14 17:28:50 +00004814 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4815
4816 if (RetSExt)
4817 AssertOp = ISD::AssertSext;
4818 else if (RetZExt)
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004819 AssertOp = ISD::AssertZext;
Duncan Sands00fee652008-02-14 17:28:50 +00004820
Dan Gohmanef5d1942008-03-11 21:11:25 +00004821 SmallVector<SDOperand, 4> ReturnValues;
4822 unsigned RegNo = 0;
Dan Gohman23ce5022008-04-25 18:27:55 +00004823 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004824 MVT VT = RetTys[I];
4825 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004826 unsigned NumRegs = getNumRegisters(VT);
4827 unsigned RegNoEnd = NumRegs + RegNo;
4828 SmallVector<SDOperand, 4> Results;
4829 for (; RegNo != RegNoEnd; ++RegNo)
4830 Results.push_back(Res.getValue(RegNo));
4831 SDOperand ReturnValue =
4832 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4833 AssertOp);
4834 ReturnValues.push_back(ReturnValue);
4835 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004836 Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4837 &ReturnValues[0], ReturnValues.size());
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004838 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004839
4840 return std::make_pair(Res, Chain);
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004841}
4842
Chris Lattner50381b62005-05-14 05:50:48 +00004843SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00004844 assert(0 && "LowerOperation not implemented for this target!");
4845 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00004846 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00004847}
4848
Nate Begeman0aed7842006-01-28 03:14:31 +00004849
Chris Lattner7041ee32005-01-11 05:56:49 +00004850//===----------------------------------------------------------------------===//
4851// SelectionDAGISel code
4852//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00004853
Duncan Sands83ec4b62008-06-06 12:08:01 +00004854unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +00004855 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +00004856}
4857
Chris Lattner495a0b52005-08-17 06:37:43 +00004858void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004859 AU.addRequired<AliasAnalysis>();
Gordon Henriksence224772008-01-07 01:30:38 +00004860 AU.addRequired<CollectorModuleMetadata>();
Chris Lattnerc8d288f2007-03-31 04:18:03 +00004861 AU.setPreservesAll();
Chris Lattner495a0b52005-08-17 06:37:43 +00004862}
Chris Lattner1c08c712005-01-07 07:47:53 +00004863
Chris Lattner1c08c712005-01-07 07:47:53 +00004864bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman5f43f922007-08-27 16:26:13 +00004865 // Get alias analysis for load/store combining.
4866 AA = &getAnalysis<AliasAnalysis>();
4867
Chris Lattner1c08c712005-01-07 07:47:53 +00004868 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksence224772008-01-07 01:30:38 +00004869 if (MF.getFunction()->hasCollector())
4870 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4871 else
4872 GCI = 0;
Chris Lattner84bc5422007-12-31 04:13:23 +00004873 RegInfo = &MF.getRegInfo();
Bill Wendling832171c2006-12-07 20:04:42 +00004874 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00004875
4876 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4877
Dale Johannesen1532f3d2008-04-02 00:25:04 +00004878 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4879 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4880 // Mark landing pad.
4881 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +00004882
Dan Gohman0e5f1302008-07-07 23:02:41 +00004883 SelectAllBasicBlocks(Fn, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00004884
Evan Chengad2070c2007-02-10 02:43:39 +00004885 // Add function live-ins to entry block live-in set.
4886 BasicBlock *EntryBB = &Fn.getEntryBlock();
4887 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner84bc5422007-12-31 04:13:23 +00004888 if (!RegInfo->livein_empty())
4889 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4890 E = RegInfo->livein_end(); I != E; ++I)
Evan Chengad2070c2007-02-10 02:43:39 +00004891 BB->addLiveIn(I->first);
4892
Duncan Sandsf4070822007-06-15 19:04:19 +00004893#ifndef NDEBUG
4894 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4895 "Not all catch info was assigned to a landing pad!");
4896#endif
4897
Chris Lattner1c08c712005-01-07 07:47:53 +00004898 return true;
4899}
4900
Chris Lattner6833b062008-04-28 07:16:35 +00004901void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Chris Lattner571e4342006-10-27 21:36:01 +00004902 SDOperand Op = getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00004903 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004904 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00004905 "Copy from a reg to the same reg!");
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004906 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004907
Dan Gohman23ce5022008-04-25 18:27:55 +00004908 RegsForValue RFV(TLI, Reg, V->getType());
4909 SDOperand Chain = DAG.getEntryNode();
4910 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4911 PendingExports.push_back(Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00004912}
4913
Chris Lattner068a81e2005-01-17 17:15:02 +00004914void SelectionDAGISel::
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004915LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Chris Lattner068a81e2005-01-17 17:15:02 +00004916 // If this is the entry block, emit arguments.
Evan Cheng15699fc2007-02-10 01:08:18 +00004917 Function &F = *LLVMBB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00004918 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00004919 SDOperand OldRoot = SDL.DAG.getRoot();
Dan Gohmana44b6742008-06-30 20:31:15 +00004920 SmallVector<SDOperand, 16> Args;
4921 TLI.LowerArguments(F, SDL.DAG, Args);
Chris Lattner068a81e2005-01-17 17:15:02 +00004922
Chris Lattnerbf209482005-10-30 19:42:35 +00004923 unsigned a = 0;
4924 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004925 AI != E; ++AI) {
4926 SmallVector<MVT, 4> ValueVTs;
4927 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4928 unsigned NumValues = ValueVTs.size();
Chris Lattnerbf209482005-10-30 19:42:35 +00004929 if (!AI->use_empty()) {
Duncan Sands4bdcb612008-07-02 17:40:58 +00004930 SDL.setValue(AI, SDL.DAG.getMergeValues(&Args[a], NumValues));
Chris Lattnerbf209482005-10-30 19:42:35 +00004931 // If this argument is live outside of the entry block, insert a copy from
4932 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner251db182007-02-25 18:40:32 +00004933 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4934 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004935 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattnerbf209482005-10-30 19:42:35 +00004936 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00004937 }
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004938 a += NumValues;
4939 }
Chris Lattnerbf209482005-10-30 19:42:35 +00004940
Chris Lattnerbf209482005-10-30 19:42:35 +00004941 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00004942 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00004943 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00004944}
4945
Duncan Sandsf4070822007-06-15 19:04:19 +00004946static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4947 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004948 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00004949 if (isSelector(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004950 // Apply the catch info to DestBB.
4951 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4952#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +00004953 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4954 FLI.CatchInfoFound.insert(I);
Duncan Sandsf4070822007-06-15 19:04:19 +00004955#endif
4956 }
4957}
4958
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004959/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4960/// whether object offset >= 0.
4961static bool
4962IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDOperand Op) {
4963 if (!isa<FrameIndexSDNode>(Op)) return false;
4964
4965 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
4966 int FrameIdx = FrameIdxNode->getIndex();
4967 return MFI->isFixedObjectIndex(FrameIdx) &&
4968 MFI->getObjectOffset(FrameIdx) >= 0;
4969}
4970
4971/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
4972/// possibly be overwritten when lowering the outgoing arguments in a tail
4973/// call. Currently the implementation of this call is very conservative and
4974/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
4975/// virtual registers would be overwritten by direct lowering.
4976static bool IsPossiblyOverwrittenArgumentOfTailCall(SDOperand Op,
4977 MachineFrameInfo * MFI) {
4978 RegisterSDNode * OpReg = NULL;
4979 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
4980 (Op.getOpcode()== ISD::CopyFromReg &&
4981 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
4982 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
4983 (Op.getOpcode() == ISD::LOAD &&
4984 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
4985 (Op.getOpcode() == ISD::MERGE_VALUES &&
4986 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
4987 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
4988 getOperand(1))))
4989 return true;
4990 return false;
4991}
4992
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004993/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00004994/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004995static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
4996 TargetLowering& TLI) {
4997 SDNode * Ret = NULL;
4998 SDOperand Terminator = DAG.getRoot();
4999
5000 // Find RET node.
5001 if (Terminator.getOpcode() == ISD::RET) {
5002 Ret = Terminator.Val;
5003 }
5004
5005 // Fix tail call attribute of CALL nodes.
5006 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
Dan Gohman0e5f1302008-07-07 23:02:41 +00005007 BI = DAG.allnodes_end(); BI != BE; ) {
5008 --BI;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005009 if (BI->getOpcode() == ISD::CALL) {
5010 SDOperand OpRet(Ret, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00005011 SDOperand OpCall(BI, 0);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005012 bool isMarkedTailCall =
5013 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5014 // If CALL node has tail call attribute set to true and the call is not
5015 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005016 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005017 // must correctly identify tail call optimizable calls.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005018 if (!isMarkedTailCall) continue;
5019 if (Ret==NULL ||
5020 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5021 // Not eligible. Mark CALL node as non tail call.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005022 SmallVector<SDOperand, 32> Ops;
5023 unsigned idx=0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005024 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5025 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005026 if (idx!=3)
5027 Ops.push_back(*I);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005028 else
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005029 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5030 }
5031 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005032 } else {
5033 // Look for tail call clobbered arguments. Emit a series of
5034 // copyto/copyfrom virtual register nodes to protect them.
5035 SmallVector<SDOperand, 32> Ops;
5036 SDOperand Chain = OpCall.getOperand(0), InFlag;
5037 unsigned idx=0;
5038 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5039 E = OpCall.Val->op_end(); I != E; I++, idx++) {
5040 SDOperand Arg = *I;
5041 if (idx > 4 && (idx % 2)) {
5042 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5043 getArgFlags().isByVal();
5044 MachineFunction &MF = DAG.getMachineFunction();
5045 MachineFrameInfo *MFI = MF.getFrameInfo();
5046 if (!isByVal &&
5047 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005048 MVT VT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005049 unsigned VReg = MF.getRegInfo().
5050 createVirtualRegister(TLI.getRegClassFor(VT));
5051 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5052 InFlag = Chain.getValue(1);
5053 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5054 Chain = Arg.getValue(1);
5055 InFlag = Arg.getValue(2);
5056 }
5057 }
5058 Ops.push_back(Arg);
5059 }
5060 // Link in chain of CopyTo/CopyFromReg.
5061 Ops[0] = Chain;
5062 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005063 }
5064 }
5065 }
5066}
5067
Chris Lattner1c08c712005-01-07 07:47:53 +00005068void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5069 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00005070 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksence224772008-01-07 01:30:38 +00005071 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerddb870b2005-01-13 17:59:43 +00005072
Chris Lattnerbf209482005-10-30 19:42:35 +00005073 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +00005074 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005075 LowerArguments(LLVMBB, SDL);
Chris Lattner1c08c712005-01-07 07:47:53 +00005076
5077 BB = FuncInfo.MBBMap[LLVMBB];
5078 SDL.setCurrentBasicBlock(BB);
5079
Duncan Sandsf4070822007-06-15 19:04:19 +00005080 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands9fac0b52007-06-06 10:05:18 +00005081
Dale Johannesen1532f3d2008-04-02 00:25:04 +00005082 if (MMI && BB->isLandingPad()) {
Duncan Sandsf4070822007-06-15 19:04:19 +00005083 // Add a label to mark the beginning of the landing pad. Deletion of the
5084 // landing pad can thus be detected via the MachineModuleInfo.
5085 unsigned LabelID = MMI->addLandingPad(BB);
Dan Gohman44066042008-07-01 00:05:16 +00005086 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, DAG.getEntryNode(), LabelID));
Duncan Sandsf4070822007-06-15 19:04:19 +00005087
Evan Chenge47c3332007-06-27 18:45:32 +00005088 // Mark exception register as live in.
5089 unsigned Reg = TLI.getExceptionAddressRegister();
5090 if (Reg) BB->addLiveIn(Reg);
5091
5092 // Mark exception selector register as live in.
5093 Reg = TLI.getExceptionSelectorRegister();
5094 if (Reg) BB->addLiveIn(Reg);
5095
Duncan Sandsf4070822007-06-15 19:04:19 +00005096 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5097 // function and list of typeids logically belong to the invoke (or, if you
5098 // like, the basic block containing the invoke), and need to be associated
5099 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005100 // information is provided by an intrinsic (eh.selector) that can be moved
5101 // to unexpected places by the optimizers: if the unwind edge is critical,
5102 // then breaking it can result in the intrinsics being in the successor of
5103 // the landing pad, not the landing pad itself. This results in exceptions
5104 // not being caught because no typeids are associated with the invoke.
5105 // This may not be the only way things can go wrong, but it is the only way
5106 // we try to work around for the moment.
Duncan Sandsf4070822007-06-15 19:04:19 +00005107 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5108
5109 if (Br && Br->isUnconditional()) { // Critical edge?
5110 BasicBlock::iterator I, E;
5111 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005112 if (isSelector(I))
Duncan Sandsf4070822007-06-15 19:04:19 +00005113 break;
5114
5115 if (I == E)
5116 // No catch info found - try to extract some from the successor.
5117 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands9fac0b52007-06-06 10:05:18 +00005118 }
5119 }
5120
Chris Lattner1c08c712005-01-07 07:47:53 +00005121 // Lower all of the non-terminator instructions.
5122 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5123 I != E; ++I)
5124 SDL.visit(*I);
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005125
Chris Lattner1c08c712005-01-07 07:47:53 +00005126 // Ensure that all instructions which are used outside of their defining
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005127 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner1c08c712005-01-07 07:47:53 +00005128 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005129 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner9f24ad72007-02-04 01:35:11 +00005130 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00005131 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005132 SDL.CopyValueToVirtualRegister(I, VMI->second);
Chris Lattner1c08c712005-01-07 07:47:53 +00005133 }
5134
5135 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5136 // ensure constants are generated when needed. Remember the virtual registers
5137 // that need to be added to the Machine PHI nodes as input. We cannot just
5138 // directly add them, because expansion might result in multiple MBB's for one
5139 // BB. As such, the start of the BB might correspond to a different MBB than
5140 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00005141 //
Chris Lattner8c494ab2006-10-27 23:50:33 +00005142 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner1c08c712005-01-07 07:47:53 +00005143
5144 // Emit constants only once even if used by multiple PHI nodes.
5145 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005146
Chris Lattner8c494ab2006-10-27 23:50:33 +00005147 // Vector bool would be better, but vector<bool> is really slow.
5148 std::vector<unsigned char> SuccsHandled;
5149 if (TI->getNumSuccessors())
5150 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5151
Dan Gohman532dc2e2007-07-09 20:59:04 +00005152 // Check successor nodes' PHI nodes that expect a constant to be available
5153 // from this block.
Chris Lattner1c08c712005-01-07 07:47:53 +00005154 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5155 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005156 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner8c494ab2006-10-27 23:50:33 +00005157 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005158
Chris Lattner8c494ab2006-10-27 23:50:33 +00005159 // If this terminator has multiple identical successors (common for
5160 // switches), only handle each succ once.
5161 unsigned SuccMBBNo = SuccMBB->getNumber();
5162 if (SuccsHandled[SuccMBBNo]) continue;
5163 SuccsHandled[SuccMBBNo] = true;
5164
5165 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner1c08c712005-01-07 07:47:53 +00005166 PHINode *PN;
5167
5168 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5169 // nodes and Machine PHI nodes, but the incoming operands have not been
5170 // emitted yet.
5171 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8c494ab2006-10-27 23:50:33 +00005172 (PN = dyn_cast<PHINode>(I)); ++I) {
5173 // Ignore dead phi's.
5174 if (PN->use_empty()) continue;
5175
5176 unsigned Reg;
5177 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner3f7927c2006-11-29 01:12:32 +00005178
Chris Lattner8c494ab2006-10-27 23:50:33 +00005179 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5180 unsigned &RegOut = ConstantsOut[C];
5181 if (RegOut == 0) {
5182 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005183 SDL.CopyValueToVirtualRegister(C, RegOut);
Chris Lattner1c08c712005-01-07 07:47:53 +00005184 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005185 Reg = RegOut;
5186 } else {
5187 Reg = FuncInfo.ValueMap[PHIOp];
5188 if (Reg == 0) {
5189 assert(isa<AllocaInst>(PHIOp) &&
5190 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5191 "Didn't codegen value into a register!??");
5192 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005193 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Chris Lattner7e021512006-03-31 02:12:18 +00005194 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005195 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005196
5197 // Remember that this register needs to added to the machine PHI node as
5198 // the input for this MBB.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005199 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +00005200 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohmanb9f10192007-06-21 14:42:22 +00005201 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Chris Lattner8c494ab2006-10-27 23:50:33 +00005202 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5203 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005204 }
5205 ConstantsOut.clear();
5206
5207 // Lower the terminator after the copies are emitted.
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005208 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00005209
Nate Begemanf15485a2006-03-27 01:32:24 +00005210 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00005211 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00005212 SwitchCases.clear();
5213 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005214 JTCases.clear();
5215 JTCases = SDL.JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005216 BitTestCases.clear();
5217 BitTestCases = SDL.BitTestCases;
5218
Chris Lattnera651cf62005-01-17 19:43:36 +00005219 // Make sure the root of the DAG is up-to-date.
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005220 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005221
5222 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5223 // with correct tailcall attribute so that the target can rely on the tailcall
5224 // attribute indicating whether the call is really eligible for tail call
5225 // optimization.
5226 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Chris Lattner1c08c712005-01-07 07:47:53 +00005227}
5228
Chris Lattneread0d882008-06-17 06:09:18 +00005229void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5230 SmallPtrSet<SDNode*, 128> VisitedNodes;
5231 SmallVector<SDNode*, 128> Worklist;
5232
5233 Worklist.push_back(DAG.getRoot().Val);
5234
5235 APInt Mask;
5236 APInt KnownZero;
5237 APInt KnownOne;
5238
5239 while (!Worklist.empty()) {
5240 SDNode *N = Worklist.back();
5241 Worklist.pop_back();
5242
5243 // If we've already seen this node, ignore it.
5244 if (!VisitedNodes.insert(N))
5245 continue;
5246
5247 // Otherwise, add all chain operands to the worklist.
5248 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5249 if (N->getOperand(i).getValueType() == MVT::Other)
5250 Worklist.push_back(N->getOperand(i).Val);
5251
5252 // If this is a CopyToReg with a vreg dest, process it.
5253 if (N->getOpcode() != ISD::CopyToReg)
5254 continue;
5255
5256 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5257 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5258 continue;
5259
5260 // Ignore non-scalar or non-integer values.
5261 SDOperand Src = N->getOperand(2);
5262 MVT SrcVT = Src.getValueType();
5263 if (!SrcVT.isInteger() || SrcVT.isVector())
5264 continue;
5265
5266 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5267 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5268 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5269
5270 // Only install this information if it tells us something.
5271 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5272 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5273 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5274 if (DestReg >= FLI.LiveOutRegInfo.size())
5275 FLI.LiveOutRegInfo.resize(DestReg+1);
5276 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5277 LOI.NumSignBits = NumSignBits;
5278 LOI.KnownOne = NumSignBits;
5279 LOI.KnownZero = NumSignBits;
5280 }
5281 }
5282}
5283
Nate Begemanf15485a2006-03-27 01:32:24 +00005284void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohman417e11b2007-10-08 15:12:17 +00005285 DOUT << "Lowered selection DAG:\n";
5286 DEBUG(DAG.dump());
5287
Chris Lattneraf21d552005-10-10 16:47:10 +00005288 // Run the DAG combiner in pre-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005289 if (TimePassesIsEnabled) {
Evan Chengb5eec332008-07-12 01:38:51 +00005290 NamedRegionTimer T("DAG Combining 1");
Evan Chengebffb662008-07-01 17:59:20 +00005291 DAG.Combine(false, *AA);
5292 } else {
5293 DAG.Combine(false, *AA);
5294 }
Nate Begeman2300f552005-09-07 00:15:36 +00005295
Dan Gohman417e11b2007-10-08 15:12:17 +00005296 DOUT << "Optimized lowered selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005297 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005298
Chris Lattner1c08c712005-01-07 07:47:53 +00005299 // Second step, hack on the DAG until it only uses operations and types that
5300 // the target supports.
Chris Lattner70587ea2008-07-10 23:37:50 +00005301 if (EnableLegalizeTypes) {// Enable this some day.
5302 DAG.LegalizeTypes();
5303 // TODO: enable a dag combine pass here.
5304 }
5305
Evan Chengebffb662008-07-01 17:59:20 +00005306 if (TimePassesIsEnabled) {
Evan Chengb5eec332008-07-12 01:38:51 +00005307 NamedRegionTimer T("DAG Legalization");
Evan Chengebffb662008-07-01 17:59:20 +00005308 DAG.Legalize();
5309 } else {
5310 DAG.Legalize();
5311 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005312
Bill Wendling832171c2006-12-07 20:04:42 +00005313 DOUT << "Legalized selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005314 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005315
Chris Lattneraf21d552005-10-10 16:47:10 +00005316 // Run the DAG combiner in post-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005317 if (TimePassesIsEnabled) {
Evan Chengb5eec332008-07-12 01:38:51 +00005318 NamedRegionTimer T("DAG Combining 2");
Evan Chengebffb662008-07-01 17:59:20 +00005319 DAG.Combine(true, *AA);
5320 } else {
5321 DAG.Combine(true, *AA);
5322 }
Nate Begeman2300f552005-09-07 00:15:36 +00005323
Dan Gohman417e11b2007-10-08 15:12:17 +00005324 DOUT << "Optimized legalized selection DAG:\n";
5325 DEBUG(DAG.dump());
5326
Evan Chenga9c20912006-01-21 02:32:06 +00005327 if (ViewISelDAGs) DAG.viewGraph();
Chris Lattneread0d882008-06-17 06:09:18 +00005328
Evan Chengf1a792b2008-07-01 18:15:04 +00005329 if (!FastISel && EnableValueProp)
Chris Lattneread0d882008-06-17 06:09:18 +00005330 ComputeLiveOutVRegInfo(DAG);
Evan Cheng552c4a82006-04-28 02:09:19 +00005331
Chris Lattnera33ef482005-03-30 01:10:47 +00005332 // Third, instruction select all of the operations to machine code, adding the
5333 // code to the MachineBasicBlock.
Evan Chengebffb662008-07-01 17:59:20 +00005334 if (TimePassesIsEnabled) {
Evan Chengb5eec332008-07-12 01:38:51 +00005335 NamedRegionTimer T("Instruction Selection");
Evan Chengebffb662008-07-01 17:59:20 +00005336 InstructionSelect(DAG);
5337 } else {
5338 InstructionSelect(DAG);
5339 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005340
5341 // Emit machine code to BB. This can change 'BB' to the last block being
5342 // inserted into.
Evan Chengebffb662008-07-01 17:59:20 +00005343 if (TimePassesIsEnabled) {
Evan Chengb5eec332008-07-12 01:38:51 +00005344 NamedRegionTimer T("Instruction Scheduling");
5345 ScheduleAndEmitDAG(DAG);
Evan Chengebffb662008-07-01 17:59:20 +00005346 } else {
Evan Chengb5eec332008-07-12 01:38:51 +00005347 ScheduleAndEmitDAG(DAG);
Evan Chengebffb662008-07-01 17:59:20 +00005348 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005349
5350 // Perform target specific isel post processing.
Evan Chengebffb662008-07-01 17:59:20 +00005351 if (TimePassesIsEnabled) {
Evan Chengb5eec332008-07-12 01:38:51 +00005352 NamedRegionTimer T("Instruction Selection Post Processing");
Evan Chengebffb662008-07-01 17:59:20 +00005353 InstructionSelectPostProcessing(DAG);
5354 } else {
5355 InstructionSelectPostProcessing(DAG);
5356 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005357
Bill Wendling832171c2006-12-07 20:04:42 +00005358 DOUT << "Selected machine code:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005359 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005360}
Chris Lattner1c08c712005-01-07 07:47:53 +00005361
Dan Gohman0e5f1302008-07-07 23:02:41 +00005362void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF,
5363 FunctionLoweringInfo &FuncInfo) {
5364 // Define AllNodes here so that memory allocation is reused for
5365 // each basic block.
5366 alist<SDNode, LargestSDNode> AllNodes;
5367
5368 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
5369 SelectBasicBlock(I, MF, FuncInfo, AllNodes);
5370 AllNodes.clear();
5371 }
5372}
5373
Nate Begemanf15485a2006-03-27 01:32:24 +00005374void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005375 FunctionLoweringInfo &FuncInfo,
5376 alist<SDNode, LargestSDNode> &AllNodes) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005377 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5378 {
Chris Lattneread0d882008-06-17 06:09:18 +00005379 SelectionDAG DAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005380 getAnalysisToUpdate<MachineModuleInfo>(),
5381 AllNodes);
Nate Begemanf15485a2006-03-27 01:32:24 +00005382 CurDAG = &DAG;
5383
5384 // First step, lower LLVM code to some DAG. This DAG may use operations and
5385 // types that are not supported by the target.
5386 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5387
5388 // Second step, emit the lowered DAG as machine code.
5389 CodeGenAndEmitDAG(DAG);
5390 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005391
5392 DOUT << "Total amount of phi nodes to update: "
5393 << PHINodesToUpdate.size() << "\n";
5394 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5395 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5396 << ", " << PHINodesToUpdate[i].second << ")\n";);
Nate Begemanf15485a2006-03-27 01:32:24 +00005397
Chris Lattnera33ef482005-03-30 01:10:47 +00005398 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00005399 // PHI nodes in successors.
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005400 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005401 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5402 MachineInstr *PHI = PHINodesToUpdate[i].first;
5403 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5404 "This is not a machine PHI node that we are updating!");
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005405 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5406 false));
5407 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +00005408 }
5409 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00005410 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005411
5412 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5413 // Lower header first, if it wasn't already lowered
5414 if (!BitTestCases[i].Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005415 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005416 getAnalysisToUpdate<MachineModuleInfo>(),
5417 AllNodes);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005418 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005419 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005420 // Set the current basic block to the mbb we wish to insert the code into
5421 BB = BitTestCases[i].Parent;
5422 HSDL.setCurrentBasicBlock(BB);
5423 // Emit the code
5424 HSDL.visitBitTestHeader(BitTestCases[i]);
5425 HSDAG.setRoot(HSDL.getRoot());
5426 CodeGenAndEmitDAG(HSDAG);
5427 }
5428
5429 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattneread0d882008-06-17 06:09:18 +00005430 SelectionDAG BSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005431 getAnalysisToUpdate<MachineModuleInfo>(),
5432 AllNodes);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005433 CurDAG = &BSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005434 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005435 // Set the current basic block to the mbb we wish to insert the code into
5436 BB = BitTestCases[i].Cases[j].ThisBB;
5437 BSDL.setCurrentBasicBlock(BB);
5438 // Emit the code
5439 if (j+1 != ej)
5440 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5441 BitTestCases[i].Reg,
5442 BitTestCases[i].Cases[j]);
5443 else
5444 BSDL.visitBitTestCase(BitTestCases[i].Default,
5445 BitTestCases[i].Reg,
5446 BitTestCases[i].Cases[j]);
5447
5448
5449 BSDAG.setRoot(BSDL.getRoot());
5450 CodeGenAndEmitDAG(BSDAG);
5451 }
5452
5453 // Update PHI Nodes
5454 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5455 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5456 MachineBasicBlock *PHIBB = PHI->getParent();
5457 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5458 "This is not a machine PHI node that we are updating!");
5459 // This is "default" BB. We have two jumps to it. From "header" BB and
5460 // from last "case" BB.
5461 if (PHIBB == BitTestCases[i].Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005462 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5463 false));
5464 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5465 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5466 false));
5467 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5468 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005469 }
5470 // One of "cases" BB.
5471 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5472 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5473 if (cBB->succ_end() !=
5474 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005475 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5476 false));
5477 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005478 }
5479 }
5480 }
5481 }
5482
Nate Begeman9453eea2006-04-23 06:26:20 +00005483 // If the JumpTable record is filled in, then we need to emit a jump table.
5484 // Updating the PHI nodes is tricky in this case, since we need to determine
5485 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005486 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5487 // Lower header first, if it wasn't already lowered
5488 if (!JTCases[i].first.Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005489 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005490 getAnalysisToUpdate<MachineModuleInfo>(),
5491 AllNodes);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005492 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005493 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005494 // Set the current basic block to the mbb we wish to insert the code into
5495 BB = JTCases[i].first.HeaderBB;
5496 HSDL.setCurrentBasicBlock(BB);
5497 // Emit the code
5498 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5499 HSDAG.setRoot(HSDL.getRoot());
5500 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005501 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005502
Chris Lattneread0d882008-06-17 06:09:18 +00005503 SelectionDAG JSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005504 getAnalysisToUpdate<MachineModuleInfo>(),
5505 AllNodes);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005506 CurDAG = &JSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005507 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Nate Begeman37efe672006-04-22 18:53:45 +00005508 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005509 BB = JTCases[i].second.MBB;
5510 JSDL.setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00005511 // Emit the code
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005512 JSDL.visitJumpTable(JTCases[i].second);
5513 JSDAG.setRoot(JSDL.getRoot());
5514 CodeGenAndEmitDAG(JSDAG);
5515
Nate Begeman37efe672006-04-22 18:53:45 +00005516 // Update PHI Nodes
5517 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5518 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5519 MachineBasicBlock *PHIBB = PHI->getParent();
5520 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5521 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005522 // "default" BB. We can go there only from header BB.
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005523 if (PHIBB == JTCases[i].second.Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005524 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5525 false));
5526 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +00005527 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005528 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +00005529 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005530 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5531 false));
5532 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +00005533 }
5534 }
Nate Begeman37efe672006-04-22 18:53:45 +00005535 }
5536
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005537 // If the switch block involved a branch to one of the actual successors, we
5538 // need to update PHI nodes in that block.
5539 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5540 MachineInstr *PHI = PHINodesToUpdate[i].first;
5541 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5542 "This is not a machine PHI node that we are updating!");
5543 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005544 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5545 false));
5546 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005547 }
5548 }
5549
Nate Begemanf15485a2006-03-27 01:32:24 +00005550 // If we generated any switch lowering information, build and codegen any
5551 // additional DAGs necessary.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005552 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattneread0d882008-06-17 06:09:18 +00005553 SelectionDAG SDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005554 getAnalysisToUpdate<MachineModuleInfo>(),
5555 AllNodes);
Nate Begemanf15485a2006-03-27 01:32:24 +00005556 CurDAG = &SDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005557 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005558
Nate Begemanf15485a2006-03-27 01:32:24 +00005559 // Set the current basic block to the mbb we wish to insert the code into
5560 BB = SwitchCases[i].ThisBB;
5561 SDL.setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005562
Nate Begemanf15485a2006-03-27 01:32:24 +00005563 // Emit the code
5564 SDL.visitSwitchCase(SwitchCases[i]);
5565 SDAG.setRoot(SDL.getRoot());
5566 CodeGenAndEmitDAG(SDAG);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005567
5568 // Handle any PHI nodes in successors of this chunk, as if we were coming
5569 // from the original BB before switch expansion. Note that PHI nodes can
5570 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5571 // handle them the right number of times.
Chris Lattner57ab6592006-10-24 17:57:59 +00005572 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005573 for (MachineBasicBlock::iterator Phi = BB->begin();
5574 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5575 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5576 for (unsigned pn = 0; ; ++pn) {
5577 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5578 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005579 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5580 second, false));
5581 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005582 break;
5583 }
5584 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005585 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005586
5587 // Don't process RHS if same block as LHS.
Chris Lattner57ab6592006-10-24 17:57:59 +00005588 if (BB == SwitchCases[i].FalseBB)
5589 SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005590
5591 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner24525952006-10-24 18:07:37 +00005592 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner57ab6592006-10-24 17:57:59 +00005593 SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00005594 }
Chris Lattner57ab6592006-10-24 17:57:59 +00005595 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00005596 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005597}
Evan Chenga9c20912006-01-21 02:32:06 +00005598
Jim Laskey13ec7022006-08-01 14:21:23 +00005599
Evan Chengb5eec332008-07-12 01:38:51 +00005600//===----------------------------------------------------------------------===//
5601/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
Evan Chenga9c20912006-01-21 02:32:06 +00005602/// target node in the graph.
Evan Chengb5eec332008-07-12 01:38:51 +00005603void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
Evan Chenga9c20912006-01-21 02:32:06 +00005604 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00005605
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005606 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00005607
5608 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005609 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00005610 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00005611 }
Jim Laskey13ec7022006-08-01 14:21:23 +00005612
Evan Chengb5eec332008-07-12 01:38:51 +00005613 ScheduleDAG *SL = Ctor(this, &DAG, BB, FastISel);
5614 BB = SL->Run();
Dan Gohman3e1a7ae2007-08-28 20:32:58 +00005615
Evan Chengb5eec332008-07-12 01:38:51 +00005616 if (ViewSUnitDAGs) SL->viewGraph();
5617
5618 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00005619}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005620
Chris Lattner03fc53c2006-03-06 00:22:00 +00005621
Jim Laskey9ff542f2006-08-01 18:29:48 +00005622HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5623 return new HazardRecognizer();
5624}
5625
Chris Lattner75548062006-10-11 03:58:02 +00005626//===----------------------------------------------------------------------===//
5627// Helper functions used by the generated instruction selector.
5628//===----------------------------------------------------------------------===//
5629// Calls to these methods are generated by tblgen.
5630
5631/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5632/// the dag combiner simplified the 255, we still want to match. RHS is the
5633/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5634/// specified in the .td file (e.g. 255).
5635bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00005636 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005637 const APInt &ActualMask = RHS->getAPIntValue();
5638 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005639
5640 // If the actual mask exactly matches, success!
5641 if (ActualMask == DesiredMask)
5642 return true;
5643
5644 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005645 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005646 return false;
5647
5648 // Otherwise, the DAG Combiner may have proven that the value coming in is
5649 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005650 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00005651 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00005652 return true;
5653
5654 // TODO: check to see if missing bits are just not demanded.
5655
5656 // Otherwise, this pattern doesn't match.
5657 return false;
5658}
5659
5660/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5661/// the dag combiner simplified the 255, we still want to match. RHS is the
5662/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5663/// specified in the .td file (e.g. 255).
5664bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005665 int64_t DesiredMaskS) const {
5666 const APInt &ActualMask = RHS->getAPIntValue();
5667 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005668
5669 // If the actual mask exactly matches, success!
5670 if (ActualMask == DesiredMask)
5671 return true;
5672
5673 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005674 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005675 return false;
5676
5677 // Otherwise, the DAG Combiner may have proven that the value coming in is
5678 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005679 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00005680
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005681 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005682 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00005683
5684 // If all the missing bits in the or are already known to be set, match!
5685 if ((NeededMask & KnownOne) == NeededMask)
5686 return true;
5687
5688 // TODO: check to see if missing bits are just not demanded.
5689
5690 // Otherwise, this pattern doesn't match.
5691 return false;
5692}
5693
Jim Laskey9ff542f2006-08-01 18:29:48 +00005694
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005695/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5696/// by tblgen. Others should not call it.
5697void SelectionDAGISel::
5698SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
5699 std::vector<SDOperand> InOps;
5700 std::swap(InOps, Ops);
5701
5702 Ops.push_back(InOps[0]); // input chain.
5703 Ops.push_back(InOps[1]); // input asm string.
5704
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005705 unsigned i = 2, e = InOps.size();
5706 if (InOps[e-1].getValueType() == MVT::Flag)
5707 --e; // Don't process a flag operand if it is here.
5708
5709 while (i != e) {
5710 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5711 if ((Flags & 7) != 4 /*MEM*/) {
5712 // Just skip over this operand, copying the operands verbatim.
5713 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5714 i += (Flags >> 3) + 1;
5715 } else {
5716 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5717 // Otherwise, this is a memory operand. Ask the target to select it.
5718 std::vector<SDOperand> SelOps;
5719 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling832171c2006-12-07 20:04:42 +00005720 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005721 exit(1);
5722 }
5723
5724 // Add this to the output node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005725 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner36d43962006-12-16 21:14:48 +00005726 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattner4b993b12007-04-09 00:33:58 +00005727 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005728 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5729 i += 2;
5730 }
5731 }
5732
5733 // Add the flag input back if present.
5734 if (e != InOps.size())
5735 Ops.push_back(InOps.back());
5736}
Devang Patel794fd752007-05-01 21:15:47 +00005737
Devang Patel19974732007-05-03 01:11:54 +00005738char SelectionDAGISel::ID = 0;