blob: 815fdb7cc748e4e173d730b44f27e10bd8880fe5 [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"
Evan Cheng381cb072008-08-08 07:27:28 +000015#include "llvm/CodeGen/SelectionDAGISel.h"
16#include "SimpleBBISel.h"
Anton Korobeynikov5502bf62007-04-04 21:14:49 +000017#include "llvm/ADT/BitVector.h"
Jim Laskeyc7c3f112006-10-16 20:52:31 +000018#include "llvm/Analysis/AliasAnalysis.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"
Evan Cheng381cb072008-08-08 07:27:28 +000036#include "llvm/CodeGen/ScheduleDAG.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000037#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000038#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000039#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000040#include "llvm/Target/TargetData.h"
41#include "llvm/Target/TargetFrameInfo.h"
42#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetLowering.h"
44#include "llvm/Target/TargetMachine.h"
Vladimir Prus12472912006-05-23 13:43:15 +000045#include "llvm/Target/TargetOptions.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000046#include "llvm/Support/Compiler.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000047#include "llvm/Support/Debug.h"
48#include "llvm/Support/MathExtras.h"
49#include "llvm/Support/Timer.h"
Jeff Cohen7e881032006-02-24 02:52:40 +000050#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000051using namespace llvm;
52
Chris Lattneread0d882008-06-17 06:09:18 +000053static cl::opt<bool>
Chris Lattner70587ea2008-07-10 23:37:50 +000054EnableValueProp("enable-value-prop", cl::Hidden);
55static cl::opt<bool>
Duncan Sandsf00e74f2008-07-17 17:06:03 +000056EnableLegalizeTypes("enable-legalize-types", cl::Hidden);
Chris Lattneread0d882008-06-17 06:09:18 +000057
58
Chris Lattnerda8abb02005-09-01 18:44:10 +000059#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000060static cl::opt<bool>
Dan Gohman462dc7f2008-07-21 20:00:07 +000061ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
62 cl::desc("Pop up a window to show dags before the first "
63 "dag combine pass"));
64static cl::opt<bool>
65ViewLegalizeTypesDAGs("view-legalize-types-dags", cl::Hidden,
66 cl::desc("Pop up a window to show dags before legalize types"));
67static cl::opt<bool>
68ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
69 cl::desc("Pop up a window to show dags before legalize"));
70static cl::opt<bool>
71ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
72 cl::desc("Pop up a window to show dags before the second "
73 "dag combine pass"));
74static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000075ViewISelDAGs("view-isel-dags", cl::Hidden,
76 cl::desc("Pop up a window to show isel dags as they are selected"));
77static cl::opt<bool>
78ViewSchedDAGs("view-sched-dags", cl::Hidden,
79 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000080static cl::opt<bool>
81ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +000082 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000083#else
Dan Gohman462dc7f2008-07-21 20:00:07 +000084static const bool ViewDAGCombine1 = false,
85 ViewLegalizeTypesDAGs = false, ViewLegalizeDAGs = false,
86 ViewDAGCombine2 = false,
87 ViewISelDAGs = false, ViewSchedDAGs = false,
88 ViewSUnitDAGs = false;
Chris Lattner7944d9d2005-01-12 03:41:21 +000089#endif
90
Jim Laskeyeb577ba2006-08-02 12:30:23 +000091//===---------------------------------------------------------------------===//
92///
93/// RegisterScheduler class - Track the registration of instruction schedulers.
94///
95//===---------------------------------------------------------------------===//
96MachinePassRegistry RegisterScheduler::Registry;
97
98//===---------------------------------------------------------------------===//
99///
100/// ISHeuristic command line option for instruction schedulers.
101///
102//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +0000103static cl::opt<RegisterScheduler::FunctionPassCtor, false,
104 RegisterPassParser<RegisterScheduler> >
105ISHeuristic("pre-RA-sched",
106 cl::init(&createDefaultScheduler),
107 cl::desc("Instruction schedulers available (before register"
108 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +0000109
Dan Gohman844731a2008-05-13 00:00:25 +0000110static RegisterScheduler
111defaultListDAGScheduler("default", " Best scheduler for the target",
112 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +0000113
Evan Cheng5c807602008-02-26 02:33:44 +0000114namespace { struct SDISelAsmOperandInfo; }
Chris Lattnerbf996f12007-04-30 17:29:31 +0000115
Dan Gohman1d685a42008-06-07 02:02:36 +0000116/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
117/// insertvalue or extractvalue indices that identify a member, return
118/// the linearized index of the start of the member.
119///
120static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
121 const unsigned *Indices,
122 const unsigned *IndicesEnd,
123 unsigned CurIndex = 0) {
124 // Base case: We're done.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000125 if (Indices && Indices == IndicesEnd)
Dan Gohman1d685a42008-06-07 02:02:36 +0000126 return CurIndex;
127
Chris Lattnerf899fce2008-04-27 23:48:12 +0000128 // Given a struct type, recursively traverse the elements.
129 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000130 for (StructType::element_iterator EB = STy->element_begin(),
131 EI = EB,
Dan Gohman1d685a42008-06-07 02:02:36 +0000132 EE = STy->element_end();
133 EI != EE; ++EI) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000134 if (Indices && *Indices == unsigned(EI - EB))
135 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
136 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000137 }
138 }
139 // Given an array type, recursively traverse the elements.
140 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
141 const Type *EltTy = ATy->getElementType();
142 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000143 if (Indices && *Indices == i)
144 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
145 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000146 }
147 }
148 // We haven't found the type we're looking for, so keep searching.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000149 return CurIndex + 1;
Dan Gohman1d685a42008-06-07 02:02:36 +0000150}
151
152/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
153/// MVTs that represent all the individual underlying
154/// non-aggregate types that comprise it.
155///
156/// If Offsets is non-null, it points to a vector to be filled in
157/// with the in-memory offsets of each of the individual values.
158///
159static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
160 SmallVectorImpl<MVT> &ValueVTs,
161 SmallVectorImpl<uint64_t> *Offsets = 0,
162 uint64_t StartingOffset = 0) {
163 // Given a struct type, recursively traverse the elements.
164 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
165 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
166 for (StructType::element_iterator EB = STy->element_begin(),
167 EI = EB,
168 EE = STy->element_end();
169 EI != EE; ++EI)
170 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
171 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattnerf899fce2008-04-27 23:48:12 +0000172 return;
Dan Gohman23ce5022008-04-25 18:27:55 +0000173 }
Chris Lattnerf899fce2008-04-27 23:48:12 +0000174 // Given an array type, recursively traverse the elements.
175 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
176 const Type *EltTy = ATy->getElementType();
Dan Gohman1d685a42008-06-07 02:02:36 +0000177 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000178 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +0000179 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
180 StartingOffset + i * EltSize);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000181 return;
182 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000183 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattnerf899fce2008-04-27 23:48:12 +0000184 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman1d685a42008-06-07 02:02:36 +0000185 if (Offsets)
186 Offsets->push_back(StartingOffset);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000187}
Dan Gohman23ce5022008-04-25 18:27:55 +0000188
Chris Lattnerf899fce2008-04-27 23:48:12 +0000189namespace {
Dan Gohman0fe00902008-04-28 18:10:39 +0000190 /// RegsForValue - This struct represents the registers (physical or virtual)
191 /// that a particular set of values is assigned, and the type information about
192 /// the value. The most common situation is to represent one value at a time,
193 /// but struct or array values are handled element-wise as multiple values.
194 /// The splitting of aggregates is performed recursively, so that we never
195 /// have aggregate-typed registers. The values at this point do not necessarily
196 /// have legal types, so each value may require one or more registers of some
197 /// legal type.
198 ///
Chris Lattner95255282006-06-28 23:17:24 +0000199 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman23ce5022008-04-25 18:27:55 +0000200 /// TLI - The TargetLowering object.
Dan Gohman0fe00902008-04-28 18:10:39 +0000201 ///
Dan Gohman23ce5022008-04-25 18:27:55 +0000202 const TargetLowering *TLI;
203
Dan Gohman0fe00902008-04-28 18:10:39 +0000204 /// ValueVTs - The value types of the values, which may not be legal, and
205 /// may need be promoted or synthesized from one or more registers.
206 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000207 SmallVector<MVT, 4> ValueVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000208
Dan Gohman0fe00902008-04-28 18:10:39 +0000209 /// RegVTs - The value types of the registers. This is the same size as
210 /// ValueVTs and it records, for each value, what the type of the assigned
211 /// register or registers are. (Individual values are never synthesized
212 /// from more than one type of register.)
213 ///
214 /// With virtual registers, the contents of RegVTs is redundant with TLI's
215 /// getRegisterType member function, however when with physical registers
216 /// it is necessary to have a separate record of the types.
Chris Lattner864635a2006-02-22 22:37:12 +0000217 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000218 SmallVector<MVT, 4> RegVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000219
Dan Gohman0fe00902008-04-28 18:10:39 +0000220 /// Regs - This list holds the registers assigned to the values.
221 /// Each legal or promoted value requires one register, and each
222 /// expanded value requires multiple registers.
223 ///
224 SmallVector<unsigned, 4> Regs;
Chris Lattner864635a2006-02-22 22:37:12 +0000225
Dan Gohman23ce5022008-04-25 18:27:55 +0000226 RegsForValue() : TLI(0) {}
Chris Lattner864635a2006-02-22 22:37:12 +0000227
Dan Gohman23ce5022008-04-25 18:27:55 +0000228 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000229 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000230 MVT regvt, MVT valuevt)
Dan Gohman0fe00902008-04-28 18:10:39 +0000231 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000232 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000233 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000234 const SmallVector<MVT, 4> &regvts,
235 const SmallVector<MVT, 4> &valuevts)
Dan Gohman0fe00902008-04-28 18:10:39 +0000236 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000237 RegsForValue(const TargetLowering &tli,
238 unsigned Reg, const Type *Ty) : TLI(&tli) {
239 ComputeValueVTs(tli, Ty, ValueVTs);
240
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000241 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000242 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +0000243 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000244 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000245 for (unsigned i = 0; i != NumRegs; ++i)
246 Regs.push_back(Reg + i);
247 RegVTs.push_back(RegisterVT);
248 Reg += NumRegs;
249 }
Chris Lattner864635a2006-02-22 22:37:12 +0000250 }
251
Chris Lattner41f62592008-04-29 04:29:54 +0000252 /// append - Add the specified values to this one.
253 void append(const RegsForValue &RHS) {
254 TLI = RHS.TLI;
255 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
256 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
257 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
258 }
259
260
Chris Lattner864635a2006-02-22 22:37:12 +0000261 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman23ce5022008-04-25 18:27:55 +0000262 /// this value and returns the result as a ValueVTs value. This uses
Chris Lattner864635a2006-02-22 22:37:12 +0000263 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000264 /// If the Flag pointer is NULL, no flag is used.
Dan Gohman475871a2008-07-27 21:46:04 +0000265 SDValue getCopyFromRegs(SelectionDAG &DAG,
266 SDValue &Chain, SDValue *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000267
268 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
269 /// specified value into the registers specified by this object. This uses
270 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000271 /// If the Flag pointer is NULL, no flag is used.
Dan Gohman475871a2008-07-27 21:46:04 +0000272 void getCopyToRegs(SDValue Val, SelectionDAG &DAG,
273 SDValue &Chain, SDValue *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000274
275 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
276 /// operand list. This adds the code marker and includes the number of
277 /// values added into it.
278 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +0000279 std::vector<SDValue> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000280 };
281}
Evan Cheng4ef10862006-01-23 07:01:07 +0000282
Chris Lattner1c08c712005-01-07 07:47:53 +0000283namespace llvm {
284 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000285 /// createDefaultScheduler - This creates an instruction scheduler appropriate
286 /// for the target.
287 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
288 SelectionDAG *DAG,
Evan Cheng4576f6d2008-07-01 18:05:03 +0000289 MachineBasicBlock *BB,
290 bool Fast) {
Jim Laskey9373beb2006-08-01 19:14:14 +0000291 TargetLowering &TLI = IS->getTargetLowering();
292
293 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
Evan Cheng4576f6d2008-07-01 18:05:03 +0000294 return createTDListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000295 } else {
296 assert(TLI.getSchedulingPreference() ==
297 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng4576f6d2008-07-01 18:05:03 +0000298 return createBURRListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000299 }
300 }
301
302
303 //===--------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000304 /// FunctionLoweringInfo - This contains information that is global to a
305 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000306 class FunctionLoweringInfo {
307 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000308 TargetLowering &TLI;
309 Function &Fn;
310 MachineFunction &MF;
Chris Lattner84bc5422007-12-31 04:13:23 +0000311 MachineRegisterInfo &RegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000312
313 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
314
315 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
316 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
317
318 /// ValueMap - Since we emit code for the function a basic block at a time,
319 /// we must remember which virtual registers hold the values for
320 /// cross-basic-block values.
Chris Lattner9f24ad72007-02-04 01:35:11 +0000321 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000322
323 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
324 /// the entry block. This allows the allocas to be efficiently referenced
325 /// anywhere in the function.
326 std::map<const AllocaInst*, int> StaticAllocaMap;
327
Duncan Sandsf4070822007-06-15 19:04:19 +0000328#ifndef NDEBUG
329 SmallSet<Instruction*, 8> CatchInfoLost;
330 SmallSet<Instruction*, 8> CatchInfoFound;
331#endif
332
Duncan Sands83ec4b62008-06-06 12:08:01 +0000333 unsigned MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000334 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000335 }
Chris Lattner571e4342006-10-27 21:36:01 +0000336
337 /// isExportedInst - Return true if the specified value is an instruction
338 /// exported from its block.
339 bool isExportedInst(const Value *V) {
340 return ValueMap.count(V);
341 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000342
Chris Lattner3c384492006-03-16 19:51:18 +0000343 unsigned CreateRegForValue(const Value *V);
344
Chris Lattner1c08c712005-01-07 07:47:53 +0000345 unsigned InitializeRegForValue(const Value *V) {
346 unsigned &R = ValueMap[V];
347 assert(R == 0 && "Already initialized this value register!");
348 return R = CreateRegForValue(V);
349 }
Chris Lattneread0d882008-06-17 06:09:18 +0000350
351 struct LiveOutInfo {
352 unsigned NumSignBits;
353 APInt KnownOne, KnownZero;
354 LiveOutInfo() : NumSignBits(0) {}
355 };
356
357 /// LiveOutRegInfo - Information about live out vregs, indexed by their
358 /// register number offset by 'FirstVirtualRegister'.
359 std::vector<LiveOutInfo> LiveOutRegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000360 };
361}
362
Duncan Sandscf26d7c2007-07-04 20:52:51 +0000363/// isSelector - Return true if this instruction is a call to the
364/// eh.selector intrinsic.
365static bool isSelector(Instruction *I) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000366 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000367 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
368 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Duncan Sandsf4070822007-06-15 19:04:19 +0000369 return false;
370}
371
Chris Lattner1c08c712005-01-07 07:47:53 +0000372/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000373/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000374/// switch or atomic instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000375static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
376 if (isa<PHINode>(I)) return true;
377 BasicBlock *BB = I->getParent();
378 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000379 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattner571e4342006-10-27 21:36:01 +0000380 // FIXME: Remove switchinst special case.
Nate Begemanf15485a2006-03-27 01:32:24 +0000381 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000382 return true;
383 return false;
384}
385
Chris Lattnerbf209482005-10-30 19:42:35 +0000386/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000387/// entry block, return true. This includes arguments used by switches, since
388/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000389static bool isOnlyUsedInEntryBlock(Argument *A) {
390 BasicBlock *Entry = A->getParent()->begin();
391 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000392 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000393 return false; // Use not in entry block.
394 return true;
395}
396
Chris Lattner1c08c712005-01-07 07:47:53 +0000397FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000398 Function &fn, MachineFunction &mf)
Chris Lattner84bc5422007-12-31 04:13:23 +0000399 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000400
Chris Lattnerbf209482005-10-30 19:42:35 +0000401 // Create a vreg for each argument register that is not dead and is used
402 // outside of the entry block for the function.
403 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
404 AI != E; ++AI)
405 if (!isOnlyUsedInEntryBlock(AI))
406 InitializeRegForValue(AI);
407
Chris Lattner1c08c712005-01-07 07:47:53 +0000408 // Initialize the mapping of values to registers. This is only set up for
409 // instruction values that are used outside of the block that defines
410 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000411 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000412 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
413 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencerb83eb642006-10-20 07:07:24 +0000414 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000415 const Type *Ty = AI->getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +0000416 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000417 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000418 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000419 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000420
Reid Spencerb83eb642006-10-20 07:07:24 +0000421 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000422 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000423 StaticAllocaMap[AI] =
Chris Lattner6266c182007-04-25 04:08:28 +0000424 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000425 }
426
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000427 for (; BB != EB; ++BB)
428 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000429 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
430 if (!isa<AllocaInst>(I) ||
431 !StaticAllocaMap.count(cast<AllocaInst>(I)))
432 InitializeRegForValue(I);
433
434 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
435 // also creates the initial PHI MachineInstrs, though none of the input
436 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000437 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Dan Gohman0e5f1302008-07-07 23:02:41 +0000438 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000439 MBBMap[BB] = MBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +0000440 MF.push_back(MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000441
442 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
443 // appropriate.
444 PHINode *PN;
Chris Lattner8c494ab2006-10-27 23:50:33 +0000445 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
446 if (PN->use_empty()) continue;
447
Chris Lattner8c494ab2006-10-27 23:50:33 +0000448 unsigned PHIReg = ValueMap[PN];
449 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Dan Gohman6f498b02008-08-04 23:42:46 +0000450
451 SmallVector<MVT, 4> ValueVTs;
452 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
453 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
454 MVT VT = ValueVTs[vti];
455 unsigned NumRegisters = TLI.getNumRegisters(VT);
456 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
457 for (unsigned i = 0; i != NumRegisters; ++i)
458 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
459 PHIReg += NumRegisters;
460 }
Chris Lattner8c494ab2006-10-27 23:50:33 +0000461 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000462 }
463}
464
Chris Lattner3c384492006-03-16 19:51:18 +0000465/// CreateRegForValue - Allocate the appropriate number of virtual registers of
466/// the correctly promoted or expanded types. Assign these registers
467/// consecutive vreg numbers and return the first assigned number.
Dan Gohman10a6b7a2008-04-28 18:19:43 +0000468///
469/// In the case that the given value has struct or array type, this function
470/// will assign registers for each member or element.
471///
Chris Lattner3c384492006-03-16 19:51:18 +0000472unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000473 SmallVector<MVT, 4> ValueVTs;
Chris Lattnerb606dba2008-04-28 06:44:42 +0000474 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Bill Wendling95b39552007-04-24 21:13:23 +0000475
Dan Gohman23ce5022008-04-25 18:27:55 +0000476 unsigned FirstReg = 0;
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000477 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000478 MVT ValueVT = ValueVTs[Value];
479 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohman8c8c5fc2007-06-27 14:34:07 +0000480
Chris Lattnerb606dba2008-04-28 06:44:42 +0000481 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000482 for (unsigned i = 0; i != NumRegs; ++i) {
483 unsigned R = MakeReg(RegisterVT);
484 if (!FirstReg) FirstReg = R;
485 }
486 }
487 return FirstReg;
Chris Lattner3c384492006-03-16 19:51:18 +0000488}
Chris Lattner1c08c712005-01-07 07:47:53 +0000489
490//===----------------------------------------------------------------------===//
491/// SelectionDAGLowering - This is the common target-independent lowering
492/// implementation that is parameterized by a TargetLowering object.
493/// Also, targets can overload any lowering method.
494///
495namespace llvm {
496class SelectionDAGLowering {
497 MachineBasicBlock *CurMBB;
498
Dan Gohman475871a2008-07-27 21:46:04 +0000499 DenseMap<const Value*, SDValue> NodeMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000500
Chris Lattnerd3948112005-01-17 22:19:26 +0000501 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
502 /// them up and then emit token factor nodes when possible. This allows us to
503 /// get simple disambiguation between loads without worrying about alias
504 /// analysis.
Dan Gohman475871a2008-07-27 21:46:04 +0000505 SmallVector<SDValue, 8> PendingLoads;
Chris Lattnerd3948112005-01-17 22:19:26 +0000506
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000507 /// PendingExports - CopyToReg nodes that copy values to virtual registers
508 /// for export to other blocks need to be emitted before any terminator
509 /// instruction, but they have no other ordering requirements. We bunch them
510 /// up and the emit a single tokenfactor for them just before terminator
511 /// instructions.
Dan Gohman475871a2008-07-27 21:46:04 +0000512 std::vector<SDValue> PendingExports;
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000513
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000514 /// Case - A struct to record the Value for a switch case, and the
515 /// case's target basic block.
516 struct Case {
517 Constant* Low;
518 Constant* High;
519 MachineBasicBlock* BB;
520
521 Case() : Low(0), High(0), BB(0) { }
522 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
523 Low(low), High(high), BB(bb) { }
524 uint64_t size() const {
525 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
526 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
527 return (rHigh - rLow + 1ULL);
528 }
529 };
530
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000531 struct CaseBits {
532 uint64_t Mask;
533 MachineBasicBlock* BB;
534 unsigned Bits;
535
536 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
537 Mask(mask), BB(bb), Bits(bits) { }
538 };
539
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000540 typedef std::vector<Case> CaseVector;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000541 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000542 typedef CaseVector::iterator CaseItr;
543 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemanf15485a2006-03-27 01:32:24 +0000544
545 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
546 /// of conditional branches.
547 struct CaseRec {
548 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
549 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
550
551 /// CaseBB - The MBB in which to emit the compare and branch
552 MachineBasicBlock *CaseBB;
553 /// LT, GE - If nonzero, we know the current case value must be less-than or
554 /// greater-than-or-equal-to these Constants.
555 Constant *LT;
556 Constant *GE;
557 /// Range - A pair of iterators representing the range of case values to be
558 /// processed at this point in the binary search tree.
559 CaseRange Range;
560 };
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000561
562 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000563
564 /// The comparison function for sorting the switch case values in the vector.
565 /// WARNING: Case ranges should be disjoint!
Nate Begemanf15485a2006-03-27 01:32:24 +0000566 struct CaseCmp {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000567 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000568 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
569 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
570 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
571 return CI1->getValue().slt(CI2->getValue());
Nate Begemanf15485a2006-03-27 01:32:24 +0000572 }
573 };
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000574
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000575 struct CaseBitsCmp {
576 bool operator () (const CaseBits& C1, const CaseBits& C2) {
577 return C1.Bits > C2.Bits;
578 }
579 };
580
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000581 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemanf15485a2006-03-27 01:32:24 +0000582
Chris Lattner1c08c712005-01-07 07:47:53 +0000583public:
584 // TLI - This is information that describes the available target features we
585 // need for lowering. This indicates when operations are unavailable,
586 // implemented with a libcall, etc.
587 TargetLowering &TLI;
588 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000589 const TargetData *TD;
Dan Gohman5f43f922007-08-27 16:26:13 +0000590 AliasAnalysis &AA;
Chris Lattner1c08c712005-01-07 07:47:53 +0000591
Nate Begemanf15485a2006-03-27 01:32:24 +0000592 /// SwitchCases - Vector of CaseBlock structures used to communicate
593 /// SwitchInst code generation information.
594 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000595 /// JTCases - Vector of JumpTable structures used to communicate
596 /// SwitchInst code generation information.
597 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000598 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemanf15485a2006-03-27 01:32:24 +0000599
Chris Lattner1c08c712005-01-07 07:47:53 +0000600 /// FuncInfo - Information about the function as a whole.
601 ///
602 FunctionLoweringInfo &FuncInfo;
Gordon Henriksence224772008-01-07 01:30:38 +0000603
604 /// GCI - Garbage collection metadata for the function.
605 CollectorMetadata *GCI;
Chris Lattner1c08c712005-01-07 07:47:53 +0000606
607 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman5f43f922007-08-27 16:26:13 +0000608 AliasAnalysis &aa,
Gordon Henriksence224772008-01-07 01:30:38 +0000609 FunctionLoweringInfo &funcinfo,
610 CollectorMetadata *gci)
Dan Gohman5f43f922007-08-27 16:26:13 +0000611 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksence224772008-01-07 01:30:38 +0000612 FuncInfo(funcinfo), GCI(gci) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000613 }
614
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000615 /// getRoot - Return the current virtual root of the Selection DAG,
616 /// flushing any PendingLoad items. This must be done before emitting
617 /// a store or any other node that may need to be ordered after any
618 /// prior load instructions.
Chris Lattnera651cf62005-01-17 19:43:36 +0000619 ///
Dan Gohman475871a2008-07-27 21:46:04 +0000620 SDValue getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000621 if (PendingLoads.empty())
622 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000623
Chris Lattnerd3948112005-01-17 22:19:26 +0000624 if (PendingLoads.size() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +0000625 SDValue Root = PendingLoads[0];
Chris Lattnerd3948112005-01-17 22:19:26 +0000626 DAG.setRoot(Root);
627 PendingLoads.clear();
628 return Root;
629 }
630
631 // Otherwise, we have to make a token factor node.
Dan Gohman475871a2008-07-27 21:46:04 +0000632 SDValue Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000633 &PendingLoads[0], PendingLoads.size());
Chris Lattnerd3948112005-01-17 22:19:26 +0000634 PendingLoads.clear();
635 DAG.setRoot(Root);
636 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000637 }
638
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000639 /// getControlRoot - Similar to getRoot, but instead of flushing all the
640 /// PendingLoad items, flush all the PendingExports items. It is necessary
641 /// to do this before emitting a terminator instruction.
642 ///
Dan Gohman475871a2008-07-27 21:46:04 +0000643 SDValue getControlRoot() {
644 SDValue Root = DAG.getRoot();
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000645
646 if (PendingExports.empty())
647 return Root;
648
649 // Turn all of the CopyToReg chains into one factored node.
650 if (Root.getOpcode() != ISD::EntryToken) {
651 unsigned i = 0, e = PendingExports.size();
652 for (; i != e; ++i) {
653 assert(PendingExports[i].Val->getNumOperands() > 1);
654 if (PendingExports[i].Val->getOperand(0) == Root)
655 break; // Don't add the root if we already indirectly depend on it.
656 }
657
658 if (i == e)
659 PendingExports.push_back(Root);
660 }
661
662 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
663 &PendingExports[0],
664 PendingExports.size());
665 PendingExports.clear();
666 DAG.setRoot(Root);
667 return Root;
668 }
669
670 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Chris Lattner571e4342006-10-27 21:36:01 +0000671
Chris Lattner1c08c712005-01-07 07:47:53 +0000672 void visit(Instruction &I) { visit(I.getOpcode(), I); }
673
674 void visit(unsigned Opcode, User &I) {
Chris Lattner1e7aa5c2006-11-10 04:41:34 +0000675 // Note: this doesn't use InstVisitor, because it has to work with
676 // ConstantExpr's in addition to instructions.
Chris Lattner1c08c712005-01-07 07:47:53 +0000677 switch (Opcode) {
678 default: assert(0 && "Unknown instruction type encountered!");
679 abort();
680 // Build the switch statement using the Instruction.def file.
681#define HANDLE_INST(NUM, OPCODE, CLASS) \
682 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
683#include "llvm/Instruction.def"
684 }
685 }
686
687 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
688
Dan Gohman475871a2008-07-27 21:46:04 +0000689 SDValue getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000690
Dan Gohman475871a2008-07-27 21:46:04 +0000691 void setValue(const Value *V, SDValue NewN) {
692 SDValue &N = NodeMap[V];
Chris Lattner1c08c712005-01-07 07:47:53 +0000693 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner0da331f2007-02-04 01:31:47 +0000694 N = NewN;
Chris Lattner1c08c712005-01-07 07:47:53 +0000695 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000696
Evan Cheng5c807602008-02-26 02:33:44 +0000697 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnere7cf56a2007-04-30 21:11:17 +0000698 std::set<unsigned> &OutputRegs,
699 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000700
Chris Lattner571e4342006-10-27 21:36:01 +0000701 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
702 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
703 unsigned Opc);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000704 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattner571e4342006-10-27 21:36:01 +0000705 void ExportFromCurrentBlock(Value *V);
Dan Gohman475871a2008-07-27 21:46:04 +0000706 void LowerCallTo(CallSite CS, SDValue Callee, bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000707 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsdc024672007-11-27 13:23:08 +0000708
Chris Lattner1c08c712005-01-07 07:47:53 +0000709 // Terminator instructions.
710 void visitRet(ReturnInst &I);
711 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000712 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000713 void visitUnreachable(UnreachableInst &I) { /* noop */ }
714
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000715 // Helpers for visitSwitch
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000716 bool handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000717 CaseRecVector& WorkList,
718 Value* SV,
719 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000720 bool handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000721 CaseRecVector& WorkList,
722 Value* SV,
723 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000724 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000725 CaseRecVector& WorkList,
726 Value* SV,
727 MachineBasicBlock* Default);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000728 bool handleBitTestsSwitchCase(CaseRec& CR,
729 CaseRecVector& WorkList,
730 Value* SV,
731 MachineBasicBlock* Default);
Nate Begemanf15485a2006-03-27 01:32:24 +0000732 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000733 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
734 void visitBitTestCase(MachineBasicBlock* NextMBB,
735 unsigned Reg,
736 SelectionDAGISel::BitTestCase &B);
Nate Begeman37efe672006-04-22 18:53:45 +0000737 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000738 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
739 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemanf15485a2006-03-27 01:32:24 +0000740
Chris Lattner1c08c712005-01-07 07:47:53 +0000741 // These all get lowered before this pass.
Jim Laskeyb180aa12007-02-21 22:53:45 +0000742 void visitInvoke(InvokeInst &I);
743 void visitUnwind(UnwindInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000744
Dan Gohman7f321562007-06-25 16:23:39 +0000745 void visitBinary(User &I, unsigned OpCode);
Nate Begemane21ea612005-11-18 07:42:56 +0000746 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000747 void visitAdd(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000748 if (I.getType()->isFPOrFPVector())
749 visitBinary(I, ISD::FADD);
Reid Spencer1628cec2006-10-26 06:15:43 +0000750 else
Dan Gohman7f321562007-06-25 16:23:39 +0000751 visitBinary(I, ISD::ADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000752 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000753 void visitSub(User &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000754 void visitMul(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000755 if (I.getType()->isFPOrFPVector())
756 visitBinary(I, ISD::FMUL);
Reid Spencer1628cec2006-10-26 06:15:43 +0000757 else
Dan Gohman7f321562007-06-25 16:23:39 +0000758 visitBinary(I, ISD::MUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000759 }
Dan Gohman7f321562007-06-25 16:23:39 +0000760 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
761 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
762 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
763 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
764 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
765 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
766 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
767 void visitOr (User &I) { visitBinary(I, ISD::OR); }
768 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer24d6da52007-01-21 00:29:26 +0000769 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencer3822ff52006-11-08 06:47:33 +0000770 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
771 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000772 void visitICmp(User &I);
773 void visitFCmp(User &I);
Nate Begemanb43e9c12008-05-12 19:40:03 +0000774 void visitVICmp(User &I);
775 void visitVFCmp(User &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000776 // Visit the conversion instructions
777 void visitTrunc(User &I);
778 void visitZExt(User &I);
779 void visitSExt(User &I);
780 void visitFPTrunc(User &I);
781 void visitFPExt(User &I);
782 void visitFPToUI(User &I);
783 void visitFPToSI(User &I);
784 void visitUIToFP(User &I);
785 void visitSIToFP(User &I);
786 void visitPtrToInt(User &I);
787 void visitIntToPtr(User &I);
788 void visitBitCast(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000789
Chris Lattner2bbd8102006-03-29 00:11:43 +0000790 void visitExtractElement(User &I);
791 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000792 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000793
Dan Gohman1d685a42008-06-07 02:02:36 +0000794 void visitExtractValue(ExtractValueInst &I);
795 void visitInsertValue(InsertValueInst &I);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000796
Chris Lattner1c08c712005-01-07 07:47:53 +0000797 void visitGetElementPtr(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000798 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000799
800 void visitMalloc(MallocInst &I);
801 void visitFree(FreeInst &I);
802 void visitAlloca(AllocaInst &I);
803 void visitLoad(LoadInst &I);
804 void visitStore(StoreInst &I);
805 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
806 void visitCall(CallInst &I);
Duncan Sandsfd7b3262007-12-17 18:08:19 +0000807 void visitInlineAsm(CallSite CS);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000808 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000809 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000810
Chris Lattner1c08c712005-01-07 07:47:53 +0000811 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000812 void visitVAArg(VAArgInst &I);
813 void visitVAEnd(CallInst &I);
814 void visitVACopy(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000815
Chris Lattner1c08c712005-01-07 07:47:53 +0000816 void visitUserOp1(Instruction &I) {
817 assert(0 && "UserOp1 should not exist at instruction selection time!");
818 abort();
819 }
820 void visitUserOp2(Instruction &I) {
821 assert(0 && "UserOp2 should not exist at instruction selection time!");
822 abort();
823 }
Mon P Wang63307c32008-05-05 19:05:59 +0000824
825private:
826 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
827
Chris Lattner1c08c712005-01-07 07:47:53 +0000828};
829} // end namespace llvm
830
Dan Gohman6183f782007-07-05 20:12:34 +0000831
Duncan Sandsb988bac2008-02-11 20:58:28 +0000832/// getCopyFromParts - Create a value that contains the specified legal parts
833/// combined into the value they represent. If the parts combine to a type
834/// larger then ValueVT then AssertOp can be used to specify whether the extra
835/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattner4468c1f2008-03-09 09:38:46 +0000836/// (ISD::AssertSext).
Dan Gohman475871a2008-07-27 21:46:04 +0000837static SDValue getCopyFromParts(SelectionDAG &DAG,
838 const SDValue *Parts,
Dan Gohman6183f782007-07-05 20:12:34 +0000839 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000840 MVT PartVT,
841 MVT ValueVT,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000842 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000843 assert(NumParts > 0 && "No parts to assemble!");
844 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman475871a2008-07-27 21:46:04 +0000845 SDValue Val = Parts[0];
Dan Gohman6183f782007-07-05 20:12:34 +0000846
Duncan Sands014e04a2008-02-12 20:46:31 +0000847 if (NumParts > 1) {
848 // Assemble the value from multiple parts.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000849 if (!ValueVT.isVector()) {
850 unsigned PartBits = PartVT.getSizeInBits();
851 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohman6183f782007-07-05 20:12:34 +0000852
Duncan Sands014e04a2008-02-12 20:46:31 +0000853 // Assemble the power of 2 part.
854 unsigned RoundParts = NumParts & (NumParts - 1) ?
855 1 << Log2_32(NumParts) : NumParts;
856 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000857 MVT RoundVT = RoundBits == ValueBits ?
858 ValueVT : MVT::getIntegerVT(RoundBits);
Dan Gohman475871a2008-07-27 21:46:04 +0000859 SDValue Lo, Hi;
Duncan Sands014e04a2008-02-12 20:46:31 +0000860
861 if (RoundParts > 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000862 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands014e04a2008-02-12 20:46:31 +0000863 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
864 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
865 PartVT, HalfVT);
Dan Gohman6183f782007-07-05 20:12:34 +0000866 } else {
Duncan Sands014e04a2008-02-12 20:46:31 +0000867 Lo = Parts[0];
868 Hi = Parts[1];
Dan Gohman6183f782007-07-05 20:12:34 +0000869 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000870 if (TLI.isBigEndian())
871 std::swap(Lo, Hi);
872 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
873
874 if (RoundParts < NumParts) {
875 // Assemble the trailing non-power-of-2 part.
876 unsigned OddParts = NumParts - RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000877 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000878 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
879
880 // Combine the round and odd parts.
881 Lo = Val;
882 if (TLI.isBigEndian())
883 std::swap(Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000884 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000885 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
886 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000887 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands014e04a2008-02-12 20:46:31 +0000888 TLI.getShiftAmountTy()));
889 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
890 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
891 }
892 } else {
893 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000894 MVT IntermediateVT, RegisterVT;
Duncan Sands014e04a2008-02-12 20:46:31 +0000895 unsigned NumIntermediates;
896 unsigned NumRegs =
897 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
898 RegisterVT);
Duncan Sands014e04a2008-02-12 20:46:31 +0000899 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +0000900 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands014e04a2008-02-12 20:46:31 +0000901 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
902 assert(RegisterVT == Parts[0].getValueType() &&
903 "Part type doesn't match part!");
904
905 // Assemble the parts into intermediate operands.
Dan Gohman475871a2008-07-27 21:46:04 +0000906 SmallVector<SDValue, 8> Ops(NumIntermediates);
Duncan Sands014e04a2008-02-12 20:46:31 +0000907 if (NumIntermediates == NumParts) {
908 // If the register was not expanded, truncate or copy the value,
909 // as appropriate.
910 for (unsigned i = 0; i != NumParts; ++i)
911 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
912 PartVT, IntermediateVT);
913 } else if (NumParts > 0) {
914 // If the intermediate type was expanded, build the intermediate operands
915 // from the parts.
916 assert(NumParts % NumIntermediates == 0 &&
917 "Must expand into a divisible number of parts!");
918 unsigned Factor = NumParts / NumIntermediates;
919 for (unsigned i = 0; i != NumIntermediates; ++i)
920 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
921 PartVT, IntermediateVT);
922 }
923
924 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
925 // operands.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000926 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands014e04a2008-02-12 20:46:31 +0000927 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
928 ValueVT, &Ops[0], NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +0000929 }
Dan Gohman6183f782007-07-05 20:12:34 +0000930 }
931
Duncan Sands014e04a2008-02-12 20:46:31 +0000932 // There is now one part, held in Val. Correct it to match ValueVT.
933 PartVT = Val.getValueType();
Dan Gohman6183f782007-07-05 20:12:34 +0000934
Duncan Sands014e04a2008-02-12 20:46:31 +0000935 if (PartVT == ValueVT)
936 return Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000937
Duncan Sands83ec4b62008-06-06 12:08:01 +0000938 if (PartVT.isVector()) {
939 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands014e04a2008-02-12 20:46:31 +0000940 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000941 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000942
Duncan Sands83ec4b62008-06-06 12:08:01 +0000943 if (ValueVT.isVector()) {
944 assert(ValueVT.getVectorElementType() == PartVT &&
945 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +0000946 "Only trivial scalar-to-vector conversions should get here!");
947 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
948 }
949
Duncan Sands83ec4b62008-06-06 12:08:01 +0000950 if (PartVT.isInteger() &&
951 ValueVT.isInteger()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000952 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000953 // For a truncate, see if we have any information to
954 // indicate whether the truncated bits will always be
955 // zero or sign-extension.
956 if (AssertOp != ISD::DELETED_NODE)
957 Val = DAG.getNode(AssertOp, PartVT, Val,
958 DAG.getValueType(ValueVT));
959 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
960 } else {
961 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
962 }
963 }
964
Duncan Sands83ec4b62008-06-06 12:08:01 +0000965 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000966 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattner4468c1f2008-03-09 09:38:46 +0000967 // FP_ROUND's are always exact here.
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000968 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000969 DAG.getIntPtrConstant(1));
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000970 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
971 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000972
Duncan Sands83ec4b62008-06-06 12:08:01 +0000973 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands014e04a2008-02-12 20:46:31 +0000974 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
975
976 assert(0 && "Unknown mismatch!");
Dan Gohman475871a2008-07-27 21:46:04 +0000977 return SDValue();
Dan Gohman6183f782007-07-05 20:12:34 +0000978}
979
Duncan Sandsb988bac2008-02-11 20:58:28 +0000980/// getCopyToParts - Create a series of nodes that contain the specified value
981/// split into legal parts. If the parts contain more bits than Val, then, for
982/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohman6183f782007-07-05 20:12:34 +0000983static void getCopyToParts(SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +0000984 SDValue Val,
985 SDValue *Parts,
Dan Gohman6183f782007-07-05 20:12:34 +0000986 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000987 MVT PartVT,
Duncan Sandsb988bac2008-02-11 20:58:28 +0000988 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohman25ac7e82007-08-10 14:59:38 +0000989 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000990 MVT PtrVT = TLI.getPointerTy();
991 MVT ValueVT = Val.getValueType();
992 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands014e04a2008-02-12 20:46:31 +0000993 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohman6183f782007-07-05 20:12:34 +0000994
Duncan Sands014e04a2008-02-12 20:46:31 +0000995 if (!NumParts)
996 return;
997
Duncan Sands83ec4b62008-06-06 12:08:01 +0000998 if (!ValueVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000999 if (PartVT == ValueVT) {
1000 assert(NumParts == 1 && "No-op copy with multiple parts!");
1001 Parts[0] = Val;
Dan Gohman6183f782007-07-05 20:12:34 +00001002 return;
1003 }
1004
Duncan Sands83ec4b62008-06-06 12:08:01 +00001005 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001006 // If the parts cover more bits than the value has, promote the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001007 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001008 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohman6183f782007-07-05 20:12:34 +00001009 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001010 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
1011 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001012 Val = DAG.getNode(ExtendKind, ValueVT, Val);
1013 } else {
1014 assert(0 && "Unknown mismatch!");
1015 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00001016 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001017 // Different types of the same size.
1018 assert(NumParts == 1 && PartVT != ValueVT);
1019 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001020 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001021 // If the parts cover less bits than value has, truncate the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001022 if (PartVT.isInteger() && ValueVT.isInteger()) {
1023 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001024 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +00001025 } else {
1026 assert(0 && "Unknown mismatch!");
1027 }
1028 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001029
1030 // The value may have changed - recompute ValueVT.
1031 ValueVT = Val.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001032 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001033 "Failed to tile the value with PartVT!");
1034
1035 if (NumParts == 1) {
1036 assert(PartVT == ValueVT && "Type conversion failed!");
1037 Parts[0] = Val;
1038 return;
1039 }
1040
1041 // Expand the value into multiple parts.
1042 if (NumParts & (NumParts - 1)) {
1043 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001044 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001045 "Do not know what to expand to!");
1046 unsigned RoundParts = 1 << Log2_32(NumParts);
1047 unsigned RoundBits = RoundParts * PartBits;
1048 unsigned OddParts = NumParts - RoundParts;
Dan Gohman475871a2008-07-27 21:46:04 +00001049 SDValue OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
Duncan Sands014e04a2008-02-12 20:46:31 +00001050 DAG.getConstant(RoundBits,
1051 TLI.getShiftAmountTy()));
1052 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1053 if (TLI.isBigEndian())
1054 // The odd parts were reversed by getCopyToParts - unreverse them.
1055 std::reverse(Parts + RoundParts, Parts + NumParts);
1056 NumParts = RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001057 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001058 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1059 }
1060
1061 // The number of parts is a power of 2. Repeatedly bisect the value using
1062 // EXTRACT_ELEMENT.
Duncan Sands25eb0432008-03-12 20:30:08 +00001063 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001064 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sands25eb0432008-03-12 20:30:08 +00001065 Val);
Duncan Sands014e04a2008-02-12 20:46:31 +00001066 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1067 for (unsigned i = 0; i < NumParts; i += StepSize) {
1068 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001069 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Dan Gohman475871a2008-07-27 21:46:04 +00001070 SDValue &Part0 = Parts[i];
1071 SDValue &Part1 = Parts[i+StepSize/2];
Duncan Sands014e04a2008-02-12 20:46:31 +00001072
Duncan Sands25eb0432008-03-12 20:30:08 +00001073 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1074 DAG.getConstant(1, PtrVT));
1075 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1076 DAG.getConstant(0, PtrVT));
1077
1078 if (ThisBits == PartBits && ThisVT != PartVT) {
1079 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1080 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1081 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001082 }
1083 }
1084
1085 if (TLI.isBigEndian())
1086 std::reverse(Parts, Parts + NumParts);
1087
1088 return;
1089 }
1090
1091 // Vector ValueVT.
1092 if (NumParts == 1) {
1093 if (PartVT != ValueVT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001094 if (PartVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001095 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1096 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001097 assert(ValueVT.getVectorElementType() == PartVT &&
1098 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001099 "Only trivial vector-to-scalar conversions should get here!");
1100 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1101 DAG.getConstant(0, PtrVT));
1102 }
1103 }
1104
Dan Gohman6183f782007-07-05 20:12:34 +00001105 Parts[0] = Val;
1106 return;
1107 }
1108
1109 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001110 MVT IntermediateVT, RegisterVT;
Dan Gohman6183f782007-07-05 20:12:34 +00001111 unsigned NumIntermediates;
1112 unsigned NumRegs =
1113 DAG.getTargetLoweringInfo()
1114 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1115 RegisterVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001116 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohman6183f782007-07-05 20:12:34 +00001117
1118 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +00001119 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohman6183f782007-07-05 20:12:34 +00001120 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1121
1122 // Split the vector into intermediate operands.
Dan Gohman475871a2008-07-27 21:46:04 +00001123 SmallVector<SDValue, 8> Ops(NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +00001124 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001125 if (IntermediateVT.isVector())
Dan Gohman6183f782007-07-05 20:12:34 +00001126 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1127 IntermediateVT, Val,
1128 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohman25ac7e82007-08-10 14:59:38 +00001129 PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001130 else
1131 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1132 IntermediateVT, Val,
Dan Gohman25ac7e82007-08-10 14:59:38 +00001133 DAG.getConstant(i, PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001134
1135 // Split the intermediate operands into legal parts.
1136 if (NumParts == NumIntermediates) {
1137 // If the register was not expanded, promote or copy the value,
1138 // as appropriate.
1139 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001140 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001141 } else if (NumParts > 0) {
1142 // If the intermediate type was expanded, split each the value into
1143 // legal parts.
1144 assert(NumParts % NumIntermediates == 0 &&
1145 "Must expand into a divisible number of parts!");
1146 unsigned Factor = NumParts / NumIntermediates;
1147 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001148 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001149 }
1150}
1151
1152
Dan Gohman475871a2008-07-27 21:46:04 +00001153SDValue SelectionDAGLowering::getValue(const Value *V) {
1154 SDValue &N = NodeMap[V];
Chris Lattner199862b2006-03-16 19:57:50 +00001155 if (N.Val) return N;
1156
Chris Lattner199862b2006-03-16 19:57:50 +00001157 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001158 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001159
1160 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1161 return N = DAG.getConstant(CI->getValue(), VT);
1162
1163 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001164 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001165
1166 if (isa<ConstantPointerNull>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001167 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001168
1169 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1170 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1171
Dan Gohman1d685a42008-06-07 02:02:36 +00001172 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1173 !V->getType()->isAggregateType())
Chris Lattner6833b062008-04-28 07:16:35 +00001174 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001175
1176 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1177 visit(CE->getOpcode(), *CE);
Dan Gohman475871a2008-07-27 21:46:04 +00001178 SDValue N1 = NodeMap[V];
Chris Lattnerb606dba2008-04-28 06:44:42 +00001179 assert(N1.Val && "visit didn't populate the ValueMap!");
1180 return N1;
1181 }
1182
Dan Gohman1d685a42008-06-07 02:02:36 +00001183 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001184 SmallVector<SDValue, 4> Constants;
Dan Gohman1d685a42008-06-07 02:02:36 +00001185 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1186 OI != OE; ++OI) {
1187 SDNode *Val = getValue(*OI).Val;
Duncan Sands4bdcb612008-07-02 17:40:58 +00001188 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00001189 Constants.push_back(SDValue(Val, i));
Dan Gohman1d685a42008-06-07 02:02:36 +00001190 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001191 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001192 }
1193
Dan Gohman1f565bc2008-08-04 23:30:41 +00001194 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
Dan Gohman1d685a42008-06-07 02:02:36 +00001195 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
Dan Gohman1f565bc2008-08-04 23:30:41 +00001196 "Unknown struct or array constant!");
Dan Gohman1d685a42008-06-07 02:02:36 +00001197
Dan Gohman1f565bc2008-08-04 23:30:41 +00001198 SmallVector<MVT, 4> ValueVTs;
1199 ComputeValueVTs(TLI, C->getType(), ValueVTs);
1200 unsigned NumElts = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001201 if (NumElts == 0)
Dan Gohman475871a2008-07-27 21:46:04 +00001202 return SDValue(); // empty struct
1203 SmallVector<SDValue, 4> Constants(NumElts);
Dan Gohman1f565bc2008-08-04 23:30:41 +00001204 for (unsigned i = 0; i != NumElts; ++i) {
1205 MVT EltVT = ValueVTs[i];
Dan Gohman1d685a42008-06-07 02:02:36 +00001206 if (isa<UndefValue>(C))
1207 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1208 else if (EltVT.isFloatingPoint())
1209 Constants[i] = DAG.getConstantFP(0, EltVT);
1210 else
1211 Constants[i] = DAG.getConstant(0, EltVT);
1212 }
Dan Gohman1f565bc2008-08-04 23:30:41 +00001213 return DAG.getMergeValues(&Constants[0], NumElts);
Dan Gohman1d685a42008-06-07 02:02:36 +00001214 }
1215
Chris Lattner6833b062008-04-28 07:16:35 +00001216 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001217 unsigned NumElements = VecTy->getNumElements();
Chris Lattnerb606dba2008-04-28 06:44:42 +00001218
Chris Lattner6833b062008-04-28 07:16:35 +00001219 // Now that we know the number and type of the elements, get that number of
1220 // elements into the Ops array based on what kind of constant it is.
Dan Gohman475871a2008-07-27 21:46:04 +00001221 SmallVector<SDValue, 16> Ops;
Chris Lattnerb606dba2008-04-28 06:44:42 +00001222 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1223 for (unsigned i = 0; i != NumElements; ++i)
1224 Ops.push_back(getValue(CP->getOperand(i)));
1225 } else {
Chris Lattner6833b062008-04-28 07:16:35 +00001226 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1227 "Unknown vector constant!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001228 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner6833b062008-04-28 07:16:35 +00001229
Dan Gohman475871a2008-07-27 21:46:04 +00001230 SDValue Op;
Chris Lattner6833b062008-04-28 07:16:35 +00001231 if (isa<UndefValue>(C))
1232 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001233 else if (EltVT.isFloatingPoint())
Chris Lattner6833b062008-04-28 07:16:35 +00001234 Op = DAG.getConstantFP(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001235 else
Chris Lattner6833b062008-04-28 07:16:35 +00001236 Op = DAG.getConstant(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001237 Ops.assign(NumElements, Op);
1238 }
1239
1240 // Create a BUILD_VECTOR node.
1241 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner199862b2006-03-16 19:57:50 +00001242 }
1243
Chris Lattnerb606dba2008-04-28 06:44:42 +00001244 // If this is a static alloca, generate it as the frameindex instead of
1245 // computation.
Chris Lattner199862b2006-03-16 19:57:50 +00001246 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1247 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattnerb606dba2008-04-28 06:44:42 +00001248 FuncInfo.StaticAllocaMap.find(AI);
Chris Lattner199862b2006-03-16 19:57:50 +00001249 if (SI != FuncInfo.StaticAllocaMap.end())
1250 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1251 }
1252
Chris Lattner251db182007-02-25 18:40:32 +00001253 unsigned InReg = FuncInfo.ValueMap[V];
1254 assert(InReg && "Value not in map!");
Chris Lattner199862b2006-03-16 19:57:50 +00001255
Chris Lattner6833b062008-04-28 07:16:35 +00001256 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohman475871a2008-07-27 21:46:04 +00001257 SDValue Chain = DAG.getEntryNode();
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001258 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner199862b2006-03-16 19:57:50 +00001259}
1260
1261
Chris Lattner1c08c712005-01-07 07:47:53 +00001262void SelectionDAGLowering::visitRet(ReturnInst &I) {
1263 if (I.getNumOperands() == 0) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001264 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001265 return;
1266 }
Chris Lattnerb606dba2008-04-28 06:44:42 +00001267
Dan Gohman475871a2008-07-27 21:46:04 +00001268 SmallVector<SDValue, 8> NewValues;
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001269 NewValues.push_back(getControlRoot());
1270 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001271 SDValue RetOp = getValue(I.getOperand(i));
Duncan Sandsb988bac2008-02-11 20:58:28 +00001272
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001273 SmallVector<MVT, 4> ValueVTs;
1274 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1275 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1276 MVT VT = ValueVTs[j];
Duncan Sandsb988bac2008-02-11 20:58:28 +00001277
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001278 // FIXME: C calling convention requires the return type to be promoted to
1279 // at least 32-bit. But this is not necessary for non-C calling conventions.
1280 if (VT.isInteger()) {
1281 MVT MinVT = TLI.getRegisterType(MVT::i32);
1282 if (VT.bitsLT(MinVT))
1283 VT = MinVT;
1284 }
Duncan Sandsb988bac2008-02-11 20:58:28 +00001285
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001286 unsigned NumParts = TLI.getNumRegisters(VT);
1287 MVT PartVT = TLI.getRegisterType(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00001288 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001289 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1290
1291 const Function *F = I.getParent()->getParent();
1292 if (F->paramHasAttr(0, ParamAttr::SExt))
1293 ExtendKind = ISD::SIGN_EXTEND;
1294 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1295 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00001296
Dan Gohman475871a2008-07-27 21:46:04 +00001297 getCopyToParts(DAG, SDValue(RetOp.Val, RetOp.ResNo + j),
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001298 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00001299
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001300 for (unsigned i = 0; i < NumParts; ++i) {
1301 NewValues.push_back(Parts[i]);
1302 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1303 }
Nate Begemanee625572006-01-27 21:09:22 +00001304 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001305 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001306 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1307 &NewValues[0], NewValues.size()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001308}
1309
Chris Lattner571e4342006-10-27 21:36:01 +00001310/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1311/// the current basic block, add it to ValueMap now so that we'll get a
1312/// CopyTo/FromReg.
1313void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1314 // No need to export constants.
1315 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1316
1317 // Already exported?
1318 if (FuncInfo.isExportedInst(V)) return;
1319
1320 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001321 CopyValueToVirtualRegister(V, Reg);
Chris Lattner571e4342006-10-27 21:36:01 +00001322}
1323
Chris Lattner8c494ab2006-10-27 23:50:33 +00001324bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1325 const BasicBlock *FromBB) {
1326 // The operands of the setcc have to be in this block. We don't know
1327 // how to export them from some other block.
1328 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1329 // Can export from current BB.
1330 if (VI->getParent() == FromBB)
1331 return true;
1332
1333 // Is already exported, noop.
1334 return FuncInfo.isExportedInst(V);
1335 }
1336
1337 // If this is an argument, we can export it if the BB is the entry block or
1338 // if it is already exported.
1339 if (isa<Argument>(V)) {
1340 if (FromBB == &FromBB->getParent()->getEntryBlock())
1341 return true;
1342
1343 // Otherwise, can only export this if it is already exported.
1344 return FuncInfo.isExportedInst(V);
1345 }
1346
1347 // Otherwise, constants can always be exported.
1348 return true;
1349}
1350
Chris Lattner6a586c82006-10-29 21:01:20 +00001351static bool InBlock(const Value *V, const BasicBlock *BB) {
1352 if (const Instruction *I = dyn_cast<Instruction>(V))
1353 return I->getParent() == BB;
1354 return true;
1355}
1356
Chris Lattner571e4342006-10-27 21:36:01 +00001357/// FindMergedConditions - If Cond is an expression like
1358void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1359 MachineBasicBlock *TBB,
1360 MachineBasicBlock *FBB,
1361 MachineBasicBlock *CurBB,
1362 unsigned Opc) {
Chris Lattner571e4342006-10-27 21:36:01 +00001363 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001364 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattner571e4342006-10-27 21:36:01 +00001365
Reid Spencere4d87aa2006-12-23 06:05:41 +00001366 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1367 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattner6a586c82006-10-29 21:01:20 +00001368 BOp->getParent() != CurBB->getBasicBlock() ||
1369 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1370 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattner571e4342006-10-27 21:36:01 +00001371 const BasicBlock *BB = CurBB->getBasicBlock();
1372
Reid Spencere4d87aa2006-12-23 06:05:41 +00001373 // If the leaf of the tree is a comparison, merge the condition into
1374 // the caseblock.
1375 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1376 // The operands of the cmp have to be in this block. We don't know
Chris Lattner5a145f02006-10-29 18:23:37 +00001377 // how to export them from some other block. If this is the first block
1378 // of the sequence, no exporting is needed.
1379 (CurBB == CurMBB ||
1380 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1381 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001382 BOp = cast<Instruction>(Cond);
1383 ISD::CondCode Condition;
1384 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1385 switch (IC->getPredicate()) {
1386 default: assert(0 && "Unknown icmp predicate opcode!");
1387 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1388 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1389 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1390 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1391 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1392 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1393 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1394 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1395 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1396 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1397 }
1398 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1399 ISD::CondCode FPC, FOC;
1400 switch (FC->getPredicate()) {
1401 default: assert(0 && "Unknown fcmp predicate opcode!");
1402 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1403 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1404 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1405 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1406 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1407 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1408 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner6bf30ab2008-05-01 07:26:11 +00001409 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1410 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001411 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1412 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1413 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1414 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1415 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1416 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1417 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1418 }
1419 if (FiniteOnlyFPMath())
1420 Condition = FOC;
1421 else
1422 Condition = FPC;
1423 } else {
Chris Lattner0da331f2007-02-04 01:31:47 +00001424 Condition = ISD::SETEQ; // silence warning.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001425 assert(0 && "Unknown compare instruction");
Chris Lattner571e4342006-10-27 21:36:01 +00001426 }
1427
Chris Lattner571e4342006-10-27 21:36:01 +00001428 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001429 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001430 SwitchCases.push_back(CB);
1431 return;
1432 }
1433
1434 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001435 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001436 NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001437 SwitchCases.push_back(CB);
Chris Lattner571e4342006-10-27 21:36:01 +00001438 return;
1439 }
1440
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001441
1442 // Create TmpBB after CurBB.
Chris Lattner571e4342006-10-27 21:36:01 +00001443 MachineFunction::iterator BBI = CurBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +00001444 MachineFunction &MF = DAG.getMachineFunction();
1445 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1446 CurBB->getParent()->insert(++BBI, TmpBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001447
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001448 if (Opc == Instruction::Or) {
1449 // Codegen X | Y as:
1450 // jmp_if_X TBB
1451 // jmp TmpBB
1452 // TmpBB:
1453 // jmp_if_Y TBB
1454 // jmp FBB
1455 //
Chris Lattner571e4342006-10-27 21:36:01 +00001456
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001457 // Emit the LHS condition.
1458 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1459
1460 // Emit the RHS condition into TmpBB.
1461 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1462 } else {
1463 assert(Opc == Instruction::And && "Unknown merge op!");
1464 // Codegen X & Y as:
1465 // jmp_if_X TmpBB
1466 // jmp FBB
1467 // TmpBB:
1468 // jmp_if_Y TBB
1469 // jmp FBB
1470 //
1471 // This requires creation of TmpBB after CurBB.
1472
1473 // Emit the LHS condition.
1474 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1475
1476 // Emit the RHS condition into TmpBB.
1477 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1478 }
Chris Lattner571e4342006-10-27 21:36:01 +00001479}
1480
Chris Lattnerdf19f272006-10-31 22:37:42 +00001481/// If the set of cases should be emitted as a series of branches, return true.
1482/// If we should emit this as a bunch of and/or'd together conditions, return
1483/// false.
1484static bool
1485ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1486 if (Cases.size() != 2) return true;
1487
Chris Lattner0ccb5002006-10-31 23:06:00 +00001488 // If this is two comparisons of the same values or'd or and'd together, they
1489 // will get folded into a single comparison, so don't emit two blocks.
1490 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1491 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1492 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1493 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1494 return false;
1495 }
1496
Chris Lattnerdf19f272006-10-31 22:37:42 +00001497 return true;
1498}
1499
Chris Lattner1c08c712005-01-07 07:47:53 +00001500void SelectionDAGLowering::visitBr(BranchInst &I) {
1501 // Update machine-CFG edges.
1502 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner1c08c712005-01-07 07:47:53 +00001503
1504 // Figure out which block is immediately after the current one.
1505 MachineBasicBlock *NextBlock = 0;
1506 MachineFunction::iterator BBI = CurMBB;
1507 if (++BBI != CurMBB->getParent()->end())
1508 NextBlock = BBI;
1509
1510 if (I.isUnconditional()) {
Owen Anderson2d389e82008-06-07 00:00:23 +00001511 // Update machine-CFG edges.
1512 CurMBB->addSuccessor(Succ0MBB);
1513
Chris Lattner1c08c712005-01-07 07:47:53 +00001514 // If this is not a fall-through branch, emit the branch.
1515 if (Succ0MBB != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001516 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001517 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner57ab6592006-10-24 17:57:59 +00001518 return;
1519 }
1520
1521 // If this condition is one of the special cases we handle, do special stuff
1522 // now.
1523 Value *CondVal = I.getCondition();
Chris Lattner57ab6592006-10-24 17:57:59 +00001524 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattner571e4342006-10-27 21:36:01 +00001525
1526 // If this is a series of conditions that are or'd or and'd together, emit
1527 // this as a sequence of branches instead of setcc's with and/or operations.
1528 // For example, instead of something like:
1529 // cmp A, B
1530 // C = seteq
1531 // cmp D, E
1532 // F = setle
1533 // or C, F
1534 // jnz foo
1535 // Emit:
1536 // cmp A, B
1537 // je foo
1538 // cmp D, E
1539 // jle foo
1540 //
1541 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1542 if (BOp->hasOneUse() &&
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001543 (BOp->getOpcode() == Instruction::And ||
Chris Lattner571e4342006-10-27 21:36:01 +00001544 BOp->getOpcode() == Instruction::Or)) {
1545 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattner0ccb5002006-10-31 23:06:00 +00001546 // If the compares in later blocks need to use values not currently
1547 // exported from this block, export them now. This block should always
1548 // be the first entry.
1549 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1550
Chris Lattnerdf19f272006-10-31 22:37:42 +00001551 // Allow some cases to be rejected.
1552 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattnerdf19f272006-10-31 22:37:42 +00001553 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1554 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1555 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1556 }
1557
1558 // Emit the branch for this block.
1559 visitSwitchCase(SwitchCases[0]);
1560 SwitchCases.erase(SwitchCases.begin());
1561 return;
Chris Lattner5a145f02006-10-29 18:23:37 +00001562 }
1563
Chris Lattner0ccb5002006-10-31 23:06:00 +00001564 // Okay, we decided not to do this, remove any inserted MBB's and clear
1565 // SwitchCases.
1566 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0e5f1302008-07-07 23:02:41 +00001567 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Chris Lattner0ccb5002006-10-31 23:06:00 +00001568
Chris Lattnerdf19f272006-10-31 22:37:42 +00001569 SwitchCases.clear();
Chris Lattner571e4342006-10-27 21:36:01 +00001570 }
1571 }
Chris Lattner24525952006-10-24 18:07:37 +00001572
1573 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001574 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001575 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner24525952006-10-24 18:07:37 +00001576 // Use visitSwitchCase to actually insert the fast branch sequence for this
1577 // cond branch.
1578 visitSwitchCase(CB);
Chris Lattner1c08c712005-01-07 07:47:53 +00001579}
1580
Nate Begemanf15485a2006-03-27 01:32:24 +00001581/// visitSwitchCase - Emits the necessary code to represent a single node in
1582/// the binary search tree resulting from lowering a switch instruction.
1583void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Dan Gohman475871a2008-07-27 21:46:04 +00001584 SDValue Cond;
1585 SDValue CondLHS = getValue(CB.CmpLHS);
Chris Lattner57ab6592006-10-24 17:57:59 +00001586
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001587 // Build the setcc now.
1588 if (CB.CmpMHS == NULL) {
1589 // Fold "(X == true)" to X and "(X == false)" to !X to
1590 // handle common cases produced by branch lowering.
1591 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1592 Cond = CondLHS;
1593 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00001594 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001595 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1596 } else
1597 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1598 } else {
1599 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001600
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001601 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1602 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1603
Dan Gohman475871a2008-07-27 21:46:04 +00001604 SDValue CmpOp = getValue(CB.CmpMHS);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001605 MVT VT = CmpOp.getValueType();
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001606
1607 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1608 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1609 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001610 SDValue SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001611 Cond = DAG.getSetCC(MVT::i1, SUB,
1612 DAG.getConstant(High-Low, VT), ISD::SETULE);
1613 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001614 }
1615
Owen Anderson2d389e82008-06-07 00:00:23 +00001616 // Update successor info
1617 CurMBB->addSuccessor(CB.TrueBB);
1618 CurMBB->addSuccessor(CB.FalseBB);
1619
Nate Begemanf15485a2006-03-27 01:32:24 +00001620 // Set NextBlock to be the MBB immediately after the current one, if any.
1621 // This is used to avoid emitting unnecessary branches to the next block.
1622 MachineBasicBlock *NextBlock = 0;
1623 MachineFunction::iterator BBI = CurMBB;
1624 if (++BBI != CurMBB->getParent()->end())
1625 NextBlock = BBI;
1626
1627 // If the lhs block is the next block, invert the condition so that we can
1628 // fall through to the lhs instead of the rhs block.
Chris Lattner57ab6592006-10-24 17:57:59 +00001629 if (CB.TrueBB == NextBlock) {
1630 std::swap(CB.TrueBB, CB.FalseBB);
Dan Gohman475871a2008-07-27 21:46:04 +00001631 SDValue True = DAG.getConstant(1, Cond.getValueType());
Nate Begemanf15485a2006-03-27 01:32:24 +00001632 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1633 }
Dan Gohman475871a2008-07-27 21:46:04 +00001634 SDValue BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001635 DAG.getBasicBlock(CB.TrueBB));
Owen Andersonbd3ba462008-08-04 23:54:43 +00001636
1637 // If the branch was constant folded, fix up the CFG.
1638 if (BrCond.getOpcode() == ISD::BR) {
Owen Anderson3bc9c6f2008-08-05 18:27:54 +00001639 CurMBB->removeSuccessor(CB.FalseBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00001640 DAG.setRoot(BrCond);
Owen Andersonbd3ba462008-08-04 23:54:43 +00001641 } else {
1642 // Otherwise, go ahead and insert the false branch.
1643 if (BrCond == getControlRoot())
Owen Anderson3bc9c6f2008-08-05 18:27:54 +00001644 CurMBB->removeSuccessor(CB.TrueBB);
Owen Andersonbd3ba462008-08-04 23:54:43 +00001645
1646 if (CB.FalseBB == NextBlock)
1647 DAG.setRoot(BrCond);
1648 else
1649 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
1650 DAG.getBasicBlock(CB.FalseBB)));
1651 }
Nate Begemanf15485a2006-03-27 01:32:24 +00001652}
1653
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001654/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman37efe672006-04-22 18:53:45 +00001655void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman37efe672006-04-22 18:53:45 +00001656 // Emit the code for the jump table
Scott Michelf147a8d2007-04-24 01:24:20 +00001657 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001658 MVT PTy = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001659 SDValue Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
1660 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001661 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1662 Table, Index));
1663 return;
Nate Begeman37efe672006-04-22 18:53:45 +00001664}
1665
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001666/// visitJumpTableHeader - This function emits necessary code to produce index
1667/// in the JumpTable from switch case.
1668void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1669 SelectionDAGISel::JumpTableHeader &JTH) {
1670 // Subtract the lowest switch case value from the value being switched on
1671 // and conditional branch to default mbb if the result is greater than the
1672 // difference between smallest and largest cases.
Dan Gohman475871a2008-07-27 21:46:04 +00001673 SDValue SwitchOp = getValue(JTH.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001674 MVT VT = SwitchOp.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001675 SDValue SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001676 DAG.getConstant(JTH.First, VT));
1677
1678 // The SDNode we just created, which holds the value being switched on
1679 // minus the the smallest case value, needs to be copied to a virtual
1680 // register so it can be used as an index into the jump table in a
1681 // subsequent basic block. This value may be smaller or larger than the
1682 // target's pointer type, and therefore require extension or truncating.
Duncan Sands8e4eb092008-06-08 20:54:56 +00001683 if (VT.bitsGT(TLI.getPointerTy()))
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001684 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1685 else
1686 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1687
1688 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman475871a2008-07-27 21:46:04 +00001689 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001690 JT.Reg = JumpTableReg;
1691
1692 // Emit the range check for the jump table, and branch to the default
1693 // block for the switch statement if the value being switched on exceeds
1694 // the largest case in the switch.
Dan Gohman475871a2008-07-27 21:46:04 +00001695 SDValue CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001696 DAG.getConstant(JTH.Last-JTH.First,VT),
1697 ISD::SETUGT);
1698
1699 // Set NextBlock to be the MBB immediately after the current one, if any.
1700 // This is used to avoid emitting unnecessary branches to the next block.
1701 MachineBasicBlock *NextBlock = 0;
1702 MachineFunction::iterator BBI = CurMBB;
1703 if (++BBI != CurMBB->getParent()->end())
1704 NextBlock = BBI;
1705
Dan Gohman475871a2008-07-27 21:46:04 +00001706 SDValue BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001707 DAG.getBasicBlock(JT.Default));
1708
1709 if (JT.MBB == NextBlock)
1710 DAG.setRoot(BrCond);
1711 else
1712 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001713 DAG.getBasicBlock(JT.MBB)));
1714
1715 return;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001716}
1717
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001718/// visitBitTestHeader - This function emits necessary code to produce value
1719/// suitable for "bit tests"
1720void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1721 // Subtract the minimum value
Dan Gohman475871a2008-07-27 21:46:04 +00001722 SDValue SwitchOp = getValue(B.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001723 MVT VT = SwitchOp.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001724 SDValue SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001725 DAG.getConstant(B.First, VT));
1726
1727 // Check range
Dan Gohman475871a2008-07-27 21:46:04 +00001728 SDValue RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001729 DAG.getConstant(B.Range, VT),
1730 ISD::SETUGT);
1731
Dan Gohman475871a2008-07-27 21:46:04 +00001732 SDValue ShiftOp;
Duncan Sands8e4eb092008-06-08 20:54:56 +00001733 if (VT.bitsGT(TLI.getShiftAmountTy()))
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001734 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1735 else
1736 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1737
1738 // Make desired shift
Dan Gohman475871a2008-07-27 21:46:04 +00001739 SDValue SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001740 DAG.getConstant(1, TLI.getPointerTy()),
1741 ShiftOp);
1742
1743 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman475871a2008-07-27 21:46:04 +00001744 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001745 B.Reg = SwitchReg;
1746
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001747 // Set NextBlock to be the MBB immediately after the current one, if any.
1748 // This is used to avoid emitting unnecessary branches to the next block.
1749 MachineBasicBlock *NextBlock = 0;
1750 MachineFunction::iterator BBI = CurMBB;
1751 if (++BBI != CurMBB->getParent()->end())
1752 NextBlock = BBI;
1753
1754 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson2d389e82008-06-07 00:00:23 +00001755
1756 CurMBB->addSuccessor(B.Default);
1757 CurMBB->addSuccessor(MBB);
1758
Dan Gohman475871a2008-07-27 21:46:04 +00001759 SDValue BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
Owen Anderson2d389e82008-06-07 00:00:23 +00001760 DAG.getBasicBlock(B.Default));
1761
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001762 if (MBB == NextBlock)
1763 DAG.setRoot(BrRange);
1764 else
1765 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1766 DAG.getBasicBlock(MBB)));
1767
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001768 return;
1769}
1770
1771/// visitBitTestCase - this function produces one "bit test"
1772void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1773 unsigned Reg,
1774 SelectionDAGISel::BitTestCase &B) {
1775 // Emit bit tests and jumps
Dan Gohman475871a2008-07-27 21:46:04 +00001776 SDValue SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
Chris Lattneread0d882008-06-17 06:09:18 +00001777 TLI.getPointerTy());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001778
Dan Gohman475871a2008-07-27 21:46:04 +00001779 SDValue AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
Chris Lattneread0d882008-06-17 06:09:18 +00001780 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dan Gohman475871a2008-07-27 21:46:04 +00001781 SDValue AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001782 DAG.getConstant(0, TLI.getPointerTy()),
1783 ISD::SETNE);
Owen Anderson2d389e82008-06-07 00:00:23 +00001784
1785 CurMBB->addSuccessor(B.TargetBB);
1786 CurMBB->addSuccessor(NextMBB);
1787
Dan Gohman475871a2008-07-27 21:46:04 +00001788 SDValue BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001789 AndCmp, DAG.getBasicBlock(B.TargetBB));
1790
1791 // Set NextBlock to be the MBB immediately after the current one, if any.
1792 // This is used to avoid emitting unnecessary branches to the next block.
1793 MachineBasicBlock *NextBlock = 0;
1794 MachineFunction::iterator BBI = CurMBB;
1795 if (++BBI != CurMBB->getParent()->end())
1796 NextBlock = BBI;
1797
1798 if (NextMBB == NextBlock)
1799 DAG.setRoot(BrAnd);
1800 else
1801 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1802 DAG.getBasicBlock(NextMBB)));
1803
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001804 return;
1805}
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001806
Jim Laskeyb180aa12007-02-21 22:53:45 +00001807void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1808 // Retrieve successors.
1809 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001810 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands9fac0b52007-06-06 10:05:18 +00001811
Duncan Sandsfd7b3262007-12-17 18:08:19 +00001812 if (isa<InlineAsm>(I.getCalledValue()))
1813 visitInlineAsm(&I);
1814 else
Duncan Sands6f74b482007-12-19 09:48:52 +00001815 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Duncan Sands9fac0b52007-06-06 10:05:18 +00001816
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001817 // If the value of the invoke is used outside of its defining block, make it
1818 // available as a virtual register.
1819 if (!I.use_empty()) {
1820 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1821 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001822 CopyValueToVirtualRegister(&I, VMI->second);
Jim Laskey183f47f2007-02-25 21:43:59 +00001823 }
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001824
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001825 // Update successor info
1826 CurMBB->addSuccessor(Return);
1827 CurMBB->addSuccessor(LandingPad);
Owen Anderson2d389e82008-06-07 00:00:23 +00001828
1829 // Drop into normal successor.
1830 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1831 DAG.getBasicBlock(Return)));
Jim Laskeyb180aa12007-02-21 22:53:45 +00001832}
1833
1834void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1835}
1836
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001837/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001838/// small case ranges).
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001839bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001840 CaseRecVector& WorkList,
1841 Value* SV,
1842 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001843 Case& BackCase = *(CR.Range.second-1);
1844
1845 // Size is the number of Cases represented by this range.
1846 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001847 if (Size > 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001848 return false;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001849
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001850 // Get the MachineFunction which holds the current MBB. This is used when
1851 // inserting any additional MBBs necessary to represent the switch.
1852 MachineFunction *CurMF = CurMBB->getParent();
1853
1854 // Figure out which block is immediately after the current one.
1855 MachineBasicBlock *NextBlock = 0;
1856 MachineFunction::iterator BBI = CR.CaseBB;
1857
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001858 if (++BBI != CurMBB->getParent()->end())
1859 NextBlock = BBI;
1860
1861 // TODO: If any two of the cases has the same destination, and if one value
1862 // is the same as the other, but has one bit unset that the other has set,
1863 // use bit manipulation to do two compares at once. For example:
1864 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1865
1866 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001867 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001868 // The last case block won't fall through into 'NextBlock' if we emit the
1869 // branches in this order. See if rearranging a case value would help.
1870 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001871 if (I->BB == NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001872 std::swap(*I, BackCase);
1873 break;
1874 }
1875 }
1876 }
1877
1878 // Create a CaseBlock record representing a conditional branch to
1879 // the Case's target mbb if the value being switched on SV is equal
1880 // to C.
1881 MachineBasicBlock *CurBlock = CR.CaseBB;
1882 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1883 MachineBasicBlock *FallThrough;
1884 if (I != E-1) {
Dan Gohman0e5f1302008-07-07 23:02:41 +00001885 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1886 CurMF->insert(BBI, FallThrough);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001887 } else {
1888 // If the last case doesn't match, go to the default block.
1889 FallThrough = Default;
1890 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001891
1892 Value *RHS, *LHS, *MHS;
1893 ISD::CondCode CC;
1894 if (I->High == I->Low) {
1895 // This is just small small case range :) containing exactly 1 case
1896 CC = ISD::SETEQ;
1897 LHS = SV; RHS = I->High; MHS = NULL;
1898 } else {
1899 CC = ISD::SETLE;
1900 LHS = I->Low; MHS = SV; RHS = I->High;
1901 }
1902 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1903 I->BB, FallThrough, CurBlock);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001904
1905 // If emitting the first comparison, just call visitSwitchCase to emit the
1906 // code into the current block. Otherwise, push the CaseBlock onto the
1907 // vector to be later processed by SDISel, and insert the node's MBB
1908 // before the next MBB.
1909 if (CurBlock == CurMBB)
1910 visitSwitchCase(CB);
1911 else
1912 SwitchCases.push_back(CB);
1913
1914 CurBlock = FallThrough;
1915 }
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001916
1917 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001918}
1919
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001920static inline bool areJTsAllowed(const TargetLowering &TLI) {
Dale Johannesen72324642008-07-31 18:13:12 +00001921 return !DisableJumpTables &&
1922 (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1923 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001924}
1925
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001926/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001927bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001928 CaseRecVector& WorkList,
1929 Value* SV,
1930 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001931 Case& FrontCase = *CR.Range.first;
1932 Case& BackCase = *(CR.Range.second-1);
1933
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001934 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1935 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1936
1937 uint64_t TSize = 0;
1938 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1939 I!=E; ++I)
1940 TSize += I->size();
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001941
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001942 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001943 return false;
1944
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001945 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1946 if (Density < 0.4)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001947 return false;
1948
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001949 DOUT << "Lowering jump table\n"
1950 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001951 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001952
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001953 // Get the MachineFunction which holds the current MBB. This is used when
1954 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001955 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001956
1957 // Figure out which block is immediately after the current one.
1958 MachineBasicBlock *NextBlock = 0;
1959 MachineFunction::iterator BBI = CR.CaseBB;
1960
1961 if (++BBI != CurMBB->getParent()->end())
1962 NextBlock = BBI;
1963
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001964 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1965
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001966 // Create a new basic block to hold the code for loading the address
1967 // of the jump table, and jumping to it. Update successor information;
1968 // we will either branch to the default case for the switch, or the jump
1969 // table.
Dan Gohman0e5f1302008-07-07 23:02:41 +00001970 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1971 CurMF->insert(BBI, JumpTableBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001972 CR.CaseBB->addSuccessor(Default);
1973 CR.CaseBB->addSuccessor(JumpTableBB);
1974
1975 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001976 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001977 // a case statement, push the case's BB onto the vector, otherwise, push
1978 // the default BB.
1979 std::vector<MachineBasicBlock*> DestBBs;
1980 int64_t TEI = First;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001981 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1982 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1983 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1984
1985 if ((Low <= TEI) && (TEI <= High)) {
1986 DestBBs.push_back(I->BB);
1987 if (TEI==High)
1988 ++I;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001989 } else {
1990 DestBBs.push_back(Default);
1991 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001992 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001993
1994 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001995 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001996 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1997 E = DestBBs.end(); I != E; ++I) {
1998 if (!SuccsHandled[(*I)->getNumber()]) {
1999 SuccsHandled[(*I)->getNumber()] = true;
2000 JumpTableBB->addSuccessor(*I);
2001 }
2002 }
2003
2004 // Create a jump table index for this jump table, or return an existing
2005 // one.
2006 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
2007
2008 // Set the jump table information so that we can codegen it as a second
2009 // MachineBasicBlock
Scott Michelf147a8d2007-04-24 01:24:20 +00002010 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002011 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
2012 (CR.CaseBB == CurMBB));
2013 if (CR.CaseBB == CurMBB)
2014 visitJumpTableHeader(JT, JTH);
2015
2016 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002017
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002018 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002019}
2020
2021/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2022/// 2 subtrees.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002023bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002024 CaseRecVector& WorkList,
2025 Value* SV,
2026 MachineBasicBlock* Default) {
2027 // Get the MachineFunction which holds the current MBB. This is used when
2028 // inserting any additional MBBs necessary to represent the switch.
2029 MachineFunction *CurMF = CurMBB->getParent();
2030
2031 // Figure out which block is immediately after the current one.
2032 MachineBasicBlock *NextBlock = 0;
2033 MachineFunction::iterator BBI = CR.CaseBB;
2034
2035 if (++BBI != CurMBB->getParent()->end())
2036 NextBlock = BBI;
2037
2038 Case& FrontCase = *CR.Range.first;
2039 Case& BackCase = *(CR.Range.second-1);
2040 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2041
2042 // Size is the number of Cases represented by this range.
2043 unsigned Size = CR.Range.second - CR.Range.first;
2044
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002045 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2046 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002047 double FMetric = 0;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002048 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002049
2050 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2051 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002052 uint64_t TSize = 0;
2053 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2054 I!=E; ++I)
2055 TSize += I->size();
2056
2057 uint64_t LSize = FrontCase.size();
2058 uint64_t RSize = TSize-LSize;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002059 DOUT << "Selecting best pivot: \n"
2060 << "First: " << First << ", Last: " << Last <<"\n"
2061 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002062 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002063 J!=E; ++I, ++J) {
2064 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2065 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002066 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002067 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2068 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikov54e2b142007-04-09 21:57:03 +00002069 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002070 // Should always split in some non-trivial place
2071 DOUT <<"=>Step\n"
2072 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2073 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2074 << "Metric: " << Metric << "\n";
2075 if (FMetric < Metric) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002076 Pivot = J;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002077 FMetric = Metric;
2078 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002079 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002080
2081 LSize += J->size();
2082 RSize -= J->size();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002083 }
Anton Korobeynikov7294b582007-05-09 20:07:08 +00002084 if (areJTsAllowed(TLI)) {
2085 // If our case is dense we *really* should handle it earlier!
2086 assert((FMetric > 0) && "Should handle dense range earlier!");
2087 } else {
2088 Pivot = CR.Range.first + Size/2;
2089 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002090
2091 CaseRange LHSR(CR.Range.first, Pivot);
2092 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002093 Constant *C = Pivot->Low;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002094 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2095
2096 // We know that we branch to the LHS if the Value being switched on is
2097 // less than the Pivot value, C. We use this to optimize our binary
2098 // tree a bit, by recognizing that if SV is greater than or equal to the
2099 // LHS's Case Value, and that Case Value is exactly one less than the
2100 // Pivot's Value, then we can branch directly to the LHS's Target,
2101 // rather than creating a leaf node for it.
2102 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002103 LHSR.first->High == CR.GE &&
2104 cast<ConstantInt>(C)->getSExtValue() ==
2105 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2106 TrueBB = LHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002107 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002108 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2109 CurMF->insert(BBI, TrueBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002110 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2111 }
2112
2113 // Similar to the optimization above, if the Value being switched on is
2114 // known to be less than the Constant CR.LT, and the current Case Value
2115 // is CR.LT - 1, then we can branch directly to the target block for
2116 // the current Case Value, rather than emitting a RHS leaf node for it.
2117 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002118 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2119 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2120 FalseBB = RHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002121 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002122 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2123 CurMF->insert(BBI, FalseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002124 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2125 }
2126
2127 // Create a CaseBlock record representing a conditional branch to
2128 // the LHS node if the value being switched on SV is less than C.
2129 // Otherwise, branch to LHS.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002130 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2131 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002132
2133 if (CR.CaseBB == CurMBB)
2134 visitSwitchCase(CB);
2135 else
2136 SwitchCases.push_back(CB);
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002137
2138 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002139}
2140
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002141/// handleBitTestsSwitchCase - if current case range has few destination and
2142/// range span less, than machine word bitwidth, encode case range into series
2143/// of masks and emit bit tests with these masks.
2144bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2145 CaseRecVector& WorkList,
2146 Value* SV,
Chris Lattner3ff98172007-04-14 02:26:56 +00002147 MachineBasicBlock* Default){
Duncan Sands83ec4b62008-06-06 12:08:01 +00002148 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002149
2150 Case& FrontCase = *CR.Range.first;
2151 Case& BackCase = *(CR.Range.second-1);
2152
2153 // Get the MachineFunction which holds the current MBB. This is used when
2154 // inserting any additional MBBs necessary to represent the switch.
2155 MachineFunction *CurMF = CurMBB->getParent();
2156
2157 unsigned numCmps = 0;
2158 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2159 I!=E; ++I) {
2160 // Single case counts one, case range - two.
2161 if (I->Low == I->High)
2162 numCmps +=1;
2163 else
2164 numCmps +=2;
2165 }
2166
2167 // Count unique destinations
2168 SmallSet<MachineBasicBlock*, 4> Dests;
2169 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2170 Dests.insert(I->BB);
2171 if (Dests.size() > 3)
2172 // Don't bother the code below, if there are too much unique destinations
2173 return false;
2174 }
2175 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2176 << "Total number of comparisons: " << numCmps << "\n";
2177
2178 // Compute span of values.
2179 Constant* minValue = FrontCase.Low;
2180 Constant* maxValue = BackCase.High;
2181 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2182 cast<ConstantInt>(minValue)->getSExtValue();
2183 DOUT << "Compare range: " << range << "\n"
2184 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2185 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2186
Anton Korobeynikovab8fd402007-04-26 20:44:04 +00002187 if (range>=IntPtrBits ||
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002188 (!(Dests.size() == 1 && numCmps >= 3) &&
2189 !(Dests.size() == 2 && numCmps >= 5) &&
2190 !(Dests.size() >= 3 && numCmps >= 6)))
2191 return false;
2192
2193 DOUT << "Emitting bit tests\n";
2194 int64_t lowBound = 0;
2195
2196 // Optimize the case where all the case values fit in a
2197 // word without having to subtract minValue. In this case,
2198 // we can optimize away the subtraction.
2199 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002200 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002201 range = cast<ConstantInt>(maxValue)->getSExtValue();
2202 } else {
2203 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2204 }
2205
2206 CaseBitsVector CasesBits;
2207 unsigned i, count = 0;
2208
2209 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2210 MachineBasicBlock* Dest = I->BB;
2211 for (i = 0; i < count; ++i)
2212 if (Dest == CasesBits[i].BB)
2213 break;
2214
2215 if (i == count) {
2216 assert((count < 3) && "Too much destinations to test!");
2217 CasesBits.push_back(CaseBits(0, Dest, 0));
2218 count++;
2219 }
2220
2221 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2222 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2223
2224 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002225 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002226 CasesBits[i].Bits++;
2227 }
2228
2229 }
2230 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2231
2232 SelectionDAGISel::BitTestInfo BTC;
2233
2234 // Figure out which block is immediately after the current one.
2235 MachineFunction::iterator BBI = CR.CaseBB;
2236 ++BBI;
2237
2238 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2239
2240 DOUT << "Cases:\n";
2241 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2242 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2243 << ", BB: " << CasesBits[i].BB << "\n";
2244
Dan Gohman0e5f1302008-07-07 23:02:41 +00002245 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2246 CurMF->insert(BBI, CaseBB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002247 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2248 CaseBB,
2249 CasesBits[i].BB));
2250 }
2251
2252 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohenefc36622007-04-09 14:32:59 +00002253 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002254 CR.CaseBB, Default, BTC);
2255
2256 if (CR.CaseBB == CurMBB)
2257 visitBitTestHeader(BTB);
2258
2259 BitTestCases.push_back(BTB);
2260
2261 return true;
2262}
2263
2264
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002265/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002266unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2267 const SwitchInst& SI) {
2268 unsigned numCmps = 0;
2269
2270 // Start with "simple" cases
2271 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2272 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2273 Cases.push_back(Case(SI.getSuccessorValue(i),
2274 SI.getSuccessorValue(i),
2275 SMBB));
2276 }
Chris Lattnerb3d9cdb2007-11-27 06:14:32 +00002277 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002278
2279 // Merge case into clusters
2280 if (Cases.size()>=2)
David Greenea2a48852007-06-29 03:42:23 +00002281 // Must recompute end() each iteration because it may be
2282 // invalidated by erase if we hold on to it
Chris Lattner27a6c732007-11-24 07:07:01 +00002283 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002284 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2285 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2286 MachineBasicBlock* nextBB = J->BB;
2287 MachineBasicBlock* currentBB = I->BB;
2288
2289 // If the two neighboring cases go to the same destination, merge them
2290 // into a single case.
2291 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2292 I->High = J->High;
2293 J = Cases.erase(J);
2294 } else {
2295 I = J++;
2296 }
2297 }
2298
2299 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2300 if (I->Low != I->High)
2301 // A range counts double, since it requires two compares.
2302 ++numCmps;
2303 }
2304
2305 return numCmps;
2306}
2307
2308void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002309 // Figure out which block is immediately after the current one.
2310 MachineBasicBlock *NextBlock = 0;
2311 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002312
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002313 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002314
Nate Begemanf15485a2006-03-27 01:32:24 +00002315 // If there is only the default destination, branch to it if it is not the
2316 // next basic block. Otherwise, just fall through.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002317 if (SI.getNumOperands() == 2) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002318 // Update machine-CFG edges.
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002319
Nate Begemanf15485a2006-03-27 01:32:24 +00002320 // If this is not a fall-through branch, emit the branch.
Owen Anderson2d389e82008-06-07 00:00:23 +00002321 CurMBB->addSuccessor(Default);
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002322 if (Default != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002323 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002324 DAG.getBasicBlock(Default)));
Owen Anderson2d389e82008-06-07 00:00:23 +00002325
Nate Begemanf15485a2006-03-27 01:32:24 +00002326 return;
2327 }
2328
2329 // If there are any non-default case statements, create a vector of Cases
2330 // representing each one, and sort the vector so that we can efficiently
2331 // create a binary search tree from them.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002332 CaseVector Cases;
2333 unsigned numCmps = Clusterify(Cases, SI);
2334 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2335 << ". Total compares: " << numCmps << "\n";
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002336
Nate Begemanf15485a2006-03-27 01:32:24 +00002337 // Get the Value to be switched on and default basic blocks, which will be
2338 // inserted into CaseBlock records, representing basic blocks in the binary
2339 // search tree.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002340 Value *SV = SI.getOperand(0);
Nate Begeman37efe672006-04-22 18:53:45 +00002341
Nate Begemanf15485a2006-03-27 01:32:24 +00002342 // Push the initial CaseRec onto the worklist
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002343 CaseRecVector WorkList;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002344 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2345
2346 while (!WorkList.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002347 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002348 CaseRec CR = WorkList.back();
2349 WorkList.pop_back();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002350
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002351 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2352 continue;
2353
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002354 // If the range has few cases (two or less) emit a series of specific
2355 // tests.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002356 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2357 continue;
2358
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002359 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002360 // target supports indirect branches, then emit a jump table rather than
2361 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002362 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2363 continue;
2364
2365 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2366 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2367 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemanf15485a2006-03-27 01:32:24 +00002368 }
2369}
2370
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002371
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002372void SelectionDAGLowering::visitSub(User &I) {
2373 // -0.0 - X --> fneg
Reid Spencer24d6da52007-01-21 00:29:26 +00002374 const Type *Ty = I.getType();
Reid Spencer9d6565a2007-02-15 02:26:10 +00002375 if (isa<VectorType>(Ty)) {
Dan Gohman7f321562007-06-25 16:23:39 +00002376 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2377 const VectorType *DestTy = cast<VectorType>(I.getType());
2378 const Type *ElTy = DestTy->getElementType();
Evan Chengc45453f2007-06-29 21:44:35 +00002379 if (ElTy->isFloatingPoint()) {
2380 unsigned VL = DestTy->getNumElements();
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002381 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Evan Chengc45453f2007-06-29 21:44:35 +00002382 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2383 if (CV == CNZ) {
Dan Gohman475871a2008-07-27 21:46:04 +00002384 SDValue Op2 = getValue(I.getOperand(1));
Evan Chengc45453f2007-06-29 21:44:35 +00002385 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2386 return;
2387 }
Dan Gohman7f321562007-06-25 16:23:39 +00002388 }
2389 }
2390 }
2391 if (Ty->isFloatingPoint()) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002392 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002393 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohman475871a2008-07-27 21:46:04 +00002394 SDValue Op2 = getValue(I.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00002395 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2396 return;
2397 }
Dan Gohman7f321562007-06-25 16:23:39 +00002398 }
2399
2400 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002401}
2402
Dan Gohman7f321562007-06-25 16:23:39 +00002403void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Dan Gohman475871a2008-07-27 21:46:04 +00002404 SDValue Op1 = getValue(I.getOperand(0));
2405 SDValue Op2 = getValue(I.getOperand(1));
Reid Spencer24d6da52007-01-21 00:29:26 +00002406
2407 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer1628cec2006-10-26 06:15:43 +00002408}
2409
Nate Begemane21ea612005-11-18 07:42:56 +00002410void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
Dan Gohman475871a2008-07-27 21:46:04 +00002411 SDValue Op1 = getValue(I.getOperand(0));
2412 SDValue Op2 = getValue(I.getOperand(1));
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002413 if (!isa<VectorType>(I.getType())) {
2414 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
2415 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
2416 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2417 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
2418 }
Nate Begemane21ea612005-11-18 07:42:56 +00002419
Chris Lattner1c08c712005-01-07 07:47:53 +00002420 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2421}
2422
Reid Spencer45fb3f32006-11-20 01:22:35 +00002423void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002424 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2425 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2426 predicate = IC->getPredicate();
2427 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2428 predicate = ICmpInst::Predicate(IC->getPredicate());
Dan Gohman475871a2008-07-27 21:46:04 +00002429 SDValue Op1 = getValue(I.getOperand(0));
2430 SDValue Op2 = getValue(I.getOperand(1));
Reid Spencer45fb3f32006-11-20 01:22:35 +00002431 ISD::CondCode Opcode;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002432 switch (predicate) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002433 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2434 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2435 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2436 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2437 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2438 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2439 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2440 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2441 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2442 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2443 default:
2444 assert(!"Invalid ICmp predicate value");
2445 Opcode = ISD::SETEQ;
2446 break;
2447 }
2448 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2449}
2450
2451void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002452 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2453 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2454 predicate = FC->getPredicate();
2455 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2456 predicate = FCmpInst::Predicate(FC->getPredicate());
Dan Gohman475871a2008-07-27 21:46:04 +00002457 SDValue Op1 = getValue(I.getOperand(0));
2458 SDValue Op2 = getValue(I.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002459 ISD::CondCode Condition, FOC, FPC;
2460 switch (predicate) {
2461 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2462 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2463 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2464 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2465 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2466 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2467 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmancba3b442008-05-01 23:40:44 +00002468 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2469 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002470 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2471 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2472 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2473 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2474 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2475 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2476 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2477 default:
2478 assert(!"Invalid FCmp predicate value");
2479 FOC = FPC = ISD::SETFALSE;
2480 break;
2481 }
2482 if (FiniteOnlyFPMath())
2483 Condition = FOC;
2484 else
2485 Condition = FPC;
2486 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner1c08c712005-01-07 07:47:53 +00002487}
2488
Nate Begemanb43e9c12008-05-12 19:40:03 +00002489void SelectionDAGLowering::visitVICmp(User &I) {
2490 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2491 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2492 predicate = IC->getPredicate();
2493 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2494 predicate = ICmpInst::Predicate(IC->getPredicate());
Dan Gohman475871a2008-07-27 21:46:04 +00002495 SDValue Op1 = getValue(I.getOperand(0));
2496 SDValue Op2 = getValue(I.getOperand(1));
Nate Begemanb43e9c12008-05-12 19:40:03 +00002497 ISD::CondCode Opcode;
2498 switch (predicate) {
2499 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2500 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2501 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2502 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2503 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2504 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2505 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2506 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2507 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2508 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2509 default:
2510 assert(!"Invalid ICmp predicate value");
2511 Opcode = ISD::SETEQ;
2512 break;
2513 }
2514 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2515}
2516
2517void SelectionDAGLowering::visitVFCmp(User &I) {
2518 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2519 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2520 predicate = FC->getPredicate();
2521 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2522 predicate = FCmpInst::Predicate(FC->getPredicate());
Dan Gohman475871a2008-07-27 21:46:04 +00002523 SDValue Op1 = getValue(I.getOperand(0));
2524 SDValue Op2 = getValue(I.getOperand(1));
Nate Begemanb43e9c12008-05-12 19:40:03 +00002525 ISD::CondCode Condition, FOC, FPC;
2526 switch (predicate) {
2527 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2528 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2529 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2530 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2531 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2532 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2533 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2534 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2535 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2536 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2537 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2538 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2539 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2540 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2541 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2542 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2543 default:
2544 assert(!"Invalid VFCmp predicate value");
2545 FOC = FPC = ISD::SETFALSE;
2546 break;
2547 }
2548 if (FiniteOnlyFPMath())
2549 Condition = FOC;
2550 else
2551 Condition = FPC;
2552
Duncan Sands83ec4b62008-06-06 12:08:01 +00002553 MVT DestVT = TLI.getValueType(I.getType());
Nate Begemanb43e9c12008-05-12 19:40:03 +00002554
2555 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2556}
2557
Chris Lattner1c08c712005-01-07 07:47:53 +00002558void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002559 SDValue Cond = getValue(I.getOperand(0));
2560 SDValue TrueVal = getValue(I.getOperand(1));
2561 SDValue FalseVal = getValue(I.getOperand(2));
Dan Gohman7f321562007-06-25 16:23:39 +00002562 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2563 TrueVal, FalseVal));
Chris Lattner1c08c712005-01-07 07:47:53 +00002564}
2565
Reid Spencer3da59db2006-11-27 01:05:10 +00002566
2567void SelectionDAGLowering::visitTrunc(User &I) {
2568 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
Dan Gohman475871a2008-07-27 21:46:04 +00002569 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002570 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002571 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2572}
2573
2574void SelectionDAGLowering::visitZExt(User &I) {
2575 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2576 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
Dan Gohman475871a2008-07-27 21:46:04 +00002577 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002578 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002579 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2580}
2581
2582void SelectionDAGLowering::visitSExt(User &I) {
2583 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2584 // SExt also can't be a cast to bool for same reason. So, nothing much to do
Dan Gohman475871a2008-07-27 21:46:04 +00002585 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002586 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002587 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2588}
2589
2590void SelectionDAGLowering::visitFPTrunc(User &I) {
2591 // FPTrunc is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002592 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002593 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner0bd48932008-01-17 07:00:52 +00002594 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Reid Spencer3da59db2006-11-27 01:05:10 +00002595}
2596
2597void SelectionDAGLowering::visitFPExt(User &I){
2598 // FPTrunc is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002599 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002600 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002601 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2602}
2603
2604void SelectionDAGLowering::visitFPToUI(User &I) {
2605 // FPToUI is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002606 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002607 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002608 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2609}
2610
2611void SelectionDAGLowering::visitFPToSI(User &I) {
2612 // FPToSI is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002613 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002614 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002615 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2616}
2617
2618void SelectionDAGLowering::visitUIToFP(User &I) {
2619 // UIToFP is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002620 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002621 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002622 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2623}
2624
2625void SelectionDAGLowering::visitSIToFP(User &I){
2626 // UIToFP is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002627 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002628 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002629 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2630}
2631
2632void SelectionDAGLowering::visitPtrToInt(User &I) {
2633 // What to do depends on the size of the integer and the size of the pointer.
2634 // We can either truncate, zero extend, or no-op, accordingly.
Dan Gohman475871a2008-07-27 21:46:04 +00002635 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002636 MVT SrcVT = N.getValueType();
2637 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohman475871a2008-07-27 21:46:04 +00002638 SDValue Result;
Duncan Sands8e4eb092008-06-08 20:54:56 +00002639 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002640 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2641 else
2642 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2643 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2644 setValue(&I, Result);
2645}
Chris Lattner1c08c712005-01-07 07:47:53 +00002646
Reid Spencer3da59db2006-11-27 01:05:10 +00002647void SelectionDAGLowering::visitIntToPtr(User &I) {
2648 // What to do depends on the size of the integer and the size of the pointer.
2649 // We can either truncate, zero extend, or no-op, accordingly.
Dan Gohman475871a2008-07-27 21:46:04 +00002650 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002651 MVT SrcVT = N.getValueType();
2652 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sands8e4eb092008-06-08 20:54:56 +00002653 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002654 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2655 else
2656 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2657 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2658}
2659
2660void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002661 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002662 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002663
2664 // BitCast assures us that source and destination are the same size so this
2665 // is either a BIT_CONVERT or a no-op.
2666 if (DestVT != N.getValueType())
2667 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2668 else
2669 setValue(&I, N); // noop cast.
Chris Lattner1c08c712005-01-07 07:47:53 +00002670}
2671
Chris Lattner2bbd8102006-03-29 00:11:43 +00002672void SelectionDAGLowering::visitInsertElement(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002673 SDValue InVec = getValue(I.getOperand(0));
2674 SDValue InVal = getValue(I.getOperand(1));
2675 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
Chris Lattnerc7029802006-03-18 01:44:44 +00002676 getValue(I.getOperand(2)));
2677
Dan Gohman7f321562007-06-25 16:23:39 +00002678 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2679 TLI.getValueType(I.getType()),
2680 InVec, InVal, InIdx));
Chris Lattnerc7029802006-03-18 01:44:44 +00002681}
2682
Chris Lattner2bbd8102006-03-29 00:11:43 +00002683void SelectionDAGLowering::visitExtractElement(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002684 SDValue InVec = getValue(I.getOperand(0));
2685 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
Chris Lattner384504c2006-03-21 20:44:12 +00002686 getValue(I.getOperand(1)));
Dan Gohman7f321562007-06-25 16:23:39 +00002687 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner384504c2006-03-21 20:44:12 +00002688 TLI.getValueType(I.getType()), InVec, InIdx));
2689}
Chris Lattnerc7029802006-03-18 01:44:44 +00002690
Chris Lattner3e104b12006-04-08 04:15:24 +00002691void SelectionDAGLowering::visitShuffleVector(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002692 SDValue V1 = getValue(I.getOperand(0));
2693 SDValue V2 = getValue(I.getOperand(1));
2694 SDValue Mask = getValue(I.getOperand(2));
Chris Lattner3e104b12006-04-08 04:15:24 +00002695
Dan Gohman7f321562007-06-25 16:23:39 +00002696 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2697 TLI.getValueType(I.getType()),
2698 V1, V2, Mask));
Chris Lattner3e104b12006-04-08 04:15:24 +00002699}
2700
Dan Gohman1d685a42008-06-07 02:02:36 +00002701void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2702 const Value *Op0 = I.getOperand(0);
2703 const Value *Op1 = I.getOperand(1);
2704 const Type *AggTy = I.getType();
2705 const Type *ValTy = Op1->getType();
2706 bool IntoUndef = isa<UndefValue>(Op0);
2707 bool FromUndef = isa<UndefValue>(Op1);
2708
2709 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2710 I.idx_begin(), I.idx_end());
2711
2712 SmallVector<MVT, 4> AggValueVTs;
2713 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2714 SmallVector<MVT, 4> ValValueVTs;
2715 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2716
2717 unsigned NumAggValues = AggValueVTs.size();
2718 unsigned NumValValues = ValValueVTs.size();
Dan Gohman475871a2008-07-27 21:46:04 +00002719 SmallVector<SDValue, 4> Values(NumAggValues);
Dan Gohman1d685a42008-06-07 02:02:36 +00002720
Dan Gohman475871a2008-07-27 21:46:04 +00002721 SDValue Agg = getValue(Op0);
2722 SDValue Val = getValue(Op1);
Dan Gohman1d685a42008-06-07 02:02:36 +00002723 unsigned i = 0;
2724 // Copy the beginning value(s) from the original aggregate.
2725 for (; i != LinearIndex; ++i)
2726 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman475871a2008-07-27 21:46:04 +00002727 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002728 // Copy values from the inserted value(s).
2729 for (; i != LinearIndex + NumValValues; ++i)
2730 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman475871a2008-07-27 21:46:04 +00002731 SDValue(Val.Val, Val.ResNo + i - LinearIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +00002732 // Copy remaining value(s) from the original aggregate.
2733 for (; i != NumAggValues; ++i)
2734 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman475871a2008-07-27 21:46:04 +00002735 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002736
Duncan Sandsf9516202008-06-30 10:19:09 +00002737 setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2738 &Values[0], NumAggValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002739}
2740
Dan Gohman1d685a42008-06-07 02:02:36 +00002741void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2742 const Value *Op0 = I.getOperand(0);
2743 const Type *AggTy = Op0->getType();
2744 const Type *ValTy = I.getType();
2745 bool OutOfUndef = isa<UndefValue>(Op0);
2746
2747 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2748 I.idx_begin(), I.idx_end());
2749
2750 SmallVector<MVT, 4> ValValueVTs;
2751 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2752
2753 unsigned NumValValues = ValValueVTs.size();
Dan Gohman475871a2008-07-27 21:46:04 +00002754 SmallVector<SDValue, 4> Values(NumValValues);
Dan Gohman1d685a42008-06-07 02:02:36 +00002755
Dan Gohman475871a2008-07-27 21:46:04 +00002756 SDValue Agg = getValue(Op0);
Dan Gohman1d685a42008-06-07 02:02:36 +00002757 // Copy out the selected value(s).
2758 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2759 Values[i - LinearIndex] =
Dan Gohmandded0fd2008-06-20 00:54:19 +00002760 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
Dan Gohman475871a2008-07-27 21:46:04 +00002761 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002762
Duncan Sandsf9516202008-06-30 10:19:09 +00002763 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2764 &Values[0], NumValValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002765}
2766
Chris Lattner3e104b12006-04-08 04:15:24 +00002767
Chris Lattner1c08c712005-01-07 07:47:53 +00002768void SelectionDAGLowering::visitGetElementPtr(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002769 SDValue N = getValue(I.getOperand(0));
Chris Lattner1c08c712005-01-07 07:47:53 +00002770 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00002771
2772 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2773 OI != E; ++OI) {
2774 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002775 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002776 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner1c08c712005-01-07 07:47:53 +00002777 if (Field) {
2778 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +00002779 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner1c08c712005-01-07 07:47:53 +00002780 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner0bd48932008-01-17 07:00:52 +00002781 DAG.getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00002782 }
2783 Ty = StTy->getElementType(Field);
2784 } else {
2785 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00002786
Chris Lattner7c0104b2005-11-09 04:45:33 +00002787 // If this is a constant subscript, handle it quickly.
2788 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002789 if (CI->getZExtValue() == 0) continue;
Reid Spencer47857812006-12-31 05:55:36 +00002790 uint64_t Offs =
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002791 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00002792 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2793 DAG.getIntPtrConstant(Offs));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002794 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00002795 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00002796
2797 // N = N + Idx * ElementSize;
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002798 uint64_t ElementSize = TD->getABITypeSize(Ty);
Dan Gohman475871a2008-07-27 21:46:04 +00002799 SDValue IdxN = getValue(Idx);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002800
2801 // If the index is smaller or larger than intptr_t, truncate or extend
2802 // it.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002803 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +00002804 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002805 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Chris Lattner7c0104b2005-11-09 04:45:33 +00002806 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2807
2808 // If this is a multiply by a power of two, turn it into a shl
2809 // immediately. This is a very common case.
2810 if (isPowerOf2_64(ElementSize)) {
2811 unsigned Amt = Log2_64(ElementSize);
2812 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00002813 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002814 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2815 continue;
2816 }
2817
Dan Gohman475871a2008-07-27 21:46:04 +00002818 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002819 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2820 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00002821 }
2822 }
2823 setValue(&I, N);
2824}
2825
2826void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2827 // If this is a fixed sized alloca in the entry block of the function,
2828 // allocate it statically on the stack.
2829 if (FuncInfo.StaticAllocaMap.count(&I))
2830 return; // getValue will auto-populate this.
2831
2832 const Type *Ty = I.getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +00002833 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00002834 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00002835 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner58092e32007-01-20 22:35:55 +00002836 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00002837
Dan Gohman475871a2008-07-27 21:46:04 +00002838 SDValue AllocSize = getValue(I.getArraySize());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002839 MVT IntPtr = TLI.getPointerTy();
Duncan Sands8e4eb092008-06-08 20:54:56 +00002840 if (IntPtr.bitsLT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002841 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002842 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002843 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00002844
Chris Lattner68cd65e2005-01-22 23:04:37 +00002845 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002846 DAG.getIntPtrConstant(TySize));
Chris Lattner1c08c712005-01-07 07:47:53 +00002847
Evan Cheng45157792007-08-16 23:46:29 +00002848 // Handle alignment. If the requested alignment is less than or equal to
2849 // the stack alignment, ignore it. If the size is greater than or equal to
2850 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner1c08c712005-01-07 07:47:53 +00002851 unsigned StackAlign =
2852 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng45157792007-08-16 23:46:29 +00002853 if (Align <= StackAlign)
Chris Lattner1c08c712005-01-07 07:47:53 +00002854 Align = 0;
Evan Cheng45157792007-08-16 23:46:29 +00002855
2856 // Round the size of the allocation up to the stack alignment size
2857 // by add SA-1 to the size.
2858 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002859 DAG.getIntPtrConstant(StackAlign-1));
Evan Cheng45157792007-08-16 23:46:29 +00002860 // Mask out the low bits for alignment purposes.
2861 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002862 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner1c08c712005-01-07 07:47:53 +00002863
Dan Gohman475871a2008-07-27 21:46:04 +00002864 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands83ec4b62008-06-06 12:08:01 +00002865 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002866 MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00002867 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner0da331f2007-02-04 01:31:47 +00002868 setValue(&I, DSA);
2869 DAG.setRoot(DSA.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002870
2871 // Inform the Frame Information that we have just allocated a variable-sized
2872 // object.
2873 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2874}
2875
Chris Lattner1c08c712005-01-07 07:47:53 +00002876void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002877 const Value *SV = I.getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00002878 SDValue Ptr = getValue(SV);
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002879
2880 const Type *Ty = I.getType();
2881 bool isVolatile = I.isVolatile();
2882 unsigned Alignment = I.getAlignment();
2883
2884 SmallVector<MVT, 4> ValueVTs;
2885 SmallVector<uint64_t, 4> Offsets;
2886 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2887 unsigned NumValues = ValueVTs.size();
2888 if (NumValues == 0)
2889 return;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002890
Dan Gohman475871a2008-07-27 21:46:04 +00002891 SDValue Root;
Dan Gohman8b4588f2008-07-25 00:04:14 +00002892 bool ConstantMemory = false;
Chris Lattnerd3948112005-01-17 22:19:26 +00002893 if (I.isVolatile())
Dan Gohman8b4588f2008-07-25 00:04:14 +00002894 // Serialize volatile loads with other side effects.
Chris Lattnerd3948112005-01-17 22:19:26 +00002895 Root = getRoot();
Dan Gohman8b4588f2008-07-25 00:04:14 +00002896 else if (AA.pointsToConstantMemory(SV)) {
2897 // Do not serialize (non-volatile) loads of constant memory with anything.
2898 Root = DAG.getEntryNode();
2899 ConstantMemory = true;
2900 } else {
Chris Lattnerd3948112005-01-17 22:19:26 +00002901 // Do not serialize non-volatile loads against each other.
2902 Root = DAG.getRoot();
2903 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002904
Dan Gohman475871a2008-07-27 21:46:04 +00002905 SmallVector<SDValue, 4> Values(NumValues);
2906 SmallVector<SDValue, 4> Chains(NumValues);
Dan Gohman1d685a42008-06-07 02:02:36 +00002907 MVT PtrVT = Ptr.getValueType();
2908 for (unsigned i = 0; i != NumValues; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002909 SDValue L = DAG.getLoad(ValueVTs[i], Root,
Dan Gohman1d685a42008-06-07 02:02:36 +00002910 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2911 DAG.getConstant(Offsets[i], PtrVT)),
2912 SV, Offsets[i],
2913 isVolatile, Alignment);
2914 Values[i] = L;
2915 Chains[i] = L.getValue(1);
2916 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002917
Dan Gohman8b4588f2008-07-25 00:04:14 +00002918 if (!ConstantMemory) {
Dan Gohman475871a2008-07-27 21:46:04 +00002919 SDValue Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
Dan Gohman8b4588f2008-07-25 00:04:14 +00002920 &Chains[0], NumValues);
2921 if (isVolatile)
2922 DAG.setRoot(Chain);
2923 else
2924 PendingLoads.push_back(Chain);
2925 }
Dan Gohman1d685a42008-06-07 02:02:36 +00002926
Duncan Sandsf9516202008-06-30 10:19:09 +00002927 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2928 &Values[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002929}
2930
2931
2932void SelectionDAGLowering::visitStore(StoreInst &I) {
2933 Value *SrcV = I.getOperand(0);
Dan Gohman1d685a42008-06-07 02:02:36 +00002934 Value *PtrV = I.getOperand(1);
Dan Gohman1d685a42008-06-07 02:02:36 +00002935
2936 SmallVector<MVT, 4> ValueVTs;
2937 SmallVector<uint64_t, 4> Offsets;
2938 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2939 unsigned NumValues = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002940 if (NumValues == 0)
2941 return;
Dan Gohman1d685a42008-06-07 02:02:36 +00002942
Dan Gohman90d33ee2008-07-30 18:36:51 +00002943 // Get the lowered operands. Note that we do this after
2944 // checking if NumResults is zero, because with zero results
2945 // the operands won't have values in the map.
2946 SDValue Src = getValue(SrcV);
2947 SDValue Ptr = getValue(PtrV);
2948
Dan Gohman475871a2008-07-27 21:46:04 +00002949 SDValue Root = getRoot();
2950 SmallVector<SDValue, 4> Chains(NumValues);
Dan Gohman1d685a42008-06-07 02:02:36 +00002951 MVT PtrVT = Ptr.getValueType();
2952 bool isVolatile = I.isVolatile();
2953 unsigned Alignment = I.getAlignment();
2954 for (unsigned i = 0; i != NumValues; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00002955 Chains[i] = DAG.getStore(Root, SDValue(Src.Val, Src.ResNo + i),
Dan Gohman1d685a42008-06-07 02:02:36 +00002956 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2957 DAG.getConstant(Offsets[i], PtrVT)),
2958 PtrV, Offsets[i],
2959 isVolatile, Alignment);
2960
2961 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002962}
2963
Chris Lattner0eade312006-03-24 02:22:33 +00002964/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2965/// node.
2966void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2967 unsigned Intrinsic) {
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002968 bool HasChain = !I.doesNotAccessMemory();
2969 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2970
Chris Lattner0eade312006-03-24 02:22:33 +00002971 // Build the operand list.
Dan Gohman475871a2008-07-27 21:46:04 +00002972 SmallVector<SDValue, 8> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00002973 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2974 if (OnlyLoad) {
2975 // We don't need to serialize loads against other loads.
2976 Ops.push_back(DAG.getRoot());
2977 } else {
2978 Ops.push_back(getRoot());
2979 }
2980 }
Chris Lattner0eade312006-03-24 02:22:33 +00002981
2982 // Add the intrinsic ID as an integer operand.
2983 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2984
2985 // Add all operands of the call to the operand list.
2986 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002987 SDValue Op = getValue(I.getOperand(i));
Chris Lattner0eade312006-03-24 02:22:33 +00002988 assert(TLI.isTypeLegal(Op.getValueType()) &&
2989 "Intrinsic uses a non-legal type?");
2990 Ops.push_back(Op);
2991 }
2992
Duncan Sands83ec4b62008-06-06 12:08:01 +00002993 std::vector<MVT> VTs;
Chris Lattner0eade312006-03-24 02:22:33 +00002994 if (I.getType() != Type::VoidTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002995 MVT VT = TLI.getValueType(I.getType());
2996 if (VT.isVector()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002997 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002998 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Chris Lattner0eade312006-03-24 02:22:33 +00002999
Duncan Sands83ec4b62008-06-06 12:08:01 +00003000 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Chris Lattner0eade312006-03-24 02:22:33 +00003001 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
3002 }
3003
3004 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
3005 VTs.push_back(VT);
3006 }
3007 if (HasChain)
3008 VTs.push_back(MVT::Other);
3009
Duncan Sands83ec4b62008-06-06 12:08:01 +00003010 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003011
Chris Lattner0eade312006-03-24 02:22:33 +00003012 // Create the node.
Dan Gohman475871a2008-07-27 21:46:04 +00003013 SDValue Result;
Chris Lattner48b61a72006-03-28 00:40:33 +00003014 if (!HasChain)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003015 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
3016 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003017 else if (I.getType() != Type::VoidTy)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003018 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
3019 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003020 else
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003021 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
3022 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003023
Chris Lattnere58a7802006-04-02 03:41:14 +00003024 if (HasChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00003025 SDValue Chain = Result.getValue(Result.Val->getNumValues()-1);
Chris Lattnere58a7802006-04-02 03:41:14 +00003026 if (OnlyLoad)
3027 PendingLoads.push_back(Chain);
3028 else
3029 DAG.setRoot(Chain);
3030 }
Chris Lattner0eade312006-03-24 02:22:33 +00003031 if (I.getType() != Type::VoidTy) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003032 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003033 MVT VT = TLI.getValueType(PTy);
Dan Gohman7f321562007-06-25 16:23:39 +00003034 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattner0eade312006-03-24 02:22:33 +00003035 }
3036 setValue(&I, Result);
3037 }
3038}
3039
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003040/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003041static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003042 V = V->stripPointerCasts();
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003043 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003044 assert ((GV || isa<ConstantPointerNull>(V)) &&
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003045 "TypeInfo must be a global variable or NULL");
3046 return GV;
3047}
3048
Duncan Sandsf4070822007-06-15 19:04:19 +00003049/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003050/// call, and add them to the specified machine basic block.
Duncan Sandsf4070822007-06-15 19:04:19 +00003051static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3052 MachineBasicBlock *MBB) {
3053 // Inform the MachineModuleInfo of the personality for this landing pad.
3054 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3055 assert(CE->getOpcode() == Instruction::BitCast &&
3056 isa<Function>(CE->getOperand(0)) &&
3057 "Personality should be a function");
3058 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3059
3060 // Gather all the type infos for this landing pad and pass them along to
3061 // MachineModuleInfo.
3062 std::vector<GlobalVariable *> TyInfo;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003063 unsigned N = I.getNumOperands();
3064
3065 for (unsigned i = N - 1; i > 2; --i) {
3066 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3067 unsigned FilterLength = CI->getZExtValue();
Duncan Sands6590b042007-08-27 15:47:50 +00003068 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003069 assert (FirstCatch <= N && "Invalid filter length");
3070
3071 if (FirstCatch < N) {
3072 TyInfo.reserve(N - FirstCatch);
3073 for (unsigned j = FirstCatch; j < N; ++j)
3074 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3075 MMI->addCatchTypeInfo(MBB, TyInfo);
3076 TyInfo.clear();
3077 }
3078
Duncan Sands6590b042007-08-27 15:47:50 +00003079 if (!FilterLength) {
3080 // Cleanup.
3081 MMI->addCleanup(MBB);
3082 } else {
3083 // Filter.
3084 TyInfo.reserve(FilterLength - 1);
3085 for (unsigned j = i + 1; j < FirstCatch; ++j)
3086 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3087 MMI->addFilterTypeInfo(MBB, TyInfo);
3088 TyInfo.clear();
3089 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003090
3091 N = i;
3092 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003093 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003094
3095 if (N > 3) {
3096 TyInfo.reserve(N - 3);
3097 for (unsigned j = 3; j < N; ++j)
3098 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sandsf4070822007-06-15 19:04:19 +00003099 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003100 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003101}
3102
Mon P Wang63307c32008-05-05 19:05:59 +00003103
3104/// Inlined utility function to implement binary input atomic intrinsics for
3105// visitIntrinsicCall: I is a call instruction
3106// Op is the associated NodeType for I
3107const char *
3108SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Dan Gohman475871a2008-07-27 21:46:04 +00003109 SDValue Root = getRoot();
3110 SDValue L = DAG.getAtomic(Op, Root,
Mon P Wang63307c32008-05-05 19:05:59 +00003111 getValue(I.getOperand(1)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003112 getValue(I.getOperand(2)),
Mon P Wang28873102008-06-25 08:15:39 +00003113 I.getOperand(1));
Mon P Wang63307c32008-05-05 19:05:59 +00003114 setValue(&I, L);
3115 DAG.setRoot(L.getValue(1));
3116 return 0;
3117}
3118
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003119/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3120/// we want to emit this as a call to a named external function, return the name
3121/// otherwise lower it and return null.
3122const char *
3123SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3124 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00003125 default:
3126 // By default, turn this into a target intrinsic node.
3127 visitTargetIntrinsic(I, Intrinsic);
3128 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003129 case Intrinsic::vastart: visitVAStart(I); return 0;
3130 case Intrinsic::vaend: visitVAEnd(I); return 0;
3131 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemanbcc5f362007-01-29 22:58:52 +00003132 case Intrinsic::returnaddress:
3133 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3134 getValue(I.getOperand(1))));
3135 return 0;
3136 case Intrinsic::frameaddress:
3137 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3138 getValue(I.getOperand(1))));
3139 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003140 case Intrinsic::setjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003141 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003142 break;
3143 case Intrinsic::longjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003144 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003145 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00003146 case Intrinsic::memcpy_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003147 case Intrinsic::memcpy_i64: {
Dan Gohman475871a2008-07-27 21:46:04 +00003148 SDValue Op1 = getValue(I.getOperand(1));
3149 SDValue Op2 = getValue(I.getOperand(2));
3150 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohman707e0182008-04-12 04:36:06 +00003151 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3152 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3153 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003154 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003155 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003156 case Intrinsic::memset_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003157 case Intrinsic::memset_i64: {
Dan Gohman475871a2008-07-27 21:46:04 +00003158 SDValue Op1 = getValue(I.getOperand(1));
3159 SDValue Op2 = getValue(I.getOperand(2));
3160 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohman707e0182008-04-12 04:36:06 +00003161 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3162 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3163 I.getOperand(1), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003164 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003165 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003166 case Intrinsic::memmove_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003167 case Intrinsic::memmove_i64: {
Dan Gohman475871a2008-07-27 21:46:04 +00003168 SDValue Op1 = getValue(I.getOperand(1));
3169 SDValue Op2 = getValue(I.getOperand(2));
3170 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohman707e0182008-04-12 04:36:06 +00003171 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3172
3173 // If the source and destination are known to not be aliases, we can
3174 // lower memmove as memcpy.
3175 uint64_t Size = -1ULL;
3176 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3177 Size = C->getValue();
3178 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3179 AliasAnalysis::NoAlias) {
3180 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3181 I.getOperand(1), 0, I.getOperand(2), 0));
3182 return 0;
3183 }
3184
3185 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3186 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003187 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003188 }
Chris Lattner86cb6432005-12-13 17:40:33 +00003189 case Intrinsic::dbg_stoppoint: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003190 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003191 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003192 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003193 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00003194 assert(DD && "Not a debug information descriptor");
Dan Gohman7f460202008-06-30 20:59:49 +00003195 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3196 SPI.getLine(),
3197 SPI.getColumn(),
3198 cast<CompileUnitDesc>(DD)));
Chris Lattner86cb6432005-12-13 17:40:33 +00003199 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003200
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003201 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00003202 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003203 case Intrinsic::dbg_region_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003204 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003205 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003206 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3207 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003208 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003209 }
3210
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003211 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003212 }
3213 case Intrinsic::dbg_region_end: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003214 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003215 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003216 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3217 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003218 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003219 }
3220
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003221 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003222 }
3223 case Intrinsic::dbg_func_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003224 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003225 if (!MMI) return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003226 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003227 Value *SP = FSI.getSubprogram();
3228 if (SP && MMI->Verify(SP)) {
3229 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3230 // what (most?) gdb expects.
3231 DebugInfoDesc *DD = MMI->getDescFor(SP);
3232 assert(DD && "Not a debug information descriptor");
3233 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3234 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
Dan Gohman99fe47b2008-06-30 22:21:03 +00003235 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003236 // Record the source line but does create a label. It will be emitted
3237 // at asm emission time.
3238 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Jim Laskey43970fe2006-03-23 18:06:46 +00003239 }
3240
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003241 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003242 }
3243 case Intrinsic::dbg_declare: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003244 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003245 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Chenga844bde2008-02-02 04:07:54 +00003246 Value *Variable = DI.getVariable();
3247 if (MMI && Variable && MMI->Verify(Variable))
3248 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3249 getValue(DI.getAddress()), getValue(Variable)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003250 return 0;
3251 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003252
Jim Laskeyb180aa12007-02-21 22:53:45 +00003253 case Intrinsic::eh_exception: {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003254 if (!CurMBB->isLandingPad()) {
3255 // FIXME: Mark exception register as live in. Hack for PR1508.
3256 unsigned Reg = TLI.getExceptionAddressRegister();
3257 if (Reg) CurMBB->addLiveIn(Reg);
Jim Laskey735b6f82007-02-22 15:38:06 +00003258 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003259 // Insert the EXCEPTIONADDR instruction.
3260 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003261 SDValue Ops[1];
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003262 Ops[0] = DAG.getRoot();
Dan Gohman475871a2008-07-27 21:46:04 +00003263 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003264 setValue(&I, Op);
3265 DAG.setRoot(Op.getValue(1));
Jim Laskeyb180aa12007-02-21 22:53:45 +00003266 return 0;
3267 }
3268
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003269 case Intrinsic::eh_selector_i32:
3270 case Intrinsic::eh_selector_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003271 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003272 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003273 MVT::i32 : MVT::i64);
3274
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003275 if (MMI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00003276 if (CurMBB->isLandingPad())
3277 addCatchInfo(I, MMI, CurMBB);
Evan Chenge47c3332007-06-27 18:45:32 +00003278 else {
Duncan Sandsf4070822007-06-15 19:04:19 +00003279#ifndef NDEBUG
Duncan Sandsf4070822007-06-15 19:04:19 +00003280 FuncInfo.CatchInfoLost.insert(&I);
3281#endif
Duncan Sands90291952007-07-06 09:18:59 +00003282 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3283 unsigned Reg = TLI.getExceptionSelectorRegister();
3284 if (Reg) CurMBB->addLiveIn(Reg);
Evan Chenge47c3332007-06-27 18:45:32 +00003285 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003286
3287 // Insert the EHSELECTION instruction.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003288 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003289 SDValue Ops[2];
Jim Laskey735b6f82007-02-22 15:38:06 +00003290 Ops[0] = getValue(I.getOperand(1));
3291 Ops[1] = getRoot();
Dan Gohman475871a2008-07-27 21:46:04 +00003292 SDValue Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
Jim Laskey735b6f82007-02-22 15:38:06 +00003293 setValue(&I, Op);
3294 DAG.setRoot(Op.getValue(1));
Jim Laskey7a1de982007-02-24 09:45:44 +00003295 } else {
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003296 setValue(&I, DAG.getConstant(0, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003297 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003298
3299 return 0;
3300 }
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003301
3302 case Intrinsic::eh_typeid_for_i32:
3303 case Intrinsic::eh_typeid_for_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003304 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003305 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003306 MVT::i32 : MVT::i64);
Jim Laskeyb180aa12007-02-21 22:53:45 +00003307
Jim Laskey735b6f82007-02-22 15:38:06 +00003308 if (MMI) {
3309 // Find the type id for the given typeinfo.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003310 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands3b346362007-05-04 17:12:26 +00003311
Jim Laskey735b6f82007-02-22 15:38:06 +00003312 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003313 setValue(&I, DAG.getConstant(TypeID, VT));
Jim Laskey7a1de982007-02-24 09:45:44 +00003314 } else {
Duncan Sandsf664e412007-07-06 14:46:23 +00003315 // Return something different to eh_selector.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003316 setValue(&I, DAG.getConstant(1, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003317 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003318
3319 return 0;
3320 }
3321
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003322 case Intrinsic::eh_return: {
3323 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3324
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003325 if (MMI) {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003326 MMI->setCallsEHReturn(true);
3327 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3328 MVT::Other,
Dan Gohman86e1ebf2008-03-27 19:56:19 +00003329 getControlRoot(),
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003330 getValue(I.getOperand(1)),
3331 getValue(I.getOperand(2))));
3332 } else {
3333 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3334 }
3335
3336 return 0;
3337 }
3338
3339 case Intrinsic::eh_unwind_init: {
3340 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3341 MMI->setCallsUnwindInit(true);
3342 }
3343
3344 return 0;
3345 }
3346
3347 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003348 MVT VT = getValue(I.getOperand(1)).getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003349 SDValue CfaArg;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003350 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003351 CfaArg = DAG.getNode(ISD::TRUNCATE,
3352 TLI.getPointerTy(), getValue(I.getOperand(1)));
3353 else
3354 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3355 TLI.getPointerTy(), getValue(I.getOperand(1)));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003356
Dan Gohman475871a2008-07-27 21:46:04 +00003357 SDValue Offset = DAG.getNode(ISD::ADD,
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003358 TLI.getPointerTy(),
3359 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3360 TLI.getPointerTy()),
3361 CfaArg);
3362 setValue(&I, DAG.getNode(ISD::ADD,
3363 TLI.getPointerTy(),
3364 DAG.getNode(ISD::FRAMEADDR,
3365 TLI.getPointerTy(),
3366 DAG.getConstant(0,
3367 TLI.getPointerTy())),
3368 Offset));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003369 return 0;
3370 }
3371
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003372 case Intrinsic::sqrt:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003373 setValue(&I, DAG.getNode(ISD::FSQRT,
3374 getValue(I.getOperand(1)).getValueType(),
3375 getValue(I.getOperand(1))));
3376 return 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003377 case Intrinsic::powi:
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003378 setValue(&I, DAG.getNode(ISD::FPOWI,
3379 getValue(I.getOperand(1)).getValueType(),
3380 getValue(I.getOperand(1)),
3381 getValue(I.getOperand(2))));
3382 return 0;
Dan Gohmanac9385a2007-10-12 00:01:22 +00003383 case Intrinsic::sin:
3384 setValue(&I, DAG.getNode(ISD::FSIN,
3385 getValue(I.getOperand(1)).getValueType(),
3386 getValue(I.getOperand(1))));
3387 return 0;
3388 case Intrinsic::cos:
3389 setValue(&I, DAG.getNode(ISD::FCOS,
3390 getValue(I.getOperand(1)).getValueType(),
3391 getValue(I.getOperand(1))));
3392 return 0;
3393 case Intrinsic::pow:
3394 setValue(&I, DAG.getNode(ISD::FPOW,
3395 getValue(I.getOperand(1)).getValueType(),
3396 getValue(I.getOperand(1)),
3397 getValue(I.getOperand(2))));
3398 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003399 case Intrinsic::pcmarker: {
Dan Gohman475871a2008-07-27 21:46:04 +00003400 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003401 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3402 return 0;
3403 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003404 case Intrinsic::readcyclecounter: {
Dan Gohman475871a2008-07-27 21:46:04 +00003405 SDValue Op = getRoot();
3406 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003407 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3408 &Op, 1);
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003409 setValue(&I, Tmp);
3410 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003411 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003412 }
Chris Lattnerc6eb6d72007-04-10 03:20:39 +00003413 case Intrinsic::part_select: {
Reid Spencer3f108cb2007-04-05 01:20:18 +00003414 // Currently not implemented: just abort
Reid Spencerf75b8742007-04-12 02:48:46 +00003415 assert(0 && "part_select intrinsic not implemented");
3416 abort();
3417 }
3418 case Intrinsic::part_set: {
3419 // Currently not implemented: just abort
3420 assert(0 && "part_set intrinsic not implemented");
Reid Spencer3f108cb2007-04-05 01:20:18 +00003421 abort();
Reid Spenceraddd11d2007-04-04 23:48:25 +00003422 }
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003423 case Intrinsic::bswap:
Nate Begemand88fc032006-01-14 03:14:10 +00003424 setValue(&I, DAG.getNode(ISD::BSWAP,
3425 getValue(I.getOperand(1)).getValueType(),
3426 getValue(I.getOperand(1))));
3427 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003428 case Intrinsic::cttz: {
Dan Gohman475871a2008-07-27 21:46:04 +00003429 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003430 MVT Ty = Arg.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003431 SDValue result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003432 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003433 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003434 }
3435 case Intrinsic::ctlz: {
Dan Gohman475871a2008-07-27 21:46:04 +00003436 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003437 MVT Ty = Arg.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003438 SDValue result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003439 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003440 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003441 }
3442 case Intrinsic::ctpop: {
Dan Gohman475871a2008-07-27 21:46:04 +00003443 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003444 MVT Ty = Arg.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003445 SDValue result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003446 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003447 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003448 }
Chris Lattner140d53c2006-01-13 02:50:02 +00003449 case Intrinsic::stacksave: {
Dan Gohman475871a2008-07-27 21:46:04 +00003450 SDValue Op = getRoot();
3451 SDValue Tmp = DAG.getNode(ISD::STACKSAVE,
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003452 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattner140d53c2006-01-13 02:50:02 +00003453 setValue(&I, Tmp);
3454 DAG.setRoot(Tmp.getValue(1));
3455 return 0;
3456 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00003457 case Intrinsic::stackrestore: {
Dan Gohman475871a2008-07-27 21:46:04 +00003458 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner39a17dd2006-01-23 05:22:07 +00003459 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00003460 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00003461 }
Tanya Lattner24e5aad2007-06-15 22:26:58 +00003462 case Intrinsic::var_annotation:
3463 // Discard annotate attributes
3464 return 0;
Duncan Sands36397f52007-07-27 12:58:54 +00003465
Duncan Sands36397f52007-07-27 12:58:54 +00003466 case Intrinsic::init_trampoline: {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003467 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands36397f52007-07-27 12:58:54 +00003468
Dan Gohman475871a2008-07-27 21:46:04 +00003469 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00003470 Ops[0] = getRoot();
3471 Ops[1] = getValue(I.getOperand(1));
3472 Ops[2] = getValue(I.getOperand(2));
3473 Ops[3] = getValue(I.getOperand(3));
3474 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3475 Ops[5] = DAG.getSrcValue(F);
3476
Dan Gohman475871a2008-07-27 21:46:04 +00003477 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE,
Duncan Sandsf7331b32007-09-11 14:10:23 +00003478 DAG.getNodeValueTypes(TLI.getPointerTy(),
3479 MVT::Other), 2,
3480 Ops, 6);
3481
3482 setValue(&I, Tmp);
3483 DAG.setRoot(Tmp.getValue(1));
Duncan Sands36397f52007-07-27 12:58:54 +00003484 return 0;
3485 }
Gordon Henriksence224772008-01-07 01:30:38 +00003486
3487 case Intrinsic::gcroot:
3488 if (GCI) {
3489 Value *Alloca = I.getOperand(1);
3490 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3491
3492 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3493 GCI->addStackRoot(FI->getIndex(), TypeMap);
3494 }
3495 return 0;
3496
3497 case Intrinsic::gcread:
3498 case Intrinsic::gcwrite:
3499 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3500 return 0;
3501
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003502 case Intrinsic::flt_rounds: {
Dan Gohman1a024862008-01-31 00:41:03 +00003503 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003504 return 0;
3505 }
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003506
3507 case Intrinsic::trap: {
3508 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3509 return 0;
3510 }
Evan Cheng27b7db52008-03-08 00:58:38 +00003511 case Intrinsic::prefetch: {
Dan Gohman475871a2008-07-27 21:46:04 +00003512 SDValue Ops[4];
Evan Cheng27b7db52008-03-08 00:58:38 +00003513 Ops[0] = getRoot();
3514 Ops[1] = getValue(I.getOperand(1));
3515 Ops[2] = getValue(I.getOperand(2));
3516 Ops[3] = getValue(I.getOperand(3));
3517 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3518 return 0;
3519 }
3520
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003521 case Intrinsic::memory_barrier: {
Dan Gohman475871a2008-07-27 21:46:04 +00003522 SDValue Ops[6];
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003523 Ops[0] = getRoot();
3524 for (int x = 1; x < 6; ++x)
3525 Ops[x] = getValue(I.getOperand(x));
3526
3527 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3528 return 0;
3529 }
Mon P Wang28873102008-06-25 08:15:39 +00003530 case Intrinsic::atomic_cmp_swap: {
Dan Gohman475871a2008-07-27 21:46:04 +00003531 SDValue Root = getRoot();
3532 SDValue L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003533 getValue(I.getOperand(1)),
3534 getValue(I.getOperand(2)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003535 getValue(I.getOperand(3)),
Mon P Wang28873102008-06-25 08:15:39 +00003536 I.getOperand(1));
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003537 setValue(&I, L);
3538 DAG.setRoot(L.getValue(1));
3539 return 0;
3540 }
Mon P Wang28873102008-06-25 08:15:39 +00003541 case Intrinsic::atomic_load_add:
3542 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3543 case Intrinsic::atomic_load_sub:
3544 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang63307c32008-05-05 19:05:59 +00003545 case Intrinsic::atomic_load_and:
3546 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3547 case Intrinsic::atomic_load_or:
3548 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3549 case Intrinsic::atomic_load_xor:
3550 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003551 case Intrinsic::atomic_load_nand:
3552 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang63307c32008-05-05 19:05:59 +00003553 case Intrinsic::atomic_load_min:
3554 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3555 case Intrinsic::atomic_load_max:
3556 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3557 case Intrinsic::atomic_load_umin:
3558 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3559 case Intrinsic::atomic_load_umax:
3560 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3561 case Intrinsic::atomic_swap:
3562 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003563 }
3564}
3565
3566
Dan Gohman475871a2008-07-27 21:46:04 +00003567void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Jim Laskey1da20a72007-02-23 21:45:01 +00003568 bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003569 MachineBasicBlock *LandingPad) {
Duncan Sands6f74b482007-12-19 09:48:52 +00003570 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Jim Laskey735b6f82007-02-22 15:38:06 +00003571 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003572 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3573 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sands6f74b482007-12-19 09:48:52 +00003574
Jim Laskey735b6f82007-02-22 15:38:06 +00003575 TargetLowering::ArgListTy Args;
3576 TargetLowering::ArgListEntry Entry;
Duncan Sands6f74b482007-12-19 09:48:52 +00003577 Args.reserve(CS.arg_size());
3578 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3579 i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003580 SDValue ArgNode = getValue(*i);
Duncan Sands6f74b482007-12-19 09:48:52 +00003581 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Duncan Sands4fee7032007-05-07 20:49:28 +00003582
Duncan Sands6f74b482007-12-19 09:48:52 +00003583 unsigned attrInd = i - CS.arg_begin() + 1;
3584 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3585 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3586 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3587 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3588 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3589 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen08e78b12008-02-22 17:49:45 +00003590 Entry.Alignment = CS.getParamAlignment(attrInd);
Jim Laskey735b6f82007-02-22 15:38:06 +00003591 Args.push_back(Entry);
3592 }
3593
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003594 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003595 // Insert a label before the invoke call to mark the try range. This can be
3596 // used to detect deletion of the invoke via the MachineModuleInfo.
3597 BeginLabel = MMI->NextLabelID();
Dale Johannesena4091d32008-04-04 23:48:31 +00003598 // Both PendingLoads and PendingExports must be flushed here;
3599 // this call might not return.
3600 (void)getRoot();
Dan Gohman44066042008-07-01 00:05:16 +00003601 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003602 }
Duncan Sands6f74b482007-12-19 09:48:52 +00003603
Dan Gohman475871a2008-07-27 21:46:04 +00003604 std::pair<SDValue,SDValue> Result =
Duncan Sands6f74b482007-12-19 09:48:52 +00003605 TLI.LowerCallTo(getRoot(), CS.getType(),
3606 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sands00fee652008-02-14 17:28:50 +00003607 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sands6f74b482007-12-19 09:48:52 +00003608 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Jim Laskey735b6f82007-02-22 15:38:06 +00003609 Callee, Args, DAG);
Duncan Sands6f74b482007-12-19 09:48:52 +00003610 if (CS.getType() != Type::VoidTy)
3611 setValue(CS.getInstruction(), Result.first);
Jim Laskey735b6f82007-02-22 15:38:06 +00003612 DAG.setRoot(Result.second);
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003613
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003614 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003615 // Insert a label at the end of the invoke call to mark the try range. This
3616 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3617 EndLabel = MMI->NextLabelID();
Dan Gohman44066042008-07-01 00:05:16 +00003618 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003619
Duncan Sands6f74b482007-12-19 09:48:52 +00003620 // Inform MachineModuleInfo of range.
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003621 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3622 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003623}
3624
3625
Chris Lattner1c08c712005-01-07 07:47:53 +00003626void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00003627 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003628 if (Function *F = I.getCalledFunction()) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003629 if (F->isDeclaration()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003630 if (unsigned IID = F->getIntrinsicID()) {
3631 RenameFn = visitIntrinsicCall(I, IID);
3632 if (!RenameFn)
3633 return;
Chris Lattner87b51bc2007-09-10 21:15:22 +00003634 }
3635 }
3636
3637 // Check for well-known libc/libm calls. If the function is internal, it
3638 // can't be a library call.
3639 unsigned NameLen = F->getNameLen();
3640 if (!F->hasInternalLinkage() && NameLen) {
3641 const char *NameStr = F->getNameStart();
3642 if (NameStr[0] == 'c' &&
3643 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3644 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3645 if (I.getNumOperands() == 3 && // Basic sanity checks.
3646 I.getOperand(1)->getType()->isFloatingPoint() &&
3647 I.getType() == I.getOperand(1)->getType() &&
3648 I.getType() == I.getOperand(2)->getType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003649 SDValue LHS = getValue(I.getOperand(1));
3650 SDValue RHS = getValue(I.getOperand(2));
Chris Lattner87b51bc2007-09-10 21:15:22 +00003651 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3652 LHS, RHS));
3653 return;
3654 }
3655 } else if (NameStr[0] == 'f' &&
3656 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003657 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3658 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003659 if (I.getNumOperands() == 2 && // Basic sanity checks.
3660 I.getOperand(1)->getType()->isFloatingPoint() &&
3661 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003662 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner87b51bc2007-09-10 21:15:22 +00003663 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3664 return;
3665 }
3666 } else if (NameStr[0] == 's' &&
3667 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003668 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3669 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003670 if (I.getNumOperands() == 2 && // Basic sanity checks.
3671 I.getOperand(1)->getType()->isFloatingPoint() &&
3672 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003673 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner87b51bc2007-09-10 21:15:22 +00003674 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3675 return;
3676 }
3677 } else if (NameStr[0] == 'c' &&
3678 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003679 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3680 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003681 if (I.getNumOperands() == 2 && // Basic sanity checks.
3682 I.getOperand(1)->getType()->isFloatingPoint() &&
3683 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003684 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner87b51bc2007-09-10 21:15:22 +00003685 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3686 return;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003687 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00003688 }
Chris Lattner87b51bc2007-09-10 21:15:22 +00003689 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00003690 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00003691 visitInlineAsm(&I);
Chris Lattnerce7518c2006-01-26 22:24:51 +00003692 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003693 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003694
Dan Gohman475871a2008-07-27 21:46:04 +00003695 SDValue Callee;
Chris Lattner64e14b12005-01-08 22:48:57 +00003696 if (!RenameFn)
3697 Callee = getValue(I.getOperand(0));
3698 else
3699 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003700
Duncan Sands6f74b482007-12-19 09:48:52 +00003701 LowerCallTo(&I, Callee, I.isTailCall());
Chris Lattner1c08c712005-01-07 07:47:53 +00003702}
3703
Jim Laskey735b6f82007-02-22 15:38:06 +00003704
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003705/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3706/// this value and returns the result as a ValueVT value. This uses
3707/// Chain/Flag as the input and updates them for the output Chain/Flag.
3708/// If the Flag pointer is NULL, no flag is used.
Dan Gohman475871a2008-07-27 21:46:04 +00003709SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
3710 SDValue &Chain,
3711 SDValue *Flag) const {
Dan Gohman23ce5022008-04-25 18:27:55 +00003712 // Assemble the legal parts into the final values.
Dan Gohman475871a2008-07-27 21:46:04 +00003713 SmallVector<SDValue, 4> Values(ValueVTs.size());
3714 SmallVector<SDValue, 8> Parts;
Chris Lattner6833b062008-04-28 07:16:35 +00003715 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman23ce5022008-04-25 18:27:55 +00003716 // Copy the legal parts from the registers.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003717 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003718 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003719 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003720
Chris Lattner6833b062008-04-28 07:16:35 +00003721 Parts.resize(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003722 for (unsigned i = 0; i != NumRegs; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003723 SDValue P;
Chris Lattner6833b062008-04-28 07:16:35 +00003724 if (Flag == 0)
3725 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3726 else {
3727 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman23ce5022008-04-25 18:27:55 +00003728 *Flag = P.getValue(2);
Chris Lattner6833b062008-04-28 07:16:35 +00003729 }
3730 Chain = P.getValue(1);
Chris Lattneread0d882008-06-17 06:09:18 +00003731
3732 // If the source register was virtual and if we know something about it,
3733 // add an assert node.
3734 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3735 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3736 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3737 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3738 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3739 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3740
3741 unsigned RegSize = RegisterVT.getSizeInBits();
3742 unsigned NumSignBits = LOI.NumSignBits;
3743 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3744
3745 // FIXME: We capture more information than the dag can represent. For
3746 // now, just use the tightest assertzext/assertsext possible.
3747 bool isSExt = true;
3748 MVT FromVT(MVT::Other);
3749 if (NumSignBits == RegSize)
3750 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3751 else if (NumZeroBits >= RegSize-1)
3752 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3753 else if (NumSignBits > RegSize-8)
3754 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3755 else if (NumZeroBits >= RegSize-9)
3756 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3757 else if (NumSignBits > RegSize-16)
3758 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3759 else if (NumZeroBits >= RegSize-17)
3760 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3761 else if (NumSignBits > RegSize-32)
3762 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3763 else if (NumZeroBits >= RegSize-33)
3764 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3765
3766 if (FromVT != MVT::Other) {
3767 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3768 RegisterVT, P, DAG.getValueType(FromVT));
3769
3770 }
3771 }
3772 }
3773
Dan Gohman23ce5022008-04-25 18:27:55 +00003774 Parts[Part+i] = P;
3775 }
Chris Lattner5df99b32007-03-25 05:00:54 +00003776
Dan Gohman23ce5022008-04-25 18:27:55 +00003777 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3778 ValueVT);
3779 Part += NumRegs;
3780 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00003781
Duncan Sandsf9516202008-06-30 10:19:09 +00003782 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3783 &Values[0], ValueVTs.size());
Chris Lattner864635a2006-02-22 22:37:12 +00003784}
3785
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003786/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3787/// specified value into the registers specified by this object. This uses
3788/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003789/// If the Flag pointer is NULL, no flag is used.
Dan Gohman475871a2008-07-27 21:46:04 +00003790void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG,
3791 SDValue &Chain, SDValue *Flag) const {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003792 // Get the list of the values's legal parts.
Dan Gohman23ce5022008-04-25 18:27:55 +00003793 unsigned NumRegs = Regs.size();
Dan Gohman475871a2008-07-27 21:46:04 +00003794 SmallVector<SDValue, 8> Parts(NumRegs);
Chris Lattner6833b062008-04-28 07:16:35 +00003795 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003796 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003797 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003798 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003799
3800 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3801 &Parts[Part], NumParts, RegisterVT);
3802 Part += NumParts;
3803 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003804
3805 // Copy the parts into the registers.
Dan Gohman475871a2008-07-27 21:46:04 +00003806 SmallVector<SDValue, 8> Chains(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003807 for (unsigned i = 0; i != NumRegs; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003808 SDValue Part;
Chris Lattner6833b062008-04-28 07:16:35 +00003809 if (Flag == 0)
3810 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3811 else {
3812 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003813 *Flag = Part.getValue(1);
Chris Lattner6833b062008-04-28 07:16:35 +00003814 }
3815 Chains[i] = Part.getValue(0);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003816 }
Chris Lattner6833b062008-04-28 07:16:35 +00003817
Evan Cheng33bf38a2008-04-28 22:07:13 +00003818 if (NumRegs == 1 || Flag)
3819 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3820 // flagged to it. That is the CopyToReg nodes and the user are considered
3821 // a single scheduling unit. If we create a TokenFactor and return it as
3822 // chain, then the TokenFactor is both a predecessor (operand) of the
3823 // user as well as a successor (the TF operands are flagged to the user).
3824 // c1, f1 = CopyToReg
3825 // c2, f2 = CopyToReg
3826 // c3 = TokenFactor c1, c2
3827 // ...
3828 // = op c3, ..., f2
3829 Chain = Chains[NumRegs-1];
Chris Lattner6833b062008-04-28 07:16:35 +00003830 else
3831 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003832}
Chris Lattner864635a2006-02-22 22:37:12 +00003833
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003834/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3835/// operand list. This adds the code marker and includes the number of
3836/// values added into it.
3837void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003838 std::vector<SDValue> &Ops) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003839 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner4b993b12007-04-09 00:33:58 +00003840 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner6833b062008-04-28 07:16:35 +00003841 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3842 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003843 MVT RegisterVT = RegVTs[Value];
Chris Lattner6833b062008-04-28 07:16:35 +00003844 for (unsigned i = 0; i != NumRegs; ++i)
3845 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman23ce5022008-04-25 18:27:55 +00003846 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003847}
Chris Lattner864635a2006-02-22 22:37:12 +00003848
3849/// isAllocatableRegister - If the specified register is safe to allocate,
3850/// i.e. it isn't a stack pointer or some other special register, return the
3851/// register class for the register. Otherwise, return null.
3852static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003853isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman6f0d0242008-02-10 18:45:23 +00003854 const TargetLowering &TLI,
3855 const TargetRegisterInfo *TRI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003856 MVT FoundVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003857 const TargetRegisterClass *FoundRC = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +00003858 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3859 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003860 MVT ThisVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003861
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003862 const TargetRegisterClass *RC = *RCI;
3863 // If none of the the value types for this register class are valid, we
3864 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003865 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3866 I != E; ++I) {
3867 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003868 // If we have already found this register in a different register class,
3869 // choose the one with the largest VT specified. For example, on
3870 // PowerPC, we favor f64 register classes over f32.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003871 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003872 ThisVT = *I;
3873 break;
3874 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003875 }
3876 }
3877
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003878 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003879
Chris Lattner864635a2006-02-22 22:37:12 +00003880 // NOTE: This isn't ideal. In particular, this might allocate the
3881 // frame pointer in functions that need it (due to them not being taken
3882 // out of allocation, because a variable sized allocation hasn't been seen
3883 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003884 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3885 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003886 if (*I == Reg) {
3887 // We found a matching register class. Keep looking at others in case
3888 // we find one with larger registers that this physreg is also in.
3889 FoundRC = RC;
3890 FoundVT = ThisVT;
3891 break;
3892 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00003893 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003894 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00003895}
3896
Chris Lattner4e4b5762006-02-01 18:59:47 +00003897
Chris Lattner0c583402007-04-28 20:49:53 +00003898namespace {
3899/// AsmOperandInfo - This contains information for each constraint that we are
3900/// lowering.
Evan Cheng5c807602008-02-26 02:33:44 +00003901struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3902 /// CallOperand - If this is the result output operand or a clobber
3903 /// this is null, otherwise it is the incoming operand to the CallInst.
3904 /// This gets modified as the asm is processed.
Dan Gohman475871a2008-07-27 21:46:04 +00003905 SDValue CallOperand;
Evan Cheng5c807602008-02-26 02:33:44 +00003906
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003907 /// AssignedRegs - If this is a register or register class operand, this
3908 /// contains the set of register corresponding to the operand.
3909 RegsForValue AssignedRegs;
3910
Dan Gohman23ce5022008-04-25 18:27:55 +00003911 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Cheng5c807602008-02-26 02:33:44 +00003912 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Chris Lattner0c583402007-04-28 20:49:53 +00003913 }
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003914
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003915 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3916 /// busy in OutputRegs/InputRegs.
3917 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3918 std::set<unsigned> &OutputRegs,
Chris Lattner7cbeb242008-02-21 04:55:52 +00003919 std::set<unsigned> &InputRegs,
3920 const TargetRegisterInfo &TRI) const {
3921 if (isOutReg) {
3922 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3923 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3924 }
3925 if (isInReg) {
3926 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3927 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3928 }
3929 }
3930
3931private:
3932 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3933 /// specified set.
3934 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3935 const TargetRegisterInfo &TRI) {
3936 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3937 Regs.insert(Reg);
3938 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3939 for (; *Aliases; ++Aliases)
3940 Regs.insert(*Aliases);
3941 }
Chris Lattner0c583402007-04-28 20:49:53 +00003942};
3943} // end anon namespace.
Chris Lattner864635a2006-02-22 22:37:12 +00003944
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003945
Chris Lattner0fe71e92008-02-21 19:43:13 +00003946/// GetRegistersForValue - Assign registers (virtual or physical) for the
3947/// specified operand. We prefer to assign virtual registers, to allow the
3948/// register allocator handle the assignment process. However, if the asm uses
3949/// features that we can't model on machineinstrs, we have SDISel do the
3950/// allocation. This produces generally horrible, but correct, code.
3951///
3952/// OpInfo describes the operand.
3953/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3954/// or any explicitly clobbered registers.
3955/// Input and OutputRegs are the set of already allocated physical registers.
3956///
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003957void SelectionDAGLowering::
Evan Cheng5c807602008-02-26 02:33:44 +00003958GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnerbf996f12007-04-30 17:29:31 +00003959 std::set<unsigned> &OutputRegs,
3960 std::set<unsigned> &InputRegs) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003961 // Compute whether this value requires an input register, an output register,
3962 // or both.
3963 bool isOutReg = false;
3964 bool isInReg = false;
3965 switch (OpInfo.Type) {
3966 case InlineAsm::isOutput:
3967 isOutReg = true;
3968
3969 // If this is an early-clobber output, or if there is an input
3970 // constraint that matches this, we need to reserve the input register
3971 // so no other inputs allocate to it.
3972 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3973 break;
3974 case InlineAsm::isInput:
3975 isInReg = true;
3976 isOutReg = false;
3977 break;
3978 case InlineAsm::isClobber:
3979 isOutReg = true;
3980 isInReg = true;
3981 break;
3982 }
3983
3984
3985 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerb606dba2008-04-28 06:44:42 +00003986 SmallVector<unsigned, 4> Regs;
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003987
3988 // If this is a constraint for a single physreg, or a constraint for a
3989 // register class, find it.
3990 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
3991 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3992 OpInfo.ConstraintVT);
Chris Lattnerbf996f12007-04-30 17:29:31 +00003993
3994 unsigned NumRegs = 1;
3995 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohmanb9f10192007-06-21 14:42:22 +00003996 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003997 MVT RegVT;
3998 MVT ValueVT = OpInfo.ConstraintVT;
Chris Lattnerbf996f12007-04-30 17:29:31 +00003999
Chris Lattnerbf996f12007-04-30 17:29:31 +00004000
4001 // If this is a constraint for a specific physical register, like {r17},
4002 // assign it now.
4003 if (PhysReg.first) {
4004 if (OpInfo.ConstraintVT == MVT::Other)
4005 ValueVT = *PhysReg.second->vt_begin();
4006
4007 // Get the actual register value type. This is important, because the user
4008 // may have asked for (e.g.) the AX register in i32 type. We need to
4009 // remember that AX is actually i16 to get the right extension.
4010 RegVT = *PhysReg.second->vt_begin();
4011
4012 // This is a explicit reference to a physical register.
4013 Regs.push_back(PhysReg.first);
4014
4015 // If this is an expanded reference, add the rest of the regs to Regs.
4016 if (NumRegs != 1) {
4017 TargetRegisterClass::iterator I = PhysReg.second->begin();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004018 for (; *I != PhysReg.first; ++I)
Evan Cheng50871242008-05-14 20:07:51 +00004019 assert(I != PhysReg.second->end() && "Didn't find reg!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004020
4021 // Already added the first reg.
4022 --NumRegs; ++I;
4023 for (; NumRegs; --NumRegs, ++I) {
Evan Cheng50871242008-05-14 20:07:51 +00004024 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004025 Regs.push_back(*I);
4026 }
4027 }
Dan Gohman23ce5022008-04-25 18:27:55 +00004028 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004029 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4030 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004031 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004032 }
4033
4034 // Otherwise, if this was a reference to an LLVM register class, create vregs
4035 // for this reference.
4036 std::vector<unsigned> RegClassRegs;
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004037 const TargetRegisterClass *RC = PhysReg.second;
4038 if (RC) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004039 // If this is an early clobber or tied register, our regalloc doesn't know
4040 // how to maintain the constraint. If it isn't, go ahead and create vreg
4041 // and let the regalloc do the right thing.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004042 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4043 // If there is some other early clobber and this is an input register,
4044 // then we are forced to pre-allocate the input reg so it doesn't
4045 // conflict with the earlyclobber.
4046 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004047 RegVT = *PhysReg.second->vt_begin();
4048
4049 if (OpInfo.ConstraintVT == MVT::Other)
4050 ValueVT = RegVT;
4051
4052 // Create the appropriate number of virtual registers.
Chris Lattner84bc5422007-12-31 04:13:23 +00004053 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004054 for (; NumRegs; --NumRegs)
Chris Lattner84bc5422007-12-31 04:13:23 +00004055 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Chris Lattnerbf996f12007-04-30 17:29:31 +00004056
Dan Gohman23ce5022008-04-25 18:27:55 +00004057 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004058 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004059 }
4060
4061 // Otherwise, we can't allocate it. Let the code below figure out how to
4062 // maintain these constraints.
4063 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4064
4065 } else {
4066 // This is a reference to a register class that doesn't directly correspond
4067 // to an LLVM register class. Allocate NumRegs consecutive, available,
4068 // registers from the class.
4069 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4070 OpInfo.ConstraintVT);
4071 }
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004072
Dan Gohman6f0d0242008-02-10 18:45:23 +00004073 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004074 unsigned NumAllocated = 0;
4075 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4076 unsigned Reg = RegClassRegs[i];
4077 // See if this register is available.
4078 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4079 (isInReg && InputRegs.count(Reg))) { // Already used.
4080 // Make sure we find consecutive registers.
4081 NumAllocated = 0;
4082 continue;
4083 }
4084
4085 // Check to see if this register is allocatable (i.e. don't give out the
4086 // stack pointer).
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004087 if (RC == 0) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004088 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004089 if (!RC) { // Couldn't allocate this register.
4090 // Reset NumAllocated to make sure we return consecutive registers.
4091 NumAllocated = 0;
4092 continue;
4093 }
Chris Lattnerbf996f12007-04-30 17:29:31 +00004094 }
4095
4096 // Okay, this register is good, we can use it.
4097 ++NumAllocated;
4098
4099 // If we allocated enough consecutive registers, succeed.
4100 if (NumAllocated == NumRegs) {
4101 unsigned RegStart = (i-NumAllocated)+1;
4102 unsigned RegEnd = i+1;
4103 // Mark all of the allocated registers used.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004104 for (unsigned i = RegStart; i != RegEnd; ++i)
4105 Regs.push_back(RegClassRegs[i]);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004106
Dan Gohman23ce5022008-04-25 18:27:55 +00004107 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004108 OpInfo.ConstraintVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004109 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004110 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004111 }
4112 }
4113
4114 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattnerbf996f12007-04-30 17:29:31 +00004115}
4116
4117
Chris Lattnerce7518c2006-01-26 22:24:51 +00004118/// visitInlineAsm - Handle a call to an InlineAsm object.
4119///
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004120void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4121 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004122
Chris Lattner0c583402007-04-28 20:49:53 +00004123 /// ConstraintOperands - Information about all of the constraints.
Evan Cheng5c807602008-02-26 02:33:44 +00004124 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004125
Dan Gohman475871a2008-07-27 21:46:04 +00004126 SDValue Chain = getRoot();
4127 SDValue Flag;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004128
Chris Lattner4e4b5762006-02-01 18:59:47 +00004129 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004130
Chris Lattner0c583402007-04-28 20:49:53 +00004131 // Do a prepass over the constraints, canonicalizing them, and building up the
4132 // ConstraintOperands list.
4133 std::vector<InlineAsm::ConstraintInfo>
4134 ConstraintInfos = IA->ParseConstraints();
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004135
4136 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4137 // constraint. If so, we can't let the register allocator allocate any input
4138 // registers, because it will not know to avoid the earlyclobbered output reg.
4139 bool SawEarlyClobber = false;
4140
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004141 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattneracf8b012008-04-27 23:44:28 +00004142 unsigned ResNo = 0; // ResNo - The result number of the next output.
Chris Lattner0c583402007-04-28 20:49:53 +00004143 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004144 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4145 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Chris Lattner0c583402007-04-28 20:49:53 +00004146
Duncan Sands83ec4b62008-06-06 12:08:01 +00004147 MVT OpVT = MVT::Other;
Chris Lattner0c583402007-04-28 20:49:53 +00004148
4149 // Compute the value type for each operand.
4150 switch (OpInfo.Type) {
Chris Lattner1efa40f2006-02-22 00:56:39 +00004151 case InlineAsm::isOutput:
Chris Lattneracf8b012008-04-27 23:44:28 +00004152 // Indirect outputs just consume an argument.
4153 if (OpInfo.isIndirect) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004154 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattneracf8b012008-04-27 23:44:28 +00004155 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004156 }
Chris Lattneracf8b012008-04-27 23:44:28 +00004157 // The return value of the call is this value. As such, there is no
4158 // corresponding argument.
4159 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4160 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4161 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4162 } else {
4163 assert(ResNo == 0 && "Asm only has one result!");
4164 OpVT = TLI.getValueType(CS.getType());
4165 }
4166 ++ResNo;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004167 break;
4168 case InlineAsm::isInput:
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004169 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner1efa40f2006-02-22 00:56:39 +00004170 break;
4171 case InlineAsm::isClobber:
Chris Lattner0c583402007-04-28 20:49:53 +00004172 // Nothing to do.
Chris Lattner1efa40f2006-02-22 00:56:39 +00004173 break;
4174 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004175
Chris Lattner0c583402007-04-28 20:49:53 +00004176 // If this is an input or an indirect output, process the call argument.
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004177 // BasicBlocks are labels, currently appearing only in asm's.
Chris Lattner0c583402007-04-28 20:49:53 +00004178 if (OpInfo.CallOperandVal) {
Chris Lattner507ffd22008-04-27 00:16:18 +00004179 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4180 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004181 else {
4182 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4183 const Type *OpTy = OpInfo.CallOperandVal->getType();
4184 // If this is an indirect operand, the operand is a pointer to the
4185 // accessed type.
4186 if (OpInfo.isIndirect)
4187 OpTy = cast<PointerType>(OpTy)->getElementType();
4188
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004189 // If OpTy is not a single value, it may be a struct/union that we
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004190 // can tile with integers.
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004191 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004192 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4193 switch (BitSize) {
4194 default: break;
4195 case 1:
4196 case 8:
4197 case 16:
4198 case 32:
4199 case 64:
4200 OpTy = IntegerType::get(BitSize);
4201 break;
4202 }
Chris Lattner6995cf62007-04-29 18:58:03 +00004203 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004204
4205 OpVT = TLI.getValueType(OpTy, true);
Chris Lattner0c583402007-04-28 20:49:53 +00004206 }
4207 }
4208
4209 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a600be2007-04-28 21:01:43 +00004210
Chris Lattner3ff90dc2007-04-30 17:16:27 +00004211 // Compute the constraint code and ConstraintType to use.
Chris Lattner5a096902008-04-27 00:37:18 +00004212 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Chris Lattner0c583402007-04-28 20:49:53 +00004213
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004214 // Keep track of whether we see an earlyclobber.
4215 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004216
Chris Lattner0fe71e92008-02-21 19:43:13 +00004217 // If we see a clobber of a register, it is an early clobber.
Chris Lattner69e6a8d2008-02-21 20:54:31 +00004218 if (!SawEarlyClobber &&
4219 OpInfo.Type == InlineAsm::isClobber &&
4220 OpInfo.ConstraintType == TargetLowering::C_Register) {
4221 // Note that we want to ignore things that we don't trick here, like
4222 // dirflag, fpsr, flags, etc.
4223 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4224 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4225 OpInfo.ConstraintVT);
4226 if (PhysReg.first || PhysReg.second) {
4227 // This is a register we know of.
4228 SawEarlyClobber = true;
4229 }
4230 }
Chris Lattner0fe71e92008-02-21 19:43:13 +00004231
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004232 // If this is a memory input, and if the operand is not indirect, do what we
4233 // need to to provide an address for the memory input.
4234 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4235 !OpInfo.isIndirect) {
4236 assert(OpInfo.Type == InlineAsm::isInput &&
4237 "Can only indirectify direct input operands!");
4238
4239 // Memory operands really want the address of the value. If we don't have
4240 // an indirect input, put it in the constpool if we can, otherwise spill
4241 // it to a stack slot.
4242
4243 // If the operand is a float, integer, or vector constant, spill to a
4244 // constant pool entry to get its address.
4245 Value *OpVal = OpInfo.CallOperandVal;
4246 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4247 isa<ConstantVector>(OpVal)) {
4248 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4249 TLI.getPointerTy());
4250 } else {
4251 // Otherwise, create a stack slot and emit a store to it before the
4252 // asm.
4253 const Type *Ty = OpVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +00004254 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004255 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4256 MachineFunction &MF = DAG.getMachineFunction();
4257 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
Dan Gohman475871a2008-07-27 21:46:04 +00004258 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004259 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4260 OpInfo.CallOperand = StackSlot;
4261 }
4262
4263 // There is no longer a Value* corresponding to this operand.
4264 OpInfo.CallOperandVal = 0;
4265 // It is now an indirect operand.
4266 OpInfo.isIndirect = true;
4267 }
4268
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004269 // If this constraint is for a specific register, allocate it before
4270 // anything else.
4271 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4272 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattner0c583402007-04-28 20:49:53 +00004273 }
Chris Lattner0c583402007-04-28 20:49:53 +00004274 ConstraintInfos.clear();
4275
4276
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004277 // Second pass - Loop over all of the operands, assigning virtual or physregs
4278 // to registerclass operands.
4279 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004280 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004281
4282 // C_Register operands have already been allocated, Other/Memory don't need
4283 // to be.
4284 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4285 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4286 }
4287
Chris Lattner0c583402007-04-28 20:49:53 +00004288 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
Dan Gohman475871a2008-07-27 21:46:04 +00004289 std::vector<SDValue> AsmNodeOperands;
4290 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
Chris Lattner0c583402007-04-28 20:49:53 +00004291 AsmNodeOperands.push_back(
4292 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4293
Chris Lattner2cc2f662006-02-01 01:28:23 +00004294
Chris Lattner0f0b7d42006-02-21 23:12:12 +00004295 // Loop over all of the inputs, copying the operand values into the
4296 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00004297 RegsForValue RetValRegs;
Chris Lattner41f62592008-04-29 04:29:54 +00004298
Chris Lattner0c583402007-04-28 20:49:53 +00004299 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4300 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4301
4302 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004303 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner1efa40f2006-02-22 00:56:39 +00004304
Chris Lattner0c583402007-04-28 20:49:53 +00004305 switch (OpInfo.Type) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00004306 case InlineAsm::isOutput: {
Chris Lattnerc83994e2007-04-28 21:03:16 +00004307 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4308 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerf2f3cd52007-04-28 06:08:13 +00004309 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004310 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner22873462006-02-27 23:45:39 +00004311
Chris Lattner22873462006-02-27 23:45:39 +00004312 // Add information to the INLINEASM node to know about this output.
4313 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004314 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4315 TLI.getPointerTy()));
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004316 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner22873462006-02-27 23:45:39 +00004317 break;
4318 }
4319
Chris Lattner2a600be2007-04-28 21:01:43 +00004320 // Otherwise, this is a register or register class output.
Chris Lattner22873462006-02-27 23:45:39 +00004321
Chris Lattner864635a2006-02-22 22:37:12 +00004322 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00004323 // we can use.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004324 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sandsa47c6c32008-06-17 03:24:13 +00004325 cerr << "Couldn't allocate output reg for constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004326 << OpInfo.ConstraintCode << "'!\n";
Chris Lattnerd03f1582006-10-31 07:33:13 +00004327 exit(1);
4328 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004329
Chris Lattner41f62592008-04-29 04:29:54 +00004330 // If this is an indirect operand, store through the pointer after the
4331 // asm.
4332 if (OpInfo.isIndirect) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004333 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattner0c583402007-04-28 20:49:53 +00004334 OpInfo.CallOperandVal));
Chris Lattner41f62592008-04-29 04:29:54 +00004335 } else {
4336 // This is the result value of the call.
4337 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4338 // Concatenate this output onto the outputs list.
4339 RetValRegs.append(OpInfo.AssignedRegs);
Chris Lattner2cc2f662006-02-01 01:28:23 +00004340 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004341
4342 // Add information to the INLINEASM node to know that this register is
4343 // set.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004344 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4345 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004346 break;
4347 }
4348 case InlineAsm::isInput: {
Dan Gohman475871a2008-07-27 21:46:04 +00004349 SDValue InOperandVal = OpInfo.CallOperand;
Chris Lattner3d81fee2006-02-04 02:16:44 +00004350
Chris Lattner0c583402007-04-28 20:49:53 +00004351 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner2223aea2006-02-02 00:25:23 +00004352 // If this is required to match an output register we have already set,
4353 // just use its register.
Chris Lattner0c583402007-04-28 20:49:53 +00004354 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00004355
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004356 // Scan until we find the definition we already emitted of this operand.
4357 // When we find it, create a RegsForValue operand.
4358 unsigned CurOp = 2; // The first operand.
4359 for (; OperandNo; --OperandNo) {
4360 // Advance to the next operand.
4361 unsigned NumOps =
4362 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00004363 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4364 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004365 "Skipped past definitions?");
4366 CurOp += (NumOps>>3)+1;
4367 }
4368
4369 unsigned NumOps =
4370 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattner527fae12007-02-01 01:21:12 +00004371 if ((NumOps & 7) == 2 /*REGDEF*/) {
4372 // Add NumOps>>3 registers to MatchedRegs.
4373 RegsForValue MatchedRegs;
Dan Gohman23ce5022008-04-25 18:27:55 +00004374 MatchedRegs.TLI = &TLI;
Dan Gohman1fa850b2008-05-02 00:03:54 +00004375 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4376 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Chris Lattner527fae12007-02-01 01:21:12 +00004377 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4378 unsigned Reg =
4379 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4380 MatchedRegs.Regs.push_back(Reg);
4381 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004382
Chris Lattner527fae12007-02-01 01:21:12 +00004383 // Use the produced MatchedRegs object to
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004384 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner527fae12007-02-01 01:21:12 +00004385 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4386 break;
4387 } else {
4388 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattnerf9853bc2008-02-21 05:27:19 +00004389 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4390 // Add information to the INLINEASM node to know about this input.
4391 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4392 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4393 TLI.getPointerTy()));
4394 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4395 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004396 }
Chris Lattner2223aea2006-02-02 00:25:23 +00004397 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004398
Chris Lattner2a600be2007-04-28 21:01:43 +00004399 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Chris Lattner0c583402007-04-28 20:49:53 +00004400 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004401 "Don't know how to handle indirect other inputs yet!");
4402
Dan Gohman475871a2008-07-27 21:46:04 +00004403 std::vector<SDValue> Ops;
Chris Lattner48884cd2007-08-25 00:47:38 +00004404 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4405 Ops, DAG);
4406 if (Ops.empty()) {
Bill Wendling832171c2006-12-07 20:04:42 +00004407 cerr << "Invalid operand for inline asm constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004408 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner53069fb2006-10-31 19:41:18 +00004409 exit(1);
4410 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004411
4412 // Add information to the INLINEASM node to know about this input.
Chris Lattner48884cd2007-08-25 00:47:38 +00004413 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004414 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4415 TLI.getPointerTy()));
Chris Lattner48884cd2007-08-25 00:47:38 +00004416 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004417 break;
Chris Lattner2a600be2007-04-28 21:01:43 +00004418 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004419 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner44b2c502007-04-28 06:42:38 +00004420 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4421 "Memory operands expect pointer values");
4422
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004423 // Add information to the INLINEASM node to know about this input.
4424 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004425 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4426 TLI.getPointerTy()));
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004427 AsmNodeOperands.push_back(InOperandVal);
4428 break;
4429 }
4430
Chris Lattner2a600be2007-04-28 21:01:43 +00004431 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4432 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4433 "Unknown constraint type!");
Chris Lattner0c583402007-04-28 20:49:53 +00004434 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004435 "Don't know how to handle indirect register inputs yet!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004436
4437 // Copy the input into the appropriate registers.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004438 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4439 "Couldn't allocate input reg!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004440
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004441 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004442
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004443 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4444 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004445 break;
4446 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004447 case InlineAsm::isClobber: {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004448 // Add the clobbered value to the operand list, so that the register
4449 // allocator is aware that the physreg got clobbered.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004450 if (!OpInfo.AssignedRegs.Regs.empty())
4451 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4452 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004453 break;
4454 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004455 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004456 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004457
4458 // Finish up input operands.
4459 AsmNodeOperands[0] = Chain;
4460 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4461
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004462 Chain = DAG.getNode(ISD::INLINEASM,
4463 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004464 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004465 Flag = Chain.getValue(1);
4466
Chris Lattner6656dd12006-01-31 02:03:41 +00004467 // If this asm returns a register value, copy the result from that register
4468 // and set it as the value of the call.
Chris Lattner3a508c92007-04-12 06:00:20 +00004469 if (!RetValRegs.Regs.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00004470 SDValue Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner3fb29682008-04-29 04:48:56 +00004471
4472 // If any of the results of the inline asm is a vector, it may have the
4473 // wrong width/num elts. This can happen for register classes that can
4474 // contain multiple different value types. The preg or vreg allocated may
4475 // not have the same VT as was expected. Convert it to the right type with
Dan Gohman7f321562007-06-25 16:23:39 +00004476 // bit_convert.
Chris Lattner3fb29682008-04-29 04:48:56 +00004477 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4478 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004479 if (Val.Val->getValueType(i).isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004480 Val = DAG.getNode(ISD::BIT_CONVERT,
4481 TLI.getValueType(ResSTy->getElementType(i)), Val);
4482 }
4483 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004484 if (Val.getValueType().isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004485 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4486 Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004487 }
Chris Lattner3fb29682008-04-29 04:48:56 +00004488
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004489 setValue(CS.getInstruction(), Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004490 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004491
Dan Gohman475871a2008-07-27 21:46:04 +00004492 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Chris Lattner6656dd12006-01-31 02:03:41 +00004493
4494 // Process indirect outputs, first output all of the flagged copies out of
4495 // physregs.
4496 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00004497 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00004498 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohman475871a2008-07-27 21:46:04 +00004499 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner864635a2006-02-22 22:37:12 +00004500 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00004501 }
4502
4503 // Emit the non-flagged stores from the physregs.
Dan Gohman475871a2008-07-27 21:46:04 +00004504 SmallVector<SDValue, 8> OutChains;
Chris Lattner6656dd12006-01-31 02:03:41 +00004505 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattner0c583402007-04-28 20:49:53 +00004506 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner6656dd12006-01-31 02:03:41 +00004507 getValue(StoresToEmit[i].second),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004508 StoresToEmit[i].second, 0));
Chris Lattner6656dd12006-01-31 02:03:41 +00004509 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004510 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4511 &OutChains[0], OutChains.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004512 DAG.setRoot(Chain);
4513}
4514
4515
Chris Lattner1c08c712005-01-07 07:47:53 +00004516void SelectionDAGLowering::visitMalloc(MallocInst &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00004517 SDValue Src = getValue(I.getOperand(0));
Chris Lattner1c08c712005-01-07 07:47:53 +00004518
Duncan Sands83ec4b62008-06-06 12:08:01 +00004519 MVT IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00004520
Duncan Sands8e4eb092008-06-08 20:54:56 +00004521 if (IntPtr.bitsLT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004522 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004523 else if (IntPtr.bitsGT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004524 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00004525
4526 // Scale the source by the type size.
Duncan Sands514ab342007-11-01 20:53:16 +00004527 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00004528 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner0bd48932008-01-17 07:00:52 +00004529 Src, DAG.getIntPtrConstant(ElementSize));
Chris Lattner1c08c712005-01-07 07:47:53 +00004530
Reid Spencer47857812006-12-31 05:55:36 +00004531 TargetLowering::ArgListTy Args;
4532 TargetLowering::ArgListEntry Entry;
4533 Entry.Node = Src;
4534 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004535 Args.push_back(Entry);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004536
Dan Gohman475871a2008-07-27 21:46:04 +00004537 std::pair<SDValue,SDValue> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004538 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4539 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004540 setValue(&I, Result.first); // Pointers always fit in registers
4541 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004542}
4543
4544void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencer47857812006-12-31 05:55:36 +00004545 TargetLowering::ArgListTy Args;
4546 TargetLowering::ArgListEntry Entry;
4547 Entry.Node = getValue(I.getOperand(0));
4548 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004549 Args.push_back(Entry);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004550 MVT IntPtr = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00004551 std::pair<SDValue,SDValue> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004552 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4553 CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00004554 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4555 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004556}
4557
Evan Chengff9b3732008-01-30 18:18:23 +00004558// EmitInstrWithCustomInserter - This method should be implemented by targets
4559// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +00004560// instructions are special in various ways, which require special support to
4561// insert. The specified MachineInstr is created but not inserted into any
4562// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +00004563MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Chris Lattner025c39b2005-08-26 20:54:47 +00004564 MachineBasicBlock *MBB) {
Bill Wendling832171c2006-12-07 20:04:42 +00004565 cerr << "If a target marks an instruction with "
4566 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chengff9b3732008-01-30 18:18:23 +00004567 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Chris Lattner025c39b2005-08-26 20:54:47 +00004568 abort();
4569 return 0;
4570}
4571
Chris Lattner39ae3622005-01-09 00:00:49 +00004572void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004573 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4574 getValue(I.getOperand(1)),
4575 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00004576}
4577
4578void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00004579 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
Nate Begemanacc398c2006-01-25 18:21:52 +00004580 getValue(I.getOperand(0)),
4581 DAG.getSrcValue(I.getOperand(0)));
4582 setValue(&I, V);
4583 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00004584}
4585
4586void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004587 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4588 getValue(I.getOperand(1)),
4589 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004590}
4591
4592void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004593 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4594 getValue(I.getOperand(1)),
4595 getValue(I.getOperand(2)),
4596 DAG.getSrcValue(I.getOperand(1)),
4597 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004598}
4599
Chris Lattnerfdfded52006-04-12 16:20:43 +00004600/// TargetLowering::LowerArguments - This is the default LowerArguments
4601/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004602/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4603/// integrated into SDISel.
Dan Gohmana44b6742008-06-30 20:31:15 +00004604void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004605 SmallVectorImpl<SDValue> &ArgValues) {
Chris Lattnerfdfded52006-04-12 16:20:43 +00004606 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
Dan Gohman475871a2008-07-27 21:46:04 +00004607 SmallVector<SDValue, 3+16> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004608 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00004609 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4610 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4611
4612 // Add one result value for each formal argument.
Dan Gohmana44b6742008-06-30 20:31:15 +00004613 SmallVector<MVT, 16> RetVals;
Anton Korobeynikov6aa279d2007-01-28 18:01:49 +00004614 unsigned j = 1;
Anton Korobeynikovac2b2cf2007-01-28 16:04:40 +00004615 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4616 I != E; ++I, ++j) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004617 SmallVector<MVT, 4> ValueVTs;
4618 ComputeValueVTs(*this, I->getType(), ValueVTs);
4619 for (unsigned Value = 0, NumValues = ValueVTs.size();
4620 Value != NumValues; ++Value) {
4621 MVT VT = ValueVTs[Value];
4622 const Type *ArgTy = VT.getTypeForMVT();
4623 ISD::ArgFlagsTy Flags;
4624 unsigned OriginalAlignment =
4625 getTargetData()->getABITypeAlignment(ArgTy);
Lauro Ramos Venancio7aa47b62007-02-13 13:50:08 +00004626
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004627 if (F.paramHasAttr(j, ParamAttr::ZExt))
4628 Flags.setZExt();
4629 if (F.paramHasAttr(j, ParamAttr::SExt))
4630 Flags.setSExt();
4631 if (F.paramHasAttr(j, ParamAttr::InReg))
4632 Flags.setInReg();
4633 if (F.paramHasAttr(j, ParamAttr::StructRet))
4634 Flags.setSRet();
4635 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4636 Flags.setByVal();
4637 const PointerType *Ty = cast<PointerType>(I->getType());
4638 const Type *ElementTy = Ty->getElementType();
4639 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4640 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4641 // For ByVal, alignment should be passed from FE. BE will guess if
4642 // this info is not there but there are cases it cannot get right.
4643 if (F.getParamAlignment(j))
4644 FrameAlign = F.getParamAlignment(j);
4645 Flags.setByValAlign(FrameAlign);
4646 Flags.setByValSize(FrameSize);
4647 }
4648 if (F.paramHasAttr(j, ParamAttr::Nest))
4649 Flags.setNest();
4650 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004651
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004652 MVT RegisterVT = getRegisterType(VT);
4653 unsigned NumRegs = getNumRegisters(VT);
4654 for (unsigned i = 0; i != NumRegs; ++i) {
4655 RetVals.push_back(RegisterVT);
4656 ISD::ArgFlagsTy MyFlags = Flags;
4657 if (NumRegs > 1 && i == 0)
4658 MyFlags.setSplit();
4659 // if it isn't first piece, alignment must be 1
4660 else if (i > 0)
4661 MyFlags.setOrigAlign(1);
4662 Ops.push_back(DAG.getArgFlags(MyFlags));
4663 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004664 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004665 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00004666
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004667 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00004668
4669 // Create the node.
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004670 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004671 DAG.getVTList(&RetVals[0], RetVals.size()),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004672 &Ops[0], Ops.size()).Val;
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004673
4674 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4675 // allows exposing the loads that may be part of the argument access to the
4676 // first DAGCombiner pass.
Dan Gohman475871a2008-07-27 21:46:04 +00004677 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004678
4679 // The number of results should match up, except that the lowered one may have
4680 // an extra flag result.
4681 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4682 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4683 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4684 && "Lowering produced unexpected number of results!");
Dan Gohman2dbc1672008-07-21 21:04:07 +00004685
4686 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
4687 if (Result != TmpRes.Val && Result->use_empty()) {
4688 HandleSDNode Dummy(DAG.getRoot());
4689 DAG.RemoveDeadNode(Result);
4690 }
4691
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004692 Result = TmpRes.Val;
4693
Dan Gohman27a70be2007-07-02 16:18:06 +00004694 unsigned NumArgRegs = Result->getNumValues() - 1;
Dan Gohman475871a2008-07-27 21:46:04 +00004695 DAG.setRoot(SDValue(Result, NumArgRegs));
Chris Lattnerfdfded52006-04-12 16:20:43 +00004696
4697 // Set up the return result vector.
Chris Lattnerfdfded52006-04-12 16:20:43 +00004698 unsigned i = 0;
Reid Spencer47857812006-12-31 05:55:36 +00004699 unsigned Idx = 1;
4700 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4701 ++I, ++Idx) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004702 SmallVector<MVT, 4> ValueVTs;
4703 ComputeValueVTs(*this, I->getType(), ValueVTs);
4704 for (unsigned Value = 0, NumValues = ValueVTs.size();
4705 Value != NumValues; ++Value) {
4706 MVT VT = ValueVTs[Value];
4707 MVT PartVT = getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004708
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004709 unsigned NumParts = getNumRegisters(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004710 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004711 for (unsigned j = 0; j != NumParts; ++j)
Dan Gohman475871a2008-07-27 21:46:04 +00004712 Parts[j] = SDValue(Result, i++);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004713
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004714 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4715 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4716 AssertOp = ISD::AssertSext;
4717 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4718 AssertOp = ISD::AssertZext;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004719
Dan Gohmana44b6742008-06-30 20:31:15 +00004720 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4721 AssertOp));
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004722 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004723 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004724 assert(i == NumArgRegs && "Argument register count mismatch!");
Chris Lattnerfdfded52006-04-12 16:20:43 +00004725}
4726
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004727
4728/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4729/// implementation, which just inserts an ISD::CALL node, which is later custom
4730/// lowered by the target to something concrete. FIXME: When all targets are
4731/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
Dan Gohman475871a2008-07-27 21:46:04 +00004732std::pair<SDValue, SDValue>
4733TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
Duncan Sands00fee652008-02-14 17:28:50 +00004734 bool RetSExt, bool RetZExt, bool isVarArg,
4735 unsigned CallingConv, bool isTailCall,
Dan Gohman475871a2008-07-27 21:46:04 +00004736 SDValue Callee,
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004737 ArgListTy &Args, SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00004738 SmallVector<SDValue, 32> Ops;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004739 Ops.push_back(Chain); // Op#0 - Chain
4740 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4741 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4742 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4743 Ops.push_back(Callee);
4744
4745 // Handle all of the outgoing arguments.
4746 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004747 SmallVector<MVT, 4> ValueVTs;
4748 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4749 for (unsigned Value = 0, NumValues = ValueVTs.size();
4750 Value != NumValues; ++Value) {
4751 MVT VT = ValueVTs[Value];
4752 const Type *ArgTy = VT.getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00004753 SDValue Op = SDValue(Args[i].Node.Val, Args[i].Node.ResNo + Value);
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004754 ISD::ArgFlagsTy Flags;
4755 unsigned OriginalAlignment =
4756 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sands276dcbd2008-03-21 09:14:45 +00004757
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004758 if (Args[i].isZExt)
4759 Flags.setZExt();
4760 if (Args[i].isSExt)
4761 Flags.setSExt();
4762 if (Args[i].isInReg)
4763 Flags.setInReg();
4764 if (Args[i].isSRet)
4765 Flags.setSRet();
4766 if (Args[i].isByVal) {
4767 Flags.setByVal();
4768 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4769 const Type *ElementTy = Ty->getElementType();
4770 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4771 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4772 // For ByVal, alignment should come from FE. BE will guess if this
4773 // info is not there but there are cases it cannot get right.
4774 if (Args[i].Alignment)
4775 FrameAlign = Args[i].Alignment;
4776 Flags.setByValAlign(FrameAlign);
4777 Flags.setByValSize(FrameSize);
4778 }
4779 if (Args[i].isNest)
4780 Flags.setNest();
4781 Flags.setOrigAlign(OriginalAlignment);
Dan Gohman27a70be2007-07-02 16:18:06 +00004782
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004783 MVT PartVT = getRegisterType(VT);
4784 unsigned NumParts = getNumRegisters(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004785 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004786 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004787
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004788 if (Args[i].isSExt)
4789 ExtendKind = ISD::SIGN_EXTEND;
4790 else if (Args[i].isZExt)
4791 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004792
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004793 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004794
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004795 for (unsigned i = 0; i != NumParts; ++i) {
4796 // if it isn't first piece, alignment must be 1
4797 ISD::ArgFlagsTy MyFlags = Flags;
4798 if (NumParts > 1 && i == 0)
4799 MyFlags.setSplit();
4800 else if (i != 0)
4801 MyFlags.setOrigAlign(1);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004802
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004803 Ops.push_back(Parts[i]);
4804 Ops.push_back(DAG.getArgFlags(MyFlags));
4805 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004806 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004807 }
4808
Dan Gohmanef5d1942008-03-11 21:11:25 +00004809 // Figure out the result value types. We start by making a list of
Dan Gohman23ce5022008-04-25 18:27:55 +00004810 // the potentially illegal return value types.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004811 SmallVector<MVT, 4> LoweredRetTys;
4812 SmallVector<MVT, 4> RetTys;
Dan Gohman23ce5022008-04-25 18:27:55 +00004813 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004814
Dan Gohman23ce5022008-04-25 18:27:55 +00004815 // Then we translate that to a list of legal types.
4816 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004817 MVT VT = RetTys[I];
4818 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004819 unsigned NumRegs = getNumRegisters(VT);
4820 for (unsigned i = 0; i != NumRegs; ++i)
4821 LoweredRetTys.push_back(RegisterVT);
4822 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004823
Dan Gohmanef5d1942008-03-11 21:11:25 +00004824 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004825
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004826 // Create the CALL node.
Dan Gohman475871a2008-07-27 21:46:04 +00004827 SDValue Res = DAG.getNode(ISD::CALL,
Dan Gohmanef5d1942008-03-11 21:11:25 +00004828 DAG.getVTList(&LoweredRetTys[0],
4829 LoweredRetTys.size()),
Chris Lattnerbe384162006-08-16 22:57:46 +00004830 &Ops[0], Ops.size());
Dan Gohmanef5d1942008-03-11 21:11:25 +00004831 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004832
4833 // Gather up the call result into a single value.
4834 if (RetTy != Type::VoidTy) {
Duncan Sands00fee652008-02-14 17:28:50 +00004835 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4836
4837 if (RetSExt)
4838 AssertOp = ISD::AssertSext;
4839 else if (RetZExt)
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004840 AssertOp = ISD::AssertZext;
Duncan Sands00fee652008-02-14 17:28:50 +00004841
Dan Gohman475871a2008-07-27 21:46:04 +00004842 SmallVector<SDValue, 4> ReturnValues;
Dan Gohmanef5d1942008-03-11 21:11:25 +00004843 unsigned RegNo = 0;
Dan Gohman23ce5022008-04-25 18:27:55 +00004844 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004845 MVT VT = RetTys[I];
4846 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004847 unsigned NumRegs = getNumRegisters(VT);
4848 unsigned RegNoEnd = NumRegs + RegNo;
Dan Gohman475871a2008-07-27 21:46:04 +00004849 SmallVector<SDValue, 4> Results;
Dan Gohmanef5d1942008-03-11 21:11:25 +00004850 for (; RegNo != RegNoEnd; ++RegNo)
4851 Results.push_back(Res.getValue(RegNo));
Dan Gohman475871a2008-07-27 21:46:04 +00004852 SDValue ReturnValue =
Dan Gohmanef5d1942008-03-11 21:11:25 +00004853 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4854 AssertOp);
4855 ReturnValues.push_back(ReturnValue);
4856 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004857 Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4858 &ReturnValues[0], ReturnValues.size());
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004859 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004860
4861 return std::make_pair(Res, Chain);
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004862}
4863
Dan Gohman475871a2008-07-27 21:46:04 +00004864SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00004865 assert(0 && "LowerOperation not implemented for this target!");
4866 abort();
Dan Gohman475871a2008-07-27 21:46:04 +00004867 return SDValue();
Chris Lattner171453a2005-01-16 07:28:41 +00004868}
4869
Nate Begeman0aed7842006-01-28 03:14:31 +00004870
Chris Lattner7041ee32005-01-11 05:56:49 +00004871//===----------------------------------------------------------------------===//
4872// SelectionDAGISel code
4873//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00004874
Duncan Sands83ec4b62008-06-06 12:08:01 +00004875unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +00004876 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +00004877}
4878
Chris Lattner495a0b52005-08-17 06:37:43 +00004879void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004880 AU.addRequired<AliasAnalysis>();
Gordon Henriksence224772008-01-07 01:30:38 +00004881 AU.addRequired<CollectorModuleMetadata>();
Chris Lattnerc8d288f2007-03-31 04:18:03 +00004882 AU.setPreservesAll();
Chris Lattner495a0b52005-08-17 06:37:43 +00004883}
Chris Lattner1c08c712005-01-07 07:47:53 +00004884
Chris Lattner1c08c712005-01-07 07:47:53 +00004885bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman5f43f922007-08-27 16:26:13 +00004886 // Get alias analysis for load/store combining.
4887 AA = &getAnalysis<AliasAnalysis>();
4888
Chris Lattner1c08c712005-01-07 07:47:53 +00004889 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksence224772008-01-07 01:30:38 +00004890 if (MF.getFunction()->hasCollector())
4891 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4892 else
4893 GCI = 0;
Chris Lattner84bc5422007-12-31 04:13:23 +00004894 RegInfo = &MF.getRegInfo();
Bill Wendling832171c2006-12-07 20:04:42 +00004895 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00004896
4897 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4898
Dale Johannesen1532f3d2008-04-02 00:25:04 +00004899 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4900 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4901 // Mark landing pad.
4902 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +00004903
Dan Gohman0e5f1302008-07-07 23:02:41 +00004904 SelectAllBasicBlocks(Fn, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00004905
Evan Chengad2070c2007-02-10 02:43:39 +00004906 // Add function live-ins to entry block live-in set.
4907 BasicBlock *EntryBB = &Fn.getEntryBlock();
4908 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner84bc5422007-12-31 04:13:23 +00004909 if (!RegInfo->livein_empty())
4910 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4911 E = RegInfo->livein_end(); I != E; ++I)
Evan Chengad2070c2007-02-10 02:43:39 +00004912 BB->addLiveIn(I->first);
4913
Duncan Sandsf4070822007-06-15 19:04:19 +00004914#ifndef NDEBUG
4915 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4916 "Not all catch info was assigned to a landing pad!");
4917#endif
4918
Chris Lattner1c08c712005-01-07 07:47:53 +00004919 return true;
4920}
4921
Chris Lattner6833b062008-04-28 07:16:35 +00004922void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Dan Gohman475871a2008-07-27 21:46:04 +00004923 SDValue Op = getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00004924 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004925 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00004926 "Copy from a reg to the same reg!");
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004927 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004928
Dan Gohman23ce5022008-04-25 18:27:55 +00004929 RegsForValue RFV(TLI, Reg, V->getType());
Dan Gohman475871a2008-07-27 21:46:04 +00004930 SDValue Chain = DAG.getEntryNode();
Dan Gohman23ce5022008-04-25 18:27:55 +00004931 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4932 PendingExports.push_back(Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00004933}
4934
Chris Lattner068a81e2005-01-17 17:15:02 +00004935void SelectionDAGISel::
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004936LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Chris Lattner068a81e2005-01-17 17:15:02 +00004937 // If this is the entry block, emit arguments.
Evan Cheng15699fc2007-02-10 01:08:18 +00004938 Function &F = *LLVMBB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00004939 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Dan Gohman475871a2008-07-27 21:46:04 +00004940 SDValue OldRoot = SDL.DAG.getRoot();
4941 SmallVector<SDValue, 16> Args;
Dan Gohmana44b6742008-06-30 20:31:15 +00004942 TLI.LowerArguments(F, SDL.DAG, Args);
Chris Lattner068a81e2005-01-17 17:15:02 +00004943
Chris Lattnerbf209482005-10-30 19:42:35 +00004944 unsigned a = 0;
4945 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004946 AI != E; ++AI) {
4947 SmallVector<MVT, 4> ValueVTs;
4948 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4949 unsigned NumValues = ValueVTs.size();
Chris Lattnerbf209482005-10-30 19:42:35 +00004950 if (!AI->use_empty()) {
Duncan Sands4bdcb612008-07-02 17:40:58 +00004951 SDL.setValue(AI, SDL.DAG.getMergeValues(&Args[a], NumValues));
Chris Lattnerbf209482005-10-30 19:42:35 +00004952 // If this argument is live outside of the entry block, insert a copy from
4953 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner251db182007-02-25 18:40:32 +00004954 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4955 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004956 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattnerbf209482005-10-30 19:42:35 +00004957 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00004958 }
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004959 a += NumValues;
4960 }
Chris Lattnerbf209482005-10-30 19:42:35 +00004961
Chris Lattnerbf209482005-10-30 19:42:35 +00004962 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00004963 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00004964 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00004965}
4966
Duncan Sandsf4070822007-06-15 19:04:19 +00004967static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4968 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004969 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00004970 if (isSelector(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004971 // Apply the catch info to DestBB.
4972 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4973#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +00004974 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4975 FLI.CatchInfoFound.insert(I);
Duncan Sandsf4070822007-06-15 19:04:19 +00004976#endif
4977 }
4978}
4979
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004980/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4981/// whether object offset >= 0.
4982static bool
Dan Gohman475871a2008-07-27 21:46:04 +00004983IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDValue Op) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004984 if (!isa<FrameIndexSDNode>(Op)) return false;
4985
4986 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
4987 int FrameIdx = FrameIdxNode->getIndex();
4988 return MFI->isFixedObjectIndex(FrameIdx) &&
4989 MFI->getObjectOffset(FrameIdx) >= 0;
4990}
4991
4992/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
4993/// possibly be overwritten when lowering the outgoing arguments in a tail
4994/// call. Currently the implementation of this call is very conservative and
4995/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
4996/// virtual registers would be overwritten by direct lowering.
Dan Gohman475871a2008-07-27 21:46:04 +00004997static bool IsPossiblyOverwrittenArgumentOfTailCall(SDValue Op,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004998 MachineFrameInfo * MFI) {
4999 RegisterSDNode * OpReg = NULL;
5000 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
5001 (Op.getOpcode()== ISD::CopyFromReg &&
5002 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
5003 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
5004 (Op.getOpcode() == ISD::LOAD &&
5005 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
5006 (Op.getOpcode() == ISD::MERGE_VALUES &&
5007 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5008 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5009 getOperand(1))))
5010 return true;
5011 return false;
5012}
5013
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005014/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005015/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005016static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5017 TargetLowering& TLI) {
5018 SDNode * Ret = NULL;
Dan Gohman475871a2008-07-27 21:46:04 +00005019 SDValue Terminator = DAG.getRoot();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005020
5021 // Find RET node.
5022 if (Terminator.getOpcode() == ISD::RET) {
5023 Ret = Terminator.Val;
5024 }
5025
5026 // Fix tail call attribute of CALL nodes.
5027 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
Dan Gohman0e5f1302008-07-07 23:02:41 +00005028 BI = DAG.allnodes_end(); BI != BE; ) {
5029 --BI;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005030 if (BI->getOpcode() == ISD::CALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00005031 SDValue OpRet(Ret, 0);
5032 SDValue OpCall(BI, 0);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005033 bool isMarkedTailCall =
5034 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5035 // If CALL node has tail call attribute set to true and the call is not
5036 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005037 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005038 // must correctly identify tail call optimizable calls.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005039 if (!isMarkedTailCall) continue;
5040 if (Ret==NULL ||
5041 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5042 // Not eligible. Mark CALL node as non tail call.
Dan Gohman475871a2008-07-27 21:46:04 +00005043 SmallVector<SDValue, 32> Ops;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005044 unsigned idx=0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005045 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5046 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005047 if (idx!=3)
5048 Ops.push_back(*I);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005049 else
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005050 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5051 }
5052 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005053 } else {
5054 // Look for tail call clobbered arguments. Emit a series of
5055 // copyto/copyfrom virtual register nodes to protect them.
Dan Gohman475871a2008-07-27 21:46:04 +00005056 SmallVector<SDValue, 32> Ops;
5057 SDValue Chain = OpCall.getOperand(0), InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005058 unsigned idx=0;
5059 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5060 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Dan Gohman475871a2008-07-27 21:46:04 +00005061 SDValue Arg = *I;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005062 if (idx > 4 && (idx % 2)) {
5063 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5064 getArgFlags().isByVal();
5065 MachineFunction &MF = DAG.getMachineFunction();
5066 MachineFrameInfo *MFI = MF.getFrameInfo();
5067 if (!isByVal &&
5068 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005069 MVT VT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005070 unsigned VReg = MF.getRegInfo().
5071 createVirtualRegister(TLI.getRegClassFor(VT));
5072 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5073 InFlag = Chain.getValue(1);
5074 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5075 Chain = Arg.getValue(1);
5076 InFlag = Arg.getValue(2);
5077 }
5078 }
5079 Ops.push_back(Arg);
5080 }
5081 // Link in chain of CopyTo/CopyFromReg.
5082 Ops[0] = Chain;
5083 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005084 }
5085 }
5086 }
5087}
5088
Chris Lattner1c08c712005-01-07 07:47:53 +00005089void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5090 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00005091 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksence224772008-01-07 01:30:38 +00005092 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerddb870b2005-01-13 17:59:43 +00005093
Chris Lattnerbf209482005-10-30 19:42:35 +00005094 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +00005095 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005096 LowerArguments(LLVMBB, SDL);
Chris Lattner1c08c712005-01-07 07:47:53 +00005097
5098 BB = FuncInfo.MBBMap[LLVMBB];
5099 SDL.setCurrentBasicBlock(BB);
5100
Duncan Sandsf4070822007-06-15 19:04:19 +00005101 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands9fac0b52007-06-06 10:05:18 +00005102
Dale Johannesen1532f3d2008-04-02 00:25:04 +00005103 if (MMI && BB->isLandingPad()) {
Duncan Sandsf4070822007-06-15 19:04:19 +00005104 // Add a label to mark the beginning of the landing pad. Deletion of the
5105 // landing pad can thus be detected via the MachineModuleInfo.
5106 unsigned LabelID = MMI->addLandingPad(BB);
Dan Gohman44066042008-07-01 00:05:16 +00005107 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, DAG.getEntryNode(), LabelID));
Duncan Sandsf4070822007-06-15 19:04:19 +00005108
Evan Chenge47c3332007-06-27 18:45:32 +00005109 // Mark exception register as live in.
5110 unsigned Reg = TLI.getExceptionAddressRegister();
5111 if (Reg) BB->addLiveIn(Reg);
5112
5113 // Mark exception selector register as live in.
5114 Reg = TLI.getExceptionSelectorRegister();
5115 if (Reg) BB->addLiveIn(Reg);
5116
Duncan Sandsf4070822007-06-15 19:04:19 +00005117 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5118 // function and list of typeids logically belong to the invoke (or, if you
5119 // like, the basic block containing the invoke), and need to be associated
5120 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005121 // information is provided by an intrinsic (eh.selector) that can be moved
5122 // to unexpected places by the optimizers: if the unwind edge is critical,
5123 // then breaking it can result in the intrinsics being in the successor of
5124 // the landing pad, not the landing pad itself. This results in exceptions
5125 // not being caught because no typeids are associated with the invoke.
5126 // This may not be the only way things can go wrong, but it is the only way
5127 // we try to work around for the moment.
Duncan Sandsf4070822007-06-15 19:04:19 +00005128 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5129
5130 if (Br && Br->isUnconditional()) { // Critical edge?
5131 BasicBlock::iterator I, E;
5132 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005133 if (isSelector(I))
Duncan Sandsf4070822007-06-15 19:04:19 +00005134 break;
5135
5136 if (I == E)
5137 // No catch info found - try to extract some from the successor.
5138 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands9fac0b52007-06-06 10:05:18 +00005139 }
5140 }
5141
Chris Lattner1c08c712005-01-07 07:47:53 +00005142 // Lower all of the non-terminator instructions.
5143 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5144 I != E; ++I)
5145 SDL.visit(*I);
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005146
Chris Lattner1c08c712005-01-07 07:47:53 +00005147 // Ensure that all instructions which are used outside of their defining
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005148 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner1c08c712005-01-07 07:47:53 +00005149 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005150 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner9f24ad72007-02-04 01:35:11 +00005151 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00005152 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005153 SDL.CopyValueToVirtualRegister(I, VMI->second);
Chris Lattner1c08c712005-01-07 07:47:53 +00005154 }
5155
5156 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5157 // ensure constants are generated when needed. Remember the virtual registers
5158 // that need to be added to the Machine PHI nodes as input. We cannot just
5159 // directly add them, because expansion might result in multiple MBB's for one
5160 // BB. As such, the start of the BB might correspond to a different MBB than
5161 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00005162 //
Chris Lattner8c494ab2006-10-27 23:50:33 +00005163 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner1c08c712005-01-07 07:47:53 +00005164
5165 // Emit constants only once even if used by multiple PHI nodes.
5166 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005167
Chris Lattner8c494ab2006-10-27 23:50:33 +00005168 // Vector bool would be better, but vector<bool> is really slow.
5169 std::vector<unsigned char> SuccsHandled;
5170 if (TI->getNumSuccessors())
5171 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5172
Dan Gohman532dc2e2007-07-09 20:59:04 +00005173 // Check successor nodes' PHI nodes that expect a constant to be available
5174 // from this block.
Chris Lattner1c08c712005-01-07 07:47:53 +00005175 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5176 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005177 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner8c494ab2006-10-27 23:50:33 +00005178 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005179
Chris Lattner8c494ab2006-10-27 23:50:33 +00005180 // If this terminator has multiple identical successors (common for
5181 // switches), only handle each succ once.
5182 unsigned SuccMBBNo = SuccMBB->getNumber();
5183 if (SuccsHandled[SuccMBBNo]) continue;
5184 SuccsHandled[SuccMBBNo] = true;
5185
5186 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner1c08c712005-01-07 07:47:53 +00005187 PHINode *PN;
5188
5189 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5190 // nodes and Machine PHI nodes, but the incoming operands have not been
5191 // emitted yet.
5192 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8c494ab2006-10-27 23:50:33 +00005193 (PN = dyn_cast<PHINode>(I)); ++I) {
5194 // Ignore dead phi's.
5195 if (PN->use_empty()) continue;
5196
5197 unsigned Reg;
5198 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner3f7927c2006-11-29 01:12:32 +00005199
Chris Lattner8c494ab2006-10-27 23:50:33 +00005200 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5201 unsigned &RegOut = ConstantsOut[C];
5202 if (RegOut == 0) {
5203 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005204 SDL.CopyValueToVirtualRegister(C, RegOut);
Chris Lattner1c08c712005-01-07 07:47:53 +00005205 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005206 Reg = RegOut;
5207 } else {
5208 Reg = FuncInfo.ValueMap[PHIOp];
5209 if (Reg == 0) {
5210 assert(isa<AllocaInst>(PHIOp) &&
5211 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5212 "Didn't codegen value into a register!??");
5213 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005214 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Chris Lattner7e021512006-03-31 02:12:18 +00005215 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005216 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005217
5218 // Remember that this register needs to added to the machine PHI node as
5219 // the input for this MBB.
Dan Gohman6f498b02008-08-04 23:42:46 +00005220 SmallVector<MVT, 4> ValueVTs;
5221 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5222 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5223 MVT VT = ValueVTs[vti];
5224 unsigned NumRegisters = TLI.getNumRegisters(VT);
5225 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5226 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5227 Reg += NumRegisters;
5228 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005229 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005230 }
5231 ConstantsOut.clear();
5232
5233 // Lower the terminator after the copies are emitted.
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005234 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00005235
Nate Begemanf15485a2006-03-27 01:32:24 +00005236 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00005237 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00005238 SwitchCases.clear();
5239 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005240 JTCases.clear();
5241 JTCases = SDL.JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005242 BitTestCases.clear();
5243 BitTestCases = SDL.BitTestCases;
5244
Chris Lattnera651cf62005-01-17 19:43:36 +00005245 // Make sure the root of the DAG is up-to-date.
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005246 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005247
5248 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5249 // with correct tailcall attribute so that the target can rely on the tailcall
5250 // attribute indicating whether the call is really eligible for tail call
5251 // optimization.
5252 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Chris Lattner1c08c712005-01-07 07:47:53 +00005253}
5254
Chris Lattneread0d882008-06-17 06:09:18 +00005255void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5256 SmallPtrSet<SDNode*, 128> VisitedNodes;
5257 SmallVector<SDNode*, 128> Worklist;
5258
5259 Worklist.push_back(DAG.getRoot().Val);
5260
5261 APInt Mask;
5262 APInt KnownZero;
5263 APInt KnownOne;
5264
5265 while (!Worklist.empty()) {
5266 SDNode *N = Worklist.back();
5267 Worklist.pop_back();
5268
5269 // If we've already seen this node, ignore it.
5270 if (!VisitedNodes.insert(N))
5271 continue;
5272
5273 // Otherwise, add all chain operands to the worklist.
5274 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5275 if (N->getOperand(i).getValueType() == MVT::Other)
5276 Worklist.push_back(N->getOperand(i).Val);
5277
5278 // If this is a CopyToReg with a vreg dest, process it.
5279 if (N->getOpcode() != ISD::CopyToReg)
5280 continue;
5281
5282 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5283 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5284 continue;
5285
5286 // Ignore non-scalar or non-integer values.
Dan Gohman475871a2008-07-27 21:46:04 +00005287 SDValue Src = N->getOperand(2);
Chris Lattneread0d882008-06-17 06:09:18 +00005288 MVT SrcVT = Src.getValueType();
5289 if (!SrcVT.isInteger() || SrcVT.isVector())
5290 continue;
5291
5292 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5293 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5294 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5295
5296 // Only install this information if it tells us something.
5297 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5298 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5299 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5300 if (DestReg >= FLI.LiveOutRegInfo.size())
5301 FLI.LiveOutRegInfo.resize(DestReg+1);
5302 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5303 LOI.NumSignBits = NumSignBits;
5304 LOI.KnownOne = NumSignBits;
5305 LOI.KnownZero = NumSignBits;
5306 }
5307 }
5308}
5309
Nate Begemanf15485a2006-03-27 01:32:24 +00005310void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohman462dc7f2008-07-21 20:00:07 +00005311 std::string GroupName;
5312 if (TimePassesIsEnabled)
5313 GroupName = "Instruction Selection and Scheduling";
5314 std::string BlockName;
5315 if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs ||
5316 ViewDAGCombine2 || ViewISelDAGs || ViewSchedDAGs || ViewSUnitDAGs)
5317 BlockName = DAG.getMachineFunction().getFunction()->getName() + ':' +
5318 BB->getBasicBlock()->getName();
5319
5320 DOUT << "Initial selection DAG:\n";
Dan Gohman417e11b2007-10-08 15:12:17 +00005321 DEBUG(DAG.dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +00005322
5323 if (ViewDAGCombine1) DAG.viewGraph("dag-combine1 input for " + BlockName);
Dan Gohman417e11b2007-10-08 15:12:17 +00005324
Chris Lattneraf21d552005-10-10 16:47:10 +00005325 // Run the DAG combiner in pre-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005326 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005327 NamedRegionTimer T("DAG Combining 1", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005328 DAG.Combine(false, *AA);
5329 } else {
5330 DAG.Combine(false, *AA);
5331 }
Nate Begeman2300f552005-09-07 00:15:36 +00005332
Dan Gohman417e11b2007-10-08 15:12:17 +00005333 DOUT << "Optimized lowered selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005334 DEBUG(DAG.dump());
Duncan Sandsf00e74f2008-07-17 17:06:03 +00005335
Chris Lattner1c08c712005-01-07 07:47:53 +00005336 // Second step, hack on the DAG until it only uses operations and types that
5337 // the target supports.
Duncan Sandsf00e74f2008-07-17 17:06:03 +00005338 if (EnableLegalizeTypes) {// Enable this some day.
Dan Gohman462dc7f2008-07-21 20:00:07 +00005339 if (ViewLegalizeTypesDAGs) DAG.viewGraph("legalize-types input for " +
5340 BlockName);
5341
5342 if (TimePassesIsEnabled) {
5343 NamedRegionTimer T("Type Legalization", GroupName);
5344 DAG.LegalizeTypes();
5345 } else {
5346 DAG.LegalizeTypes();
5347 }
5348
5349 DOUT << "Type-legalized selection DAG:\n";
5350 DEBUG(DAG.dump());
5351
Chris Lattner70587ea2008-07-10 23:37:50 +00005352 // TODO: enable a dag combine pass here.
5353 }
Duncan Sandsf00e74f2008-07-17 17:06:03 +00005354
Dan Gohman462dc7f2008-07-21 20:00:07 +00005355 if (ViewLegalizeDAGs) DAG.viewGraph("legalize input for " + BlockName);
5356
Evan Chengebffb662008-07-01 17:59:20 +00005357 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005358 NamedRegionTimer T("DAG Legalization", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005359 DAG.Legalize();
5360 } else {
5361 DAG.Legalize();
5362 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005363
Bill Wendling832171c2006-12-07 20:04:42 +00005364 DOUT << "Legalized selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005365 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005366
Dan Gohman462dc7f2008-07-21 20:00:07 +00005367 if (ViewDAGCombine2) DAG.viewGraph("dag-combine2 input for " + BlockName);
5368
Chris Lattneraf21d552005-10-10 16:47:10 +00005369 // Run the DAG combiner in post-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005370 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005371 NamedRegionTimer T("DAG Combining 2", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005372 DAG.Combine(true, *AA);
5373 } else {
5374 DAG.Combine(true, *AA);
5375 }
Nate Begeman2300f552005-09-07 00:15:36 +00005376
Dan Gohman417e11b2007-10-08 15:12:17 +00005377 DOUT << "Optimized legalized selection DAG:\n";
5378 DEBUG(DAG.dump());
5379
Dan Gohman462dc7f2008-07-21 20:00:07 +00005380 if (ViewISelDAGs) DAG.viewGraph("isel input for " + BlockName);
Chris Lattneread0d882008-06-17 06:09:18 +00005381
Dan Gohman925a7e82008-08-13 19:47:40 +00005382 if (!Fast && EnableValueProp)
Chris Lattneread0d882008-06-17 06:09:18 +00005383 ComputeLiveOutVRegInfo(DAG);
Evan Cheng552c4a82006-04-28 02:09:19 +00005384
Chris Lattnera33ef482005-03-30 01:10:47 +00005385 // Third, instruction select all of the operations to machine code, adding the
5386 // code to the MachineBasicBlock.
Evan Chengebffb662008-07-01 17:59:20 +00005387 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005388 NamedRegionTimer T("Instruction Selection", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005389 InstructionSelect(DAG);
5390 } else {
5391 InstructionSelect(DAG);
5392 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005393
Dan Gohman462dc7f2008-07-21 20:00:07 +00005394 DOUT << "Selected selection DAG:\n";
5395 DEBUG(DAG.dump());
5396
5397 if (ViewSchedDAGs) DAG.viewGraph("scheduler input for " + BlockName);
5398
Dan Gohman5e843682008-07-14 18:19:29 +00005399 // Schedule machine code.
5400 ScheduleDAG *Scheduler;
5401 if (TimePassesIsEnabled) {
5402 NamedRegionTimer T("Instruction Scheduling", GroupName);
5403 Scheduler = Schedule(DAG);
5404 } else {
5405 Scheduler = Schedule(DAG);
5406 }
5407
Dan Gohman462dc7f2008-07-21 20:00:07 +00005408 if (ViewSUnitDAGs) Scheduler->viewGraph();
5409
Evan Chengdb8d56b2008-06-30 20:45:06 +00005410 // Emit machine code to BB. This can change 'BB' to the last block being
5411 // inserted into.
Evan Chengebffb662008-07-01 17:59:20 +00005412 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005413 NamedRegionTimer T("Instruction Creation", GroupName);
5414 BB = Scheduler->EmitSchedule();
Evan Chengebffb662008-07-01 17:59:20 +00005415 } else {
Dan Gohman5e843682008-07-14 18:19:29 +00005416 BB = Scheduler->EmitSchedule();
5417 }
5418
5419 // Free the scheduler state.
5420 if (TimePassesIsEnabled) {
5421 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName);
5422 delete Scheduler;
5423 } else {
5424 delete Scheduler;
Evan Chengebffb662008-07-01 17:59:20 +00005425 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005426
5427 // Perform target specific isel post processing.
Evan Chengebffb662008-07-01 17:59:20 +00005428 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005429 NamedRegionTimer T("Instruction Selection Post Processing", GroupName);
Dan Gohman462dc7f2008-07-21 20:00:07 +00005430 InstructionSelectPostProcessing();
Evan Chengebffb662008-07-01 17:59:20 +00005431 } else {
Dan Gohman462dc7f2008-07-21 20:00:07 +00005432 InstructionSelectPostProcessing();
Evan Chengebffb662008-07-01 17:59:20 +00005433 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005434
Bill Wendling832171c2006-12-07 20:04:42 +00005435 DOUT << "Selected machine code:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005436 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005437}
Chris Lattner1c08c712005-01-07 07:47:53 +00005438
Dan Gohman0e5f1302008-07-07 23:02:41 +00005439void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF,
5440 FunctionLoweringInfo &FuncInfo) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00005441 // Define NodeAllocator here so that memory allocation is reused for
Dan Gohman0e5f1302008-07-07 23:02:41 +00005442 // each basic block.
Dan Gohmanfed90b62008-07-28 21:51:04 +00005443 NodeAllocatorType NodeAllocator;
Dan Gohman0e5f1302008-07-07 23:02:41 +00005444
Evan Cheng381cb072008-08-08 07:27:28 +00005445 SimpleBBISel SISel(MF, TLI);
Evan Cheng39fd6e82008-08-07 00:43:25 +00005446 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5447 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
5448 BasicBlock *LLVMBB = &*I;
5449 PHINodesToUpdate.clear();
Evan Cheng381cb072008-08-08 07:27:28 +00005450
Dan Gohman925a7e82008-08-13 19:47:40 +00005451 if (!Fast || !SISel.SelectBasicBlock(LLVMBB, FuncInfo.MBBMap[LLVMBB]))
Evan Cheng381cb072008-08-08 07:27:28 +00005452 SelectBasicBlock(LLVMBB, MF, FuncInfo, PHINodesToUpdate, NodeAllocator);
Evan Cheng39fd6e82008-08-07 00:43:25 +00005453 FinishBasicBlock(LLVMBB, MF, FuncInfo, PHINodesToUpdate, NodeAllocator);
5454 }
Dan Gohman0e5f1302008-07-07 23:02:41 +00005455}
5456
Dan Gohmanfed90b62008-07-28 21:51:04 +00005457void
5458SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5459 FunctionLoweringInfo &FuncInfo,
Evan Cheng39fd6e82008-08-07 00:43:25 +00005460 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Dan Gohmanfed90b62008-07-28 21:51:04 +00005461 NodeAllocatorType &NodeAllocator) {
Evan Cheng39fd6e82008-08-07 00:43:25 +00005462 SelectionDAG DAG(TLI, MF, FuncInfo,
5463 getAnalysisToUpdate<MachineModuleInfo>(),
5464 NodeAllocator);
5465 CurDAG = &DAG;
Nate Begemanf15485a2006-03-27 01:32:24 +00005466
Evan Cheng39fd6e82008-08-07 00:43:25 +00005467 // First step, lower LLVM code to some DAG. This DAG may use operations and
5468 // types that are not supported by the target.
5469 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
Nate Begemanf15485a2006-03-27 01:32:24 +00005470
Evan Cheng39fd6e82008-08-07 00:43:25 +00005471 // Second step, emit the lowered DAG as machine code.
5472 CodeGenAndEmitDAG(DAG);
5473}
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005474
Evan Cheng39fd6e82008-08-07 00:43:25 +00005475void
5476SelectionDAGISel::FinishBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5477 FunctionLoweringInfo &FuncInfo,
5478 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
5479 NodeAllocatorType &NodeAllocator) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005480 DOUT << "Total amount of phi nodes to update: "
5481 << PHINodesToUpdate.size() << "\n";
5482 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5483 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5484 << ", " << PHINodesToUpdate[i].second << ")\n";);
Nate Begemanf15485a2006-03-27 01:32:24 +00005485
Chris Lattnera33ef482005-03-30 01:10:47 +00005486 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00005487 // PHI nodes in successors.
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005488 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005489 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5490 MachineInstr *PHI = PHINodesToUpdate[i].first;
5491 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5492 "This is not a machine PHI node that we are updating!");
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005493 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5494 false));
5495 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +00005496 }
5497 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00005498 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005499
5500 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5501 // Lower header first, if it wasn't already lowered
5502 if (!BitTestCases[i].Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005503 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005504 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005505 NodeAllocator);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005506 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005507 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005508 // Set the current basic block to the mbb we wish to insert the code into
5509 BB = BitTestCases[i].Parent;
5510 HSDL.setCurrentBasicBlock(BB);
5511 // Emit the code
5512 HSDL.visitBitTestHeader(BitTestCases[i]);
5513 HSDAG.setRoot(HSDL.getRoot());
5514 CodeGenAndEmitDAG(HSDAG);
5515 }
5516
5517 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattneread0d882008-06-17 06:09:18 +00005518 SelectionDAG BSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005519 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005520 NodeAllocator);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005521 CurDAG = &BSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005522 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005523 // Set the current basic block to the mbb we wish to insert the code into
5524 BB = BitTestCases[i].Cases[j].ThisBB;
5525 BSDL.setCurrentBasicBlock(BB);
5526 // Emit the code
5527 if (j+1 != ej)
5528 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5529 BitTestCases[i].Reg,
5530 BitTestCases[i].Cases[j]);
5531 else
5532 BSDL.visitBitTestCase(BitTestCases[i].Default,
5533 BitTestCases[i].Reg,
5534 BitTestCases[i].Cases[j]);
5535
5536
5537 BSDAG.setRoot(BSDL.getRoot());
5538 CodeGenAndEmitDAG(BSDAG);
5539 }
5540
5541 // Update PHI Nodes
5542 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5543 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5544 MachineBasicBlock *PHIBB = PHI->getParent();
5545 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5546 "This is not a machine PHI node that we are updating!");
5547 // This is "default" BB. We have two jumps to it. From "header" BB and
5548 // from last "case" BB.
5549 if (PHIBB == BitTestCases[i].Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005550 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5551 false));
5552 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5553 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5554 false));
5555 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5556 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005557 }
5558 // One of "cases" BB.
5559 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5560 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5561 if (cBB->succ_end() !=
5562 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005563 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5564 false));
5565 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005566 }
5567 }
5568 }
5569 }
5570
Nate Begeman9453eea2006-04-23 06:26:20 +00005571 // If the JumpTable record is filled in, then we need to emit a jump table.
5572 // Updating the PHI nodes is tricky in this case, since we need to determine
5573 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005574 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5575 // Lower header first, if it wasn't already lowered
5576 if (!JTCases[i].first.Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005577 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005578 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005579 NodeAllocator);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005580 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005581 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005582 // Set the current basic block to the mbb we wish to insert the code into
5583 BB = JTCases[i].first.HeaderBB;
5584 HSDL.setCurrentBasicBlock(BB);
5585 // Emit the code
5586 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5587 HSDAG.setRoot(HSDL.getRoot());
5588 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005589 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005590
Chris Lattneread0d882008-06-17 06:09:18 +00005591 SelectionDAG JSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005592 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005593 NodeAllocator);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005594 CurDAG = &JSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005595 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Nate Begeman37efe672006-04-22 18:53:45 +00005596 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005597 BB = JTCases[i].second.MBB;
5598 JSDL.setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00005599 // Emit the code
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005600 JSDL.visitJumpTable(JTCases[i].second);
5601 JSDAG.setRoot(JSDL.getRoot());
5602 CodeGenAndEmitDAG(JSDAG);
5603
Nate Begeman37efe672006-04-22 18:53:45 +00005604 // Update PHI Nodes
5605 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5606 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5607 MachineBasicBlock *PHIBB = PHI->getParent();
5608 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5609 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005610 // "default" BB. We can go there only from header BB.
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005611 if (PHIBB == JTCases[i].second.Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005612 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5613 false));
5614 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +00005615 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005616 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +00005617 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005618 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5619 false));
5620 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +00005621 }
5622 }
Nate Begeman37efe672006-04-22 18:53:45 +00005623 }
5624
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005625 // If the switch block involved a branch to one of the actual successors, we
5626 // need to update PHI nodes in that block.
5627 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5628 MachineInstr *PHI = PHINodesToUpdate[i].first;
5629 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5630 "This is not a machine PHI node that we are updating!");
5631 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005632 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5633 false));
5634 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005635 }
5636 }
5637
Nate Begemanf15485a2006-03-27 01:32:24 +00005638 // If we generated any switch lowering information, build and codegen any
5639 // additional DAGs necessary.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005640 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattneread0d882008-06-17 06:09:18 +00005641 SelectionDAG SDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005642 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005643 NodeAllocator);
Nate Begemanf15485a2006-03-27 01:32:24 +00005644 CurDAG = &SDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005645 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005646
Nate Begemanf15485a2006-03-27 01:32:24 +00005647 // Set the current basic block to the mbb we wish to insert the code into
5648 BB = SwitchCases[i].ThisBB;
5649 SDL.setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005650
Nate Begemanf15485a2006-03-27 01:32:24 +00005651 // Emit the code
5652 SDL.visitSwitchCase(SwitchCases[i]);
5653 SDAG.setRoot(SDL.getRoot());
5654 CodeGenAndEmitDAG(SDAG);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005655
5656 // Handle any PHI nodes in successors of this chunk, as if we were coming
5657 // from the original BB before switch expansion. Note that PHI nodes can
5658 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5659 // handle them the right number of times.
Chris Lattner57ab6592006-10-24 17:57:59 +00005660 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005661 for (MachineBasicBlock::iterator Phi = BB->begin();
5662 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5663 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5664 for (unsigned pn = 0; ; ++pn) {
5665 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5666 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005667 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5668 second, false));
5669 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005670 break;
5671 }
5672 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005673 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005674
5675 // Don't process RHS if same block as LHS.
Chris Lattner57ab6592006-10-24 17:57:59 +00005676 if (BB == SwitchCases[i].FalseBB)
5677 SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005678
5679 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner24525952006-10-24 18:07:37 +00005680 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner57ab6592006-10-24 17:57:59 +00005681 SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00005682 }
Chris Lattner57ab6592006-10-24 17:57:59 +00005683 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00005684 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005685}
Evan Chenga9c20912006-01-21 02:32:06 +00005686
Jim Laskey13ec7022006-08-01 14:21:23 +00005687
Dan Gohman5e843682008-07-14 18:19:29 +00005688/// Schedule - Pick a safe ordering for instructions for each
Evan Chenga9c20912006-01-21 02:32:06 +00005689/// target node in the graph.
Dan Gohman5e843682008-07-14 18:19:29 +00005690///
5691ScheduleDAG *SelectionDAGISel::Schedule(SelectionDAG &DAG) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005692 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00005693
5694 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005695 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00005696 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00005697 }
Jim Laskey13ec7022006-08-01 14:21:23 +00005698
Dan Gohman925a7e82008-08-13 19:47:40 +00005699 ScheduleDAG *Scheduler = Ctor(this, &DAG, BB, Fast);
Dan Gohman5e843682008-07-14 18:19:29 +00005700 Scheduler->Run();
Dan Gohman3e1a7ae2007-08-28 20:32:58 +00005701
Dan Gohman5e843682008-07-14 18:19:29 +00005702 return Scheduler;
Evan Chenga9c20912006-01-21 02:32:06 +00005703}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005704
Chris Lattner03fc53c2006-03-06 00:22:00 +00005705
Jim Laskey9ff542f2006-08-01 18:29:48 +00005706HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5707 return new HazardRecognizer();
5708}
5709
Chris Lattner75548062006-10-11 03:58:02 +00005710//===----------------------------------------------------------------------===//
5711// Helper functions used by the generated instruction selector.
5712//===----------------------------------------------------------------------===//
5713// Calls to these methods are generated by tblgen.
5714
5715/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5716/// the dag combiner simplified the 255, we still want to match. RHS is the
5717/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5718/// specified in the .td file (e.g. 255).
Dan Gohman475871a2008-07-27 21:46:04 +00005719bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00005720 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005721 const APInt &ActualMask = RHS->getAPIntValue();
5722 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005723
5724 // If the actual mask exactly matches, success!
5725 if (ActualMask == DesiredMask)
5726 return true;
5727
5728 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005729 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005730 return false;
5731
5732 // Otherwise, the DAG Combiner may have proven that the value coming in is
5733 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005734 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00005735 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00005736 return true;
5737
5738 // TODO: check to see if missing bits are just not demanded.
5739
5740 // Otherwise, this pattern doesn't match.
5741 return false;
5742}
5743
5744/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5745/// the dag combiner simplified the 255, we still want to match. RHS is the
5746/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5747/// specified in the .td file (e.g. 255).
Dan Gohman475871a2008-07-27 21:46:04 +00005748bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005749 int64_t DesiredMaskS) const {
5750 const APInt &ActualMask = RHS->getAPIntValue();
5751 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005752
5753 // If the actual mask exactly matches, success!
5754 if (ActualMask == DesiredMask)
5755 return true;
5756
5757 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005758 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005759 return false;
5760
5761 // Otherwise, the DAG Combiner may have proven that the value coming in is
5762 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005763 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00005764
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005765 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005766 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00005767
5768 // If all the missing bits in the or are already known to be set, match!
5769 if ((NeededMask & KnownOne) == NeededMask)
5770 return true;
5771
5772 // TODO: check to see if missing bits are just not demanded.
5773
5774 // Otherwise, this pattern doesn't match.
5775 return false;
5776}
5777
Jim Laskey9ff542f2006-08-01 18:29:48 +00005778
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005779/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5780/// by tblgen. Others should not call it.
5781void SelectionDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00005782SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops, SelectionDAG &DAG) {
5783 std::vector<SDValue> InOps;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005784 std::swap(InOps, Ops);
5785
5786 Ops.push_back(InOps[0]); // input chain.
5787 Ops.push_back(InOps[1]); // input asm string.
5788
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005789 unsigned i = 2, e = InOps.size();
5790 if (InOps[e-1].getValueType() == MVT::Flag)
5791 --e; // Don't process a flag operand if it is here.
5792
5793 while (i != e) {
5794 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5795 if ((Flags & 7) != 4 /*MEM*/) {
5796 // Just skip over this operand, copying the operands verbatim.
5797 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5798 i += (Flags >> 3) + 1;
5799 } else {
5800 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5801 // Otherwise, this is a memory operand. Ask the target to select it.
Dan Gohman475871a2008-07-27 21:46:04 +00005802 std::vector<SDValue> SelOps;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005803 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling832171c2006-12-07 20:04:42 +00005804 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005805 exit(1);
5806 }
5807
5808 // Add this to the output node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005809 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner36d43962006-12-16 21:14:48 +00005810 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattner4b993b12007-04-09 00:33:58 +00005811 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005812 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5813 i += 2;
5814 }
5815 }
5816
5817 // Add the flag input back if present.
5818 if (e != InOps.size())
5819 Ops.push_back(InOps.back());
5820}
Devang Patel794fd752007-05-01 21:15:47 +00005821
Devang Patel19974732007-05-03 01:11:54 +00005822char SelectionDAGISel::ID = 0;