blob: b3e18f60dad9c1102f226cc1dfcc719e378fcffb [file] [log] [blame]
Chris Lattner1c08c712005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner1c08c712005-01-07 07:47:53 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner1c08c712005-01-07 07:47:53 +00008//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
Anton Korobeynikov5502bf62007-04-04 21:14:49 +000015#include "llvm/ADT/BitVector.h"
Jim Laskeyc7c3f112006-10-16 20:52:31 +000016#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000017#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Chenga9c20912006-01-21 02:32:06 +000018#include "llvm/CodeGen/ScheduleDAG.h"
Anton Korobeynikov5502bf62007-04-04 21:14:49 +000019#include "llvm/Constants.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000020#include "llvm/CallingConv.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000021#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
Chris Lattner36ce6912005-11-29 06:21:05 +000023#include "llvm/GlobalVariable.h"
Chris Lattnerce7518c2006-01-26 22:24:51 +000024#include "llvm/InlineAsm.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000025#include "llvm/Instructions.h"
26#include "llvm/Intrinsics.h"
Jim Laskey43970fe2006-03-23 18:06:46 +000027#include "llvm/IntrinsicInst.h"
Reid Spencer5694b6e2007-04-09 06:17:21 +000028#include "llvm/ParameterAttributes.h"
Gordon Henriksence224772008-01-07 01:30:38 +000029#include "llvm/CodeGen/Collector.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000030#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineFrameInfo.h"
32#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineJumpTableInfo.h"
34#include "llvm/CodeGen/MachineModuleInfo.h"
35#include "llvm/CodeGen/MachineRegisterInfo.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000036#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000037#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000038#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000039#include "llvm/Target/TargetData.h"
40#include "llvm/Target/TargetFrameInfo.h"
41#include "llvm/Target/TargetInstrInfo.h"
42#include "llvm/Target/TargetLowering.h"
43#include "llvm/Target/TargetMachine.h"
Vladimir Prus12472912006-05-23 13:43:15 +000044#include "llvm/Target/TargetOptions.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000045#include "llvm/Support/Compiler.h"
Evan Chengdb8d56b2008-06-30 20:45:06 +000046#include "llvm/Support/Debug.h"
47#include "llvm/Support/MathExtras.h"
48#include "llvm/Support/Timer.h"
Jeff Cohen7e881032006-02-24 02:52:40 +000049#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000050using namespace llvm;
51
Chris Lattneread0d882008-06-17 06:09:18 +000052static cl::opt<bool>
Chris Lattner70587ea2008-07-10 23:37:50 +000053EnableValueProp("enable-value-prop", cl::Hidden);
54static cl::opt<bool>
Duncan Sandsf00e74f2008-07-17 17:06:03 +000055EnableLegalizeTypes("enable-legalize-types", cl::Hidden);
Owen Anderson6ac8df72008-08-05 00:27:28 +000056static cl::opt<bool>
57DisableCorrectBranchFolding("disable-correct-folding", cl::init(false),
58 cl::Hidden);
Chris Lattneread0d882008-06-17 06:09:18 +000059
60
Chris Lattnerda8abb02005-09-01 18:44:10 +000061#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000062static cl::opt<bool>
Dan Gohman462dc7f2008-07-21 20:00:07 +000063ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
64 cl::desc("Pop up a window to show dags before the first "
65 "dag combine pass"));
66static cl::opt<bool>
67ViewLegalizeTypesDAGs("view-legalize-types-dags", cl::Hidden,
68 cl::desc("Pop up a window to show dags before legalize types"));
69static cl::opt<bool>
70ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
71 cl::desc("Pop up a window to show dags before legalize"));
72static cl::opt<bool>
73ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
74 cl::desc("Pop up a window to show dags before the second "
75 "dag combine pass"));
76static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000077ViewISelDAGs("view-isel-dags", cl::Hidden,
78 cl::desc("Pop up a window to show isel dags as they are selected"));
79static cl::opt<bool>
80ViewSchedDAGs("view-sched-dags", cl::Hidden,
81 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000082static cl::opt<bool>
83ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +000084 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000085#else
Dan Gohman462dc7f2008-07-21 20:00:07 +000086static const bool ViewDAGCombine1 = false,
87 ViewLegalizeTypesDAGs = false, ViewLegalizeDAGs = false,
88 ViewDAGCombine2 = false,
89 ViewISelDAGs = false, ViewSchedDAGs = false,
90 ViewSUnitDAGs = false;
Chris Lattner7944d9d2005-01-12 03:41:21 +000091#endif
92
Jim Laskeyeb577ba2006-08-02 12:30:23 +000093//===---------------------------------------------------------------------===//
94///
95/// RegisterScheduler class - Track the registration of instruction schedulers.
96///
97//===---------------------------------------------------------------------===//
98MachinePassRegistry RegisterScheduler::Registry;
99
100//===---------------------------------------------------------------------===//
101///
102/// ISHeuristic command line option for instruction schedulers.
103///
104//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +0000105static cl::opt<RegisterScheduler::FunctionPassCtor, false,
106 RegisterPassParser<RegisterScheduler> >
107ISHeuristic("pre-RA-sched",
108 cl::init(&createDefaultScheduler),
109 cl::desc("Instruction schedulers available (before register"
110 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +0000111
Dan Gohman844731a2008-05-13 00:00:25 +0000112static RegisterScheduler
113defaultListDAGScheduler("default", " Best scheduler for the target",
114 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +0000115
Evan Cheng5c807602008-02-26 02:33:44 +0000116namespace { struct SDISelAsmOperandInfo; }
Chris Lattnerbf996f12007-04-30 17:29:31 +0000117
Dan Gohman1d685a42008-06-07 02:02:36 +0000118/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
119/// insertvalue or extractvalue indices that identify a member, return
120/// the linearized index of the start of the member.
121///
122static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
123 const unsigned *Indices,
124 const unsigned *IndicesEnd,
125 unsigned CurIndex = 0) {
126 // Base case: We're done.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000127 if (Indices && Indices == IndicesEnd)
Dan Gohman1d685a42008-06-07 02:02:36 +0000128 return CurIndex;
129
Chris Lattnerf899fce2008-04-27 23:48:12 +0000130 // Given a struct type, recursively traverse the elements.
131 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000132 for (StructType::element_iterator EB = STy->element_begin(),
133 EI = EB,
Dan Gohman1d685a42008-06-07 02:02:36 +0000134 EE = STy->element_end();
135 EI != EE; ++EI) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000136 if (Indices && *Indices == unsigned(EI - EB))
137 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
138 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000139 }
140 }
141 // Given an array type, recursively traverse the elements.
142 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
143 const Type *EltTy = ATy->getElementType();
144 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000145 if (Indices && *Indices == i)
146 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
147 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000148 }
149 }
150 // We haven't found the type we're looking for, so keep searching.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000151 return CurIndex + 1;
Dan Gohman1d685a42008-06-07 02:02:36 +0000152}
153
154/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
155/// MVTs that represent all the individual underlying
156/// non-aggregate types that comprise it.
157///
158/// If Offsets is non-null, it points to a vector to be filled in
159/// with the in-memory offsets of each of the individual values.
160///
161static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
162 SmallVectorImpl<MVT> &ValueVTs,
163 SmallVectorImpl<uint64_t> *Offsets = 0,
164 uint64_t StartingOffset = 0) {
165 // Given a struct type, recursively traverse the elements.
166 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
167 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
168 for (StructType::element_iterator EB = STy->element_begin(),
169 EI = EB,
170 EE = STy->element_end();
171 EI != EE; ++EI)
172 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
173 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattnerf899fce2008-04-27 23:48:12 +0000174 return;
Dan Gohman23ce5022008-04-25 18:27:55 +0000175 }
Chris Lattnerf899fce2008-04-27 23:48:12 +0000176 // Given an array type, recursively traverse the elements.
177 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
178 const Type *EltTy = ATy->getElementType();
Dan Gohman1d685a42008-06-07 02:02:36 +0000179 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000180 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +0000181 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
182 StartingOffset + i * EltSize);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000183 return;
184 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000185 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattnerf899fce2008-04-27 23:48:12 +0000186 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman1d685a42008-06-07 02:02:36 +0000187 if (Offsets)
188 Offsets->push_back(StartingOffset);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000189}
Dan Gohman23ce5022008-04-25 18:27:55 +0000190
Chris Lattnerf899fce2008-04-27 23:48:12 +0000191namespace {
Dan Gohman0fe00902008-04-28 18:10:39 +0000192 /// RegsForValue - This struct represents the registers (physical or virtual)
193 /// that a particular set of values is assigned, and the type information about
194 /// the value. The most common situation is to represent one value at a time,
195 /// but struct or array values are handled element-wise as multiple values.
196 /// The splitting of aggregates is performed recursively, so that we never
197 /// have aggregate-typed registers. The values at this point do not necessarily
198 /// have legal types, so each value may require one or more registers of some
199 /// legal type.
200 ///
Chris Lattner95255282006-06-28 23:17:24 +0000201 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman23ce5022008-04-25 18:27:55 +0000202 /// TLI - The TargetLowering object.
Dan Gohman0fe00902008-04-28 18:10:39 +0000203 ///
Dan Gohman23ce5022008-04-25 18:27:55 +0000204 const TargetLowering *TLI;
205
Dan Gohman0fe00902008-04-28 18:10:39 +0000206 /// ValueVTs - The value types of the values, which may not be legal, and
207 /// may need be promoted or synthesized from one or more registers.
208 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000209 SmallVector<MVT, 4> ValueVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000210
Dan Gohman0fe00902008-04-28 18:10:39 +0000211 /// RegVTs - The value types of the registers. This is the same size as
212 /// ValueVTs and it records, for each value, what the type of the assigned
213 /// register or registers are. (Individual values are never synthesized
214 /// from more than one type of register.)
215 ///
216 /// With virtual registers, the contents of RegVTs is redundant with TLI's
217 /// getRegisterType member function, however when with physical registers
218 /// it is necessary to have a separate record of the types.
Chris Lattner864635a2006-02-22 22:37:12 +0000219 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000220 SmallVector<MVT, 4> RegVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000221
Dan Gohman0fe00902008-04-28 18:10:39 +0000222 /// Regs - This list holds the registers assigned to the values.
223 /// Each legal or promoted value requires one register, and each
224 /// expanded value requires multiple registers.
225 ///
226 SmallVector<unsigned, 4> Regs;
Chris Lattner864635a2006-02-22 22:37:12 +0000227
Dan Gohman23ce5022008-04-25 18:27:55 +0000228 RegsForValue() : TLI(0) {}
Chris Lattner864635a2006-02-22 22:37:12 +0000229
Dan Gohman23ce5022008-04-25 18:27:55 +0000230 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000231 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000232 MVT regvt, MVT valuevt)
Dan Gohman0fe00902008-04-28 18:10:39 +0000233 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000234 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000235 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000236 const SmallVector<MVT, 4> &regvts,
237 const SmallVector<MVT, 4> &valuevts)
Dan Gohman0fe00902008-04-28 18:10:39 +0000238 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000239 RegsForValue(const TargetLowering &tli,
240 unsigned Reg, const Type *Ty) : TLI(&tli) {
241 ComputeValueVTs(tli, Ty, ValueVTs);
242
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000243 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000244 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +0000245 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000246 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000247 for (unsigned i = 0; i != NumRegs; ++i)
248 Regs.push_back(Reg + i);
249 RegVTs.push_back(RegisterVT);
250 Reg += NumRegs;
251 }
Chris Lattner864635a2006-02-22 22:37:12 +0000252 }
253
Chris Lattner41f62592008-04-29 04:29:54 +0000254 /// append - Add the specified values to this one.
255 void append(const RegsForValue &RHS) {
256 TLI = RHS.TLI;
257 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
258 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
259 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
260 }
261
262
Chris Lattner864635a2006-02-22 22:37:12 +0000263 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman23ce5022008-04-25 18:27:55 +0000264 /// this value and returns the result as a ValueVTs value. This uses
Chris Lattner864635a2006-02-22 22:37:12 +0000265 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000266 /// If the Flag pointer is NULL, no flag is used.
Dan Gohman475871a2008-07-27 21:46:04 +0000267 SDValue getCopyFromRegs(SelectionDAG &DAG,
268 SDValue &Chain, SDValue *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000269
270 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
271 /// specified value into the registers specified by this object. This uses
272 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000273 /// If the Flag pointer is NULL, no flag is used.
Dan Gohman475871a2008-07-27 21:46:04 +0000274 void getCopyToRegs(SDValue Val, SelectionDAG &DAG,
275 SDValue &Chain, SDValue *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000276
277 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
278 /// operand list. This adds the code marker and includes the number of
279 /// values added into it.
280 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +0000281 std::vector<SDValue> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000282 };
283}
Evan Cheng4ef10862006-01-23 07:01:07 +0000284
Chris Lattner1c08c712005-01-07 07:47:53 +0000285namespace llvm {
286 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000287 /// createDefaultScheduler - This creates an instruction scheduler appropriate
288 /// for the target.
289 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
290 SelectionDAG *DAG,
Evan Cheng4576f6d2008-07-01 18:05:03 +0000291 MachineBasicBlock *BB,
292 bool Fast) {
Jim Laskey9373beb2006-08-01 19:14:14 +0000293 TargetLowering &TLI = IS->getTargetLowering();
294
295 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
Evan Cheng4576f6d2008-07-01 18:05:03 +0000296 return createTDListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000297 } else {
298 assert(TLI.getSchedulingPreference() ==
299 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng4576f6d2008-07-01 18:05:03 +0000300 return createBURRListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000301 }
302 }
303
304
305 //===--------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000306 /// FunctionLoweringInfo - This contains information that is global to a
307 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000308 class FunctionLoweringInfo {
309 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000310 TargetLowering &TLI;
311 Function &Fn;
312 MachineFunction &MF;
Chris Lattner84bc5422007-12-31 04:13:23 +0000313 MachineRegisterInfo &RegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000314
315 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
316
317 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
318 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
319
320 /// ValueMap - Since we emit code for the function a basic block at a time,
321 /// we must remember which virtual registers hold the values for
322 /// cross-basic-block values.
Chris Lattner9f24ad72007-02-04 01:35:11 +0000323 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000324
325 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
326 /// the entry block. This allows the allocas to be efficiently referenced
327 /// anywhere in the function.
328 std::map<const AllocaInst*, int> StaticAllocaMap;
329
Duncan Sandsf4070822007-06-15 19:04:19 +0000330#ifndef NDEBUG
331 SmallSet<Instruction*, 8> CatchInfoLost;
332 SmallSet<Instruction*, 8> CatchInfoFound;
333#endif
334
Duncan Sands83ec4b62008-06-06 12:08:01 +0000335 unsigned MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000336 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000337 }
Chris Lattner571e4342006-10-27 21:36:01 +0000338
339 /// isExportedInst - Return true if the specified value is an instruction
340 /// exported from its block.
341 bool isExportedInst(const Value *V) {
342 return ValueMap.count(V);
343 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000344
Chris Lattner3c384492006-03-16 19:51:18 +0000345 unsigned CreateRegForValue(const Value *V);
346
Chris Lattner1c08c712005-01-07 07:47:53 +0000347 unsigned InitializeRegForValue(const Value *V) {
348 unsigned &R = ValueMap[V];
349 assert(R == 0 && "Already initialized this value register!");
350 return R = CreateRegForValue(V);
351 }
Chris Lattneread0d882008-06-17 06:09:18 +0000352
353 struct LiveOutInfo {
354 unsigned NumSignBits;
355 APInt KnownOne, KnownZero;
356 LiveOutInfo() : NumSignBits(0) {}
357 };
358
359 /// LiveOutRegInfo - Information about live out vregs, indexed by their
360 /// register number offset by 'FirstVirtualRegister'.
361 std::vector<LiveOutInfo> LiveOutRegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000362 };
363}
364
Duncan Sandscf26d7c2007-07-04 20:52:51 +0000365/// isSelector - Return true if this instruction is a call to the
366/// eh.selector intrinsic.
367static bool isSelector(Instruction *I) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000368 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000369 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
370 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Duncan Sandsf4070822007-06-15 19:04:19 +0000371 return false;
372}
373
Chris Lattner1c08c712005-01-07 07:47:53 +0000374/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000375/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000376/// switch or atomic instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000377static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
378 if (isa<PHINode>(I)) return true;
379 BasicBlock *BB = I->getParent();
380 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000381 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattner571e4342006-10-27 21:36:01 +0000382 // FIXME: Remove switchinst special case.
Nate Begemanf15485a2006-03-27 01:32:24 +0000383 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000384 return true;
385 return false;
386}
387
Chris Lattnerbf209482005-10-30 19:42:35 +0000388/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000389/// entry block, return true. This includes arguments used by switches, since
390/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000391static bool isOnlyUsedInEntryBlock(Argument *A) {
392 BasicBlock *Entry = A->getParent()->begin();
393 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000394 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000395 return false; // Use not in entry block.
396 return true;
397}
398
Chris Lattner1c08c712005-01-07 07:47:53 +0000399FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000400 Function &fn, MachineFunction &mf)
Chris Lattner84bc5422007-12-31 04:13:23 +0000401 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000402
Chris Lattnerbf209482005-10-30 19:42:35 +0000403 // Create a vreg for each argument register that is not dead and is used
404 // outside of the entry block for the function.
405 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
406 AI != E; ++AI)
407 if (!isOnlyUsedInEntryBlock(AI))
408 InitializeRegForValue(AI);
409
Chris Lattner1c08c712005-01-07 07:47:53 +0000410 // Initialize the mapping of values to registers. This is only set up for
411 // instruction values that are used outside of the block that defines
412 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000413 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000414 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
415 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencerb83eb642006-10-20 07:07:24 +0000416 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000417 const Type *Ty = AI->getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +0000418 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000419 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000420 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000421 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000422
Reid Spencerb83eb642006-10-20 07:07:24 +0000423 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000424 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000425 StaticAllocaMap[AI] =
Chris Lattner6266c182007-04-25 04:08:28 +0000426 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000427 }
428
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000429 for (; BB != EB; ++BB)
430 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000431 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
432 if (!isa<AllocaInst>(I) ||
433 !StaticAllocaMap.count(cast<AllocaInst>(I)))
434 InitializeRegForValue(I);
435
436 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
437 // also creates the initial PHI MachineInstrs, though none of the input
438 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000439 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Dan Gohman0e5f1302008-07-07 23:02:41 +0000440 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000441 MBBMap[BB] = MBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +0000442 MF.push_back(MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000443
444 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
445 // appropriate.
446 PHINode *PN;
Chris Lattner8c494ab2006-10-27 23:50:33 +0000447 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
448 if (PN->use_empty()) continue;
449
Chris Lattner8c494ab2006-10-27 23:50:33 +0000450 unsigned PHIReg = ValueMap[PN];
451 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Dan Gohman6f498b02008-08-04 23:42:46 +0000452
453 SmallVector<MVT, 4> ValueVTs;
454 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
455 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
456 MVT VT = ValueVTs[vti];
457 unsigned NumRegisters = TLI.getNumRegisters(VT);
458 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
459 for (unsigned i = 0; i != NumRegisters; ++i)
460 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
461 PHIReg += NumRegisters;
462 }
Chris Lattner8c494ab2006-10-27 23:50:33 +0000463 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000464 }
465}
466
Chris Lattner3c384492006-03-16 19:51:18 +0000467/// CreateRegForValue - Allocate the appropriate number of virtual registers of
468/// the correctly promoted or expanded types. Assign these registers
469/// consecutive vreg numbers and return the first assigned number.
Dan Gohman10a6b7a2008-04-28 18:19:43 +0000470///
471/// In the case that the given value has struct or array type, this function
472/// will assign registers for each member or element.
473///
Chris Lattner3c384492006-03-16 19:51:18 +0000474unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000475 SmallVector<MVT, 4> ValueVTs;
Chris Lattnerb606dba2008-04-28 06:44:42 +0000476 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Bill Wendling95b39552007-04-24 21:13:23 +0000477
Dan Gohman23ce5022008-04-25 18:27:55 +0000478 unsigned FirstReg = 0;
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000479 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000480 MVT ValueVT = ValueVTs[Value];
481 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohman8c8c5fc2007-06-27 14:34:07 +0000482
Chris Lattnerb606dba2008-04-28 06:44:42 +0000483 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000484 for (unsigned i = 0; i != NumRegs; ++i) {
485 unsigned R = MakeReg(RegisterVT);
486 if (!FirstReg) FirstReg = R;
487 }
488 }
489 return FirstReg;
Chris Lattner3c384492006-03-16 19:51:18 +0000490}
Chris Lattner1c08c712005-01-07 07:47:53 +0000491
492//===----------------------------------------------------------------------===//
493/// SelectionDAGLowering - This is the common target-independent lowering
494/// implementation that is parameterized by a TargetLowering object.
495/// Also, targets can overload any lowering method.
496///
497namespace llvm {
498class SelectionDAGLowering {
499 MachineBasicBlock *CurMBB;
500
Dan Gohman475871a2008-07-27 21:46:04 +0000501 DenseMap<const Value*, SDValue> NodeMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000502
Chris Lattnerd3948112005-01-17 22:19:26 +0000503 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
504 /// them up and then emit token factor nodes when possible. This allows us to
505 /// get simple disambiguation between loads without worrying about alias
506 /// analysis.
Dan Gohman475871a2008-07-27 21:46:04 +0000507 SmallVector<SDValue, 8> PendingLoads;
Chris Lattnerd3948112005-01-17 22:19:26 +0000508
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000509 /// PendingExports - CopyToReg nodes that copy values to virtual registers
510 /// for export to other blocks need to be emitted before any terminator
511 /// instruction, but they have no other ordering requirements. We bunch them
512 /// up and the emit a single tokenfactor for them just before terminator
513 /// instructions.
Dan Gohman475871a2008-07-27 21:46:04 +0000514 std::vector<SDValue> PendingExports;
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000515
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000516 /// Case - A struct to record the Value for a switch case, and the
517 /// case's target basic block.
518 struct Case {
519 Constant* Low;
520 Constant* High;
521 MachineBasicBlock* BB;
522
523 Case() : Low(0), High(0), BB(0) { }
524 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
525 Low(low), High(high), BB(bb) { }
526 uint64_t size() const {
527 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
528 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
529 return (rHigh - rLow + 1ULL);
530 }
531 };
532
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000533 struct CaseBits {
534 uint64_t Mask;
535 MachineBasicBlock* BB;
536 unsigned Bits;
537
538 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
539 Mask(mask), BB(bb), Bits(bits) { }
540 };
541
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000542 typedef std::vector<Case> CaseVector;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000543 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000544 typedef CaseVector::iterator CaseItr;
545 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemanf15485a2006-03-27 01:32:24 +0000546
547 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
548 /// of conditional branches.
549 struct CaseRec {
550 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
551 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
552
553 /// CaseBB - The MBB in which to emit the compare and branch
554 MachineBasicBlock *CaseBB;
555 /// LT, GE - If nonzero, we know the current case value must be less-than or
556 /// greater-than-or-equal-to these Constants.
557 Constant *LT;
558 Constant *GE;
559 /// Range - A pair of iterators representing the range of case values to be
560 /// processed at this point in the binary search tree.
561 CaseRange Range;
562 };
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000563
564 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000565
566 /// The comparison function for sorting the switch case values in the vector.
567 /// WARNING: Case ranges should be disjoint!
Nate Begemanf15485a2006-03-27 01:32:24 +0000568 struct CaseCmp {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000569 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000570 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
571 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
572 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
573 return CI1->getValue().slt(CI2->getValue());
Nate Begemanf15485a2006-03-27 01:32:24 +0000574 }
575 };
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000576
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000577 struct CaseBitsCmp {
578 bool operator () (const CaseBits& C1, const CaseBits& C2) {
579 return C1.Bits > C2.Bits;
580 }
581 };
582
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000583 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemanf15485a2006-03-27 01:32:24 +0000584
Chris Lattner1c08c712005-01-07 07:47:53 +0000585public:
586 // TLI - This is information that describes the available target features we
587 // need for lowering. This indicates when operations are unavailable,
588 // implemented with a libcall, etc.
589 TargetLowering &TLI;
590 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000591 const TargetData *TD;
Dan Gohman5f43f922007-08-27 16:26:13 +0000592 AliasAnalysis &AA;
Chris Lattner1c08c712005-01-07 07:47:53 +0000593
Nate Begemanf15485a2006-03-27 01:32:24 +0000594 /// SwitchCases - Vector of CaseBlock structures used to communicate
595 /// SwitchInst code generation information.
596 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000597 /// JTCases - Vector of JumpTable structures used to communicate
598 /// SwitchInst code generation information.
599 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000600 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemanf15485a2006-03-27 01:32:24 +0000601
Chris Lattner1c08c712005-01-07 07:47:53 +0000602 /// FuncInfo - Information about the function as a whole.
603 ///
604 FunctionLoweringInfo &FuncInfo;
Gordon Henriksence224772008-01-07 01:30:38 +0000605
606 /// GCI - Garbage collection metadata for the function.
607 CollectorMetadata *GCI;
Chris Lattner1c08c712005-01-07 07:47:53 +0000608
609 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman5f43f922007-08-27 16:26:13 +0000610 AliasAnalysis &aa,
Gordon Henriksence224772008-01-07 01:30:38 +0000611 FunctionLoweringInfo &funcinfo,
612 CollectorMetadata *gci)
Dan Gohman5f43f922007-08-27 16:26:13 +0000613 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksence224772008-01-07 01:30:38 +0000614 FuncInfo(funcinfo), GCI(gci) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000615 }
616
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000617 /// getRoot - Return the current virtual root of the Selection DAG,
618 /// flushing any PendingLoad items. This must be done before emitting
619 /// a store or any other node that may need to be ordered after any
620 /// prior load instructions.
Chris Lattnera651cf62005-01-17 19:43:36 +0000621 ///
Dan Gohman475871a2008-07-27 21:46:04 +0000622 SDValue getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000623 if (PendingLoads.empty())
624 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000625
Chris Lattnerd3948112005-01-17 22:19:26 +0000626 if (PendingLoads.size() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +0000627 SDValue Root = PendingLoads[0];
Chris Lattnerd3948112005-01-17 22:19:26 +0000628 DAG.setRoot(Root);
629 PendingLoads.clear();
630 return Root;
631 }
632
633 // Otherwise, we have to make a token factor node.
Dan Gohman475871a2008-07-27 21:46:04 +0000634 SDValue Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000635 &PendingLoads[0], PendingLoads.size());
Chris Lattnerd3948112005-01-17 22:19:26 +0000636 PendingLoads.clear();
637 DAG.setRoot(Root);
638 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000639 }
640
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000641 /// getControlRoot - Similar to getRoot, but instead of flushing all the
642 /// PendingLoad items, flush all the PendingExports items. It is necessary
643 /// to do this before emitting a terminator instruction.
644 ///
Dan Gohman475871a2008-07-27 21:46:04 +0000645 SDValue getControlRoot() {
646 SDValue Root = DAG.getRoot();
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000647
648 if (PendingExports.empty())
649 return Root;
650
651 // Turn all of the CopyToReg chains into one factored node.
652 if (Root.getOpcode() != ISD::EntryToken) {
653 unsigned i = 0, e = PendingExports.size();
654 for (; i != e; ++i) {
655 assert(PendingExports[i].Val->getNumOperands() > 1);
656 if (PendingExports[i].Val->getOperand(0) == Root)
657 break; // Don't add the root if we already indirectly depend on it.
658 }
659
660 if (i == e)
661 PendingExports.push_back(Root);
662 }
663
664 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
665 &PendingExports[0],
666 PendingExports.size());
667 PendingExports.clear();
668 DAG.setRoot(Root);
669 return Root;
670 }
671
672 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Chris Lattner571e4342006-10-27 21:36:01 +0000673
Chris Lattner1c08c712005-01-07 07:47:53 +0000674 void visit(Instruction &I) { visit(I.getOpcode(), I); }
675
676 void visit(unsigned Opcode, User &I) {
Chris Lattner1e7aa5c2006-11-10 04:41:34 +0000677 // Note: this doesn't use InstVisitor, because it has to work with
678 // ConstantExpr's in addition to instructions.
Chris Lattner1c08c712005-01-07 07:47:53 +0000679 switch (Opcode) {
680 default: assert(0 && "Unknown instruction type encountered!");
681 abort();
682 // Build the switch statement using the Instruction.def file.
683#define HANDLE_INST(NUM, OPCODE, CLASS) \
684 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
685#include "llvm/Instruction.def"
686 }
687 }
688
689 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
690
Dan Gohman475871a2008-07-27 21:46:04 +0000691 SDValue getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000692
Dan Gohman475871a2008-07-27 21:46:04 +0000693 void setValue(const Value *V, SDValue NewN) {
694 SDValue &N = NodeMap[V];
Chris Lattner1c08c712005-01-07 07:47:53 +0000695 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner0da331f2007-02-04 01:31:47 +0000696 N = NewN;
Chris Lattner1c08c712005-01-07 07:47:53 +0000697 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000698
Evan Cheng5c807602008-02-26 02:33:44 +0000699 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnere7cf56a2007-04-30 21:11:17 +0000700 std::set<unsigned> &OutputRegs,
701 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000702
Chris Lattner571e4342006-10-27 21:36:01 +0000703 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
704 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
705 unsigned Opc);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000706 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattner571e4342006-10-27 21:36:01 +0000707 void ExportFromCurrentBlock(Value *V);
Dan Gohman475871a2008-07-27 21:46:04 +0000708 void LowerCallTo(CallSite CS, SDValue Callee, bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000709 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsdc024672007-11-27 13:23:08 +0000710
Chris Lattner1c08c712005-01-07 07:47:53 +0000711 // Terminator instructions.
712 void visitRet(ReturnInst &I);
713 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000714 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000715 void visitUnreachable(UnreachableInst &I) { /* noop */ }
716
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000717 // Helpers for visitSwitch
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000718 bool handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000719 CaseRecVector& WorkList,
720 Value* SV,
721 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000722 bool handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000723 CaseRecVector& WorkList,
724 Value* SV,
725 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000726 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000727 CaseRecVector& WorkList,
728 Value* SV,
729 MachineBasicBlock* Default);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000730 bool handleBitTestsSwitchCase(CaseRec& CR,
731 CaseRecVector& WorkList,
732 Value* SV,
733 MachineBasicBlock* Default);
Nate Begemanf15485a2006-03-27 01:32:24 +0000734 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000735 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
736 void visitBitTestCase(MachineBasicBlock* NextMBB,
737 unsigned Reg,
738 SelectionDAGISel::BitTestCase &B);
Nate Begeman37efe672006-04-22 18:53:45 +0000739 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000740 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
741 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemanf15485a2006-03-27 01:32:24 +0000742
Chris Lattner1c08c712005-01-07 07:47:53 +0000743 // These all get lowered before this pass.
Jim Laskeyb180aa12007-02-21 22:53:45 +0000744 void visitInvoke(InvokeInst &I);
745 void visitUnwind(UnwindInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000746
Dan Gohman7f321562007-06-25 16:23:39 +0000747 void visitBinary(User &I, unsigned OpCode);
Nate Begemane21ea612005-11-18 07:42:56 +0000748 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000749 void visitAdd(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000750 if (I.getType()->isFPOrFPVector())
751 visitBinary(I, ISD::FADD);
Reid Spencer1628cec2006-10-26 06:15:43 +0000752 else
Dan Gohman7f321562007-06-25 16:23:39 +0000753 visitBinary(I, ISD::ADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000754 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000755 void visitSub(User &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000756 void visitMul(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000757 if (I.getType()->isFPOrFPVector())
758 visitBinary(I, ISD::FMUL);
Reid Spencer1628cec2006-10-26 06:15:43 +0000759 else
Dan Gohman7f321562007-06-25 16:23:39 +0000760 visitBinary(I, ISD::MUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000761 }
Dan Gohman7f321562007-06-25 16:23:39 +0000762 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
763 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
764 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
765 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
766 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
767 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
768 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
769 void visitOr (User &I) { visitBinary(I, ISD::OR); }
770 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer24d6da52007-01-21 00:29:26 +0000771 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencer3822ff52006-11-08 06:47:33 +0000772 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
773 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000774 void visitICmp(User &I);
775 void visitFCmp(User &I);
Nate Begemanb43e9c12008-05-12 19:40:03 +0000776 void visitVICmp(User &I);
777 void visitVFCmp(User &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000778 // Visit the conversion instructions
779 void visitTrunc(User &I);
780 void visitZExt(User &I);
781 void visitSExt(User &I);
782 void visitFPTrunc(User &I);
783 void visitFPExt(User &I);
784 void visitFPToUI(User &I);
785 void visitFPToSI(User &I);
786 void visitUIToFP(User &I);
787 void visitSIToFP(User &I);
788 void visitPtrToInt(User &I);
789 void visitIntToPtr(User &I);
790 void visitBitCast(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000791
Chris Lattner2bbd8102006-03-29 00:11:43 +0000792 void visitExtractElement(User &I);
793 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000794 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000795
Dan Gohman1d685a42008-06-07 02:02:36 +0000796 void visitExtractValue(ExtractValueInst &I);
797 void visitInsertValue(InsertValueInst &I);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000798
Chris Lattner1c08c712005-01-07 07:47:53 +0000799 void visitGetElementPtr(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000800 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000801
802 void visitMalloc(MallocInst &I);
803 void visitFree(FreeInst &I);
804 void visitAlloca(AllocaInst &I);
805 void visitLoad(LoadInst &I);
806 void visitStore(StoreInst &I);
807 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
808 void visitCall(CallInst &I);
Duncan Sandsfd7b3262007-12-17 18:08:19 +0000809 void visitInlineAsm(CallSite CS);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000810 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000811 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000812
Chris Lattner1c08c712005-01-07 07:47:53 +0000813 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000814 void visitVAArg(VAArgInst &I);
815 void visitVAEnd(CallInst &I);
816 void visitVACopy(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000817
Chris Lattner1c08c712005-01-07 07:47:53 +0000818 void visitUserOp1(Instruction &I) {
819 assert(0 && "UserOp1 should not exist at instruction selection time!");
820 abort();
821 }
822 void visitUserOp2(Instruction &I) {
823 assert(0 && "UserOp2 should not exist at instruction selection time!");
824 abort();
825 }
Mon P Wang63307c32008-05-05 19:05:59 +0000826
827private:
828 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
829
Chris Lattner1c08c712005-01-07 07:47:53 +0000830};
831} // end namespace llvm
832
Dan Gohman6183f782007-07-05 20:12:34 +0000833
Duncan Sandsb988bac2008-02-11 20:58:28 +0000834/// getCopyFromParts - Create a value that contains the specified legal parts
835/// combined into the value they represent. If the parts combine to a type
836/// larger then ValueVT then AssertOp can be used to specify whether the extra
837/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattner4468c1f2008-03-09 09:38:46 +0000838/// (ISD::AssertSext).
Dan Gohman475871a2008-07-27 21:46:04 +0000839static SDValue getCopyFromParts(SelectionDAG &DAG,
840 const SDValue *Parts,
Dan Gohman6183f782007-07-05 20:12:34 +0000841 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000842 MVT PartVT,
843 MVT ValueVT,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000844 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000845 assert(NumParts > 0 && "No parts to assemble!");
846 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman475871a2008-07-27 21:46:04 +0000847 SDValue Val = Parts[0];
Dan Gohman6183f782007-07-05 20:12:34 +0000848
Duncan Sands014e04a2008-02-12 20:46:31 +0000849 if (NumParts > 1) {
850 // Assemble the value from multiple parts.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000851 if (!ValueVT.isVector()) {
852 unsigned PartBits = PartVT.getSizeInBits();
853 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohman6183f782007-07-05 20:12:34 +0000854
Duncan Sands014e04a2008-02-12 20:46:31 +0000855 // Assemble the power of 2 part.
856 unsigned RoundParts = NumParts & (NumParts - 1) ?
857 1 << Log2_32(NumParts) : NumParts;
858 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000859 MVT RoundVT = RoundBits == ValueBits ?
860 ValueVT : MVT::getIntegerVT(RoundBits);
Dan Gohman475871a2008-07-27 21:46:04 +0000861 SDValue Lo, Hi;
Duncan Sands014e04a2008-02-12 20:46:31 +0000862
863 if (RoundParts > 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000864 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands014e04a2008-02-12 20:46:31 +0000865 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
866 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
867 PartVT, HalfVT);
Dan Gohman6183f782007-07-05 20:12:34 +0000868 } else {
Duncan Sands014e04a2008-02-12 20:46:31 +0000869 Lo = Parts[0];
870 Hi = Parts[1];
Dan Gohman6183f782007-07-05 20:12:34 +0000871 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000872 if (TLI.isBigEndian())
873 std::swap(Lo, Hi);
874 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
875
876 if (RoundParts < NumParts) {
877 // Assemble the trailing non-power-of-2 part.
878 unsigned OddParts = NumParts - RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000879 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000880 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
881
882 // Combine the round and odd parts.
883 Lo = Val;
884 if (TLI.isBigEndian())
885 std::swap(Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000886 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000887 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
888 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000889 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands014e04a2008-02-12 20:46:31 +0000890 TLI.getShiftAmountTy()));
891 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
892 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
893 }
894 } else {
895 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000896 MVT IntermediateVT, RegisterVT;
Duncan Sands014e04a2008-02-12 20:46:31 +0000897 unsigned NumIntermediates;
898 unsigned NumRegs =
899 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
900 RegisterVT);
Duncan Sands014e04a2008-02-12 20:46:31 +0000901 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +0000902 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands014e04a2008-02-12 20:46:31 +0000903 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
904 assert(RegisterVT == Parts[0].getValueType() &&
905 "Part type doesn't match part!");
906
907 // Assemble the parts into intermediate operands.
Dan Gohman475871a2008-07-27 21:46:04 +0000908 SmallVector<SDValue, 8> Ops(NumIntermediates);
Duncan Sands014e04a2008-02-12 20:46:31 +0000909 if (NumIntermediates == NumParts) {
910 // If the register was not expanded, truncate or copy the value,
911 // as appropriate.
912 for (unsigned i = 0; i != NumParts; ++i)
913 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
914 PartVT, IntermediateVT);
915 } else if (NumParts > 0) {
916 // If the intermediate type was expanded, build the intermediate operands
917 // from the parts.
918 assert(NumParts % NumIntermediates == 0 &&
919 "Must expand into a divisible number of parts!");
920 unsigned Factor = NumParts / NumIntermediates;
921 for (unsigned i = 0; i != NumIntermediates; ++i)
922 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
923 PartVT, IntermediateVT);
924 }
925
926 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
927 // operands.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000928 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands014e04a2008-02-12 20:46:31 +0000929 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
930 ValueVT, &Ops[0], NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +0000931 }
Dan Gohman6183f782007-07-05 20:12:34 +0000932 }
933
Duncan Sands014e04a2008-02-12 20:46:31 +0000934 // There is now one part, held in Val. Correct it to match ValueVT.
935 PartVT = Val.getValueType();
Dan Gohman6183f782007-07-05 20:12:34 +0000936
Duncan Sands014e04a2008-02-12 20:46:31 +0000937 if (PartVT == ValueVT)
938 return Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000939
Duncan Sands83ec4b62008-06-06 12:08:01 +0000940 if (PartVT.isVector()) {
941 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands014e04a2008-02-12 20:46:31 +0000942 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000943 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000944
Duncan Sands83ec4b62008-06-06 12:08:01 +0000945 if (ValueVT.isVector()) {
946 assert(ValueVT.getVectorElementType() == PartVT &&
947 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +0000948 "Only trivial scalar-to-vector conversions should get here!");
949 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
950 }
951
Duncan Sands83ec4b62008-06-06 12:08:01 +0000952 if (PartVT.isInteger() &&
953 ValueVT.isInteger()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000954 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000955 // For a truncate, see if we have any information to
956 // indicate whether the truncated bits will always be
957 // zero or sign-extension.
958 if (AssertOp != ISD::DELETED_NODE)
959 Val = DAG.getNode(AssertOp, PartVT, Val,
960 DAG.getValueType(ValueVT));
961 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
962 } else {
963 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
964 }
965 }
966
Duncan Sands83ec4b62008-06-06 12:08:01 +0000967 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000968 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattner4468c1f2008-03-09 09:38:46 +0000969 // FP_ROUND's are always exact here.
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000970 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000971 DAG.getIntPtrConstant(1));
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000972 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
973 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000974
Duncan Sands83ec4b62008-06-06 12:08:01 +0000975 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands014e04a2008-02-12 20:46:31 +0000976 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
977
978 assert(0 && "Unknown mismatch!");
Dan Gohman475871a2008-07-27 21:46:04 +0000979 return SDValue();
Dan Gohman6183f782007-07-05 20:12:34 +0000980}
981
Duncan Sandsb988bac2008-02-11 20:58:28 +0000982/// getCopyToParts - Create a series of nodes that contain the specified value
983/// split into legal parts. If the parts contain more bits than Val, then, for
984/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohman6183f782007-07-05 20:12:34 +0000985static void getCopyToParts(SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +0000986 SDValue Val,
987 SDValue *Parts,
Dan Gohman6183f782007-07-05 20:12:34 +0000988 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000989 MVT PartVT,
Duncan Sandsb988bac2008-02-11 20:58:28 +0000990 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohman25ac7e82007-08-10 14:59:38 +0000991 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000992 MVT PtrVT = TLI.getPointerTy();
993 MVT ValueVT = Val.getValueType();
994 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands014e04a2008-02-12 20:46:31 +0000995 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohman6183f782007-07-05 20:12:34 +0000996
Duncan Sands014e04a2008-02-12 20:46:31 +0000997 if (!NumParts)
998 return;
999
Duncan Sands83ec4b62008-06-06 12:08:01 +00001000 if (!ValueVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001001 if (PartVT == ValueVT) {
1002 assert(NumParts == 1 && "No-op copy with multiple parts!");
1003 Parts[0] = Val;
Dan Gohman6183f782007-07-05 20:12:34 +00001004 return;
1005 }
1006
Duncan Sands83ec4b62008-06-06 12:08:01 +00001007 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001008 // If the parts cover more bits than the value has, promote the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001009 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001010 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohman6183f782007-07-05 20:12:34 +00001011 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001012 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
1013 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001014 Val = DAG.getNode(ExtendKind, ValueVT, Val);
1015 } else {
1016 assert(0 && "Unknown mismatch!");
1017 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00001018 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001019 // Different types of the same size.
1020 assert(NumParts == 1 && PartVT != ValueVT);
1021 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001022 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001023 // If the parts cover less bits than value has, truncate the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001024 if (PartVT.isInteger() && ValueVT.isInteger()) {
1025 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001026 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +00001027 } else {
1028 assert(0 && "Unknown mismatch!");
1029 }
1030 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001031
1032 // The value may have changed - recompute ValueVT.
1033 ValueVT = Val.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001034 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001035 "Failed to tile the value with PartVT!");
1036
1037 if (NumParts == 1) {
1038 assert(PartVT == ValueVT && "Type conversion failed!");
1039 Parts[0] = Val;
1040 return;
1041 }
1042
1043 // Expand the value into multiple parts.
1044 if (NumParts & (NumParts - 1)) {
1045 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001046 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001047 "Do not know what to expand to!");
1048 unsigned RoundParts = 1 << Log2_32(NumParts);
1049 unsigned RoundBits = RoundParts * PartBits;
1050 unsigned OddParts = NumParts - RoundParts;
Dan Gohman475871a2008-07-27 21:46:04 +00001051 SDValue OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
Duncan Sands014e04a2008-02-12 20:46:31 +00001052 DAG.getConstant(RoundBits,
1053 TLI.getShiftAmountTy()));
1054 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1055 if (TLI.isBigEndian())
1056 // The odd parts were reversed by getCopyToParts - unreverse them.
1057 std::reverse(Parts + RoundParts, Parts + NumParts);
1058 NumParts = RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001059 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001060 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1061 }
1062
1063 // The number of parts is a power of 2. Repeatedly bisect the value using
1064 // EXTRACT_ELEMENT.
Duncan Sands25eb0432008-03-12 20:30:08 +00001065 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001066 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sands25eb0432008-03-12 20:30:08 +00001067 Val);
Duncan Sands014e04a2008-02-12 20:46:31 +00001068 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1069 for (unsigned i = 0; i < NumParts; i += StepSize) {
1070 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001071 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Dan Gohman475871a2008-07-27 21:46:04 +00001072 SDValue &Part0 = Parts[i];
1073 SDValue &Part1 = Parts[i+StepSize/2];
Duncan Sands014e04a2008-02-12 20:46:31 +00001074
Duncan Sands25eb0432008-03-12 20:30:08 +00001075 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1076 DAG.getConstant(1, PtrVT));
1077 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1078 DAG.getConstant(0, PtrVT));
1079
1080 if (ThisBits == PartBits && ThisVT != PartVT) {
1081 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1082 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1083 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001084 }
1085 }
1086
1087 if (TLI.isBigEndian())
1088 std::reverse(Parts, Parts + NumParts);
1089
1090 return;
1091 }
1092
1093 // Vector ValueVT.
1094 if (NumParts == 1) {
1095 if (PartVT != ValueVT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001096 if (PartVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001097 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1098 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001099 assert(ValueVT.getVectorElementType() == PartVT &&
1100 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001101 "Only trivial vector-to-scalar conversions should get here!");
1102 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1103 DAG.getConstant(0, PtrVT));
1104 }
1105 }
1106
Dan Gohman6183f782007-07-05 20:12:34 +00001107 Parts[0] = Val;
1108 return;
1109 }
1110
1111 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001112 MVT IntermediateVT, RegisterVT;
Dan Gohman6183f782007-07-05 20:12:34 +00001113 unsigned NumIntermediates;
1114 unsigned NumRegs =
1115 DAG.getTargetLoweringInfo()
1116 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1117 RegisterVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001118 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohman6183f782007-07-05 20:12:34 +00001119
1120 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +00001121 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohman6183f782007-07-05 20:12:34 +00001122 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1123
1124 // Split the vector into intermediate operands.
Dan Gohman475871a2008-07-27 21:46:04 +00001125 SmallVector<SDValue, 8> Ops(NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +00001126 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001127 if (IntermediateVT.isVector())
Dan Gohman6183f782007-07-05 20:12:34 +00001128 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1129 IntermediateVT, Val,
1130 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohman25ac7e82007-08-10 14:59:38 +00001131 PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001132 else
1133 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1134 IntermediateVT, Val,
Dan Gohman25ac7e82007-08-10 14:59:38 +00001135 DAG.getConstant(i, PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001136
1137 // Split the intermediate operands into legal parts.
1138 if (NumParts == NumIntermediates) {
1139 // If the register was not expanded, promote or copy the value,
1140 // as appropriate.
1141 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001142 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001143 } else if (NumParts > 0) {
1144 // If the intermediate type was expanded, split each the value into
1145 // legal parts.
1146 assert(NumParts % NumIntermediates == 0 &&
1147 "Must expand into a divisible number of parts!");
1148 unsigned Factor = NumParts / NumIntermediates;
1149 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001150 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001151 }
1152}
1153
1154
Dan Gohman475871a2008-07-27 21:46:04 +00001155SDValue SelectionDAGLowering::getValue(const Value *V) {
1156 SDValue &N = NodeMap[V];
Chris Lattner199862b2006-03-16 19:57:50 +00001157 if (N.Val) return N;
1158
Chris Lattner199862b2006-03-16 19:57:50 +00001159 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001160 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001161
1162 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1163 return N = DAG.getConstant(CI->getValue(), VT);
1164
1165 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001166 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001167
1168 if (isa<ConstantPointerNull>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001169 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001170
1171 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1172 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1173
Dan Gohman1d685a42008-06-07 02:02:36 +00001174 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1175 !V->getType()->isAggregateType())
Chris Lattner6833b062008-04-28 07:16:35 +00001176 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001177
1178 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1179 visit(CE->getOpcode(), *CE);
Dan Gohman475871a2008-07-27 21:46:04 +00001180 SDValue N1 = NodeMap[V];
Chris Lattnerb606dba2008-04-28 06:44:42 +00001181 assert(N1.Val && "visit didn't populate the ValueMap!");
1182 return N1;
1183 }
1184
Dan Gohman1d685a42008-06-07 02:02:36 +00001185 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001186 SmallVector<SDValue, 4> Constants;
Dan Gohman1d685a42008-06-07 02:02:36 +00001187 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1188 OI != OE; ++OI) {
1189 SDNode *Val = getValue(*OI).Val;
Duncan Sands4bdcb612008-07-02 17:40:58 +00001190 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00001191 Constants.push_back(SDValue(Val, i));
Dan Gohman1d685a42008-06-07 02:02:36 +00001192 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001193 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001194 }
1195
Dan Gohman1f565bc2008-08-04 23:30:41 +00001196 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
Dan Gohman1d685a42008-06-07 02:02:36 +00001197 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
Dan Gohman1f565bc2008-08-04 23:30:41 +00001198 "Unknown struct or array constant!");
Dan Gohman1d685a42008-06-07 02:02:36 +00001199
Dan Gohman1f565bc2008-08-04 23:30:41 +00001200 SmallVector<MVT, 4> ValueVTs;
1201 ComputeValueVTs(TLI, C->getType(), ValueVTs);
1202 unsigned NumElts = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001203 if (NumElts == 0)
Dan Gohman475871a2008-07-27 21:46:04 +00001204 return SDValue(); // empty struct
1205 SmallVector<SDValue, 4> Constants(NumElts);
Dan Gohman1f565bc2008-08-04 23:30:41 +00001206 for (unsigned i = 0; i != NumElts; ++i) {
1207 MVT EltVT = ValueVTs[i];
Dan Gohman1d685a42008-06-07 02:02:36 +00001208 if (isa<UndefValue>(C))
1209 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1210 else if (EltVT.isFloatingPoint())
1211 Constants[i] = DAG.getConstantFP(0, EltVT);
1212 else
1213 Constants[i] = DAG.getConstant(0, EltVT);
1214 }
Dan Gohman1f565bc2008-08-04 23:30:41 +00001215 return DAG.getMergeValues(&Constants[0], NumElts);
Dan Gohman1d685a42008-06-07 02:02:36 +00001216 }
1217
Chris Lattner6833b062008-04-28 07:16:35 +00001218 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001219 unsigned NumElements = VecTy->getNumElements();
Chris Lattnerb606dba2008-04-28 06:44:42 +00001220
Chris Lattner6833b062008-04-28 07:16:35 +00001221 // Now that we know the number and type of the elements, get that number of
1222 // elements into the Ops array based on what kind of constant it is.
Dan Gohman475871a2008-07-27 21:46:04 +00001223 SmallVector<SDValue, 16> Ops;
Chris Lattnerb606dba2008-04-28 06:44:42 +00001224 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1225 for (unsigned i = 0; i != NumElements; ++i)
1226 Ops.push_back(getValue(CP->getOperand(i)));
1227 } else {
Chris Lattner6833b062008-04-28 07:16:35 +00001228 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1229 "Unknown vector constant!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001230 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner6833b062008-04-28 07:16:35 +00001231
Dan Gohman475871a2008-07-27 21:46:04 +00001232 SDValue Op;
Chris Lattner6833b062008-04-28 07:16:35 +00001233 if (isa<UndefValue>(C))
1234 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001235 else if (EltVT.isFloatingPoint())
Chris Lattner6833b062008-04-28 07:16:35 +00001236 Op = DAG.getConstantFP(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001237 else
Chris Lattner6833b062008-04-28 07:16:35 +00001238 Op = DAG.getConstant(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001239 Ops.assign(NumElements, Op);
1240 }
1241
1242 // Create a BUILD_VECTOR node.
1243 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner199862b2006-03-16 19:57:50 +00001244 }
1245
Chris Lattnerb606dba2008-04-28 06:44:42 +00001246 // If this is a static alloca, generate it as the frameindex instead of
1247 // computation.
Chris Lattner199862b2006-03-16 19:57:50 +00001248 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1249 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattnerb606dba2008-04-28 06:44:42 +00001250 FuncInfo.StaticAllocaMap.find(AI);
Chris Lattner199862b2006-03-16 19:57:50 +00001251 if (SI != FuncInfo.StaticAllocaMap.end())
1252 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1253 }
1254
Chris Lattner251db182007-02-25 18:40:32 +00001255 unsigned InReg = FuncInfo.ValueMap[V];
1256 assert(InReg && "Value not in map!");
Chris Lattner199862b2006-03-16 19:57:50 +00001257
Chris Lattner6833b062008-04-28 07:16:35 +00001258 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohman475871a2008-07-27 21:46:04 +00001259 SDValue Chain = DAG.getEntryNode();
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001260 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner199862b2006-03-16 19:57:50 +00001261}
1262
1263
Chris Lattner1c08c712005-01-07 07:47:53 +00001264void SelectionDAGLowering::visitRet(ReturnInst &I) {
1265 if (I.getNumOperands() == 0) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001266 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001267 return;
1268 }
Chris Lattnerb606dba2008-04-28 06:44:42 +00001269
Dan Gohman475871a2008-07-27 21:46:04 +00001270 SmallVector<SDValue, 8> NewValues;
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001271 NewValues.push_back(getControlRoot());
1272 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001273 SDValue RetOp = getValue(I.getOperand(i));
Duncan Sandsb988bac2008-02-11 20:58:28 +00001274
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001275 SmallVector<MVT, 4> ValueVTs;
1276 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1277 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1278 MVT VT = ValueVTs[j];
Duncan Sandsb988bac2008-02-11 20:58:28 +00001279
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001280 // FIXME: C calling convention requires the return type to be promoted to
1281 // at least 32-bit. But this is not necessary for non-C calling conventions.
1282 if (VT.isInteger()) {
1283 MVT MinVT = TLI.getRegisterType(MVT::i32);
1284 if (VT.bitsLT(MinVT))
1285 VT = MinVT;
1286 }
Duncan Sandsb988bac2008-02-11 20:58:28 +00001287
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001288 unsigned NumParts = TLI.getNumRegisters(VT);
1289 MVT PartVT = TLI.getRegisterType(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00001290 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001291 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1292
1293 const Function *F = I.getParent()->getParent();
1294 if (F->paramHasAttr(0, ParamAttr::SExt))
1295 ExtendKind = ISD::SIGN_EXTEND;
1296 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1297 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00001298
Dan Gohman475871a2008-07-27 21:46:04 +00001299 getCopyToParts(DAG, SDValue(RetOp.Val, RetOp.ResNo + j),
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001300 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00001301
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001302 for (unsigned i = 0; i < NumParts; ++i) {
1303 NewValues.push_back(Parts[i]);
1304 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1305 }
Nate Begemanee625572006-01-27 21:09:22 +00001306 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001307 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001308 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1309 &NewValues[0], NewValues.size()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001310}
1311
Chris Lattner571e4342006-10-27 21:36:01 +00001312/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1313/// the current basic block, add it to ValueMap now so that we'll get a
1314/// CopyTo/FromReg.
1315void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1316 // No need to export constants.
1317 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1318
1319 // Already exported?
1320 if (FuncInfo.isExportedInst(V)) return;
1321
1322 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001323 CopyValueToVirtualRegister(V, Reg);
Chris Lattner571e4342006-10-27 21:36:01 +00001324}
1325
Chris Lattner8c494ab2006-10-27 23:50:33 +00001326bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1327 const BasicBlock *FromBB) {
1328 // The operands of the setcc have to be in this block. We don't know
1329 // how to export them from some other block.
1330 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1331 // Can export from current BB.
1332 if (VI->getParent() == FromBB)
1333 return true;
1334
1335 // Is already exported, noop.
1336 return FuncInfo.isExportedInst(V);
1337 }
1338
1339 // If this is an argument, we can export it if the BB is the entry block or
1340 // if it is already exported.
1341 if (isa<Argument>(V)) {
1342 if (FromBB == &FromBB->getParent()->getEntryBlock())
1343 return true;
1344
1345 // Otherwise, can only export this if it is already exported.
1346 return FuncInfo.isExportedInst(V);
1347 }
1348
1349 // Otherwise, constants can always be exported.
1350 return true;
1351}
1352
Chris Lattner6a586c82006-10-29 21:01:20 +00001353static bool InBlock(const Value *V, const BasicBlock *BB) {
1354 if (const Instruction *I = dyn_cast<Instruction>(V))
1355 return I->getParent() == BB;
1356 return true;
1357}
1358
Chris Lattner571e4342006-10-27 21:36:01 +00001359/// FindMergedConditions - If Cond is an expression like
1360void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1361 MachineBasicBlock *TBB,
1362 MachineBasicBlock *FBB,
1363 MachineBasicBlock *CurBB,
1364 unsigned Opc) {
Chris Lattner571e4342006-10-27 21:36:01 +00001365 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001366 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattner571e4342006-10-27 21:36:01 +00001367
Reid Spencere4d87aa2006-12-23 06:05:41 +00001368 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1369 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattner6a586c82006-10-29 21:01:20 +00001370 BOp->getParent() != CurBB->getBasicBlock() ||
1371 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1372 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattner571e4342006-10-27 21:36:01 +00001373 const BasicBlock *BB = CurBB->getBasicBlock();
1374
Reid Spencere4d87aa2006-12-23 06:05:41 +00001375 // If the leaf of the tree is a comparison, merge the condition into
1376 // the caseblock.
1377 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1378 // The operands of the cmp have to be in this block. We don't know
Chris Lattner5a145f02006-10-29 18:23:37 +00001379 // how to export them from some other block. If this is the first block
1380 // of the sequence, no exporting is needed.
1381 (CurBB == CurMBB ||
1382 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1383 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001384 BOp = cast<Instruction>(Cond);
1385 ISD::CondCode Condition;
1386 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1387 switch (IC->getPredicate()) {
1388 default: assert(0 && "Unknown icmp predicate opcode!");
1389 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1390 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1391 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1392 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1393 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1394 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1395 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1396 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1397 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1398 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1399 }
1400 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1401 ISD::CondCode FPC, FOC;
1402 switch (FC->getPredicate()) {
1403 default: assert(0 && "Unknown fcmp predicate opcode!");
1404 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1405 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1406 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1407 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1408 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1409 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1410 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner6bf30ab2008-05-01 07:26:11 +00001411 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1412 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001413 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1414 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1415 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1416 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1417 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1418 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1419 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1420 }
1421 if (FiniteOnlyFPMath())
1422 Condition = FOC;
1423 else
1424 Condition = FPC;
1425 } else {
Chris Lattner0da331f2007-02-04 01:31:47 +00001426 Condition = ISD::SETEQ; // silence warning.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001427 assert(0 && "Unknown compare instruction");
Chris Lattner571e4342006-10-27 21:36:01 +00001428 }
1429
Chris Lattner571e4342006-10-27 21:36:01 +00001430 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001431 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001432 SwitchCases.push_back(CB);
1433 return;
1434 }
1435
1436 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001437 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001438 NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001439 SwitchCases.push_back(CB);
Chris Lattner571e4342006-10-27 21:36:01 +00001440 return;
1441 }
1442
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001443
1444 // Create TmpBB after CurBB.
Chris Lattner571e4342006-10-27 21:36:01 +00001445 MachineFunction::iterator BBI = CurBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +00001446 MachineFunction &MF = DAG.getMachineFunction();
1447 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1448 CurBB->getParent()->insert(++BBI, TmpBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001449
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001450 if (Opc == Instruction::Or) {
1451 // Codegen X | Y as:
1452 // jmp_if_X TBB
1453 // jmp TmpBB
1454 // TmpBB:
1455 // jmp_if_Y TBB
1456 // jmp FBB
1457 //
Chris Lattner571e4342006-10-27 21:36:01 +00001458
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001459 // Emit the LHS condition.
1460 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1461
1462 // Emit the RHS condition into TmpBB.
1463 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1464 } else {
1465 assert(Opc == Instruction::And && "Unknown merge op!");
1466 // Codegen X & Y as:
1467 // jmp_if_X TmpBB
1468 // jmp FBB
1469 // TmpBB:
1470 // jmp_if_Y TBB
1471 // jmp FBB
1472 //
1473 // This requires creation of TmpBB after CurBB.
1474
1475 // Emit the LHS condition.
1476 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1477
1478 // Emit the RHS condition into TmpBB.
1479 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1480 }
Chris Lattner571e4342006-10-27 21:36:01 +00001481}
1482
Chris Lattnerdf19f272006-10-31 22:37:42 +00001483/// If the set of cases should be emitted as a series of branches, return true.
1484/// If we should emit this as a bunch of and/or'd together conditions, return
1485/// false.
1486static bool
1487ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1488 if (Cases.size() != 2) return true;
1489
Chris Lattner0ccb5002006-10-31 23:06:00 +00001490 // If this is two comparisons of the same values or'd or and'd together, they
1491 // will get folded into a single comparison, so don't emit two blocks.
1492 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1493 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1494 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1495 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1496 return false;
1497 }
1498
Chris Lattnerdf19f272006-10-31 22:37:42 +00001499 return true;
1500}
1501
Chris Lattner1c08c712005-01-07 07:47:53 +00001502void SelectionDAGLowering::visitBr(BranchInst &I) {
1503 // Update machine-CFG edges.
1504 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner1c08c712005-01-07 07:47:53 +00001505
1506 // Figure out which block is immediately after the current one.
1507 MachineBasicBlock *NextBlock = 0;
1508 MachineFunction::iterator BBI = CurMBB;
1509 if (++BBI != CurMBB->getParent()->end())
1510 NextBlock = BBI;
1511
1512 if (I.isUnconditional()) {
Owen Anderson2d389e82008-06-07 00:00:23 +00001513 // Update machine-CFG edges.
1514 CurMBB->addSuccessor(Succ0MBB);
1515
Chris Lattner1c08c712005-01-07 07:47:53 +00001516 // If this is not a fall-through branch, emit the branch.
1517 if (Succ0MBB != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001518 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001519 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner57ab6592006-10-24 17:57:59 +00001520 return;
1521 }
1522
1523 // If this condition is one of the special cases we handle, do special stuff
1524 // now.
1525 Value *CondVal = I.getCondition();
Chris Lattner57ab6592006-10-24 17:57:59 +00001526 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattner571e4342006-10-27 21:36:01 +00001527
1528 // If this is a series of conditions that are or'd or and'd together, emit
1529 // this as a sequence of branches instead of setcc's with and/or operations.
1530 // For example, instead of something like:
1531 // cmp A, B
1532 // C = seteq
1533 // cmp D, E
1534 // F = setle
1535 // or C, F
1536 // jnz foo
1537 // Emit:
1538 // cmp A, B
1539 // je foo
1540 // cmp D, E
1541 // jle foo
1542 //
1543 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1544 if (BOp->hasOneUse() &&
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001545 (BOp->getOpcode() == Instruction::And ||
Chris Lattner571e4342006-10-27 21:36:01 +00001546 BOp->getOpcode() == Instruction::Or)) {
1547 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattner0ccb5002006-10-31 23:06:00 +00001548 // If the compares in later blocks need to use values not currently
1549 // exported from this block, export them now. This block should always
1550 // be the first entry.
1551 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1552
Chris Lattnerdf19f272006-10-31 22:37:42 +00001553 // Allow some cases to be rejected.
1554 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattnerdf19f272006-10-31 22:37:42 +00001555 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1556 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1557 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1558 }
1559
1560 // Emit the branch for this block.
1561 visitSwitchCase(SwitchCases[0]);
1562 SwitchCases.erase(SwitchCases.begin());
1563 return;
Chris Lattner5a145f02006-10-29 18:23:37 +00001564 }
1565
Chris Lattner0ccb5002006-10-31 23:06:00 +00001566 // Okay, we decided not to do this, remove any inserted MBB's and clear
1567 // SwitchCases.
1568 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0e5f1302008-07-07 23:02:41 +00001569 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Chris Lattner0ccb5002006-10-31 23:06:00 +00001570
Chris Lattnerdf19f272006-10-31 22:37:42 +00001571 SwitchCases.clear();
Chris Lattner571e4342006-10-27 21:36:01 +00001572 }
1573 }
Chris Lattner24525952006-10-24 18:07:37 +00001574
1575 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001576 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001577 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner24525952006-10-24 18:07:37 +00001578 // Use visitSwitchCase to actually insert the fast branch sequence for this
1579 // cond branch.
1580 visitSwitchCase(CB);
Chris Lattner1c08c712005-01-07 07:47:53 +00001581}
1582
Nate Begemanf15485a2006-03-27 01:32:24 +00001583/// visitSwitchCase - Emits the necessary code to represent a single node in
1584/// the binary search tree resulting from lowering a switch instruction.
1585void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Dan Gohman475871a2008-07-27 21:46:04 +00001586 SDValue Cond;
1587 SDValue CondLHS = getValue(CB.CmpLHS);
Chris Lattner57ab6592006-10-24 17:57:59 +00001588
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001589 // Build the setcc now.
1590 if (CB.CmpMHS == NULL) {
1591 // Fold "(X == true)" to X and "(X == false)" to !X to
1592 // handle common cases produced by branch lowering.
1593 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1594 Cond = CondLHS;
1595 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00001596 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001597 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1598 } else
1599 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1600 } else {
1601 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001602
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001603 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1604 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1605
Dan Gohman475871a2008-07-27 21:46:04 +00001606 SDValue CmpOp = getValue(CB.CmpMHS);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001607 MVT VT = CmpOp.getValueType();
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001608
1609 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1610 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1611 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001612 SDValue SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001613 Cond = DAG.getSetCC(MVT::i1, SUB,
1614 DAG.getConstant(High-Low, VT), ISD::SETULE);
1615 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001616 }
1617
Owen Anderson2d389e82008-06-07 00:00:23 +00001618 // Update successor info
1619 CurMBB->addSuccessor(CB.TrueBB);
1620 CurMBB->addSuccessor(CB.FalseBB);
1621
Nate Begemanf15485a2006-03-27 01:32:24 +00001622 // Set NextBlock to be the MBB immediately after the current one, if any.
1623 // This is used to avoid emitting unnecessary branches to the next block.
1624 MachineBasicBlock *NextBlock = 0;
1625 MachineFunction::iterator BBI = CurMBB;
1626 if (++BBI != CurMBB->getParent()->end())
1627 NextBlock = BBI;
1628
1629 // If the lhs block is the next block, invert the condition so that we can
1630 // fall through to the lhs instead of the rhs block.
Chris Lattner57ab6592006-10-24 17:57:59 +00001631 if (CB.TrueBB == NextBlock) {
1632 std::swap(CB.TrueBB, CB.FalseBB);
Dan Gohman475871a2008-07-27 21:46:04 +00001633 SDValue True = DAG.getConstant(1, Cond.getValueType());
Nate Begemanf15485a2006-03-27 01:32:24 +00001634 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1635 }
Dan Gohman475871a2008-07-27 21:46:04 +00001636 SDValue BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001637 DAG.getBasicBlock(CB.TrueBB));
Owen Andersonbd3ba462008-08-04 23:54:43 +00001638
1639 // If the branch was constant folded, fix up the CFG.
1640 if (BrCond.getOpcode() == ISD::BR) {
1641 if (!DisableCorrectBranchFolding)
1642 CurMBB->removeSuccessor(CB.FalseBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00001643 DAG.setRoot(BrCond);
Owen Andersonbd3ba462008-08-04 23:54:43 +00001644 } else {
1645 // Otherwise, go ahead and insert the false branch.
1646 if (BrCond == getControlRoot())
1647 if (!DisableCorrectBranchFolding)
1648 CurMBB->removeSuccessor(CB.TrueBB);
1649
1650 if (CB.FalseBB == NextBlock)
1651 DAG.setRoot(BrCond);
1652 else
1653 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
1654 DAG.getBasicBlock(CB.FalseBB)));
1655 }
Nate Begemanf15485a2006-03-27 01:32:24 +00001656}
1657
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001658/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman37efe672006-04-22 18:53:45 +00001659void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman37efe672006-04-22 18:53:45 +00001660 // Emit the code for the jump table
Scott Michelf147a8d2007-04-24 01:24:20 +00001661 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001662 MVT PTy = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001663 SDValue Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
1664 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001665 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1666 Table, Index));
1667 return;
Nate Begeman37efe672006-04-22 18:53:45 +00001668}
1669
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001670/// visitJumpTableHeader - This function emits necessary code to produce index
1671/// in the JumpTable from switch case.
1672void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1673 SelectionDAGISel::JumpTableHeader &JTH) {
1674 // Subtract the lowest switch case value from the value being switched on
1675 // and conditional branch to default mbb if the result is greater than the
1676 // difference between smallest and largest cases.
Dan Gohman475871a2008-07-27 21:46:04 +00001677 SDValue SwitchOp = getValue(JTH.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001678 MVT VT = SwitchOp.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001679 SDValue SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001680 DAG.getConstant(JTH.First, VT));
1681
1682 // The SDNode we just created, which holds the value being switched on
1683 // minus the the smallest case value, needs to be copied to a virtual
1684 // register so it can be used as an index into the jump table in a
1685 // subsequent basic block. This value may be smaller or larger than the
1686 // target's pointer type, and therefore require extension or truncating.
Duncan Sands8e4eb092008-06-08 20:54:56 +00001687 if (VT.bitsGT(TLI.getPointerTy()))
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001688 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1689 else
1690 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1691
1692 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman475871a2008-07-27 21:46:04 +00001693 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001694 JT.Reg = JumpTableReg;
1695
1696 // Emit the range check for the jump table, and branch to the default
1697 // block for the switch statement if the value being switched on exceeds
1698 // the largest case in the switch.
Dan Gohman475871a2008-07-27 21:46:04 +00001699 SDValue CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001700 DAG.getConstant(JTH.Last-JTH.First,VT),
1701 ISD::SETUGT);
1702
1703 // Set NextBlock to be the MBB immediately after the current one, if any.
1704 // This is used to avoid emitting unnecessary branches to the next block.
1705 MachineBasicBlock *NextBlock = 0;
1706 MachineFunction::iterator BBI = CurMBB;
1707 if (++BBI != CurMBB->getParent()->end())
1708 NextBlock = BBI;
1709
Dan Gohman475871a2008-07-27 21:46:04 +00001710 SDValue BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001711 DAG.getBasicBlock(JT.Default));
1712
1713 if (JT.MBB == NextBlock)
1714 DAG.setRoot(BrCond);
1715 else
1716 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001717 DAG.getBasicBlock(JT.MBB)));
1718
1719 return;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001720}
1721
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001722/// visitBitTestHeader - This function emits necessary code to produce value
1723/// suitable for "bit tests"
1724void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1725 // Subtract the minimum value
Dan Gohman475871a2008-07-27 21:46:04 +00001726 SDValue SwitchOp = getValue(B.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001727 MVT VT = SwitchOp.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001728 SDValue SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001729 DAG.getConstant(B.First, VT));
1730
1731 // Check range
Dan Gohman475871a2008-07-27 21:46:04 +00001732 SDValue RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001733 DAG.getConstant(B.Range, VT),
1734 ISD::SETUGT);
1735
Dan Gohman475871a2008-07-27 21:46:04 +00001736 SDValue ShiftOp;
Duncan Sands8e4eb092008-06-08 20:54:56 +00001737 if (VT.bitsGT(TLI.getShiftAmountTy()))
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001738 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1739 else
1740 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1741
1742 // Make desired shift
Dan Gohman475871a2008-07-27 21:46:04 +00001743 SDValue SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001744 DAG.getConstant(1, TLI.getPointerTy()),
1745 ShiftOp);
1746
1747 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman475871a2008-07-27 21:46:04 +00001748 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001749 B.Reg = SwitchReg;
1750
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001751 // Set NextBlock to be the MBB immediately after the current one, if any.
1752 // This is used to avoid emitting unnecessary branches to the next block.
1753 MachineBasicBlock *NextBlock = 0;
1754 MachineFunction::iterator BBI = CurMBB;
1755 if (++BBI != CurMBB->getParent()->end())
1756 NextBlock = BBI;
1757
1758 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson2d389e82008-06-07 00:00:23 +00001759
1760 CurMBB->addSuccessor(B.Default);
1761 CurMBB->addSuccessor(MBB);
1762
Dan Gohman475871a2008-07-27 21:46:04 +00001763 SDValue BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
Owen Anderson2d389e82008-06-07 00:00:23 +00001764 DAG.getBasicBlock(B.Default));
1765
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001766 if (MBB == NextBlock)
1767 DAG.setRoot(BrRange);
1768 else
1769 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1770 DAG.getBasicBlock(MBB)));
1771
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001772 return;
1773}
1774
1775/// visitBitTestCase - this function produces one "bit test"
1776void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1777 unsigned Reg,
1778 SelectionDAGISel::BitTestCase &B) {
1779 // Emit bit tests and jumps
Dan Gohman475871a2008-07-27 21:46:04 +00001780 SDValue SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
Chris Lattneread0d882008-06-17 06:09:18 +00001781 TLI.getPointerTy());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001782
Dan Gohman475871a2008-07-27 21:46:04 +00001783 SDValue AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
Chris Lattneread0d882008-06-17 06:09:18 +00001784 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dan Gohman475871a2008-07-27 21:46:04 +00001785 SDValue AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001786 DAG.getConstant(0, TLI.getPointerTy()),
1787 ISD::SETNE);
Owen Anderson2d389e82008-06-07 00:00:23 +00001788
1789 CurMBB->addSuccessor(B.TargetBB);
1790 CurMBB->addSuccessor(NextMBB);
1791
Dan Gohman475871a2008-07-27 21:46:04 +00001792 SDValue BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001793 AndCmp, DAG.getBasicBlock(B.TargetBB));
1794
1795 // Set NextBlock to be the MBB immediately after the current one, if any.
1796 // This is used to avoid emitting unnecessary branches to the next block.
1797 MachineBasicBlock *NextBlock = 0;
1798 MachineFunction::iterator BBI = CurMBB;
1799 if (++BBI != CurMBB->getParent()->end())
1800 NextBlock = BBI;
1801
1802 if (NextMBB == NextBlock)
1803 DAG.setRoot(BrAnd);
1804 else
1805 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1806 DAG.getBasicBlock(NextMBB)));
1807
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001808 return;
1809}
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001810
Jim Laskeyb180aa12007-02-21 22:53:45 +00001811void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1812 // Retrieve successors.
1813 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001814 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands9fac0b52007-06-06 10:05:18 +00001815
Duncan Sandsfd7b3262007-12-17 18:08:19 +00001816 if (isa<InlineAsm>(I.getCalledValue()))
1817 visitInlineAsm(&I);
1818 else
Duncan Sands6f74b482007-12-19 09:48:52 +00001819 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Duncan Sands9fac0b52007-06-06 10:05:18 +00001820
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001821 // If the value of the invoke is used outside of its defining block, make it
1822 // available as a virtual register.
1823 if (!I.use_empty()) {
1824 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1825 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001826 CopyValueToVirtualRegister(&I, VMI->second);
Jim Laskey183f47f2007-02-25 21:43:59 +00001827 }
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001828
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001829 // Update successor info
1830 CurMBB->addSuccessor(Return);
1831 CurMBB->addSuccessor(LandingPad);
Owen Anderson2d389e82008-06-07 00:00:23 +00001832
1833 // Drop into normal successor.
1834 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1835 DAG.getBasicBlock(Return)));
Jim Laskeyb180aa12007-02-21 22:53:45 +00001836}
1837
1838void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1839}
1840
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001841/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001842/// small case ranges).
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001843bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001844 CaseRecVector& WorkList,
1845 Value* SV,
1846 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001847 Case& BackCase = *(CR.Range.second-1);
1848
1849 // Size is the number of Cases represented by this range.
1850 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001851 if (Size > 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001852 return false;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001853
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001854 // Get the MachineFunction which holds the current MBB. This is used when
1855 // inserting any additional MBBs necessary to represent the switch.
1856 MachineFunction *CurMF = CurMBB->getParent();
1857
1858 // Figure out which block is immediately after the current one.
1859 MachineBasicBlock *NextBlock = 0;
1860 MachineFunction::iterator BBI = CR.CaseBB;
1861
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001862 if (++BBI != CurMBB->getParent()->end())
1863 NextBlock = BBI;
1864
1865 // TODO: If any two of the cases has the same destination, and if one value
1866 // is the same as the other, but has one bit unset that the other has set,
1867 // use bit manipulation to do two compares at once. For example:
1868 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1869
1870 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001871 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001872 // The last case block won't fall through into 'NextBlock' if we emit the
1873 // branches in this order. See if rearranging a case value would help.
1874 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001875 if (I->BB == NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001876 std::swap(*I, BackCase);
1877 break;
1878 }
1879 }
1880 }
1881
1882 // Create a CaseBlock record representing a conditional branch to
1883 // the Case's target mbb if the value being switched on SV is equal
1884 // to C.
1885 MachineBasicBlock *CurBlock = CR.CaseBB;
1886 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1887 MachineBasicBlock *FallThrough;
1888 if (I != E-1) {
Dan Gohman0e5f1302008-07-07 23:02:41 +00001889 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1890 CurMF->insert(BBI, FallThrough);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001891 } else {
1892 // If the last case doesn't match, go to the default block.
1893 FallThrough = Default;
1894 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001895
1896 Value *RHS, *LHS, *MHS;
1897 ISD::CondCode CC;
1898 if (I->High == I->Low) {
1899 // This is just small small case range :) containing exactly 1 case
1900 CC = ISD::SETEQ;
1901 LHS = SV; RHS = I->High; MHS = NULL;
1902 } else {
1903 CC = ISD::SETLE;
1904 LHS = I->Low; MHS = SV; RHS = I->High;
1905 }
1906 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1907 I->BB, FallThrough, CurBlock);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001908
1909 // If emitting the first comparison, just call visitSwitchCase to emit the
1910 // code into the current block. Otherwise, push the CaseBlock onto the
1911 // vector to be later processed by SDISel, and insert the node's MBB
1912 // before the next MBB.
1913 if (CurBlock == CurMBB)
1914 visitSwitchCase(CB);
1915 else
1916 SwitchCases.push_back(CB);
1917
1918 CurBlock = FallThrough;
1919 }
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001920
1921 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001922}
1923
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001924static inline bool areJTsAllowed(const TargetLowering &TLI) {
Dale Johannesen72324642008-07-31 18:13:12 +00001925 return !DisableJumpTables &&
1926 (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1927 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001928}
1929
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001930/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001931bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001932 CaseRecVector& WorkList,
1933 Value* SV,
1934 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001935 Case& FrontCase = *CR.Range.first;
1936 Case& BackCase = *(CR.Range.second-1);
1937
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001938 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1939 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1940
1941 uint64_t TSize = 0;
1942 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1943 I!=E; ++I)
1944 TSize += I->size();
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001945
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001946 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001947 return false;
1948
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001949 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1950 if (Density < 0.4)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001951 return false;
1952
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001953 DOUT << "Lowering jump table\n"
1954 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001955 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001956
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001957 // Get the MachineFunction which holds the current MBB. This is used when
1958 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001959 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001960
1961 // Figure out which block is immediately after the current one.
1962 MachineBasicBlock *NextBlock = 0;
1963 MachineFunction::iterator BBI = CR.CaseBB;
1964
1965 if (++BBI != CurMBB->getParent()->end())
1966 NextBlock = BBI;
1967
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001968 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1969
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001970 // Create a new basic block to hold the code for loading the address
1971 // of the jump table, and jumping to it. Update successor information;
1972 // we will either branch to the default case for the switch, or the jump
1973 // table.
Dan Gohman0e5f1302008-07-07 23:02:41 +00001974 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1975 CurMF->insert(BBI, JumpTableBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001976 CR.CaseBB->addSuccessor(Default);
1977 CR.CaseBB->addSuccessor(JumpTableBB);
1978
1979 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001980 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001981 // a case statement, push the case's BB onto the vector, otherwise, push
1982 // the default BB.
1983 std::vector<MachineBasicBlock*> DestBBs;
1984 int64_t TEI = First;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001985 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1986 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1987 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1988
1989 if ((Low <= TEI) && (TEI <= High)) {
1990 DestBBs.push_back(I->BB);
1991 if (TEI==High)
1992 ++I;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001993 } else {
1994 DestBBs.push_back(Default);
1995 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001996 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001997
1998 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001999 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002000 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
2001 E = DestBBs.end(); I != E; ++I) {
2002 if (!SuccsHandled[(*I)->getNumber()]) {
2003 SuccsHandled[(*I)->getNumber()] = true;
2004 JumpTableBB->addSuccessor(*I);
2005 }
2006 }
2007
2008 // Create a jump table index for this jump table, or return an existing
2009 // one.
2010 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
2011
2012 // Set the jump table information so that we can codegen it as a second
2013 // MachineBasicBlock
Scott Michelf147a8d2007-04-24 01:24:20 +00002014 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002015 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
2016 (CR.CaseBB == CurMBB));
2017 if (CR.CaseBB == CurMBB)
2018 visitJumpTableHeader(JT, JTH);
2019
2020 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002021
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002022 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002023}
2024
2025/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2026/// 2 subtrees.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002027bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002028 CaseRecVector& WorkList,
2029 Value* SV,
2030 MachineBasicBlock* Default) {
2031 // Get the MachineFunction which holds the current MBB. This is used when
2032 // inserting any additional MBBs necessary to represent the switch.
2033 MachineFunction *CurMF = CurMBB->getParent();
2034
2035 // Figure out which block is immediately after the current one.
2036 MachineBasicBlock *NextBlock = 0;
2037 MachineFunction::iterator BBI = CR.CaseBB;
2038
2039 if (++BBI != CurMBB->getParent()->end())
2040 NextBlock = BBI;
2041
2042 Case& FrontCase = *CR.Range.first;
2043 Case& BackCase = *(CR.Range.second-1);
2044 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2045
2046 // Size is the number of Cases represented by this range.
2047 unsigned Size = CR.Range.second - CR.Range.first;
2048
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002049 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2050 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002051 double FMetric = 0;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002052 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002053
2054 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2055 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002056 uint64_t TSize = 0;
2057 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2058 I!=E; ++I)
2059 TSize += I->size();
2060
2061 uint64_t LSize = FrontCase.size();
2062 uint64_t RSize = TSize-LSize;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002063 DOUT << "Selecting best pivot: \n"
2064 << "First: " << First << ", Last: " << Last <<"\n"
2065 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002066 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002067 J!=E; ++I, ++J) {
2068 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2069 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002070 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002071 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2072 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikov54e2b142007-04-09 21:57:03 +00002073 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002074 // Should always split in some non-trivial place
2075 DOUT <<"=>Step\n"
2076 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2077 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2078 << "Metric: " << Metric << "\n";
2079 if (FMetric < Metric) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002080 Pivot = J;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002081 FMetric = Metric;
2082 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002083 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002084
2085 LSize += J->size();
2086 RSize -= J->size();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002087 }
Anton Korobeynikov7294b582007-05-09 20:07:08 +00002088 if (areJTsAllowed(TLI)) {
2089 // If our case is dense we *really* should handle it earlier!
2090 assert((FMetric > 0) && "Should handle dense range earlier!");
2091 } else {
2092 Pivot = CR.Range.first + Size/2;
2093 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002094
2095 CaseRange LHSR(CR.Range.first, Pivot);
2096 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002097 Constant *C = Pivot->Low;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002098 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2099
2100 // We know that we branch to the LHS if the Value being switched on is
2101 // less than the Pivot value, C. We use this to optimize our binary
2102 // tree a bit, by recognizing that if SV is greater than or equal to the
2103 // LHS's Case Value, and that Case Value is exactly one less than the
2104 // Pivot's Value, then we can branch directly to the LHS's Target,
2105 // rather than creating a leaf node for it.
2106 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002107 LHSR.first->High == CR.GE &&
2108 cast<ConstantInt>(C)->getSExtValue() ==
2109 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2110 TrueBB = LHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002111 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002112 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2113 CurMF->insert(BBI, TrueBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002114 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2115 }
2116
2117 // Similar to the optimization above, if the Value being switched on is
2118 // known to be less than the Constant CR.LT, and the current Case Value
2119 // is CR.LT - 1, then we can branch directly to the target block for
2120 // the current Case Value, rather than emitting a RHS leaf node for it.
2121 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002122 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2123 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2124 FalseBB = RHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002125 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002126 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2127 CurMF->insert(BBI, FalseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002128 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2129 }
2130
2131 // Create a CaseBlock record representing a conditional branch to
2132 // the LHS node if the value being switched on SV is less than C.
2133 // Otherwise, branch to LHS.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002134 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2135 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002136
2137 if (CR.CaseBB == CurMBB)
2138 visitSwitchCase(CB);
2139 else
2140 SwitchCases.push_back(CB);
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002141
2142 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002143}
2144
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002145/// handleBitTestsSwitchCase - if current case range has few destination and
2146/// range span less, than machine word bitwidth, encode case range into series
2147/// of masks and emit bit tests with these masks.
2148bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2149 CaseRecVector& WorkList,
2150 Value* SV,
Chris Lattner3ff98172007-04-14 02:26:56 +00002151 MachineBasicBlock* Default){
Duncan Sands83ec4b62008-06-06 12:08:01 +00002152 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002153
2154 Case& FrontCase = *CR.Range.first;
2155 Case& BackCase = *(CR.Range.second-1);
2156
2157 // Get the MachineFunction which holds the current MBB. This is used when
2158 // inserting any additional MBBs necessary to represent the switch.
2159 MachineFunction *CurMF = CurMBB->getParent();
2160
2161 unsigned numCmps = 0;
2162 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2163 I!=E; ++I) {
2164 // Single case counts one, case range - two.
2165 if (I->Low == I->High)
2166 numCmps +=1;
2167 else
2168 numCmps +=2;
2169 }
2170
2171 // Count unique destinations
2172 SmallSet<MachineBasicBlock*, 4> Dests;
2173 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2174 Dests.insert(I->BB);
2175 if (Dests.size() > 3)
2176 // Don't bother the code below, if there are too much unique destinations
2177 return false;
2178 }
2179 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2180 << "Total number of comparisons: " << numCmps << "\n";
2181
2182 // Compute span of values.
2183 Constant* minValue = FrontCase.Low;
2184 Constant* maxValue = BackCase.High;
2185 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2186 cast<ConstantInt>(minValue)->getSExtValue();
2187 DOUT << "Compare range: " << range << "\n"
2188 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2189 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2190
Anton Korobeynikovab8fd402007-04-26 20:44:04 +00002191 if (range>=IntPtrBits ||
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002192 (!(Dests.size() == 1 && numCmps >= 3) &&
2193 !(Dests.size() == 2 && numCmps >= 5) &&
2194 !(Dests.size() >= 3 && numCmps >= 6)))
2195 return false;
2196
2197 DOUT << "Emitting bit tests\n";
2198 int64_t lowBound = 0;
2199
2200 // Optimize the case where all the case values fit in a
2201 // word without having to subtract minValue. In this case,
2202 // we can optimize away the subtraction.
2203 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002204 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002205 range = cast<ConstantInt>(maxValue)->getSExtValue();
2206 } else {
2207 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2208 }
2209
2210 CaseBitsVector CasesBits;
2211 unsigned i, count = 0;
2212
2213 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2214 MachineBasicBlock* Dest = I->BB;
2215 for (i = 0; i < count; ++i)
2216 if (Dest == CasesBits[i].BB)
2217 break;
2218
2219 if (i == count) {
2220 assert((count < 3) && "Too much destinations to test!");
2221 CasesBits.push_back(CaseBits(0, Dest, 0));
2222 count++;
2223 }
2224
2225 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2226 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2227
2228 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002229 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002230 CasesBits[i].Bits++;
2231 }
2232
2233 }
2234 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2235
2236 SelectionDAGISel::BitTestInfo BTC;
2237
2238 // Figure out which block is immediately after the current one.
2239 MachineFunction::iterator BBI = CR.CaseBB;
2240 ++BBI;
2241
2242 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2243
2244 DOUT << "Cases:\n";
2245 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2246 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2247 << ", BB: " << CasesBits[i].BB << "\n";
2248
Dan Gohman0e5f1302008-07-07 23:02:41 +00002249 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2250 CurMF->insert(BBI, CaseBB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002251 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2252 CaseBB,
2253 CasesBits[i].BB));
2254 }
2255
2256 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohenefc36622007-04-09 14:32:59 +00002257 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002258 CR.CaseBB, Default, BTC);
2259
2260 if (CR.CaseBB == CurMBB)
2261 visitBitTestHeader(BTB);
2262
2263 BitTestCases.push_back(BTB);
2264
2265 return true;
2266}
2267
2268
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002269/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002270unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2271 const SwitchInst& SI) {
2272 unsigned numCmps = 0;
2273
2274 // Start with "simple" cases
2275 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2276 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2277 Cases.push_back(Case(SI.getSuccessorValue(i),
2278 SI.getSuccessorValue(i),
2279 SMBB));
2280 }
Chris Lattnerb3d9cdb2007-11-27 06:14:32 +00002281 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002282
2283 // Merge case into clusters
2284 if (Cases.size()>=2)
David Greenea2a48852007-06-29 03:42:23 +00002285 // Must recompute end() each iteration because it may be
2286 // invalidated by erase if we hold on to it
Chris Lattner27a6c732007-11-24 07:07:01 +00002287 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002288 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2289 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2290 MachineBasicBlock* nextBB = J->BB;
2291 MachineBasicBlock* currentBB = I->BB;
2292
2293 // If the two neighboring cases go to the same destination, merge them
2294 // into a single case.
2295 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2296 I->High = J->High;
2297 J = Cases.erase(J);
2298 } else {
2299 I = J++;
2300 }
2301 }
2302
2303 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2304 if (I->Low != I->High)
2305 // A range counts double, since it requires two compares.
2306 ++numCmps;
2307 }
2308
2309 return numCmps;
2310}
2311
2312void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002313 // Figure out which block is immediately after the current one.
2314 MachineBasicBlock *NextBlock = 0;
2315 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002316
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002317 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002318
Nate Begemanf15485a2006-03-27 01:32:24 +00002319 // If there is only the default destination, branch to it if it is not the
2320 // next basic block. Otherwise, just fall through.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002321 if (SI.getNumOperands() == 2) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002322 // Update machine-CFG edges.
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002323
Nate Begemanf15485a2006-03-27 01:32:24 +00002324 // If this is not a fall-through branch, emit the branch.
Owen Anderson2d389e82008-06-07 00:00:23 +00002325 CurMBB->addSuccessor(Default);
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002326 if (Default != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002327 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002328 DAG.getBasicBlock(Default)));
Owen Anderson2d389e82008-06-07 00:00:23 +00002329
Nate Begemanf15485a2006-03-27 01:32:24 +00002330 return;
2331 }
2332
2333 // If there are any non-default case statements, create a vector of Cases
2334 // representing each one, and sort the vector so that we can efficiently
2335 // create a binary search tree from them.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002336 CaseVector Cases;
2337 unsigned numCmps = Clusterify(Cases, SI);
2338 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2339 << ". Total compares: " << numCmps << "\n";
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002340
Nate Begemanf15485a2006-03-27 01:32:24 +00002341 // Get the Value to be switched on and default basic blocks, which will be
2342 // inserted into CaseBlock records, representing basic blocks in the binary
2343 // search tree.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002344 Value *SV = SI.getOperand(0);
Nate Begeman37efe672006-04-22 18:53:45 +00002345
Nate Begemanf15485a2006-03-27 01:32:24 +00002346 // Push the initial CaseRec onto the worklist
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002347 CaseRecVector WorkList;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002348 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2349
2350 while (!WorkList.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002351 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002352 CaseRec CR = WorkList.back();
2353 WorkList.pop_back();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002354
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002355 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2356 continue;
2357
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002358 // If the range has few cases (two or less) emit a series of specific
2359 // tests.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002360 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2361 continue;
2362
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002363 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002364 // target supports indirect branches, then emit a jump table rather than
2365 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002366 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2367 continue;
2368
2369 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2370 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2371 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemanf15485a2006-03-27 01:32:24 +00002372 }
2373}
2374
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002375
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002376void SelectionDAGLowering::visitSub(User &I) {
2377 // -0.0 - X --> fneg
Reid Spencer24d6da52007-01-21 00:29:26 +00002378 const Type *Ty = I.getType();
Reid Spencer9d6565a2007-02-15 02:26:10 +00002379 if (isa<VectorType>(Ty)) {
Dan Gohman7f321562007-06-25 16:23:39 +00002380 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2381 const VectorType *DestTy = cast<VectorType>(I.getType());
2382 const Type *ElTy = DestTy->getElementType();
Evan Chengc45453f2007-06-29 21:44:35 +00002383 if (ElTy->isFloatingPoint()) {
2384 unsigned VL = DestTy->getNumElements();
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002385 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Evan Chengc45453f2007-06-29 21:44:35 +00002386 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2387 if (CV == CNZ) {
Dan Gohman475871a2008-07-27 21:46:04 +00002388 SDValue Op2 = getValue(I.getOperand(1));
Evan Chengc45453f2007-06-29 21:44:35 +00002389 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2390 return;
2391 }
Dan Gohman7f321562007-06-25 16:23:39 +00002392 }
2393 }
2394 }
2395 if (Ty->isFloatingPoint()) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002396 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002397 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohman475871a2008-07-27 21:46:04 +00002398 SDValue Op2 = getValue(I.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00002399 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2400 return;
2401 }
Dan Gohman7f321562007-06-25 16:23:39 +00002402 }
2403
2404 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002405}
2406
Dan Gohman7f321562007-06-25 16:23:39 +00002407void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Dan Gohman475871a2008-07-27 21:46:04 +00002408 SDValue Op1 = getValue(I.getOperand(0));
2409 SDValue Op2 = getValue(I.getOperand(1));
Reid Spencer24d6da52007-01-21 00:29:26 +00002410
2411 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer1628cec2006-10-26 06:15:43 +00002412}
2413
Nate Begemane21ea612005-11-18 07:42:56 +00002414void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
Dan Gohman475871a2008-07-27 21:46:04 +00002415 SDValue Op1 = getValue(I.getOperand(0));
2416 SDValue Op2 = getValue(I.getOperand(1));
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002417 if (!isa<VectorType>(I.getType())) {
2418 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
2419 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
2420 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2421 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
2422 }
Nate Begemane21ea612005-11-18 07:42:56 +00002423
Chris Lattner1c08c712005-01-07 07:47:53 +00002424 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2425}
2426
Reid Spencer45fb3f32006-11-20 01:22:35 +00002427void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002428 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2429 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2430 predicate = IC->getPredicate();
2431 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2432 predicate = ICmpInst::Predicate(IC->getPredicate());
Dan Gohman475871a2008-07-27 21:46:04 +00002433 SDValue Op1 = getValue(I.getOperand(0));
2434 SDValue Op2 = getValue(I.getOperand(1));
Reid Spencer45fb3f32006-11-20 01:22:35 +00002435 ISD::CondCode Opcode;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002436 switch (predicate) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002437 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2438 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2439 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2440 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2441 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2442 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2443 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2444 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2445 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2446 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2447 default:
2448 assert(!"Invalid ICmp predicate value");
2449 Opcode = ISD::SETEQ;
2450 break;
2451 }
2452 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2453}
2454
2455void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002456 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2457 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2458 predicate = FC->getPredicate();
2459 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2460 predicate = FCmpInst::Predicate(FC->getPredicate());
Dan Gohman475871a2008-07-27 21:46:04 +00002461 SDValue Op1 = getValue(I.getOperand(0));
2462 SDValue Op2 = getValue(I.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002463 ISD::CondCode Condition, FOC, FPC;
2464 switch (predicate) {
2465 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2466 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2467 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2468 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2469 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2470 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2471 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmancba3b442008-05-01 23:40:44 +00002472 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2473 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002474 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2475 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2476 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2477 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2478 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2479 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2480 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2481 default:
2482 assert(!"Invalid FCmp predicate value");
2483 FOC = FPC = ISD::SETFALSE;
2484 break;
2485 }
2486 if (FiniteOnlyFPMath())
2487 Condition = FOC;
2488 else
2489 Condition = FPC;
2490 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner1c08c712005-01-07 07:47:53 +00002491}
2492
Nate Begemanb43e9c12008-05-12 19:40:03 +00002493void SelectionDAGLowering::visitVICmp(User &I) {
2494 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2495 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2496 predicate = IC->getPredicate();
2497 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2498 predicate = ICmpInst::Predicate(IC->getPredicate());
Dan Gohman475871a2008-07-27 21:46:04 +00002499 SDValue Op1 = getValue(I.getOperand(0));
2500 SDValue Op2 = getValue(I.getOperand(1));
Nate Begemanb43e9c12008-05-12 19:40:03 +00002501 ISD::CondCode Opcode;
2502 switch (predicate) {
2503 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2504 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2505 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2506 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2507 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2508 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2509 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2510 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2511 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2512 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2513 default:
2514 assert(!"Invalid ICmp predicate value");
2515 Opcode = ISD::SETEQ;
2516 break;
2517 }
2518 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2519}
2520
2521void SelectionDAGLowering::visitVFCmp(User &I) {
2522 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2523 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2524 predicate = FC->getPredicate();
2525 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2526 predicate = FCmpInst::Predicate(FC->getPredicate());
Dan Gohman475871a2008-07-27 21:46:04 +00002527 SDValue Op1 = getValue(I.getOperand(0));
2528 SDValue Op2 = getValue(I.getOperand(1));
Nate Begemanb43e9c12008-05-12 19:40:03 +00002529 ISD::CondCode Condition, FOC, FPC;
2530 switch (predicate) {
2531 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2532 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2533 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2534 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2535 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2536 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2537 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2538 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2539 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2540 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2541 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2542 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2543 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2544 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2545 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2546 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2547 default:
2548 assert(!"Invalid VFCmp predicate value");
2549 FOC = FPC = ISD::SETFALSE;
2550 break;
2551 }
2552 if (FiniteOnlyFPMath())
2553 Condition = FOC;
2554 else
2555 Condition = FPC;
2556
Duncan Sands83ec4b62008-06-06 12:08:01 +00002557 MVT DestVT = TLI.getValueType(I.getType());
Nate Begemanb43e9c12008-05-12 19:40:03 +00002558
2559 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2560}
2561
Chris Lattner1c08c712005-01-07 07:47:53 +00002562void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002563 SDValue Cond = getValue(I.getOperand(0));
2564 SDValue TrueVal = getValue(I.getOperand(1));
2565 SDValue FalseVal = getValue(I.getOperand(2));
Dan Gohman7f321562007-06-25 16:23:39 +00002566 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2567 TrueVal, FalseVal));
Chris Lattner1c08c712005-01-07 07:47:53 +00002568}
2569
Reid Spencer3da59db2006-11-27 01:05:10 +00002570
2571void SelectionDAGLowering::visitTrunc(User &I) {
2572 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
Dan Gohman475871a2008-07-27 21:46:04 +00002573 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002574 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002575 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2576}
2577
2578void SelectionDAGLowering::visitZExt(User &I) {
2579 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2580 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
Dan Gohman475871a2008-07-27 21:46:04 +00002581 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002582 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002583 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2584}
2585
2586void SelectionDAGLowering::visitSExt(User &I) {
2587 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2588 // SExt also can't be a cast to bool for same reason. So, nothing much to do
Dan Gohman475871a2008-07-27 21:46:04 +00002589 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002590 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002591 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2592}
2593
2594void SelectionDAGLowering::visitFPTrunc(User &I) {
2595 // FPTrunc is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002596 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002597 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner0bd48932008-01-17 07:00:52 +00002598 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Reid Spencer3da59db2006-11-27 01:05:10 +00002599}
2600
2601void SelectionDAGLowering::visitFPExt(User &I){
2602 // FPTrunc is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002603 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002604 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002605 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2606}
2607
2608void SelectionDAGLowering::visitFPToUI(User &I) {
2609 // FPToUI is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002610 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002611 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002612 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2613}
2614
2615void SelectionDAGLowering::visitFPToSI(User &I) {
2616 // FPToSI is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002617 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002618 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002619 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2620}
2621
2622void SelectionDAGLowering::visitUIToFP(User &I) {
2623 // UIToFP is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002624 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002625 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002626 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2627}
2628
2629void SelectionDAGLowering::visitSIToFP(User &I){
2630 // UIToFP is never a no-op cast, no need to check
Dan Gohman475871a2008-07-27 21:46:04 +00002631 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002632 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002633 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2634}
2635
2636void SelectionDAGLowering::visitPtrToInt(User &I) {
2637 // What to do depends on the size of the integer and the size of the pointer.
2638 // We can either truncate, zero extend, or no-op, accordingly.
Dan Gohman475871a2008-07-27 21:46:04 +00002639 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002640 MVT SrcVT = N.getValueType();
2641 MVT DestVT = TLI.getValueType(I.getType());
Dan Gohman475871a2008-07-27 21:46:04 +00002642 SDValue Result;
Duncan Sands8e4eb092008-06-08 20:54:56 +00002643 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002644 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2645 else
2646 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2647 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2648 setValue(&I, Result);
2649}
Chris Lattner1c08c712005-01-07 07:47:53 +00002650
Reid Spencer3da59db2006-11-27 01:05:10 +00002651void SelectionDAGLowering::visitIntToPtr(User &I) {
2652 // What to do depends on the size of the integer and the size of the pointer.
2653 // We can either truncate, zero extend, or no-op, accordingly.
Dan Gohman475871a2008-07-27 21:46:04 +00002654 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002655 MVT SrcVT = N.getValueType();
2656 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sands8e4eb092008-06-08 20:54:56 +00002657 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002658 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2659 else
2660 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2661 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2662}
2663
2664void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002665 SDValue N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002666 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002667
2668 // BitCast assures us that source and destination are the same size so this
2669 // is either a BIT_CONVERT or a no-op.
2670 if (DestVT != N.getValueType())
2671 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2672 else
2673 setValue(&I, N); // noop cast.
Chris Lattner1c08c712005-01-07 07:47:53 +00002674}
2675
Chris Lattner2bbd8102006-03-29 00:11:43 +00002676void SelectionDAGLowering::visitInsertElement(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002677 SDValue InVec = getValue(I.getOperand(0));
2678 SDValue InVal = getValue(I.getOperand(1));
2679 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
Chris Lattnerc7029802006-03-18 01:44:44 +00002680 getValue(I.getOperand(2)));
2681
Dan Gohman7f321562007-06-25 16:23:39 +00002682 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2683 TLI.getValueType(I.getType()),
2684 InVec, InVal, InIdx));
Chris Lattnerc7029802006-03-18 01:44:44 +00002685}
2686
Chris Lattner2bbd8102006-03-29 00:11:43 +00002687void SelectionDAGLowering::visitExtractElement(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002688 SDValue InVec = getValue(I.getOperand(0));
2689 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
Chris Lattner384504c2006-03-21 20:44:12 +00002690 getValue(I.getOperand(1)));
Dan Gohman7f321562007-06-25 16:23:39 +00002691 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner384504c2006-03-21 20:44:12 +00002692 TLI.getValueType(I.getType()), InVec, InIdx));
2693}
Chris Lattnerc7029802006-03-18 01:44:44 +00002694
Chris Lattner3e104b12006-04-08 04:15:24 +00002695void SelectionDAGLowering::visitShuffleVector(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002696 SDValue V1 = getValue(I.getOperand(0));
2697 SDValue V2 = getValue(I.getOperand(1));
2698 SDValue Mask = getValue(I.getOperand(2));
Chris Lattner3e104b12006-04-08 04:15:24 +00002699
Dan Gohman7f321562007-06-25 16:23:39 +00002700 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2701 TLI.getValueType(I.getType()),
2702 V1, V2, Mask));
Chris Lattner3e104b12006-04-08 04:15:24 +00002703}
2704
Dan Gohman1d685a42008-06-07 02:02:36 +00002705void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2706 const Value *Op0 = I.getOperand(0);
2707 const Value *Op1 = I.getOperand(1);
2708 const Type *AggTy = I.getType();
2709 const Type *ValTy = Op1->getType();
2710 bool IntoUndef = isa<UndefValue>(Op0);
2711 bool FromUndef = isa<UndefValue>(Op1);
2712
2713 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2714 I.idx_begin(), I.idx_end());
2715
2716 SmallVector<MVT, 4> AggValueVTs;
2717 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2718 SmallVector<MVT, 4> ValValueVTs;
2719 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2720
2721 unsigned NumAggValues = AggValueVTs.size();
2722 unsigned NumValValues = ValValueVTs.size();
Dan Gohman475871a2008-07-27 21:46:04 +00002723 SmallVector<SDValue, 4> Values(NumAggValues);
Dan Gohman1d685a42008-06-07 02:02:36 +00002724
Dan Gohman475871a2008-07-27 21:46:04 +00002725 SDValue Agg = getValue(Op0);
2726 SDValue Val = getValue(Op1);
Dan Gohman1d685a42008-06-07 02:02:36 +00002727 unsigned i = 0;
2728 // Copy the beginning value(s) from the original aggregate.
2729 for (; i != LinearIndex; ++i)
2730 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman475871a2008-07-27 21:46:04 +00002731 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002732 // Copy values from the inserted value(s).
2733 for (; i != LinearIndex + NumValValues; ++i)
2734 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman475871a2008-07-27 21:46:04 +00002735 SDValue(Val.Val, Val.ResNo + i - LinearIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +00002736 // Copy remaining value(s) from the original aggregate.
2737 for (; i != NumAggValues; ++i)
2738 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
Dan Gohman475871a2008-07-27 21:46:04 +00002739 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002740
Duncan Sandsf9516202008-06-30 10:19:09 +00002741 setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2742 &Values[0], NumAggValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002743}
2744
Dan Gohman1d685a42008-06-07 02:02:36 +00002745void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2746 const Value *Op0 = I.getOperand(0);
2747 const Type *AggTy = Op0->getType();
2748 const Type *ValTy = I.getType();
2749 bool OutOfUndef = isa<UndefValue>(Op0);
2750
2751 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2752 I.idx_begin(), I.idx_end());
2753
2754 SmallVector<MVT, 4> ValValueVTs;
2755 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2756
2757 unsigned NumValValues = ValValueVTs.size();
Dan Gohman475871a2008-07-27 21:46:04 +00002758 SmallVector<SDValue, 4> Values(NumValValues);
Dan Gohman1d685a42008-06-07 02:02:36 +00002759
Dan Gohman475871a2008-07-27 21:46:04 +00002760 SDValue Agg = getValue(Op0);
Dan Gohman1d685a42008-06-07 02:02:36 +00002761 // Copy out the selected value(s).
2762 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2763 Values[i - LinearIndex] =
Dan Gohmandded0fd2008-06-20 00:54:19 +00002764 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
Dan Gohman475871a2008-07-27 21:46:04 +00002765 SDValue(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002766
Duncan Sandsf9516202008-06-30 10:19:09 +00002767 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2768 &Values[0], NumValValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002769}
2770
Chris Lattner3e104b12006-04-08 04:15:24 +00002771
Chris Lattner1c08c712005-01-07 07:47:53 +00002772void SelectionDAGLowering::visitGetElementPtr(User &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00002773 SDValue N = getValue(I.getOperand(0));
Chris Lattner1c08c712005-01-07 07:47:53 +00002774 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00002775
2776 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2777 OI != E; ++OI) {
2778 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002779 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002780 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner1c08c712005-01-07 07:47:53 +00002781 if (Field) {
2782 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +00002783 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner1c08c712005-01-07 07:47:53 +00002784 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner0bd48932008-01-17 07:00:52 +00002785 DAG.getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00002786 }
2787 Ty = StTy->getElementType(Field);
2788 } else {
2789 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00002790
Chris Lattner7c0104b2005-11-09 04:45:33 +00002791 // If this is a constant subscript, handle it quickly.
2792 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002793 if (CI->getZExtValue() == 0) continue;
Reid Spencer47857812006-12-31 05:55:36 +00002794 uint64_t Offs =
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002795 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00002796 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2797 DAG.getIntPtrConstant(Offs));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002798 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00002799 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00002800
2801 // N = N + Idx * ElementSize;
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002802 uint64_t ElementSize = TD->getABITypeSize(Ty);
Dan Gohman475871a2008-07-27 21:46:04 +00002803 SDValue IdxN = getValue(Idx);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002804
2805 // If the index is smaller or larger than intptr_t, truncate or extend
2806 // it.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002807 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +00002808 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002809 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Chris Lattner7c0104b2005-11-09 04:45:33 +00002810 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2811
2812 // If this is a multiply by a power of two, turn it into a shl
2813 // immediately. This is a very common case.
2814 if (isPowerOf2_64(ElementSize)) {
2815 unsigned Amt = Log2_64(ElementSize);
2816 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00002817 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002818 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2819 continue;
2820 }
2821
Dan Gohman475871a2008-07-27 21:46:04 +00002822 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002823 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2824 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00002825 }
2826 }
2827 setValue(&I, N);
2828}
2829
2830void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2831 // If this is a fixed sized alloca in the entry block of the function,
2832 // allocate it statically on the stack.
2833 if (FuncInfo.StaticAllocaMap.count(&I))
2834 return; // getValue will auto-populate this.
2835
2836 const Type *Ty = I.getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +00002837 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00002838 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00002839 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner58092e32007-01-20 22:35:55 +00002840 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00002841
Dan Gohman475871a2008-07-27 21:46:04 +00002842 SDValue AllocSize = getValue(I.getArraySize());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002843 MVT IntPtr = TLI.getPointerTy();
Duncan Sands8e4eb092008-06-08 20:54:56 +00002844 if (IntPtr.bitsLT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002845 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002846 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002847 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00002848
Chris Lattner68cd65e2005-01-22 23:04:37 +00002849 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002850 DAG.getIntPtrConstant(TySize));
Chris Lattner1c08c712005-01-07 07:47:53 +00002851
Evan Cheng45157792007-08-16 23:46:29 +00002852 // Handle alignment. If the requested alignment is less than or equal to
2853 // the stack alignment, ignore it. If the size is greater than or equal to
2854 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner1c08c712005-01-07 07:47:53 +00002855 unsigned StackAlign =
2856 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng45157792007-08-16 23:46:29 +00002857 if (Align <= StackAlign)
Chris Lattner1c08c712005-01-07 07:47:53 +00002858 Align = 0;
Evan Cheng45157792007-08-16 23:46:29 +00002859
2860 // Round the size of the allocation up to the stack alignment size
2861 // by add SA-1 to the size.
2862 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002863 DAG.getIntPtrConstant(StackAlign-1));
Evan Cheng45157792007-08-16 23:46:29 +00002864 // Mask out the low bits for alignment purposes.
2865 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002866 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner1c08c712005-01-07 07:47:53 +00002867
Dan Gohman475871a2008-07-27 21:46:04 +00002868 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands83ec4b62008-06-06 12:08:01 +00002869 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002870 MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00002871 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner0da331f2007-02-04 01:31:47 +00002872 setValue(&I, DSA);
2873 DAG.setRoot(DSA.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002874
2875 // Inform the Frame Information that we have just allocated a variable-sized
2876 // object.
2877 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2878}
2879
Chris Lattner1c08c712005-01-07 07:47:53 +00002880void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002881 const Value *SV = I.getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00002882 SDValue Ptr = getValue(SV);
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002883
2884 const Type *Ty = I.getType();
2885 bool isVolatile = I.isVolatile();
2886 unsigned Alignment = I.getAlignment();
2887
2888 SmallVector<MVT, 4> ValueVTs;
2889 SmallVector<uint64_t, 4> Offsets;
2890 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2891 unsigned NumValues = ValueVTs.size();
2892 if (NumValues == 0)
2893 return;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002894
Dan Gohman475871a2008-07-27 21:46:04 +00002895 SDValue Root;
Dan Gohman8b4588f2008-07-25 00:04:14 +00002896 bool ConstantMemory = false;
Chris Lattnerd3948112005-01-17 22:19:26 +00002897 if (I.isVolatile())
Dan Gohman8b4588f2008-07-25 00:04:14 +00002898 // Serialize volatile loads with other side effects.
Chris Lattnerd3948112005-01-17 22:19:26 +00002899 Root = getRoot();
Dan Gohman8b4588f2008-07-25 00:04:14 +00002900 else if (AA.pointsToConstantMemory(SV)) {
2901 // Do not serialize (non-volatile) loads of constant memory with anything.
2902 Root = DAG.getEntryNode();
2903 ConstantMemory = true;
2904 } else {
Chris Lattnerd3948112005-01-17 22:19:26 +00002905 // Do not serialize non-volatile loads against each other.
2906 Root = DAG.getRoot();
2907 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002908
Dan Gohman475871a2008-07-27 21:46:04 +00002909 SmallVector<SDValue, 4> Values(NumValues);
2910 SmallVector<SDValue, 4> Chains(NumValues);
Dan Gohman1d685a42008-06-07 02:02:36 +00002911 MVT PtrVT = Ptr.getValueType();
2912 for (unsigned i = 0; i != NumValues; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002913 SDValue L = DAG.getLoad(ValueVTs[i], Root,
Dan Gohman1d685a42008-06-07 02:02:36 +00002914 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2915 DAG.getConstant(Offsets[i], PtrVT)),
2916 SV, Offsets[i],
2917 isVolatile, Alignment);
2918 Values[i] = L;
2919 Chains[i] = L.getValue(1);
2920 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002921
Dan Gohman8b4588f2008-07-25 00:04:14 +00002922 if (!ConstantMemory) {
Dan Gohman475871a2008-07-27 21:46:04 +00002923 SDValue Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
Dan Gohman8b4588f2008-07-25 00:04:14 +00002924 &Chains[0], NumValues);
2925 if (isVolatile)
2926 DAG.setRoot(Chain);
2927 else
2928 PendingLoads.push_back(Chain);
2929 }
Dan Gohman1d685a42008-06-07 02:02:36 +00002930
Duncan Sandsf9516202008-06-30 10:19:09 +00002931 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2932 &Values[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002933}
2934
2935
2936void SelectionDAGLowering::visitStore(StoreInst &I) {
2937 Value *SrcV = I.getOperand(0);
Dan Gohman1d685a42008-06-07 02:02:36 +00002938 Value *PtrV = I.getOperand(1);
Dan Gohman1d685a42008-06-07 02:02:36 +00002939
2940 SmallVector<MVT, 4> ValueVTs;
2941 SmallVector<uint64_t, 4> Offsets;
2942 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2943 unsigned NumValues = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002944 if (NumValues == 0)
2945 return;
Dan Gohman1d685a42008-06-07 02:02:36 +00002946
Dan Gohman90d33ee2008-07-30 18:36:51 +00002947 // Get the lowered operands. Note that we do this after
2948 // checking if NumResults is zero, because with zero results
2949 // the operands won't have values in the map.
2950 SDValue Src = getValue(SrcV);
2951 SDValue Ptr = getValue(PtrV);
2952
Dan Gohman475871a2008-07-27 21:46:04 +00002953 SDValue Root = getRoot();
2954 SmallVector<SDValue, 4> Chains(NumValues);
Dan Gohman1d685a42008-06-07 02:02:36 +00002955 MVT PtrVT = Ptr.getValueType();
2956 bool isVolatile = I.isVolatile();
2957 unsigned Alignment = I.getAlignment();
2958 for (unsigned i = 0; i != NumValues; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00002959 Chains[i] = DAG.getStore(Root, SDValue(Src.Val, Src.ResNo + i),
Dan Gohman1d685a42008-06-07 02:02:36 +00002960 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2961 DAG.getConstant(Offsets[i], PtrVT)),
2962 PtrV, Offsets[i],
2963 isVolatile, Alignment);
2964
2965 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002966}
2967
Chris Lattner0eade312006-03-24 02:22:33 +00002968/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2969/// node.
2970void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2971 unsigned Intrinsic) {
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002972 bool HasChain = !I.doesNotAccessMemory();
2973 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2974
Chris Lattner0eade312006-03-24 02:22:33 +00002975 // Build the operand list.
Dan Gohman475871a2008-07-27 21:46:04 +00002976 SmallVector<SDValue, 8> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00002977 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2978 if (OnlyLoad) {
2979 // We don't need to serialize loads against other loads.
2980 Ops.push_back(DAG.getRoot());
2981 } else {
2982 Ops.push_back(getRoot());
2983 }
2984 }
Chris Lattner0eade312006-03-24 02:22:33 +00002985
2986 // Add the intrinsic ID as an integer operand.
2987 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2988
2989 // Add all operands of the call to the operand list.
2990 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002991 SDValue Op = getValue(I.getOperand(i));
Chris Lattner0eade312006-03-24 02:22:33 +00002992 assert(TLI.isTypeLegal(Op.getValueType()) &&
2993 "Intrinsic uses a non-legal type?");
2994 Ops.push_back(Op);
2995 }
2996
Duncan Sands83ec4b62008-06-06 12:08:01 +00002997 std::vector<MVT> VTs;
Chris Lattner0eade312006-03-24 02:22:33 +00002998 if (I.getType() != Type::VoidTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002999 MVT VT = TLI.getValueType(I.getType());
3000 if (VT.isVector()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003001 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands83ec4b62008-06-06 12:08:01 +00003002 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Chris Lattner0eade312006-03-24 02:22:33 +00003003
Duncan Sands83ec4b62008-06-06 12:08:01 +00003004 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Chris Lattner0eade312006-03-24 02:22:33 +00003005 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
3006 }
3007
3008 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
3009 VTs.push_back(VT);
3010 }
3011 if (HasChain)
3012 VTs.push_back(MVT::Other);
3013
Duncan Sands83ec4b62008-06-06 12:08:01 +00003014 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003015
Chris Lattner0eade312006-03-24 02:22:33 +00003016 // Create the node.
Dan Gohman475871a2008-07-27 21:46:04 +00003017 SDValue Result;
Chris Lattner48b61a72006-03-28 00:40:33 +00003018 if (!HasChain)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003019 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
3020 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003021 else if (I.getType() != Type::VoidTy)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003022 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
3023 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003024 else
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003025 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
3026 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003027
Chris Lattnere58a7802006-04-02 03:41:14 +00003028 if (HasChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00003029 SDValue Chain = Result.getValue(Result.Val->getNumValues()-1);
Chris Lattnere58a7802006-04-02 03:41:14 +00003030 if (OnlyLoad)
3031 PendingLoads.push_back(Chain);
3032 else
3033 DAG.setRoot(Chain);
3034 }
Chris Lattner0eade312006-03-24 02:22:33 +00003035 if (I.getType() != Type::VoidTy) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003036 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003037 MVT VT = TLI.getValueType(PTy);
Dan Gohman7f321562007-06-25 16:23:39 +00003038 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattner0eade312006-03-24 02:22:33 +00003039 }
3040 setValue(&I, Result);
3041 }
3042}
3043
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003044/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003045static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003046 V = V->stripPointerCasts();
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003047 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003048 assert ((GV || isa<ConstantPointerNull>(V)) &&
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003049 "TypeInfo must be a global variable or NULL");
3050 return GV;
3051}
3052
Duncan Sandsf4070822007-06-15 19:04:19 +00003053/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003054/// call, and add them to the specified machine basic block.
Duncan Sandsf4070822007-06-15 19:04:19 +00003055static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3056 MachineBasicBlock *MBB) {
3057 // Inform the MachineModuleInfo of the personality for this landing pad.
3058 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3059 assert(CE->getOpcode() == Instruction::BitCast &&
3060 isa<Function>(CE->getOperand(0)) &&
3061 "Personality should be a function");
3062 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3063
3064 // Gather all the type infos for this landing pad and pass them along to
3065 // MachineModuleInfo.
3066 std::vector<GlobalVariable *> TyInfo;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003067 unsigned N = I.getNumOperands();
3068
3069 for (unsigned i = N - 1; i > 2; --i) {
3070 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3071 unsigned FilterLength = CI->getZExtValue();
Duncan Sands6590b042007-08-27 15:47:50 +00003072 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003073 assert (FirstCatch <= N && "Invalid filter length");
3074
3075 if (FirstCatch < N) {
3076 TyInfo.reserve(N - FirstCatch);
3077 for (unsigned j = FirstCatch; j < N; ++j)
3078 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3079 MMI->addCatchTypeInfo(MBB, TyInfo);
3080 TyInfo.clear();
3081 }
3082
Duncan Sands6590b042007-08-27 15:47:50 +00003083 if (!FilterLength) {
3084 // Cleanup.
3085 MMI->addCleanup(MBB);
3086 } else {
3087 // Filter.
3088 TyInfo.reserve(FilterLength - 1);
3089 for (unsigned j = i + 1; j < FirstCatch; ++j)
3090 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3091 MMI->addFilterTypeInfo(MBB, TyInfo);
3092 TyInfo.clear();
3093 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003094
3095 N = i;
3096 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003097 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003098
3099 if (N > 3) {
3100 TyInfo.reserve(N - 3);
3101 for (unsigned j = 3; j < N; ++j)
3102 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sandsf4070822007-06-15 19:04:19 +00003103 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003104 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003105}
3106
Mon P Wang63307c32008-05-05 19:05:59 +00003107
3108/// Inlined utility function to implement binary input atomic intrinsics for
3109// visitIntrinsicCall: I is a call instruction
3110// Op is the associated NodeType for I
3111const char *
3112SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Dan Gohman475871a2008-07-27 21:46:04 +00003113 SDValue Root = getRoot();
3114 SDValue L = DAG.getAtomic(Op, Root,
Mon P Wang63307c32008-05-05 19:05:59 +00003115 getValue(I.getOperand(1)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003116 getValue(I.getOperand(2)),
Mon P Wang28873102008-06-25 08:15:39 +00003117 I.getOperand(1));
Mon P Wang63307c32008-05-05 19:05:59 +00003118 setValue(&I, L);
3119 DAG.setRoot(L.getValue(1));
3120 return 0;
3121}
3122
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003123/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3124/// we want to emit this as a call to a named external function, return the name
3125/// otherwise lower it and return null.
3126const char *
3127SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3128 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00003129 default:
3130 // By default, turn this into a target intrinsic node.
3131 visitTargetIntrinsic(I, Intrinsic);
3132 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003133 case Intrinsic::vastart: visitVAStart(I); return 0;
3134 case Intrinsic::vaend: visitVAEnd(I); return 0;
3135 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemanbcc5f362007-01-29 22:58:52 +00003136 case Intrinsic::returnaddress:
3137 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3138 getValue(I.getOperand(1))));
3139 return 0;
3140 case Intrinsic::frameaddress:
3141 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3142 getValue(I.getOperand(1))));
3143 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003144 case Intrinsic::setjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003145 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003146 break;
3147 case Intrinsic::longjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003148 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003149 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00003150 case Intrinsic::memcpy_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003151 case Intrinsic::memcpy_i64: {
Dan Gohman475871a2008-07-27 21:46:04 +00003152 SDValue Op1 = getValue(I.getOperand(1));
3153 SDValue Op2 = getValue(I.getOperand(2));
3154 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohman707e0182008-04-12 04:36:06 +00003155 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3156 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3157 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003158 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003159 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003160 case Intrinsic::memset_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003161 case Intrinsic::memset_i64: {
Dan Gohman475871a2008-07-27 21:46:04 +00003162 SDValue Op1 = getValue(I.getOperand(1));
3163 SDValue Op2 = getValue(I.getOperand(2));
3164 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohman707e0182008-04-12 04:36:06 +00003165 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3166 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3167 I.getOperand(1), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003168 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003169 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003170 case Intrinsic::memmove_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003171 case Intrinsic::memmove_i64: {
Dan Gohman475871a2008-07-27 21:46:04 +00003172 SDValue Op1 = getValue(I.getOperand(1));
3173 SDValue Op2 = getValue(I.getOperand(2));
3174 SDValue Op3 = getValue(I.getOperand(3));
Dan Gohman707e0182008-04-12 04:36:06 +00003175 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3176
3177 // If the source and destination are known to not be aliases, we can
3178 // lower memmove as memcpy.
3179 uint64_t Size = -1ULL;
3180 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3181 Size = C->getValue();
3182 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3183 AliasAnalysis::NoAlias) {
3184 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3185 I.getOperand(1), 0, I.getOperand(2), 0));
3186 return 0;
3187 }
3188
3189 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3190 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003191 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003192 }
Chris Lattner86cb6432005-12-13 17:40:33 +00003193 case Intrinsic::dbg_stoppoint: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003194 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003195 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003196 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003197 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00003198 assert(DD && "Not a debug information descriptor");
Dan Gohman7f460202008-06-30 20:59:49 +00003199 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3200 SPI.getLine(),
3201 SPI.getColumn(),
3202 cast<CompileUnitDesc>(DD)));
Chris Lattner86cb6432005-12-13 17:40:33 +00003203 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003204
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003205 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00003206 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003207 case Intrinsic::dbg_region_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003208 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003209 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003210 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3211 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003212 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003213 }
3214
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003215 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003216 }
3217 case Intrinsic::dbg_region_end: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003218 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003219 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003220 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3221 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003222 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003223 }
3224
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003225 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003226 }
3227 case Intrinsic::dbg_func_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003228 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003229 if (!MMI) return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003230 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003231 Value *SP = FSI.getSubprogram();
3232 if (SP && MMI->Verify(SP)) {
3233 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3234 // what (most?) gdb expects.
3235 DebugInfoDesc *DD = MMI->getDescFor(SP);
3236 assert(DD && "Not a debug information descriptor");
3237 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3238 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
Dan Gohman99fe47b2008-06-30 22:21:03 +00003239 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003240 // Record the source line but does create a label. It will be emitted
3241 // at asm emission time.
3242 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Jim Laskey43970fe2006-03-23 18:06:46 +00003243 }
3244
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003245 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003246 }
3247 case Intrinsic::dbg_declare: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003248 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003249 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Chenga844bde2008-02-02 04:07:54 +00003250 Value *Variable = DI.getVariable();
3251 if (MMI && Variable && MMI->Verify(Variable))
3252 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3253 getValue(DI.getAddress()), getValue(Variable)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003254 return 0;
3255 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003256
Jim Laskeyb180aa12007-02-21 22:53:45 +00003257 case Intrinsic::eh_exception: {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003258 if (!CurMBB->isLandingPad()) {
3259 // FIXME: Mark exception register as live in. Hack for PR1508.
3260 unsigned Reg = TLI.getExceptionAddressRegister();
3261 if (Reg) CurMBB->addLiveIn(Reg);
Jim Laskey735b6f82007-02-22 15:38:06 +00003262 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003263 // Insert the EXCEPTIONADDR instruction.
3264 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003265 SDValue Ops[1];
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003266 Ops[0] = DAG.getRoot();
Dan Gohman475871a2008-07-27 21:46:04 +00003267 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003268 setValue(&I, Op);
3269 DAG.setRoot(Op.getValue(1));
Jim Laskeyb180aa12007-02-21 22:53:45 +00003270 return 0;
3271 }
3272
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003273 case Intrinsic::eh_selector_i32:
3274 case Intrinsic::eh_selector_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003275 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003276 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003277 MVT::i32 : MVT::i64);
3278
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003279 if (MMI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00003280 if (CurMBB->isLandingPad())
3281 addCatchInfo(I, MMI, CurMBB);
Evan Chenge47c3332007-06-27 18:45:32 +00003282 else {
Duncan Sandsf4070822007-06-15 19:04:19 +00003283#ifndef NDEBUG
Duncan Sandsf4070822007-06-15 19:04:19 +00003284 FuncInfo.CatchInfoLost.insert(&I);
3285#endif
Duncan Sands90291952007-07-06 09:18:59 +00003286 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3287 unsigned Reg = TLI.getExceptionSelectorRegister();
3288 if (Reg) CurMBB->addLiveIn(Reg);
Evan Chenge47c3332007-06-27 18:45:32 +00003289 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003290
3291 // Insert the EHSELECTION instruction.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003292 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003293 SDValue Ops[2];
Jim Laskey735b6f82007-02-22 15:38:06 +00003294 Ops[0] = getValue(I.getOperand(1));
3295 Ops[1] = getRoot();
Dan Gohman475871a2008-07-27 21:46:04 +00003296 SDValue Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
Jim Laskey735b6f82007-02-22 15:38:06 +00003297 setValue(&I, Op);
3298 DAG.setRoot(Op.getValue(1));
Jim Laskey7a1de982007-02-24 09:45:44 +00003299 } else {
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003300 setValue(&I, DAG.getConstant(0, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003301 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003302
3303 return 0;
3304 }
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003305
3306 case Intrinsic::eh_typeid_for_i32:
3307 case Intrinsic::eh_typeid_for_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003308 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003309 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003310 MVT::i32 : MVT::i64);
Jim Laskeyb180aa12007-02-21 22:53:45 +00003311
Jim Laskey735b6f82007-02-22 15:38:06 +00003312 if (MMI) {
3313 // Find the type id for the given typeinfo.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003314 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands3b346362007-05-04 17:12:26 +00003315
Jim Laskey735b6f82007-02-22 15:38:06 +00003316 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003317 setValue(&I, DAG.getConstant(TypeID, VT));
Jim Laskey7a1de982007-02-24 09:45:44 +00003318 } else {
Duncan Sandsf664e412007-07-06 14:46:23 +00003319 // Return something different to eh_selector.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003320 setValue(&I, DAG.getConstant(1, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003321 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003322
3323 return 0;
3324 }
3325
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003326 case Intrinsic::eh_return: {
3327 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3328
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003329 if (MMI) {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003330 MMI->setCallsEHReturn(true);
3331 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3332 MVT::Other,
Dan Gohman86e1ebf2008-03-27 19:56:19 +00003333 getControlRoot(),
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003334 getValue(I.getOperand(1)),
3335 getValue(I.getOperand(2))));
3336 } else {
3337 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3338 }
3339
3340 return 0;
3341 }
3342
3343 case Intrinsic::eh_unwind_init: {
3344 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3345 MMI->setCallsUnwindInit(true);
3346 }
3347
3348 return 0;
3349 }
3350
3351 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003352 MVT VT = getValue(I.getOperand(1)).getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003353 SDValue CfaArg;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003354 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003355 CfaArg = DAG.getNode(ISD::TRUNCATE,
3356 TLI.getPointerTy(), getValue(I.getOperand(1)));
3357 else
3358 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3359 TLI.getPointerTy(), getValue(I.getOperand(1)));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003360
Dan Gohman475871a2008-07-27 21:46:04 +00003361 SDValue Offset = DAG.getNode(ISD::ADD,
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003362 TLI.getPointerTy(),
3363 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3364 TLI.getPointerTy()),
3365 CfaArg);
3366 setValue(&I, DAG.getNode(ISD::ADD,
3367 TLI.getPointerTy(),
3368 DAG.getNode(ISD::FRAMEADDR,
3369 TLI.getPointerTy(),
3370 DAG.getConstant(0,
3371 TLI.getPointerTy())),
3372 Offset));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003373 return 0;
3374 }
3375
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003376 case Intrinsic::sqrt:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003377 setValue(&I, DAG.getNode(ISD::FSQRT,
3378 getValue(I.getOperand(1)).getValueType(),
3379 getValue(I.getOperand(1))));
3380 return 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003381 case Intrinsic::powi:
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003382 setValue(&I, DAG.getNode(ISD::FPOWI,
3383 getValue(I.getOperand(1)).getValueType(),
3384 getValue(I.getOperand(1)),
3385 getValue(I.getOperand(2))));
3386 return 0;
Dan Gohmanac9385a2007-10-12 00:01:22 +00003387 case Intrinsic::sin:
3388 setValue(&I, DAG.getNode(ISD::FSIN,
3389 getValue(I.getOperand(1)).getValueType(),
3390 getValue(I.getOperand(1))));
3391 return 0;
3392 case Intrinsic::cos:
3393 setValue(&I, DAG.getNode(ISD::FCOS,
3394 getValue(I.getOperand(1)).getValueType(),
3395 getValue(I.getOperand(1))));
3396 return 0;
3397 case Intrinsic::pow:
3398 setValue(&I, DAG.getNode(ISD::FPOW,
3399 getValue(I.getOperand(1)).getValueType(),
3400 getValue(I.getOperand(1)),
3401 getValue(I.getOperand(2))));
3402 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003403 case Intrinsic::pcmarker: {
Dan Gohman475871a2008-07-27 21:46:04 +00003404 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003405 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3406 return 0;
3407 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003408 case Intrinsic::readcyclecounter: {
Dan Gohman475871a2008-07-27 21:46:04 +00003409 SDValue Op = getRoot();
3410 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003411 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3412 &Op, 1);
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003413 setValue(&I, Tmp);
3414 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003415 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003416 }
Chris Lattnerc6eb6d72007-04-10 03:20:39 +00003417 case Intrinsic::part_select: {
Reid Spencer3f108cb2007-04-05 01:20:18 +00003418 // Currently not implemented: just abort
Reid Spencerf75b8742007-04-12 02:48:46 +00003419 assert(0 && "part_select intrinsic not implemented");
3420 abort();
3421 }
3422 case Intrinsic::part_set: {
3423 // Currently not implemented: just abort
3424 assert(0 && "part_set intrinsic not implemented");
Reid Spencer3f108cb2007-04-05 01:20:18 +00003425 abort();
Reid Spenceraddd11d2007-04-04 23:48:25 +00003426 }
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003427 case Intrinsic::bswap:
Nate Begemand88fc032006-01-14 03:14:10 +00003428 setValue(&I, DAG.getNode(ISD::BSWAP,
3429 getValue(I.getOperand(1)).getValueType(),
3430 getValue(I.getOperand(1))));
3431 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003432 case Intrinsic::cttz: {
Dan Gohman475871a2008-07-27 21:46:04 +00003433 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003434 MVT Ty = Arg.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003435 SDValue result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003436 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003437 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003438 }
3439 case Intrinsic::ctlz: {
Dan Gohman475871a2008-07-27 21:46:04 +00003440 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003441 MVT Ty = Arg.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003442 SDValue result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003443 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003444 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003445 }
3446 case Intrinsic::ctpop: {
Dan Gohman475871a2008-07-27 21:46:04 +00003447 SDValue Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003448 MVT Ty = Arg.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003449 SDValue result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003450 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003451 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003452 }
Chris Lattner140d53c2006-01-13 02:50:02 +00003453 case Intrinsic::stacksave: {
Dan Gohman475871a2008-07-27 21:46:04 +00003454 SDValue Op = getRoot();
3455 SDValue Tmp = DAG.getNode(ISD::STACKSAVE,
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003456 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattner140d53c2006-01-13 02:50:02 +00003457 setValue(&I, Tmp);
3458 DAG.setRoot(Tmp.getValue(1));
3459 return 0;
3460 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00003461 case Intrinsic::stackrestore: {
Dan Gohman475871a2008-07-27 21:46:04 +00003462 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner39a17dd2006-01-23 05:22:07 +00003463 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00003464 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00003465 }
Tanya Lattner24e5aad2007-06-15 22:26:58 +00003466 case Intrinsic::var_annotation:
3467 // Discard annotate attributes
3468 return 0;
Duncan Sands36397f52007-07-27 12:58:54 +00003469
Duncan Sands36397f52007-07-27 12:58:54 +00003470 case Intrinsic::init_trampoline: {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003471 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands36397f52007-07-27 12:58:54 +00003472
Dan Gohman475871a2008-07-27 21:46:04 +00003473 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00003474 Ops[0] = getRoot();
3475 Ops[1] = getValue(I.getOperand(1));
3476 Ops[2] = getValue(I.getOperand(2));
3477 Ops[3] = getValue(I.getOperand(3));
3478 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3479 Ops[5] = DAG.getSrcValue(F);
3480
Dan Gohman475871a2008-07-27 21:46:04 +00003481 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE,
Duncan Sandsf7331b32007-09-11 14:10:23 +00003482 DAG.getNodeValueTypes(TLI.getPointerTy(),
3483 MVT::Other), 2,
3484 Ops, 6);
3485
3486 setValue(&I, Tmp);
3487 DAG.setRoot(Tmp.getValue(1));
Duncan Sands36397f52007-07-27 12:58:54 +00003488 return 0;
3489 }
Gordon Henriksence224772008-01-07 01:30:38 +00003490
3491 case Intrinsic::gcroot:
3492 if (GCI) {
3493 Value *Alloca = I.getOperand(1);
3494 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3495
3496 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3497 GCI->addStackRoot(FI->getIndex(), TypeMap);
3498 }
3499 return 0;
3500
3501 case Intrinsic::gcread:
3502 case Intrinsic::gcwrite:
3503 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3504 return 0;
3505
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003506 case Intrinsic::flt_rounds: {
Dan Gohman1a024862008-01-31 00:41:03 +00003507 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003508 return 0;
3509 }
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003510
3511 case Intrinsic::trap: {
3512 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3513 return 0;
3514 }
Evan Cheng27b7db52008-03-08 00:58:38 +00003515 case Intrinsic::prefetch: {
Dan Gohman475871a2008-07-27 21:46:04 +00003516 SDValue Ops[4];
Evan Cheng27b7db52008-03-08 00:58:38 +00003517 Ops[0] = getRoot();
3518 Ops[1] = getValue(I.getOperand(1));
3519 Ops[2] = getValue(I.getOperand(2));
3520 Ops[3] = getValue(I.getOperand(3));
3521 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3522 return 0;
3523 }
3524
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003525 case Intrinsic::memory_barrier: {
Dan Gohman475871a2008-07-27 21:46:04 +00003526 SDValue Ops[6];
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003527 Ops[0] = getRoot();
3528 for (int x = 1; x < 6; ++x)
3529 Ops[x] = getValue(I.getOperand(x));
3530
3531 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3532 return 0;
3533 }
Mon P Wang28873102008-06-25 08:15:39 +00003534 case Intrinsic::atomic_cmp_swap: {
Dan Gohman475871a2008-07-27 21:46:04 +00003535 SDValue Root = getRoot();
3536 SDValue L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003537 getValue(I.getOperand(1)),
3538 getValue(I.getOperand(2)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003539 getValue(I.getOperand(3)),
Mon P Wang28873102008-06-25 08:15:39 +00003540 I.getOperand(1));
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003541 setValue(&I, L);
3542 DAG.setRoot(L.getValue(1));
3543 return 0;
3544 }
Mon P Wang28873102008-06-25 08:15:39 +00003545 case Intrinsic::atomic_load_add:
3546 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3547 case Intrinsic::atomic_load_sub:
3548 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang63307c32008-05-05 19:05:59 +00003549 case Intrinsic::atomic_load_and:
3550 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3551 case Intrinsic::atomic_load_or:
3552 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3553 case Intrinsic::atomic_load_xor:
3554 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003555 case Intrinsic::atomic_load_nand:
3556 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang63307c32008-05-05 19:05:59 +00003557 case Intrinsic::atomic_load_min:
3558 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3559 case Intrinsic::atomic_load_max:
3560 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3561 case Intrinsic::atomic_load_umin:
3562 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3563 case Intrinsic::atomic_load_umax:
3564 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3565 case Intrinsic::atomic_swap:
3566 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003567 }
3568}
3569
3570
Dan Gohman475871a2008-07-27 21:46:04 +00003571void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Jim Laskey1da20a72007-02-23 21:45:01 +00003572 bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003573 MachineBasicBlock *LandingPad) {
Duncan Sands6f74b482007-12-19 09:48:52 +00003574 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Jim Laskey735b6f82007-02-22 15:38:06 +00003575 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003576 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3577 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sands6f74b482007-12-19 09:48:52 +00003578
Jim Laskey735b6f82007-02-22 15:38:06 +00003579 TargetLowering::ArgListTy Args;
3580 TargetLowering::ArgListEntry Entry;
Duncan Sands6f74b482007-12-19 09:48:52 +00003581 Args.reserve(CS.arg_size());
3582 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3583 i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003584 SDValue ArgNode = getValue(*i);
Duncan Sands6f74b482007-12-19 09:48:52 +00003585 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Duncan Sands4fee7032007-05-07 20:49:28 +00003586
Duncan Sands6f74b482007-12-19 09:48:52 +00003587 unsigned attrInd = i - CS.arg_begin() + 1;
3588 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3589 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3590 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3591 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3592 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3593 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen08e78b12008-02-22 17:49:45 +00003594 Entry.Alignment = CS.getParamAlignment(attrInd);
Jim Laskey735b6f82007-02-22 15:38:06 +00003595 Args.push_back(Entry);
3596 }
3597
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003598 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003599 // Insert a label before the invoke call to mark the try range. This can be
3600 // used to detect deletion of the invoke via the MachineModuleInfo.
3601 BeginLabel = MMI->NextLabelID();
Dale Johannesena4091d32008-04-04 23:48:31 +00003602 // Both PendingLoads and PendingExports must be flushed here;
3603 // this call might not return.
3604 (void)getRoot();
Dan Gohman44066042008-07-01 00:05:16 +00003605 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003606 }
Duncan Sands6f74b482007-12-19 09:48:52 +00003607
Dan Gohman475871a2008-07-27 21:46:04 +00003608 std::pair<SDValue,SDValue> Result =
Duncan Sands6f74b482007-12-19 09:48:52 +00003609 TLI.LowerCallTo(getRoot(), CS.getType(),
3610 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sands00fee652008-02-14 17:28:50 +00003611 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sands6f74b482007-12-19 09:48:52 +00003612 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Jim Laskey735b6f82007-02-22 15:38:06 +00003613 Callee, Args, DAG);
Duncan Sands6f74b482007-12-19 09:48:52 +00003614 if (CS.getType() != Type::VoidTy)
3615 setValue(CS.getInstruction(), Result.first);
Jim Laskey735b6f82007-02-22 15:38:06 +00003616 DAG.setRoot(Result.second);
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003617
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003618 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003619 // Insert a label at the end of the invoke call to mark the try range. This
3620 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3621 EndLabel = MMI->NextLabelID();
Dan Gohman44066042008-07-01 00:05:16 +00003622 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003623
Duncan Sands6f74b482007-12-19 09:48:52 +00003624 // Inform MachineModuleInfo of range.
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003625 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3626 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003627}
3628
3629
Chris Lattner1c08c712005-01-07 07:47:53 +00003630void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00003631 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003632 if (Function *F = I.getCalledFunction()) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003633 if (F->isDeclaration()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003634 if (unsigned IID = F->getIntrinsicID()) {
3635 RenameFn = visitIntrinsicCall(I, IID);
3636 if (!RenameFn)
3637 return;
Chris Lattner87b51bc2007-09-10 21:15:22 +00003638 }
3639 }
3640
3641 // Check for well-known libc/libm calls. If the function is internal, it
3642 // can't be a library call.
3643 unsigned NameLen = F->getNameLen();
3644 if (!F->hasInternalLinkage() && NameLen) {
3645 const char *NameStr = F->getNameStart();
3646 if (NameStr[0] == 'c' &&
3647 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3648 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3649 if (I.getNumOperands() == 3 && // Basic sanity checks.
3650 I.getOperand(1)->getType()->isFloatingPoint() &&
3651 I.getType() == I.getOperand(1)->getType() &&
3652 I.getType() == I.getOperand(2)->getType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003653 SDValue LHS = getValue(I.getOperand(1));
3654 SDValue RHS = getValue(I.getOperand(2));
Chris Lattner87b51bc2007-09-10 21:15:22 +00003655 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3656 LHS, RHS));
3657 return;
3658 }
3659 } else if (NameStr[0] == 'f' &&
3660 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003661 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3662 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003663 if (I.getNumOperands() == 2 && // Basic sanity checks.
3664 I.getOperand(1)->getType()->isFloatingPoint() &&
3665 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003666 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner87b51bc2007-09-10 21:15:22 +00003667 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3668 return;
3669 }
3670 } else if (NameStr[0] == 's' &&
3671 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003672 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3673 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003674 if (I.getNumOperands() == 2 && // Basic sanity checks.
3675 I.getOperand(1)->getType()->isFloatingPoint() &&
3676 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003677 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner87b51bc2007-09-10 21:15:22 +00003678 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3679 return;
3680 }
3681 } else if (NameStr[0] == 'c' &&
3682 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003683 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3684 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003685 if (I.getNumOperands() == 2 && // Basic sanity checks.
3686 I.getOperand(1)->getType()->isFloatingPoint() &&
3687 I.getType() == I.getOperand(1)->getType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003688 SDValue Tmp = getValue(I.getOperand(1));
Chris Lattner87b51bc2007-09-10 21:15:22 +00003689 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3690 return;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003691 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00003692 }
Chris Lattner87b51bc2007-09-10 21:15:22 +00003693 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00003694 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00003695 visitInlineAsm(&I);
Chris Lattnerce7518c2006-01-26 22:24:51 +00003696 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003697 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003698
Dan Gohman475871a2008-07-27 21:46:04 +00003699 SDValue Callee;
Chris Lattner64e14b12005-01-08 22:48:57 +00003700 if (!RenameFn)
3701 Callee = getValue(I.getOperand(0));
3702 else
3703 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003704
Duncan Sands6f74b482007-12-19 09:48:52 +00003705 LowerCallTo(&I, Callee, I.isTailCall());
Chris Lattner1c08c712005-01-07 07:47:53 +00003706}
3707
Jim Laskey735b6f82007-02-22 15:38:06 +00003708
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003709/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3710/// this value and returns the result as a ValueVT value. This uses
3711/// Chain/Flag as the input and updates them for the output Chain/Flag.
3712/// If the Flag pointer is NULL, no flag is used.
Dan Gohman475871a2008-07-27 21:46:04 +00003713SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
3714 SDValue &Chain,
3715 SDValue *Flag) const {
Dan Gohman23ce5022008-04-25 18:27:55 +00003716 // Assemble the legal parts into the final values.
Dan Gohman475871a2008-07-27 21:46:04 +00003717 SmallVector<SDValue, 4> Values(ValueVTs.size());
3718 SmallVector<SDValue, 8> Parts;
Chris Lattner6833b062008-04-28 07:16:35 +00003719 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman23ce5022008-04-25 18:27:55 +00003720 // Copy the legal parts from the registers.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003721 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003722 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003723 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003724
Chris Lattner6833b062008-04-28 07:16:35 +00003725 Parts.resize(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003726 for (unsigned i = 0; i != NumRegs; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003727 SDValue P;
Chris Lattner6833b062008-04-28 07:16:35 +00003728 if (Flag == 0)
3729 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3730 else {
3731 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman23ce5022008-04-25 18:27:55 +00003732 *Flag = P.getValue(2);
Chris Lattner6833b062008-04-28 07:16:35 +00003733 }
3734 Chain = P.getValue(1);
Chris Lattneread0d882008-06-17 06:09:18 +00003735
3736 // If the source register was virtual and if we know something about it,
3737 // add an assert node.
3738 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3739 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3740 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3741 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3742 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3743 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3744
3745 unsigned RegSize = RegisterVT.getSizeInBits();
3746 unsigned NumSignBits = LOI.NumSignBits;
3747 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3748
3749 // FIXME: We capture more information than the dag can represent. For
3750 // now, just use the tightest assertzext/assertsext possible.
3751 bool isSExt = true;
3752 MVT FromVT(MVT::Other);
3753 if (NumSignBits == RegSize)
3754 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3755 else if (NumZeroBits >= RegSize-1)
3756 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3757 else if (NumSignBits > RegSize-8)
3758 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3759 else if (NumZeroBits >= RegSize-9)
3760 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3761 else if (NumSignBits > RegSize-16)
3762 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3763 else if (NumZeroBits >= RegSize-17)
3764 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3765 else if (NumSignBits > RegSize-32)
3766 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3767 else if (NumZeroBits >= RegSize-33)
3768 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3769
3770 if (FromVT != MVT::Other) {
3771 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3772 RegisterVT, P, DAG.getValueType(FromVT));
3773
3774 }
3775 }
3776 }
3777
Dan Gohman23ce5022008-04-25 18:27:55 +00003778 Parts[Part+i] = P;
3779 }
Chris Lattner5df99b32007-03-25 05:00:54 +00003780
Dan Gohman23ce5022008-04-25 18:27:55 +00003781 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3782 ValueVT);
3783 Part += NumRegs;
3784 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00003785
Duncan Sandsf9516202008-06-30 10:19:09 +00003786 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3787 &Values[0], ValueVTs.size());
Chris Lattner864635a2006-02-22 22:37:12 +00003788}
3789
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003790/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3791/// specified value into the registers specified by this object. This uses
3792/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003793/// If the Flag pointer is NULL, no flag is used.
Dan Gohman475871a2008-07-27 21:46:04 +00003794void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG,
3795 SDValue &Chain, SDValue *Flag) const {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003796 // Get the list of the values's legal parts.
Dan Gohman23ce5022008-04-25 18:27:55 +00003797 unsigned NumRegs = Regs.size();
Dan Gohman475871a2008-07-27 21:46:04 +00003798 SmallVector<SDValue, 8> Parts(NumRegs);
Chris Lattner6833b062008-04-28 07:16:35 +00003799 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003800 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003801 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003802 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003803
3804 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3805 &Parts[Part], NumParts, RegisterVT);
3806 Part += NumParts;
3807 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003808
3809 // Copy the parts into the registers.
Dan Gohman475871a2008-07-27 21:46:04 +00003810 SmallVector<SDValue, 8> Chains(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003811 for (unsigned i = 0; i != NumRegs; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003812 SDValue Part;
Chris Lattner6833b062008-04-28 07:16:35 +00003813 if (Flag == 0)
3814 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3815 else {
3816 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003817 *Flag = Part.getValue(1);
Chris Lattner6833b062008-04-28 07:16:35 +00003818 }
3819 Chains[i] = Part.getValue(0);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003820 }
Chris Lattner6833b062008-04-28 07:16:35 +00003821
Evan Cheng33bf38a2008-04-28 22:07:13 +00003822 if (NumRegs == 1 || Flag)
3823 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3824 // flagged to it. That is the CopyToReg nodes and the user are considered
3825 // a single scheduling unit. If we create a TokenFactor and return it as
3826 // chain, then the TokenFactor is both a predecessor (operand) of the
3827 // user as well as a successor (the TF operands are flagged to the user).
3828 // c1, f1 = CopyToReg
3829 // c2, f2 = CopyToReg
3830 // c3 = TokenFactor c1, c2
3831 // ...
3832 // = op c3, ..., f2
3833 Chain = Chains[NumRegs-1];
Chris Lattner6833b062008-04-28 07:16:35 +00003834 else
3835 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003836}
Chris Lattner864635a2006-02-22 22:37:12 +00003837
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003838/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3839/// operand list. This adds the code marker and includes the number of
3840/// values added into it.
3841void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003842 std::vector<SDValue> &Ops) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003843 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner4b993b12007-04-09 00:33:58 +00003844 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner6833b062008-04-28 07:16:35 +00003845 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3846 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003847 MVT RegisterVT = RegVTs[Value];
Chris Lattner6833b062008-04-28 07:16:35 +00003848 for (unsigned i = 0; i != NumRegs; ++i)
3849 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman23ce5022008-04-25 18:27:55 +00003850 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003851}
Chris Lattner864635a2006-02-22 22:37:12 +00003852
3853/// isAllocatableRegister - If the specified register is safe to allocate,
3854/// i.e. it isn't a stack pointer or some other special register, return the
3855/// register class for the register. Otherwise, return null.
3856static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003857isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman6f0d0242008-02-10 18:45:23 +00003858 const TargetLowering &TLI,
3859 const TargetRegisterInfo *TRI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003860 MVT FoundVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003861 const TargetRegisterClass *FoundRC = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +00003862 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3863 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003864 MVT ThisVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003865
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003866 const TargetRegisterClass *RC = *RCI;
3867 // If none of the the value types for this register class are valid, we
3868 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003869 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3870 I != E; ++I) {
3871 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003872 // If we have already found this register in a different register class,
3873 // choose the one with the largest VT specified. For example, on
3874 // PowerPC, we favor f64 register classes over f32.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003875 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003876 ThisVT = *I;
3877 break;
3878 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003879 }
3880 }
3881
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003882 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003883
Chris Lattner864635a2006-02-22 22:37:12 +00003884 // NOTE: This isn't ideal. In particular, this might allocate the
3885 // frame pointer in functions that need it (due to them not being taken
3886 // out of allocation, because a variable sized allocation hasn't been seen
3887 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003888 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3889 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003890 if (*I == Reg) {
3891 // We found a matching register class. Keep looking at others in case
3892 // we find one with larger registers that this physreg is also in.
3893 FoundRC = RC;
3894 FoundVT = ThisVT;
3895 break;
3896 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00003897 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003898 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00003899}
3900
Chris Lattner4e4b5762006-02-01 18:59:47 +00003901
Chris Lattner0c583402007-04-28 20:49:53 +00003902namespace {
3903/// AsmOperandInfo - This contains information for each constraint that we are
3904/// lowering.
Evan Cheng5c807602008-02-26 02:33:44 +00003905struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3906 /// CallOperand - If this is the result output operand or a clobber
3907 /// this is null, otherwise it is the incoming operand to the CallInst.
3908 /// This gets modified as the asm is processed.
Dan Gohman475871a2008-07-27 21:46:04 +00003909 SDValue CallOperand;
Evan Cheng5c807602008-02-26 02:33:44 +00003910
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003911 /// AssignedRegs - If this is a register or register class operand, this
3912 /// contains the set of register corresponding to the operand.
3913 RegsForValue AssignedRegs;
3914
Dan Gohman23ce5022008-04-25 18:27:55 +00003915 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Cheng5c807602008-02-26 02:33:44 +00003916 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Chris Lattner0c583402007-04-28 20:49:53 +00003917 }
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003918
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003919 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3920 /// busy in OutputRegs/InputRegs.
3921 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3922 std::set<unsigned> &OutputRegs,
Chris Lattner7cbeb242008-02-21 04:55:52 +00003923 std::set<unsigned> &InputRegs,
3924 const TargetRegisterInfo &TRI) const {
3925 if (isOutReg) {
3926 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3927 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3928 }
3929 if (isInReg) {
3930 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3931 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3932 }
3933 }
3934
3935private:
3936 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3937 /// specified set.
3938 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3939 const TargetRegisterInfo &TRI) {
3940 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3941 Regs.insert(Reg);
3942 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3943 for (; *Aliases; ++Aliases)
3944 Regs.insert(*Aliases);
3945 }
Chris Lattner0c583402007-04-28 20:49:53 +00003946};
3947} // end anon namespace.
Chris Lattner864635a2006-02-22 22:37:12 +00003948
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003949
Chris Lattner0fe71e92008-02-21 19:43:13 +00003950/// GetRegistersForValue - Assign registers (virtual or physical) for the
3951/// specified operand. We prefer to assign virtual registers, to allow the
3952/// register allocator handle the assignment process. However, if the asm uses
3953/// features that we can't model on machineinstrs, we have SDISel do the
3954/// allocation. This produces generally horrible, but correct, code.
3955///
3956/// OpInfo describes the operand.
3957/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3958/// or any explicitly clobbered registers.
3959/// Input and OutputRegs are the set of already allocated physical registers.
3960///
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003961void SelectionDAGLowering::
Evan Cheng5c807602008-02-26 02:33:44 +00003962GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnerbf996f12007-04-30 17:29:31 +00003963 std::set<unsigned> &OutputRegs,
3964 std::set<unsigned> &InputRegs) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003965 // Compute whether this value requires an input register, an output register,
3966 // or both.
3967 bool isOutReg = false;
3968 bool isInReg = false;
3969 switch (OpInfo.Type) {
3970 case InlineAsm::isOutput:
3971 isOutReg = true;
3972
3973 // If this is an early-clobber output, or if there is an input
3974 // constraint that matches this, we need to reserve the input register
3975 // so no other inputs allocate to it.
3976 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3977 break;
3978 case InlineAsm::isInput:
3979 isInReg = true;
3980 isOutReg = false;
3981 break;
3982 case InlineAsm::isClobber:
3983 isOutReg = true;
3984 isInReg = true;
3985 break;
3986 }
3987
3988
3989 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerb606dba2008-04-28 06:44:42 +00003990 SmallVector<unsigned, 4> Regs;
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003991
3992 // If this is a constraint for a single physreg, or a constraint for a
3993 // register class, find it.
3994 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
3995 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3996 OpInfo.ConstraintVT);
Chris Lattnerbf996f12007-04-30 17:29:31 +00003997
3998 unsigned NumRegs = 1;
3999 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohmanb9f10192007-06-21 14:42:22 +00004000 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004001 MVT RegVT;
4002 MVT ValueVT = OpInfo.ConstraintVT;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004003
Chris Lattnerbf996f12007-04-30 17:29:31 +00004004
4005 // If this is a constraint for a specific physical register, like {r17},
4006 // assign it now.
4007 if (PhysReg.first) {
4008 if (OpInfo.ConstraintVT == MVT::Other)
4009 ValueVT = *PhysReg.second->vt_begin();
4010
4011 // Get the actual register value type. This is important, because the user
4012 // may have asked for (e.g.) the AX register in i32 type. We need to
4013 // remember that AX is actually i16 to get the right extension.
4014 RegVT = *PhysReg.second->vt_begin();
4015
4016 // This is a explicit reference to a physical register.
4017 Regs.push_back(PhysReg.first);
4018
4019 // If this is an expanded reference, add the rest of the regs to Regs.
4020 if (NumRegs != 1) {
4021 TargetRegisterClass::iterator I = PhysReg.second->begin();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004022 for (; *I != PhysReg.first; ++I)
Evan Cheng50871242008-05-14 20:07:51 +00004023 assert(I != PhysReg.second->end() && "Didn't find reg!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004024
4025 // Already added the first reg.
4026 --NumRegs; ++I;
4027 for (; NumRegs; --NumRegs, ++I) {
Evan Cheng50871242008-05-14 20:07:51 +00004028 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004029 Regs.push_back(*I);
4030 }
4031 }
Dan Gohman23ce5022008-04-25 18:27:55 +00004032 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004033 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4034 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004035 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004036 }
4037
4038 // Otherwise, if this was a reference to an LLVM register class, create vregs
4039 // for this reference.
4040 std::vector<unsigned> RegClassRegs;
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004041 const TargetRegisterClass *RC = PhysReg.second;
4042 if (RC) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004043 // If this is an early clobber or tied register, our regalloc doesn't know
4044 // how to maintain the constraint. If it isn't, go ahead and create vreg
4045 // and let the regalloc do the right thing.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004046 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4047 // If there is some other early clobber and this is an input register,
4048 // then we are forced to pre-allocate the input reg so it doesn't
4049 // conflict with the earlyclobber.
4050 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004051 RegVT = *PhysReg.second->vt_begin();
4052
4053 if (OpInfo.ConstraintVT == MVT::Other)
4054 ValueVT = RegVT;
4055
4056 // Create the appropriate number of virtual registers.
Chris Lattner84bc5422007-12-31 04:13:23 +00004057 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004058 for (; NumRegs; --NumRegs)
Chris Lattner84bc5422007-12-31 04:13:23 +00004059 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Chris Lattnerbf996f12007-04-30 17:29:31 +00004060
Dan Gohman23ce5022008-04-25 18:27:55 +00004061 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004062 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004063 }
4064
4065 // Otherwise, we can't allocate it. Let the code below figure out how to
4066 // maintain these constraints.
4067 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4068
4069 } else {
4070 // This is a reference to a register class that doesn't directly correspond
4071 // to an LLVM register class. Allocate NumRegs consecutive, available,
4072 // registers from the class.
4073 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4074 OpInfo.ConstraintVT);
4075 }
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004076
Dan Gohman6f0d0242008-02-10 18:45:23 +00004077 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004078 unsigned NumAllocated = 0;
4079 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4080 unsigned Reg = RegClassRegs[i];
4081 // See if this register is available.
4082 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4083 (isInReg && InputRegs.count(Reg))) { // Already used.
4084 // Make sure we find consecutive registers.
4085 NumAllocated = 0;
4086 continue;
4087 }
4088
4089 // Check to see if this register is allocatable (i.e. don't give out the
4090 // stack pointer).
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004091 if (RC == 0) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004092 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004093 if (!RC) { // Couldn't allocate this register.
4094 // Reset NumAllocated to make sure we return consecutive registers.
4095 NumAllocated = 0;
4096 continue;
4097 }
Chris Lattnerbf996f12007-04-30 17:29:31 +00004098 }
4099
4100 // Okay, this register is good, we can use it.
4101 ++NumAllocated;
4102
4103 // If we allocated enough consecutive registers, succeed.
4104 if (NumAllocated == NumRegs) {
4105 unsigned RegStart = (i-NumAllocated)+1;
4106 unsigned RegEnd = i+1;
4107 // Mark all of the allocated registers used.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004108 for (unsigned i = RegStart; i != RegEnd; ++i)
4109 Regs.push_back(RegClassRegs[i]);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004110
Dan Gohman23ce5022008-04-25 18:27:55 +00004111 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004112 OpInfo.ConstraintVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004113 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004114 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004115 }
4116 }
4117
4118 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattnerbf996f12007-04-30 17:29:31 +00004119}
4120
4121
Chris Lattnerce7518c2006-01-26 22:24:51 +00004122/// visitInlineAsm - Handle a call to an InlineAsm object.
4123///
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004124void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4125 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004126
Chris Lattner0c583402007-04-28 20:49:53 +00004127 /// ConstraintOperands - Information about all of the constraints.
Evan Cheng5c807602008-02-26 02:33:44 +00004128 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004129
Dan Gohman475871a2008-07-27 21:46:04 +00004130 SDValue Chain = getRoot();
4131 SDValue Flag;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004132
Chris Lattner4e4b5762006-02-01 18:59:47 +00004133 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004134
Chris Lattner0c583402007-04-28 20:49:53 +00004135 // Do a prepass over the constraints, canonicalizing them, and building up the
4136 // ConstraintOperands list.
4137 std::vector<InlineAsm::ConstraintInfo>
4138 ConstraintInfos = IA->ParseConstraints();
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004139
4140 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4141 // constraint. If so, we can't let the register allocator allocate any input
4142 // registers, because it will not know to avoid the earlyclobbered output reg.
4143 bool SawEarlyClobber = false;
4144
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004145 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattneracf8b012008-04-27 23:44:28 +00004146 unsigned ResNo = 0; // ResNo - The result number of the next output.
Chris Lattner0c583402007-04-28 20:49:53 +00004147 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004148 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4149 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Chris Lattner0c583402007-04-28 20:49:53 +00004150
Duncan Sands83ec4b62008-06-06 12:08:01 +00004151 MVT OpVT = MVT::Other;
Chris Lattner0c583402007-04-28 20:49:53 +00004152
4153 // Compute the value type for each operand.
4154 switch (OpInfo.Type) {
Chris Lattner1efa40f2006-02-22 00:56:39 +00004155 case InlineAsm::isOutput:
Chris Lattneracf8b012008-04-27 23:44:28 +00004156 // Indirect outputs just consume an argument.
4157 if (OpInfo.isIndirect) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004158 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattneracf8b012008-04-27 23:44:28 +00004159 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004160 }
Chris Lattneracf8b012008-04-27 23:44:28 +00004161 // The return value of the call is this value. As such, there is no
4162 // corresponding argument.
4163 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4164 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4165 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4166 } else {
4167 assert(ResNo == 0 && "Asm only has one result!");
4168 OpVT = TLI.getValueType(CS.getType());
4169 }
4170 ++ResNo;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004171 break;
4172 case InlineAsm::isInput:
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004173 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner1efa40f2006-02-22 00:56:39 +00004174 break;
4175 case InlineAsm::isClobber:
Chris Lattner0c583402007-04-28 20:49:53 +00004176 // Nothing to do.
Chris Lattner1efa40f2006-02-22 00:56:39 +00004177 break;
4178 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004179
Chris Lattner0c583402007-04-28 20:49:53 +00004180 // If this is an input or an indirect output, process the call argument.
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004181 // BasicBlocks are labels, currently appearing only in asm's.
Chris Lattner0c583402007-04-28 20:49:53 +00004182 if (OpInfo.CallOperandVal) {
Chris Lattner507ffd22008-04-27 00:16:18 +00004183 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4184 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004185 else {
4186 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4187 const Type *OpTy = OpInfo.CallOperandVal->getType();
4188 // If this is an indirect operand, the operand is a pointer to the
4189 // accessed type.
4190 if (OpInfo.isIndirect)
4191 OpTy = cast<PointerType>(OpTy)->getElementType();
4192
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004193 // If OpTy is not a single value, it may be a struct/union that we
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004194 // can tile with integers.
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004195 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004196 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4197 switch (BitSize) {
4198 default: break;
4199 case 1:
4200 case 8:
4201 case 16:
4202 case 32:
4203 case 64:
4204 OpTy = IntegerType::get(BitSize);
4205 break;
4206 }
Chris Lattner6995cf62007-04-29 18:58:03 +00004207 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004208
4209 OpVT = TLI.getValueType(OpTy, true);
Chris Lattner0c583402007-04-28 20:49:53 +00004210 }
4211 }
4212
4213 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a600be2007-04-28 21:01:43 +00004214
Chris Lattner3ff90dc2007-04-30 17:16:27 +00004215 // Compute the constraint code and ConstraintType to use.
Chris Lattner5a096902008-04-27 00:37:18 +00004216 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Chris Lattner0c583402007-04-28 20:49:53 +00004217
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004218 // Keep track of whether we see an earlyclobber.
4219 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004220
Chris Lattner0fe71e92008-02-21 19:43:13 +00004221 // If we see a clobber of a register, it is an early clobber.
Chris Lattner69e6a8d2008-02-21 20:54:31 +00004222 if (!SawEarlyClobber &&
4223 OpInfo.Type == InlineAsm::isClobber &&
4224 OpInfo.ConstraintType == TargetLowering::C_Register) {
4225 // Note that we want to ignore things that we don't trick here, like
4226 // dirflag, fpsr, flags, etc.
4227 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4228 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4229 OpInfo.ConstraintVT);
4230 if (PhysReg.first || PhysReg.second) {
4231 // This is a register we know of.
4232 SawEarlyClobber = true;
4233 }
4234 }
Chris Lattner0fe71e92008-02-21 19:43:13 +00004235
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004236 // If this is a memory input, and if the operand is not indirect, do what we
4237 // need to to provide an address for the memory input.
4238 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4239 !OpInfo.isIndirect) {
4240 assert(OpInfo.Type == InlineAsm::isInput &&
4241 "Can only indirectify direct input operands!");
4242
4243 // Memory operands really want the address of the value. If we don't have
4244 // an indirect input, put it in the constpool if we can, otherwise spill
4245 // it to a stack slot.
4246
4247 // If the operand is a float, integer, or vector constant, spill to a
4248 // constant pool entry to get its address.
4249 Value *OpVal = OpInfo.CallOperandVal;
4250 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4251 isa<ConstantVector>(OpVal)) {
4252 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4253 TLI.getPointerTy());
4254 } else {
4255 // Otherwise, create a stack slot and emit a store to it before the
4256 // asm.
4257 const Type *Ty = OpVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +00004258 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004259 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4260 MachineFunction &MF = DAG.getMachineFunction();
4261 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
Dan Gohman475871a2008-07-27 21:46:04 +00004262 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004263 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4264 OpInfo.CallOperand = StackSlot;
4265 }
4266
4267 // There is no longer a Value* corresponding to this operand.
4268 OpInfo.CallOperandVal = 0;
4269 // It is now an indirect operand.
4270 OpInfo.isIndirect = true;
4271 }
4272
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004273 // If this constraint is for a specific register, allocate it before
4274 // anything else.
4275 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4276 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattner0c583402007-04-28 20:49:53 +00004277 }
Chris Lattner0c583402007-04-28 20:49:53 +00004278 ConstraintInfos.clear();
4279
4280
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004281 // Second pass - Loop over all of the operands, assigning virtual or physregs
4282 // to registerclass operands.
4283 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004284 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004285
4286 // C_Register operands have already been allocated, Other/Memory don't need
4287 // to be.
4288 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4289 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4290 }
4291
Chris Lattner0c583402007-04-28 20:49:53 +00004292 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
Dan Gohman475871a2008-07-27 21:46:04 +00004293 std::vector<SDValue> AsmNodeOperands;
4294 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
Chris Lattner0c583402007-04-28 20:49:53 +00004295 AsmNodeOperands.push_back(
4296 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4297
Chris Lattner2cc2f662006-02-01 01:28:23 +00004298
Chris Lattner0f0b7d42006-02-21 23:12:12 +00004299 // Loop over all of the inputs, copying the operand values into the
4300 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00004301 RegsForValue RetValRegs;
Chris Lattner41f62592008-04-29 04:29:54 +00004302
Chris Lattner0c583402007-04-28 20:49:53 +00004303 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4304 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4305
4306 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004307 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner1efa40f2006-02-22 00:56:39 +00004308
Chris Lattner0c583402007-04-28 20:49:53 +00004309 switch (OpInfo.Type) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00004310 case InlineAsm::isOutput: {
Chris Lattnerc83994e2007-04-28 21:03:16 +00004311 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4312 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerf2f3cd52007-04-28 06:08:13 +00004313 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004314 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner22873462006-02-27 23:45:39 +00004315
Chris Lattner22873462006-02-27 23:45:39 +00004316 // Add information to the INLINEASM node to know about this output.
4317 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004318 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4319 TLI.getPointerTy()));
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004320 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner22873462006-02-27 23:45:39 +00004321 break;
4322 }
4323
Chris Lattner2a600be2007-04-28 21:01:43 +00004324 // Otherwise, this is a register or register class output.
Chris Lattner22873462006-02-27 23:45:39 +00004325
Chris Lattner864635a2006-02-22 22:37:12 +00004326 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00004327 // we can use.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004328 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sandsa47c6c32008-06-17 03:24:13 +00004329 cerr << "Couldn't allocate output reg for constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004330 << OpInfo.ConstraintCode << "'!\n";
Chris Lattnerd03f1582006-10-31 07:33:13 +00004331 exit(1);
4332 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004333
Chris Lattner41f62592008-04-29 04:29:54 +00004334 // If this is an indirect operand, store through the pointer after the
4335 // asm.
4336 if (OpInfo.isIndirect) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004337 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattner0c583402007-04-28 20:49:53 +00004338 OpInfo.CallOperandVal));
Chris Lattner41f62592008-04-29 04:29:54 +00004339 } else {
4340 // This is the result value of the call.
4341 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4342 // Concatenate this output onto the outputs list.
4343 RetValRegs.append(OpInfo.AssignedRegs);
Chris Lattner2cc2f662006-02-01 01:28:23 +00004344 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004345
4346 // Add information to the INLINEASM node to know that this register is
4347 // set.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004348 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4349 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004350 break;
4351 }
4352 case InlineAsm::isInput: {
Dan Gohman475871a2008-07-27 21:46:04 +00004353 SDValue InOperandVal = OpInfo.CallOperand;
Chris Lattner3d81fee2006-02-04 02:16:44 +00004354
Chris Lattner0c583402007-04-28 20:49:53 +00004355 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner2223aea2006-02-02 00:25:23 +00004356 // If this is required to match an output register we have already set,
4357 // just use its register.
Chris Lattner0c583402007-04-28 20:49:53 +00004358 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00004359
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004360 // Scan until we find the definition we already emitted of this operand.
4361 // When we find it, create a RegsForValue operand.
4362 unsigned CurOp = 2; // The first operand.
4363 for (; OperandNo; --OperandNo) {
4364 // Advance to the next operand.
4365 unsigned NumOps =
4366 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00004367 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4368 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004369 "Skipped past definitions?");
4370 CurOp += (NumOps>>3)+1;
4371 }
4372
4373 unsigned NumOps =
4374 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattner527fae12007-02-01 01:21:12 +00004375 if ((NumOps & 7) == 2 /*REGDEF*/) {
4376 // Add NumOps>>3 registers to MatchedRegs.
4377 RegsForValue MatchedRegs;
Dan Gohman23ce5022008-04-25 18:27:55 +00004378 MatchedRegs.TLI = &TLI;
Dan Gohman1fa850b2008-05-02 00:03:54 +00004379 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4380 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Chris Lattner527fae12007-02-01 01:21:12 +00004381 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4382 unsigned Reg =
4383 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4384 MatchedRegs.Regs.push_back(Reg);
4385 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004386
Chris Lattner527fae12007-02-01 01:21:12 +00004387 // Use the produced MatchedRegs object to
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004388 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner527fae12007-02-01 01:21:12 +00004389 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4390 break;
4391 } else {
4392 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattnerf9853bc2008-02-21 05:27:19 +00004393 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4394 // Add information to the INLINEASM node to know about this input.
4395 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4396 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4397 TLI.getPointerTy()));
4398 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4399 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004400 }
Chris Lattner2223aea2006-02-02 00:25:23 +00004401 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004402
Chris Lattner2a600be2007-04-28 21:01:43 +00004403 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Chris Lattner0c583402007-04-28 20:49:53 +00004404 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004405 "Don't know how to handle indirect other inputs yet!");
4406
Dan Gohman475871a2008-07-27 21:46:04 +00004407 std::vector<SDValue> Ops;
Chris Lattner48884cd2007-08-25 00:47:38 +00004408 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4409 Ops, DAG);
4410 if (Ops.empty()) {
Bill Wendling832171c2006-12-07 20:04:42 +00004411 cerr << "Invalid operand for inline asm constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004412 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner53069fb2006-10-31 19:41:18 +00004413 exit(1);
4414 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004415
4416 // Add information to the INLINEASM node to know about this input.
Chris Lattner48884cd2007-08-25 00:47:38 +00004417 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004418 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4419 TLI.getPointerTy()));
Chris Lattner48884cd2007-08-25 00:47:38 +00004420 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004421 break;
Chris Lattner2a600be2007-04-28 21:01:43 +00004422 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004423 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner44b2c502007-04-28 06:42:38 +00004424 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4425 "Memory operands expect pointer values");
4426
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004427 // Add information to the INLINEASM node to know about this input.
4428 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004429 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4430 TLI.getPointerTy()));
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004431 AsmNodeOperands.push_back(InOperandVal);
4432 break;
4433 }
4434
Chris Lattner2a600be2007-04-28 21:01:43 +00004435 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4436 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4437 "Unknown constraint type!");
Chris Lattner0c583402007-04-28 20:49:53 +00004438 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004439 "Don't know how to handle indirect register inputs yet!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004440
4441 // Copy the input into the appropriate registers.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004442 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4443 "Couldn't allocate input reg!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004444
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004445 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004446
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004447 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4448 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004449 break;
4450 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004451 case InlineAsm::isClobber: {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004452 // Add the clobbered value to the operand list, so that the register
4453 // allocator is aware that the physreg got clobbered.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004454 if (!OpInfo.AssignedRegs.Regs.empty())
4455 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4456 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004457 break;
4458 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004459 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004460 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004461
4462 // Finish up input operands.
4463 AsmNodeOperands[0] = Chain;
4464 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4465
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004466 Chain = DAG.getNode(ISD::INLINEASM,
4467 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004468 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004469 Flag = Chain.getValue(1);
4470
Chris Lattner6656dd12006-01-31 02:03:41 +00004471 // If this asm returns a register value, copy the result from that register
4472 // and set it as the value of the call.
Chris Lattner3a508c92007-04-12 06:00:20 +00004473 if (!RetValRegs.Regs.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00004474 SDValue Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner3fb29682008-04-29 04:48:56 +00004475
4476 // If any of the results of the inline asm is a vector, it may have the
4477 // wrong width/num elts. This can happen for register classes that can
4478 // contain multiple different value types. The preg or vreg allocated may
4479 // not have the same VT as was expected. Convert it to the right type with
Dan Gohman7f321562007-06-25 16:23:39 +00004480 // bit_convert.
Chris Lattner3fb29682008-04-29 04:48:56 +00004481 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4482 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004483 if (Val.Val->getValueType(i).isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004484 Val = DAG.getNode(ISD::BIT_CONVERT,
4485 TLI.getValueType(ResSTy->getElementType(i)), Val);
4486 }
4487 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004488 if (Val.getValueType().isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004489 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4490 Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004491 }
Chris Lattner3fb29682008-04-29 04:48:56 +00004492
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004493 setValue(CS.getInstruction(), Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004494 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004495
Dan Gohman475871a2008-07-27 21:46:04 +00004496 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Chris Lattner6656dd12006-01-31 02:03:41 +00004497
4498 // Process indirect outputs, first output all of the flagged copies out of
4499 // physregs.
4500 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00004501 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00004502 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohman475871a2008-07-27 21:46:04 +00004503 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner864635a2006-02-22 22:37:12 +00004504 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00004505 }
4506
4507 // Emit the non-flagged stores from the physregs.
Dan Gohman475871a2008-07-27 21:46:04 +00004508 SmallVector<SDValue, 8> OutChains;
Chris Lattner6656dd12006-01-31 02:03:41 +00004509 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattner0c583402007-04-28 20:49:53 +00004510 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner6656dd12006-01-31 02:03:41 +00004511 getValue(StoresToEmit[i].second),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004512 StoresToEmit[i].second, 0));
Chris Lattner6656dd12006-01-31 02:03:41 +00004513 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004514 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4515 &OutChains[0], OutChains.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004516 DAG.setRoot(Chain);
4517}
4518
4519
Chris Lattner1c08c712005-01-07 07:47:53 +00004520void SelectionDAGLowering::visitMalloc(MallocInst &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00004521 SDValue Src = getValue(I.getOperand(0));
Chris Lattner1c08c712005-01-07 07:47:53 +00004522
Duncan Sands83ec4b62008-06-06 12:08:01 +00004523 MVT IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00004524
Duncan Sands8e4eb092008-06-08 20:54:56 +00004525 if (IntPtr.bitsLT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004526 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004527 else if (IntPtr.bitsGT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004528 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00004529
4530 // Scale the source by the type size.
Duncan Sands514ab342007-11-01 20:53:16 +00004531 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00004532 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner0bd48932008-01-17 07:00:52 +00004533 Src, DAG.getIntPtrConstant(ElementSize));
Chris Lattner1c08c712005-01-07 07:47:53 +00004534
Reid Spencer47857812006-12-31 05:55:36 +00004535 TargetLowering::ArgListTy Args;
4536 TargetLowering::ArgListEntry Entry;
4537 Entry.Node = Src;
4538 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004539 Args.push_back(Entry);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004540
Dan Gohman475871a2008-07-27 21:46:04 +00004541 std::pair<SDValue,SDValue> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004542 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4543 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004544 setValue(&I, Result.first); // Pointers always fit in registers
4545 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004546}
4547
4548void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencer47857812006-12-31 05:55:36 +00004549 TargetLowering::ArgListTy Args;
4550 TargetLowering::ArgListEntry Entry;
4551 Entry.Node = getValue(I.getOperand(0));
4552 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004553 Args.push_back(Entry);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004554 MVT IntPtr = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00004555 std::pair<SDValue,SDValue> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004556 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4557 CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00004558 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4559 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004560}
4561
Evan Chengff9b3732008-01-30 18:18:23 +00004562// EmitInstrWithCustomInserter - This method should be implemented by targets
4563// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +00004564// instructions are special in various ways, which require special support to
4565// insert. The specified MachineInstr is created but not inserted into any
4566// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +00004567MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Chris Lattner025c39b2005-08-26 20:54:47 +00004568 MachineBasicBlock *MBB) {
Bill Wendling832171c2006-12-07 20:04:42 +00004569 cerr << "If a target marks an instruction with "
4570 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chengff9b3732008-01-30 18:18:23 +00004571 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Chris Lattner025c39b2005-08-26 20:54:47 +00004572 abort();
4573 return 0;
4574}
4575
Chris Lattner39ae3622005-01-09 00:00:49 +00004576void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004577 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4578 getValue(I.getOperand(1)),
4579 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00004580}
4581
4582void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dan Gohman475871a2008-07-27 21:46:04 +00004583 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
Nate Begemanacc398c2006-01-25 18:21:52 +00004584 getValue(I.getOperand(0)),
4585 DAG.getSrcValue(I.getOperand(0)));
4586 setValue(&I, V);
4587 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00004588}
4589
4590void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004591 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4592 getValue(I.getOperand(1)),
4593 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004594}
4595
4596void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004597 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4598 getValue(I.getOperand(1)),
4599 getValue(I.getOperand(2)),
4600 DAG.getSrcValue(I.getOperand(1)),
4601 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004602}
4603
Chris Lattnerfdfded52006-04-12 16:20:43 +00004604/// TargetLowering::LowerArguments - This is the default LowerArguments
4605/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004606/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4607/// integrated into SDISel.
Dan Gohmana44b6742008-06-30 20:31:15 +00004608void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004609 SmallVectorImpl<SDValue> &ArgValues) {
Chris Lattnerfdfded52006-04-12 16:20:43 +00004610 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
Dan Gohman475871a2008-07-27 21:46:04 +00004611 SmallVector<SDValue, 3+16> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004612 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00004613 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4614 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4615
4616 // Add one result value for each formal argument.
Dan Gohmana44b6742008-06-30 20:31:15 +00004617 SmallVector<MVT, 16> RetVals;
Anton Korobeynikov6aa279d2007-01-28 18:01:49 +00004618 unsigned j = 1;
Anton Korobeynikovac2b2cf2007-01-28 16:04:40 +00004619 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4620 I != E; ++I, ++j) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004621 SmallVector<MVT, 4> ValueVTs;
4622 ComputeValueVTs(*this, I->getType(), ValueVTs);
4623 for (unsigned Value = 0, NumValues = ValueVTs.size();
4624 Value != NumValues; ++Value) {
4625 MVT VT = ValueVTs[Value];
4626 const Type *ArgTy = VT.getTypeForMVT();
4627 ISD::ArgFlagsTy Flags;
4628 unsigned OriginalAlignment =
4629 getTargetData()->getABITypeAlignment(ArgTy);
Lauro Ramos Venancio7aa47b62007-02-13 13:50:08 +00004630
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004631 if (F.paramHasAttr(j, ParamAttr::ZExt))
4632 Flags.setZExt();
4633 if (F.paramHasAttr(j, ParamAttr::SExt))
4634 Flags.setSExt();
4635 if (F.paramHasAttr(j, ParamAttr::InReg))
4636 Flags.setInReg();
4637 if (F.paramHasAttr(j, ParamAttr::StructRet))
4638 Flags.setSRet();
4639 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4640 Flags.setByVal();
4641 const PointerType *Ty = cast<PointerType>(I->getType());
4642 const Type *ElementTy = Ty->getElementType();
4643 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4644 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4645 // For ByVal, alignment should be passed from FE. BE will guess if
4646 // this info is not there but there are cases it cannot get right.
4647 if (F.getParamAlignment(j))
4648 FrameAlign = F.getParamAlignment(j);
4649 Flags.setByValAlign(FrameAlign);
4650 Flags.setByValSize(FrameSize);
4651 }
4652 if (F.paramHasAttr(j, ParamAttr::Nest))
4653 Flags.setNest();
4654 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004655
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004656 MVT RegisterVT = getRegisterType(VT);
4657 unsigned NumRegs = getNumRegisters(VT);
4658 for (unsigned i = 0; i != NumRegs; ++i) {
4659 RetVals.push_back(RegisterVT);
4660 ISD::ArgFlagsTy MyFlags = Flags;
4661 if (NumRegs > 1 && i == 0)
4662 MyFlags.setSplit();
4663 // if it isn't first piece, alignment must be 1
4664 else if (i > 0)
4665 MyFlags.setOrigAlign(1);
4666 Ops.push_back(DAG.getArgFlags(MyFlags));
4667 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004668 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004669 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00004670
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004671 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00004672
4673 // Create the node.
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004674 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004675 DAG.getVTList(&RetVals[0], RetVals.size()),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004676 &Ops[0], Ops.size()).Val;
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004677
4678 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4679 // allows exposing the loads that may be part of the argument access to the
4680 // first DAGCombiner pass.
Dan Gohman475871a2008-07-27 21:46:04 +00004681 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004682
4683 // The number of results should match up, except that the lowered one may have
4684 // an extra flag result.
4685 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4686 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4687 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4688 && "Lowering produced unexpected number of results!");
Dan Gohman2dbc1672008-07-21 21:04:07 +00004689
4690 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
4691 if (Result != TmpRes.Val && Result->use_empty()) {
4692 HandleSDNode Dummy(DAG.getRoot());
4693 DAG.RemoveDeadNode(Result);
4694 }
4695
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004696 Result = TmpRes.Val;
4697
Dan Gohman27a70be2007-07-02 16:18:06 +00004698 unsigned NumArgRegs = Result->getNumValues() - 1;
Dan Gohman475871a2008-07-27 21:46:04 +00004699 DAG.setRoot(SDValue(Result, NumArgRegs));
Chris Lattnerfdfded52006-04-12 16:20:43 +00004700
4701 // Set up the return result vector.
Chris Lattnerfdfded52006-04-12 16:20:43 +00004702 unsigned i = 0;
Reid Spencer47857812006-12-31 05:55:36 +00004703 unsigned Idx = 1;
4704 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4705 ++I, ++Idx) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004706 SmallVector<MVT, 4> ValueVTs;
4707 ComputeValueVTs(*this, I->getType(), ValueVTs);
4708 for (unsigned Value = 0, NumValues = ValueVTs.size();
4709 Value != NumValues; ++Value) {
4710 MVT VT = ValueVTs[Value];
4711 MVT PartVT = getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004712
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004713 unsigned NumParts = getNumRegisters(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004714 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004715 for (unsigned j = 0; j != NumParts; ++j)
Dan Gohman475871a2008-07-27 21:46:04 +00004716 Parts[j] = SDValue(Result, i++);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004717
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004718 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4719 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4720 AssertOp = ISD::AssertSext;
4721 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4722 AssertOp = ISD::AssertZext;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004723
Dan Gohmana44b6742008-06-30 20:31:15 +00004724 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4725 AssertOp));
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004726 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004727 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004728 assert(i == NumArgRegs && "Argument register count mismatch!");
Chris Lattnerfdfded52006-04-12 16:20:43 +00004729}
4730
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004731
4732/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4733/// implementation, which just inserts an ISD::CALL node, which is later custom
4734/// lowered by the target to something concrete. FIXME: When all targets are
4735/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
Dan Gohman475871a2008-07-27 21:46:04 +00004736std::pair<SDValue, SDValue>
4737TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
Duncan Sands00fee652008-02-14 17:28:50 +00004738 bool RetSExt, bool RetZExt, bool isVarArg,
4739 unsigned CallingConv, bool isTailCall,
Dan Gohman475871a2008-07-27 21:46:04 +00004740 SDValue Callee,
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004741 ArgListTy &Args, SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00004742 SmallVector<SDValue, 32> Ops;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004743 Ops.push_back(Chain); // Op#0 - Chain
4744 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4745 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4746 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4747 Ops.push_back(Callee);
4748
4749 // Handle all of the outgoing arguments.
4750 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004751 SmallVector<MVT, 4> ValueVTs;
4752 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4753 for (unsigned Value = 0, NumValues = ValueVTs.size();
4754 Value != NumValues; ++Value) {
4755 MVT VT = ValueVTs[Value];
4756 const Type *ArgTy = VT.getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00004757 SDValue Op = SDValue(Args[i].Node.Val, Args[i].Node.ResNo + Value);
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004758 ISD::ArgFlagsTy Flags;
4759 unsigned OriginalAlignment =
4760 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sands276dcbd2008-03-21 09:14:45 +00004761
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004762 if (Args[i].isZExt)
4763 Flags.setZExt();
4764 if (Args[i].isSExt)
4765 Flags.setSExt();
4766 if (Args[i].isInReg)
4767 Flags.setInReg();
4768 if (Args[i].isSRet)
4769 Flags.setSRet();
4770 if (Args[i].isByVal) {
4771 Flags.setByVal();
4772 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4773 const Type *ElementTy = Ty->getElementType();
4774 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4775 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4776 // For ByVal, alignment should come from FE. BE will guess if this
4777 // info is not there but there are cases it cannot get right.
4778 if (Args[i].Alignment)
4779 FrameAlign = Args[i].Alignment;
4780 Flags.setByValAlign(FrameAlign);
4781 Flags.setByValSize(FrameSize);
4782 }
4783 if (Args[i].isNest)
4784 Flags.setNest();
4785 Flags.setOrigAlign(OriginalAlignment);
Dan Gohman27a70be2007-07-02 16:18:06 +00004786
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004787 MVT PartVT = getRegisterType(VT);
4788 unsigned NumParts = getNumRegisters(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004789 SmallVector<SDValue, 4> Parts(NumParts);
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004790 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004791
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004792 if (Args[i].isSExt)
4793 ExtendKind = ISD::SIGN_EXTEND;
4794 else if (Args[i].isZExt)
4795 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004796
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004797 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004798
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004799 for (unsigned i = 0; i != NumParts; ++i) {
4800 // if it isn't first piece, alignment must be 1
4801 ISD::ArgFlagsTy MyFlags = Flags;
4802 if (NumParts > 1 && i == 0)
4803 MyFlags.setSplit();
4804 else if (i != 0)
4805 MyFlags.setOrigAlign(1);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004806
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004807 Ops.push_back(Parts[i]);
4808 Ops.push_back(DAG.getArgFlags(MyFlags));
4809 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004810 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004811 }
4812
Dan Gohmanef5d1942008-03-11 21:11:25 +00004813 // Figure out the result value types. We start by making a list of
Dan Gohman23ce5022008-04-25 18:27:55 +00004814 // the potentially illegal return value types.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004815 SmallVector<MVT, 4> LoweredRetTys;
4816 SmallVector<MVT, 4> RetTys;
Dan Gohman23ce5022008-04-25 18:27:55 +00004817 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004818
Dan Gohman23ce5022008-04-25 18:27:55 +00004819 // Then we translate that to a list of legal types.
4820 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004821 MVT VT = RetTys[I];
4822 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004823 unsigned NumRegs = getNumRegisters(VT);
4824 for (unsigned i = 0; i != NumRegs; ++i)
4825 LoweredRetTys.push_back(RegisterVT);
4826 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004827
Dan Gohmanef5d1942008-03-11 21:11:25 +00004828 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004829
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004830 // Create the CALL node.
Dan Gohman475871a2008-07-27 21:46:04 +00004831 SDValue Res = DAG.getNode(ISD::CALL,
Dan Gohmanef5d1942008-03-11 21:11:25 +00004832 DAG.getVTList(&LoweredRetTys[0],
4833 LoweredRetTys.size()),
Chris Lattnerbe384162006-08-16 22:57:46 +00004834 &Ops[0], Ops.size());
Dan Gohmanef5d1942008-03-11 21:11:25 +00004835 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004836
4837 // Gather up the call result into a single value.
4838 if (RetTy != Type::VoidTy) {
Duncan Sands00fee652008-02-14 17:28:50 +00004839 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4840
4841 if (RetSExt)
4842 AssertOp = ISD::AssertSext;
4843 else if (RetZExt)
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004844 AssertOp = ISD::AssertZext;
Duncan Sands00fee652008-02-14 17:28:50 +00004845
Dan Gohman475871a2008-07-27 21:46:04 +00004846 SmallVector<SDValue, 4> ReturnValues;
Dan Gohmanef5d1942008-03-11 21:11:25 +00004847 unsigned RegNo = 0;
Dan Gohman23ce5022008-04-25 18:27:55 +00004848 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004849 MVT VT = RetTys[I];
4850 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004851 unsigned NumRegs = getNumRegisters(VT);
4852 unsigned RegNoEnd = NumRegs + RegNo;
Dan Gohman475871a2008-07-27 21:46:04 +00004853 SmallVector<SDValue, 4> Results;
Dan Gohmanef5d1942008-03-11 21:11:25 +00004854 for (; RegNo != RegNoEnd; ++RegNo)
4855 Results.push_back(Res.getValue(RegNo));
Dan Gohman475871a2008-07-27 21:46:04 +00004856 SDValue ReturnValue =
Dan Gohmanef5d1942008-03-11 21:11:25 +00004857 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4858 AssertOp);
4859 ReturnValues.push_back(ReturnValue);
4860 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004861 Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4862 &ReturnValues[0], ReturnValues.size());
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004863 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004864
4865 return std::make_pair(Res, Chain);
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004866}
4867
Dan Gohman475871a2008-07-27 21:46:04 +00004868SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00004869 assert(0 && "LowerOperation not implemented for this target!");
4870 abort();
Dan Gohman475871a2008-07-27 21:46:04 +00004871 return SDValue();
Chris Lattner171453a2005-01-16 07:28:41 +00004872}
4873
Nate Begeman0aed7842006-01-28 03:14:31 +00004874
Chris Lattner7041ee32005-01-11 05:56:49 +00004875//===----------------------------------------------------------------------===//
4876// SelectionDAGISel code
4877//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00004878
Duncan Sands83ec4b62008-06-06 12:08:01 +00004879unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +00004880 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +00004881}
4882
Chris Lattner495a0b52005-08-17 06:37:43 +00004883void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004884 AU.addRequired<AliasAnalysis>();
Gordon Henriksence224772008-01-07 01:30:38 +00004885 AU.addRequired<CollectorModuleMetadata>();
Chris Lattnerc8d288f2007-03-31 04:18:03 +00004886 AU.setPreservesAll();
Chris Lattner495a0b52005-08-17 06:37:43 +00004887}
Chris Lattner1c08c712005-01-07 07:47:53 +00004888
Chris Lattner1c08c712005-01-07 07:47:53 +00004889bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman5f43f922007-08-27 16:26:13 +00004890 // Get alias analysis for load/store combining.
4891 AA = &getAnalysis<AliasAnalysis>();
4892
Chris Lattner1c08c712005-01-07 07:47:53 +00004893 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksence224772008-01-07 01:30:38 +00004894 if (MF.getFunction()->hasCollector())
4895 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4896 else
4897 GCI = 0;
Chris Lattner84bc5422007-12-31 04:13:23 +00004898 RegInfo = &MF.getRegInfo();
Bill Wendling832171c2006-12-07 20:04:42 +00004899 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00004900
4901 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4902
Dale Johannesen1532f3d2008-04-02 00:25:04 +00004903 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4904 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4905 // Mark landing pad.
4906 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +00004907
Dan Gohman0e5f1302008-07-07 23:02:41 +00004908 SelectAllBasicBlocks(Fn, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00004909
Evan Chengad2070c2007-02-10 02:43:39 +00004910 // Add function live-ins to entry block live-in set.
4911 BasicBlock *EntryBB = &Fn.getEntryBlock();
4912 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner84bc5422007-12-31 04:13:23 +00004913 if (!RegInfo->livein_empty())
4914 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4915 E = RegInfo->livein_end(); I != E; ++I)
Evan Chengad2070c2007-02-10 02:43:39 +00004916 BB->addLiveIn(I->first);
4917
Duncan Sandsf4070822007-06-15 19:04:19 +00004918#ifndef NDEBUG
4919 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4920 "Not all catch info was assigned to a landing pad!");
4921#endif
4922
Chris Lattner1c08c712005-01-07 07:47:53 +00004923 return true;
4924}
4925
Chris Lattner6833b062008-04-28 07:16:35 +00004926void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Dan Gohman475871a2008-07-27 21:46:04 +00004927 SDValue Op = getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00004928 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004929 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00004930 "Copy from a reg to the same reg!");
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004931 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004932
Dan Gohman23ce5022008-04-25 18:27:55 +00004933 RegsForValue RFV(TLI, Reg, V->getType());
Dan Gohman475871a2008-07-27 21:46:04 +00004934 SDValue Chain = DAG.getEntryNode();
Dan Gohman23ce5022008-04-25 18:27:55 +00004935 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4936 PendingExports.push_back(Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00004937}
4938
Chris Lattner068a81e2005-01-17 17:15:02 +00004939void SelectionDAGISel::
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004940LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Chris Lattner068a81e2005-01-17 17:15:02 +00004941 // If this is the entry block, emit arguments.
Evan Cheng15699fc2007-02-10 01:08:18 +00004942 Function &F = *LLVMBB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00004943 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Dan Gohman475871a2008-07-27 21:46:04 +00004944 SDValue OldRoot = SDL.DAG.getRoot();
4945 SmallVector<SDValue, 16> Args;
Dan Gohmana44b6742008-06-30 20:31:15 +00004946 TLI.LowerArguments(F, SDL.DAG, Args);
Chris Lattner068a81e2005-01-17 17:15:02 +00004947
Chris Lattnerbf209482005-10-30 19:42:35 +00004948 unsigned a = 0;
4949 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004950 AI != E; ++AI) {
4951 SmallVector<MVT, 4> ValueVTs;
4952 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4953 unsigned NumValues = ValueVTs.size();
Chris Lattnerbf209482005-10-30 19:42:35 +00004954 if (!AI->use_empty()) {
Duncan Sands4bdcb612008-07-02 17:40:58 +00004955 SDL.setValue(AI, SDL.DAG.getMergeValues(&Args[a], NumValues));
Chris Lattnerbf209482005-10-30 19:42:35 +00004956 // If this argument is live outside of the entry block, insert a copy from
4957 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner251db182007-02-25 18:40:32 +00004958 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4959 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004960 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattnerbf209482005-10-30 19:42:35 +00004961 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00004962 }
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004963 a += NumValues;
4964 }
Chris Lattnerbf209482005-10-30 19:42:35 +00004965
Chris Lattnerbf209482005-10-30 19:42:35 +00004966 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00004967 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00004968 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00004969}
4970
Duncan Sandsf4070822007-06-15 19:04:19 +00004971static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4972 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004973 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00004974 if (isSelector(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004975 // Apply the catch info to DestBB.
4976 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4977#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +00004978 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4979 FLI.CatchInfoFound.insert(I);
Duncan Sandsf4070822007-06-15 19:04:19 +00004980#endif
4981 }
4982}
4983
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004984/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4985/// whether object offset >= 0.
4986static bool
Dan Gohman475871a2008-07-27 21:46:04 +00004987IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDValue Op) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004988 if (!isa<FrameIndexSDNode>(Op)) return false;
4989
4990 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
4991 int FrameIdx = FrameIdxNode->getIndex();
4992 return MFI->isFixedObjectIndex(FrameIdx) &&
4993 MFI->getObjectOffset(FrameIdx) >= 0;
4994}
4995
4996/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
4997/// possibly be overwritten when lowering the outgoing arguments in a tail
4998/// call. Currently the implementation of this call is very conservative and
4999/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
5000/// virtual registers would be overwritten by direct lowering.
Dan Gohman475871a2008-07-27 21:46:04 +00005001static bool IsPossiblyOverwrittenArgumentOfTailCall(SDValue Op,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005002 MachineFrameInfo * MFI) {
5003 RegisterSDNode * OpReg = NULL;
5004 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
5005 (Op.getOpcode()== ISD::CopyFromReg &&
5006 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
5007 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
5008 (Op.getOpcode() == ISD::LOAD &&
5009 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
5010 (Op.getOpcode() == ISD::MERGE_VALUES &&
5011 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5012 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5013 getOperand(1))))
5014 return true;
5015 return false;
5016}
5017
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005018/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005019/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005020static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5021 TargetLowering& TLI) {
5022 SDNode * Ret = NULL;
Dan Gohman475871a2008-07-27 21:46:04 +00005023 SDValue Terminator = DAG.getRoot();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005024
5025 // Find RET node.
5026 if (Terminator.getOpcode() == ISD::RET) {
5027 Ret = Terminator.Val;
5028 }
5029
5030 // Fix tail call attribute of CALL nodes.
5031 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
Dan Gohman0e5f1302008-07-07 23:02:41 +00005032 BI = DAG.allnodes_end(); BI != BE; ) {
5033 --BI;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005034 if (BI->getOpcode() == ISD::CALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00005035 SDValue OpRet(Ret, 0);
5036 SDValue OpCall(BI, 0);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005037 bool isMarkedTailCall =
5038 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5039 // If CALL node has tail call attribute set to true and the call is not
5040 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005041 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005042 // must correctly identify tail call optimizable calls.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005043 if (!isMarkedTailCall) continue;
5044 if (Ret==NULL ||
5045 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5046 // Not eligible. Mark CALL node as non tail call.
Dan Gohman475871a2008-07-27 21:46:04 +00005047 SmallVector<SDValue, 32> Ops;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005048 unsigned idx=0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005049 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5050 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005051 if (idx!=3)
5052 Ops.push_back(*I);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005053 else
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005054 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5055 }
5056 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005057 } else {
5058 // Look for tail call clobbered arguments. Emit a series of
5059 // copyto/copyfrom virtual register nodes to protect them.
Dan Gohman475871a2008-07-27 21:46:04 +00005060 SmallVector<SDValue, 32> Ops;
5061 SDValue Chain = OpCall.getOperand(0), InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005062 unsigned idx=0;
5063 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5064 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Dan Gohman475871a2008-07-27 21:46:04 +00005065 SDValue Arg = *I;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005066 if (idx > 4 && (idx % 2)) {
5067 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5068 getArgFlags().isByVal();
5069 MachineFunction &MF = DAG.getMachineFunction();
5070 MachineFrameInfo *MFI = MF.getFrameInfo();
5071 if (!isByVal &&
5072 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005073 MVT VT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005074 unsigned VReg = MF.getRegInfo().
5075 createVirtualRegister(TLI.getRegClassFor(VT));
5076 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5077 InFlag = Chain.getValue(1);
5078 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5079 Chain = Arg.getValue(1);
5080 InFlag = Arg.getValue(2);
5081 }
5082 }
5083 Ops.push_back(Arg);
5084 }
5085 // Link in chain of CopyTo/CopyFromReg.
5086 Ops[0] = Chain;
5087 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005088 }
5089 }
5090 }
5091}
5092
Chris Lattner1c08c712005-01-07 07:47:53 +00005093void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5094 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00005095 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksence224772008-01-07 01:30:38 +00005096 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerddb870b2005-01-13 17:59:43 +00005097
Chris Lattnerbf209482005-10-30 19:42:35 +00005098 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +00005099 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005100 LowerArguments(LLVMBB, SDL);
Chris Lattner1c08c712005-01-07 07:47:53 +00005101
5102 BB = FuncInfo.MBBMap[LLVMBB];
5103 SDL.setCurrentBasicBlock(BB);
5104
Duncan Sandsf4070822007-06-15 19:04:19 +00005105 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands9fac0b52007-06-06 10:05:18 +00005106
Dale Johannesen1532f3d2008-04-02 00:25:04 +00005107 if (MMI && BB->isLandingPad()) {
Duncan Sandsf4070822007-06-15 19:04:19 +00005108 // Add a label to mark the beginning of the landing pad. Deletion of the
5109 // landing pad can thus be detected via the MachineModuleInfo.
5110 unsigned LabelID = MMI->addLandingPad(BB);
Dan Gohman44066042008-07-01 00:05:16 +00005111 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, DAG.getEntryNode(), LabelID));
Duncan Sandsf4070822007-06-15 19:04:19 +00005112
Evan Chenge47c3332007-06-27 18:45:32 +00005113 // Mark exception register as live in.
5114 unsigned Reg = TLI.getExceptionAddressRegister();
5115 if (Reg) BB->addLiveIn(Reg);
5116
5117 // Mark exception selector register as live in.
5118 Reg = TLI.getExceptionSelectorRegister();
5119 if (Reg) BB->addLiveIn(Reg);
5120
Duncan Sandsf4070822007-06-15 19:04:19 +00005121 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5122 // function and list of typeids logically belong to the invoke (or, if you
5123 // like, the basic block containing the invoke), and need to be associated
5124 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005125 // information is provided by an intrinsic (eh.selector) that can be moved
5126 // to unexpected places by the optimizers: if the unwind edge is critical,
5127 // then breaking it can result in the intrinsics being in the successor of
5128 // the landing pad, not the landing pad itself. This results in exceptions
5129 // not being caught because no typeids are associated with the invoke.
5130 // This may not be the only way things can go wrong, but it is the only way
5131 // we try to work around for the moment.
Duncan Sandsf4070822007-06-15 19:04:19 +00005132 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5133
5134 if (Br && Br->isUnconditional()) { // Critical edge?
5135 BasicBlock::iterator I, E;
5136 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005137 if (isSelector(I))
Duncan Sandsf4070822007-06-15 19:04:19 +00005138 break;
5139
5140 if (I == E)
5141 // No catch info found - try to extract some from the successor.
5142 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands9fac0b52007-06-06 10:05:18 +00005143 }
5144 }
5145
Chris Lattner1c08c712005-01-07 07:47:53 +00005146 // Lower all of the non-terminator instructions.
5147 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5148 I != E; ++I)
5149 SDL.visit(*I);
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005150
Chris Lattner1c08c712005-01-07 07:47:53 +00005151 // Ensure that all instructions which are used outside of their defining
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005152 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner1c08c712005-01-07 07:47:53 +00005153 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005154 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner9f24ad72007-02-04 01:35:11 +00005155 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00005156 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005157 SDL.CopyValueToVirtualRegister(I, VMI->second);
Chris Lattner1c08c712005-01-07 07:47:53 +00005158 }
5159
5160 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5161 // ensure constants are generated when needed. Remember the virtual registers
5162 // that need to be added to the Machine PHI nodes as input. We cannot just
5163 // directly add them, because expansion might result in multiple MBB's for one
5164 // BB. As such, the start of the BB might correspond to a different MBB than
5165 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00005166 //
Chris Lattner8c494ab2006-10-27 23:50:33 +00005167 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner1c08c712005-01-07 07:47:53 +00005168
5169 // Emit constants only once even if used by multiple PHI nodes.
5170 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005171
Chris Lattner8c494ab2006-10-27 23:50:33 +00005172 // Vector bool would be better, but vector<bool> is really slow.
5173 std::vector<unsigned char> SuccsHandled;
5174 if (TI->getNumSuccessors())
5175 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5176
Dan Gohman532dc2e2007-07-09 20:59:04 +00005177 // Check successor nodes' PHI nodes that expect a constant to be available
5178 // from this block.
Chris Lattner1c08c712005-01-07 07:47:53 +00005179 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5180 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005181 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner8c494ab2006-10-27 23:50:33 +00005182 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005183
Chris Lattner8c494ab2006-10-27 23:50:33 +00005184 // If this terminator has multiple identical successors (common for
5185 // switches), only handle each succ once.
5186 unsigned SuccMBBNo = SuccMBB->getNumber();
5187 if (SuccsHandled[SuccMBBNo]) continue;
5188 SuccsHandled[SuccMBBNo] = true;
5189
5190 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner1c08c712005-01-07 07:47:53 +00005191 PHINode *PN;
5192
5193 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5194 // nodes and Machine PHI nodes, but the incoming operands have not been
5195 // emitted yet.
5196 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8c494ab2006-10-27 23:50:33 +00005197 (PN = dyn_cast<PHINode>(I)); ++I) {
5198 // Ignore dead phi's.
5199 if (PN->use_empty()) continue;
5200
5201 unsigned Reg;
5202 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner3f7927c2006-11-29 01:12:32 +00005203
Chris Lattner8c494ab2006-10-27 23:50:33 +00005204 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5205 unsigned &RegOut = ConstantsOut[C];
5206 if (RegOut == 0) {
5207 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005208 SDL.CopyValueToVirtualRegister(C, RegOut);
Chris Lattner1c08c712005-01-07 07:47:53 +00005209 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005210 Reg = RegOut;
5211 } else {
5212 Reg = FuncInfo.ValueMap[PHIOp];
5213 if (Reg == 0) {
5214 assert(isa<AllocaInst>(PHIOp) &&
5215 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5216 "Didn't codegen value into a register!??");
5217 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005218 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Chris Lattner7e021512006-03-31 02:12:18 +00005219 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005220 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005221
5222 // Remember that this register needs to added to the machine PHI node as
5223 // the input for this MBB.
Dan Gohman6f498b02008-08-04 23:42:46 +00005224 SmallVector<MVT, 4> ValueVTs;
5225 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5226 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5227 MVT VT = ValueVTs[vti];
5228 unsigned NumRegisters = TLI.getNumRegisters(VT);
5229 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5230 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5231 Reg += NumRegisters;
5232 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005233 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005234 }
5235 ConstantsOut.clear();
5236
5237 // Lower the terminator after the copies are emitted.
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005238 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00005239
Nate Begemanf15485a2006-03-27 01:32:24 +00005240 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00005241 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00005242 SwitchCases.clear();
5243 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005244 JTCases.clear();
5245 JTCases = SDL.JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005246 BitTestCases.clear();
5247 BitTestCases = SDL.BitTestCases;
5248
Chris Lattnera651cf62005-01-17 19:43:36 +00005249 // Make sure the root of the DAG is up-to-date.
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005250 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005251
5252 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5253 // with correct tailcall attribute so that the target can rely on the tailcall
5254 // attribute indicating whether the call is really eligible for tail call
5255 // optimization.
5256 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Chris Lattner1c08c712005-01-07 07:47:53 +00005257}
5258
Chris Lattneread0d882008-06-17 06:09:18 +00005259void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5260 SmallPtrSet<SDNode*, 128> VisitedNodes;
5261 SmallVector<SDNode*, 128> Worklist;
5262
5263 Worklist.push_back(DAG.getRoot().Val);
5264
5265 APInt Mask;
5266 APInt KnownZero;
5267 APInt KnownOne;
5268
5269 while (!Worklist.empty()) {
5270 SDNode *N = Worklist.back();
5271 Worklist.pop_back();
5272
5273 // If we've already seen this node, ignore it.
5274 if (!VisitedNodes.insert(N))
5275 continue;
5276
5277 // Otherwise, add all chain operands to the worklist.
5278 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5279 if (N->getOperand(i).getValueType() == MVT::Other)
5280 Worklist.push_back(N->getOperand(i).Val);
5281
5282 // If this is a CopyToReg with a vreg dest, process it.
5283 if (N->getOpcode() != ISD::CopyToReg)
5284 continue;
5285
5286 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5287 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5288 continue;
5289
5290 // Ignore non-scalar or non-integer values.
Dan Gohman475871a2008-07-27 21:46:04 +00005291 SDValue Src = N->getOperand(2);
Chris Lattneread0d882008-06-17 06:09:18 +00005292 MVT SrcVT = Src.getValueType();
5293 if (!SrcVT.isInteger() || SrcVT.isVector())
5294 continue;
5295
5296 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5297 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5298 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5299
5300 // Only install this information if it tells us something.
5301 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5302 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5303 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5304 if (DestReg >= FLI.LiveOutRegInfo.size())
5305 FLI.LiveOutRegInfo.resize(DestReg+1);
5306 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5307 LOI.NumSignBits = NumSignBits;
5308 LOI.KnownOne = NumSignBits;
5309 LOI.KnownZero = NumSignBits;
5310 }
5311 }
5312}
5313
Nate Begemanf15485a2006-03-27 01:32:24 +00005314void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohman462dc7f2008-07-21 20:00:07 +00005315 std::string GroupName;
5316 if (TimePassesIsEnabled)
5317 GroupName = "Instruction Selection and Scheduling";
5318 std::string BlockName;
5319 if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs ||
5320 ViewDAGCombine2 || ViewISelDAGs || ViewSchedDAGs || ViewSUnitDAGs)
5321 BlockName = DAG.getMachineFunction().getFunction()->getName() + ':' +
5322 BB->getBasicBlock()->getName();
5323
5324 DOUT << "Initial selection DAG:\n";
Dan Gohman417e11b2007-10-08 15:12:17 +00005325 DEBUG(DAG.dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +00005326
5327 if (ViewDAGCombine1) DAG.viewGraph("dag-combine1 input for " + BlockName);
Dan Gohman417e11b2007-10-08 15:12:17 +00005328
Chris Lattneraf21d552005-10-10 16:47:10 +00005329 // Run the DAG combiner in pre-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005330 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005331 NamedRegionTimer T("DAG Combining 1", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005332 DAG.Combine(false, *AA);
5333 } else {
5334 DAG.Combine(false, *AA);
5335 }
Nate Begeman2300f552005-09-07 00:15:36 +00005336
Dan Gohman417e11b2007-10-08 15:12:17 +00005337 DOUT << "Optimized lowered selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005338 DEBUG(DAG.dump());
Duncan Sandsf00e74f2008-07-17 17:06:03 +00005339
Chris Lattner1c08c712005-01-07 07:47:53 +00005340 // Second step, hack on the DAG until it only uses operations and types that
5341 // the target supports.
Duncan Sandsf00e74f2008-07-17 17:06:03 +00005342 if (EnableLegalizeTypes) {// Enable this some day.
Dan Gohman462dc7f2008-07-21 20:00:07 +00005343 if (ViewLegalizeTypesDAGs) DAG.viewGraph("legalize-types input for " +
5344 BlockName);
5345
5346 if (TimePassesIsEnabled) {
5347 NamedRegionTimer T("Type Legalization", GroupName);
5348 DAG.LegalizeTypes();
5349 } else {
5350 DAG.LegalizeTypes();
5351 }
5352
5353 DOUT << "Type-legalized selection DAG:\n";
5354 DEBUG(DAG.dump());
5355
Chris Lattner70587ea2008-07-10 23:37:50 +00005356 // TODO: enable a dag combine pass here.
5357 }
Duncan Sandsf00e74f2008-07-17 17:06:03 +00005358
Dan Gohman462dc7f2008-07-21 20:00:07 +00005359 if (ViewLegalizeDAGs) DAG.viewGraph("legalize input for " + BlockName);
5360
Evan Chengebffb662008-07-01 17:59:20 +00005361 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005362 NamedRegionTimer T("DAG Legalization", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005363 DAG.Legalize();
5364 } else {
5365 DAG.Legalize();
5366 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005367
Bill Wendling832171c2006-12-07 20:04:42 +00005368 DOUT << "Legalized selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005369 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005370
Dan Gohman462dc7f2008-07-21 20:00:07 +00005371 if (ViewDAGCombine2) DAG.viewGraph("dag-combine2 input for " + BlockName);
5372
Chris Lattneraf21d552005-10-10 16:47:10 +00005373 // Run the DAG combiner in post-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005374 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005375 NamedRegionTimer T("DAG Combining 2", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005376 DAG.Combine(true, *AA);
5377 } else {
5378 DAG.Combine(true, *AA);
5379 }
Nate Begeman2300f552005-09-07 00:15:36 +00005380
Dan Gohman417e11b2007-10-08 15:12:17 +00005381 DOUT << "Optimized legalized selection DAG:\n";
5382 DEBUG(DAG.dump());
5383
Dan Gohman462dc7f2008-07-21 20:00:07 +00005384 if (ViewISelDAGs) DAG.viewGraph("isel input for " + BlockName);
Chris Lattneread0d882008-06-17 06:09:18 +00005385
Evan Chengf1a792b2008-07-01 18:15:04 +00005386 if (!FastISel && EnableValueProp)
Chris Lattneread0d882008-06-17 06:09:18 +00005387 ComputeLiveOutVRegInfo(DAG);
Evan Cheng552c4a82006-04-28 02:09:19 +00005388
Chris Lattnera33ef482005-03-30 01:10:47 +00005389 // Third, instruction select all of the operations to machine code, adding the
5390 // code to the MachineBasicBlock.
Evan Chengebffb662008-07-01 17:59:20 +00005391 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005392 NamedRegionTimer T("Instruction Selection", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005393 InstructionSelect(DAG);
5394 } else {
5395 InstructionSelect(DAG);
5396 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005397
Dan Gohman462dc7f2008-07-21 20:00:07 +00005398 DOUT << "Selected selection DAG:\n";
5399 DEBUG(DAG.dump());
5400
5401 if (ViewSchedDAGs) DAG.viewGraph("scheduler input for " + BlockName);
5402
Dan Gohman5e843682008-07-14 18:19:29 +00005403 // Schedule machine code.
5404 ScheduleDAG *Scheduler;
5405 if (TimePassesIsEnabled) {
5406 NamedRegionTimer T("Instruction Scheduling", GroupName);
5407 Scheduler = Schedule(DAG);
5408 } else {
5409 Scheduler = Schedule(DAG);
5410 }
5411
Dan Gohman462dc7f2008-07-21 20:00:07 +00005412 if (ViewSUnitDAGs) Scheduler->viewGraph();
5413
Evan Chengdb8d56b2008-06-30 20:45:06 +00005414 // Emit machine code to BB. This can change 'BB' to the last block being
5415 // inserted into.
Evan Chengebffb662008-07-01 17:59:20 +00005416 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005417 NamedRegionTimer T("Instruction Creation", GroupName);
5418 BB = Scheduler->EmitSchedule();
Evan Chengebffb662008-07-01 17:59:20 +00005419 } else {
Dan Gohman5e843682008-07-14 18:19:29 +00005420 BB = Scheduler->EmitSchedule();
5421 }
5422
5423 // Free the scheduler state.
5424 if (TimePassesIsEnabled) {
5425 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName);
5426 delete Scheduler;
5427 } else {
5428 delete Scheduler;
Evan Chengebffb662008-07-01 17:59:20 +00005429 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005430
5431 // Perform target specific isel post processing.
Evan Chengebffb662008-07-01 17:59:20 +00005432 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005433 NamedRegionTimer T("Instruction Selection Post Processing", GroupName);
Dan Gohman462dc7f2008-07-21 20:00:07 +00005434 InstructionSelectPostProcessing();
Evan Chengebffb662008-07-01 17:59:20 +00005435 } else {
Dan Gohman462dc7f2008-07-21 20:00:07 +00005436 InstructionSelectPostProcessing();
Evan Chengebffb662008-07-01 17:59:20 +00005437 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005438
Bill Wendling832171c2006-12-07 20:04:42 +00005439 DOUT << "Selected machine code:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005440 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005441}
Chris Lattner1c08c712005-01-07 07:47:53 +00005442
Dan Gohman0e5f1302008-07-07 23:02:41 +00005443void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF,
5444 FunctionLoweringInfo &FuncInfo) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00005445 // Define NodeAllocator here so that memory allocation is reused for
Dan Gohman0e5f1302008-07-07 23:02:41 +00005446 // each basic block.
Dan Gohmanfed90b62008-07-28 21:51:04 +00005447 NodeAllocatorType NodeAllocator;
Dan Gohman0e5f1302008-07-07 23:02:41 +00005448
Dan Gohmanfed90b62008-07-28 21:51:04 +00005449 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
5450 SelectBasicBlock(I, MF, FuncInfo, NodeAllocator);
Dan Gohman0e5f1302008-07-07 23:02:41 +00005451}
5452
Dan Gohmanfed90b62008-07-28 21:51:04 +00005453void
5454SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5455 FunctionLoweringInfo &FuncInfo,
5456 NodeAllocatorType &NodeAllocator) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005457 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5458 {
Chris Lattneread0d882008-06-17 06:09:18 +00005459 SelectionDAG DAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005460 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005461 NodeAllocator);
Nate Begemanf15485a2006-03-27 01:32:24 +00005462 CurDAG = &DAG;
5463
5464 // First step, lower LLVM code to some DAG. This DAG may use operations and
5465 // types that are not supported by the target.
5466 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5467
5468 // Second step, emit the lowered DAG as machine code.
5469 CodeGenAndEmitDAG(DAG);
5470 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005471
5472 DOUT << "Total amount of phi nodes to update: "
5473 << PHINodesToUpdate.size() << "\n";
5474 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5475 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5476 << ", " << PHINodesToUpdate[i].second << ")\n";);
Nate Begemanf15485a2006-03-27 01:32:24 +00005477
Chris Lattnera33ef482005-03-30 01:10:47 +00005478 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00005479 // PHI nodes in successors.
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005480 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005481 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5482 MachineInstr *PHI = PHINodesToUpdate[i].first;
5483 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5484 "This is not a machine PHI node that we are updating!");
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005485 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5486 false));
5487 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +00005488 }
5489 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00005490 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005491
5492 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5493 // Lower header first, if it wasn't already lowered
5494 if (!BitTestCases[i].Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005495 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005496 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005497 NodeAllocator);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005498 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005499 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005500 // Set the current basic block to the mbb we wish to insert the code into
5501 BB = BitTestCases[i].Parent;
5502 HSDL.setCurrentBasicBlock(BB);
5503 // Emit the code
5504 HSDL.visitBitTestHeader(BitTestCases[i]);
5505 HSDAG.setRoot(HSDL.getRoot());
5506 CodeGenAndEmitDAG(HSDAG);
5507 }
5508
5509 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattneread0d882008-06-17 06:09:18 +00005510 SelectionDAG BSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005511 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005512 NodeAllocator);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005513 CurDAG = &BSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005514 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005515 // Set the current basic block to the mbb we wish to insert the code into
5516 BB = BitTestCases[i].Cases[j].ThisBB;
5517 BSDL.setCurrentBasicBlock(BB);
5518 // Emit the code
5519 if (j+1 != ej)
5520 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5521 BitTestCases[i].Reg,
5522 BitTestCases[i].Cases[j]);
5523 else
5524 BSDL.visitBitTestCase(BitTestCases[i].Default,
5525 BitTestCases[i].Reg,
5526 BitTestCases[i].Cases[j]);
5527
5528
5529 BSDAG.setRoot(BSDL.getRoot());
5530 CodeGenAndEmitDAG(BSDAG);
5531 }
5532
5533 // Update PHI Nodes
5534 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5535 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5536 MachineBasicBlock *PHIBB = PHI->getParent();
5537 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5538 "This is not a machine PHI node that we are updating!");
5539 // This is "default" BB. We have two jumps to it. From "header" BB and
5540 // from last "case" BB.
5541 if (PHIBB == BitTestCases[i].Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005542 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5543 false));
5544 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5545 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5546 false));
5547 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5548 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005549 }
5550 // One of "cases" BB.
5551 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5552 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5553 if (cBB->succ_end() !=
5554 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005555 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5556 false));
5557 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005558 }
5559 }
5560 }
5561 }
5562
Nate Begeman9453eea2006-04-23 06:26:20 +00005563 // If the JumpTable record is filled in, then we need to emit a jump table.
5564 // Updating the PHI nodes is tricky in this case, since we need to determine
5565 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005566 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5567 // Lower header first, if it wasn't already lowered
5568 if (!JTCases[i].first.Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005569 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005570 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005571 NodeAllocator);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005572 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005573 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005574 // Set the current basic block to the mbb we wish to insert the code into
5575 BB = JTCases[i].first.HeaderBB;
5576 HSDL.setCurrentBasicBlock(BB);
5577 // Emit the code
5578 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5579 HSDAG.setRoot(HSDL.getRoot());
5580 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005581 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005582
Chris Lattneread0d882008-06-17 06:09:18 +00005583 SelectionDAG JSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005584 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005585 NodeAllocator);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005586 CurDAG = &JSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005587 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Nate Begeman37efe672006-04-22 18:53:45 +00005588 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005589 BB = JTCases[i].second.MBB;
5590 JSDL.setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00005591 // Emit the code
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005592 JSDL.visitJumpTable(JTCases[i].second);
5593 JSDAG.setRoot(JSDL.getRoot());
5594 CodeGenAndEmitDAG(JSDAG);
5595
Nate Begeman37efe672006-04-22 18:53:45 +00005596 // Update PHI Nodes
5597 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5598 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5599 MachineBasicBlock *PHIBB = PHI->getParent();
5600 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5601 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005602 // "default" BB. We can go there only from header BB.
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005603 if (PHIBB == JTCases[i].second.Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005604 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5605 false));
5606 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +00005607 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005608 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +00005609 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005610 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5611 false));
5612 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +00005613 }
5614 }
Nate Begeman37efe672006-04-22 18:53:45 +00005615 }
5616
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005617 // If the switch block involved a branch to one of the actual successors, we
5618 // need to update PHI nodes in that block.
5619 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5620 MachineInstr *PHI = PHINodesToUpdate[i].first;
5621 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5622 "This is not a machine PHI node that we are updating!");
5623 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005624 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5625 false));
5626 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005627 }
5628 }
5629
Nate Begemanf15485a2006-03-27 01:32:24 +00005630 // If we generated any switch lowering information, build and codegen any
5631 // additional DAGs necessary.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005632 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattneread0d882008-06-17 06:09:18 +00005633 SelectionDAG SDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005634 getAnalysisToUpdate<MachineModuleInfo>(),
Dan Gohmanfed90b62008-07-28 21:51:04 +00005635 NodeAllocator);
Nate Begemanf15485a2006-03-27 01:32:24 +00005636 CurDAG = &SDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005637 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005638
Nate Begemanf15485a2006-03-27 01:32:24 +00005639 // Set the current basic block to the mbb we wish to insert the code into
5640 BB = SwitchCases[i].ThisBB;
5641 SDL.setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005642
Nate Begemanf15485a2006-03-27 01:32:24 +00005643 // Emit the code
5644 SDL.visitSwitchCase(SwitchCases[i]);
5645 SDAG.setRoot(SDL.getRoot());
5646 CodeGenAndEmitDAG(SDAG);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005647
5648 // Handle any PHI nodes in successors of this chunk, as if we were coming
5649 // from the original BB before switch expansion. Note that PHI nodes can
5650 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5651 // handle them the right number of times.
Chris Lattner57ab6592006-10-24 17:57:59 +00005652 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005653 for (MachineBasicBlock::iterator Phi = BB->begin();
5654 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5655 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5656 for (unsigned pn = 0; ; ++pn) {
5657 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5658 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005659 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5660 second, false));
5661 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005662 break;
5663 }
5664 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005665 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005666
5667 // Don't process RHS if same block as LHS.
Chris Lattner57ab6592006-10-24 17:57:59 +00005668 if (BB == SwitchCases[i].FalseBB)
5669 SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005670
5671 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner24525952006-10-24 18:07:37 +00005672 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner57ab6592006-10-24 17:57:59 +00005673 SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00005674 }
Chris Lattner57ab6592006-10-24 17:57:59 +00005675 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00005676 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005677}
Evan Chenga9c20912006-01-21 02:32:06 +00005678
Jim Laskey13ec7022006-08-01 14:21:23 +00005679
Dan Gohman5e843682008-07-14 18:19:29 +00005680/// Schedule - Pick a safe ordering for instructions for each
Evan Chenga9c20912006-01-21 02:32:06 +00005681/// target node in the graph.
Dan Gohman5e843682008-07-14 18:19:29 +00005682///
5683ScheduleDAG *SelectionDAGISel::Schedule(SelectionDAG &DAG) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005684 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00005685
5686 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005687 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00005688 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00005689 }
Jim Laskey13ec7022006-08-01 14:21:23 +00005690
Dan Gohman5e843682008-07-14 18:19:29 +00005691 ScheduleDAG *Scheduler = Ctor(this, &DAG, BB, FastISel);
5692 Scheduler->Run();
Dan Gohman3e1a7ae2007-08-28 20:32:58 +00005693
Dan Gohman5e843682008-07-14 18:19:29 +00005694 return Scheduler;
Evan Chenga9c20912006-01-21 02:32:06 +00005695}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005696
Chris Lattner03fc53c2006-03-06 00:22:00 +00005697
Jim Laskey9ff542f2006-08-01 18:29:48 +00005698HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5699 return new HazardRecognizer();
5700}
5701
Chris Lattner75548062006-10-11 03:58:02 +00005702//===----------------------------------------------------------------------===//
5703// Helper functions used by the generated instruction selector.
5704//===----------------------------------------------------------------------===//
5705// Calls to these methods are generated by tblgen.
5706
5707/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5708/// the dag combiner simplified the 255, we still want to match. RHS is the
5709/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5710/// specified in the .td file (e.g. 255).
Dan Gohman475871a2008-07-27 21:46:04 +00005711bool SelectionDAGISel::CheckAndMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00005712 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005713 const APInt &ActualMask = RHS->getAPIntValue();
5714 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005715
5716 // If the actual mask exactly matches, success!
5717 if (ActualMask == DesiredMask)
5718 return true;
5719
5720 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005721 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005722 return false;
5723
5724 // Otherwise, the DAG Combiner may have proven that the value coming in is
5725 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005726 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00005727 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00005728 return true;
5729
5730 // TODO: check to see if missing bits are just not demanded.
5731
5732 // Otherwise, this pattern doesn't match.
5733 return false;
5734}
5735
5736/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5737/// the dag combiner simplified the 255, we still want to match. RHS is the
5738/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5739/// specified in the .td file (e.g. 255).
Dan Gohman475871a2008-07-27 21:46:04 +00005740bool SelectionDAGISel::CheckOrMask(SDValue LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005741 int64_t DesiredMaskS) const {
5742 const APInt &ActualMask = RHS->getAPIntValue();
5743 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005744
5745 // If the actual mask exactly matches, success!
5746 if (ActualMask == DesiredMask)
5747 return true;
5748
5749 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005750 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005751 return false;
5752
5753 // Otherwise, the DAG Combiner may have proven that the value coming in is
5754 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005755 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00005756
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005757 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005758 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00005759
5760 // If all the missing bits in the or are already known to be set, match!
5761 if ((NeededMask & KnownOne) == NeededMask)
5762 return true;
5763
5764 // TODO: check to see if missing bits are just not demanded.
5765
5766 // Otherwise, this pattern doesn't match.
5767 return false;
5768}
5769
Jim Laskey9ff542f2006-08-01 18:29:48 +00005770
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005771/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5772/// by tblgen. Others should not call it.
5773void SelectionDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00005774SelectInlineAsmMemoryOperands(std::vector<SDValue> &Ops, SelectionDAG &DAG) {
5775 std::vector<SDValue> InOps;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005776 std::swap(InOps, Ops);
5777
5778 Ops.push_back(InOps[0]); // input chain.
5779 Ops.push_back(InOps[1]); // input asm string.
5780
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005781 unsigned i = 2, e = InOps.size();
5782 if (InOps[e-1].getValueType() == MVT::Flag)
5783 --e; // Don't process a flag operand if it is here.
5784
5785 while (i != e) {
5786 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5787 if ((Flags & 7) != 4 /*MEM*/) {
5788 // Just skip over this operand, copying the operands verbatim.
5789 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5790 i += (Flags >> 3) + 1;
5791 } else {
5792 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5793 // Otherwise, this is a memory operand. Ask the target to select it.
Dan Gohman475871a2008-07-27 21:46:04 +00005794 std::vector<SDValue> SelOps;
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005795 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling832171c2006-12-07 20:04:42 +00005796 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005797 exit(1);
5798 }
5799
5800 // Add this to the output node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005801 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner36d43962006-12-16 21:14:48 +00005802 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattner4b993b12007-04-09 00:33:58 +00005803 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005804 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5805 i += 2;
5806 }
5807 }
5808
5809 // Add the flag input back if present.
5810 if (e != InOps.size())
5811 Ops.push_back(InOps.back());
5812}
Devang Patel794fd752007-05-01 21:15:47 +00005813
Devang Patel19974732007-05-03 01:11:54 +00005814char SelectionDAGISel::ID = 0;