blob: ac9e399e9d6aa9be71238bc4d83e4f13802816da [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);
Chris Lattneread0d882008-06-17 06:09:18 +000056
57
Chris Lattnerda8abb02005-09-01 18:44:10 +000058#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000059static cl::opt<bool>
Dan Gohman462dc7f2008-07-21 20:00:07 +000060ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
61 cl::desc("Pop up a window to show dags before the first "
62 "dag combine pass"));
63static cl::opt<bool>
64ViewLegalizeTypesDAGs("view-legalize-types-dags", cl::Hidden,
65 cl::desc("Pop up a window to show dags before legalize types"));
66static cl::opt<bool>
67ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
68 cl::desc("Pop up a window to show dags before legalize"));
69static cl::opt<bool>
70ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
71 cl::desc("Pop up a window to show dags before the second "
72 "dag combine pass"));
73static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000074ViewISelDAGs("view-isel-dags", cl::Hidden,
75 cl::desc("Pop up a window to show isel dags as they are selected"));
76static cl::opt<bool>
77ViewSchedDAGs("view-sched-dags", cl::Hidden,
78 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000079static cl::opt<bool>
80ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +000081 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000082#else
Dan Gohman462dc7f2008-07-21 20:00:07 +000083static const bool ViewDAGCombine1 = false,
84 ViewLegalizeTypesDAGs = false, ViewLegalizeDAGs = false,
85 ViewDAGCombine2 = false,
86 ViewISelDAGs = false, ViewSchedDAGs = false,
87 ViewSUnitDAGs = false;
Chris Lattner7944d9d2005-01-12 03:41:21 +000088#endif
89
Jim Laskeyeb577ba2006-08-02 12:30:23 +000090//===---------------------------------------------------------------------===//
91///
92/// RegisterScheduler class - Track the registration of instruction schedulers.
93///
94//===---------------------------------------------------------------------===//
95MachinePassRegistry RegisterScheduler::Registry;
96
97//===---------------------------------------------------------------------===//
98///
99/// ISHeuristic command line option for instruction schedulers.
100///
101//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +0000102static cl::opt<RegisterScheduler::FunctionPassCtor, false,
103 RegisterPassParser<RegisterScheduler> >
104ISHeuristic("pre-RA-sched",
105 cl::init(&createDefaultScheduler),
106 cl::desc("Instruction schedulers available (before register"
107 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +0000108
Dan Gohman844731a2008-05-13 00:00:25 +0000109static RegisterScheduler
110defaultListDAGScheduler("default", " Best scheduler for the target",
111 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +0000112
Evan Cheng5c807602008-02-26 02:33:44 +0000113namespace { struct SDISelAsmOperandInfo; }
Chris Lattnerbf996f12007-04-30 17:29:31 +0000114
Dan Gohman1d685a42008-06-07 02:02:36 +0000115/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
116/// insertvalue or extractvalue indices that identify a member, return
117/// the linearized index of the start of the member.
118///
119static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
120 const unsigned *Indices,
121 const unsigned *IndicesEnd,
122 unsigned CurIndex = 0) {
123 // Base case: We're done.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000124 if (Indices && Indices == IndicesEnd)
Dan Gohman1d685a42008-06-07 02:02:36 +0000125 return CurIndex;
126
Chris Lattnerf899fce2008-04-27 23:48:12 +0000127 // Given a struct type, recursively traverse the elements.
128 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000129 for (StructType::element_iterator EB = STy->element_begin(),
130 EI = EB,
Dan Gohman1d685a42008-06-07 02:02:36 +0000131 EE = STy->element_end();
132 EI != EE; ++EI) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000133 if (Indices && *Indices == unsigned(EI - EB))
134 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
135 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000136 }
137 }
138 // Given an array type, recursively traverse the elements.
139 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
140 const Type *EltTy = ATy->getElementType();
141 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000142 if (Indices && *Indices == i)
143 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
144 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000145 }
146 }
147 // We haven't found the type we're looking for, so keep searching.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000148 return CurIndex + 1;
Dan Gohman1d685a42008-06-07 02:02:36 +0000149}
150
151/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
152/// MVTs that represent all the individual underlying
153/// non-aggregate types that comprise it.
154///
155/// If Offsets is non-null, it points to a vector to be filled in
156/// with the in-memory offsets of each of the individual values.
157///
158static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
159 SmallVectorImpl<MVT> &ValueVTs,
160 SmallVectorImpl<uint64_t> *Offsets = 0,
161 uint64_t StartingOffset = 0) {
162 // Given a struct type, recursively traverse the elements.
163 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
164 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
165 for (StructType::element_iterator EB = STy->element_begin(),
166 EI = EB,
167 EE = STy->element_end();
168 EI != EE; ++EI)
169 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
170 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattnerf899fce2008-04-27 23:48:12 +0000171 return;
Dan Gohman23ce5022008-04-25 18:27:55 +0000172 }
Chris Lattnerf899fce2008-04-27 23:48:12 +0000173 // Given an array type, recursively traverse the elements.
174 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
175 const Type *EltTy = ATy->getElementType();
Dan Gohman1d685a42008-06-07 02:02:36 +0000176 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000177 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +0000178 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
179 StartingOffset + i * EltSize);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000180 return;
181 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000182 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattnerf899fce2008-04-27 23:48:12 +0000183 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman1d685a42008-06-07 02:02:36 +0000184 if (Offsets)
185 Offsets->push_back(StartingOffset);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000186}
Dan Gohman23ce5022008-04-25 18:27:55 +0000187
Chris Lattnerf899fce2008-04-27 23:48:12 +0000188namespace {
Dan Gohman0fe00902008-04-28 18:10:39 +0000189 /// RegsForValue - This struct represents the registers (physical or virtual)
190 /// that a particular set of values is assigned, and the type information about
191 /// the value. The most common situation is to represent one value at a time,
192 /// but struct or array values are handled element-wise as multiple values.
193 /// The splitting of aggregates is performed recursively, so that we never
194 /// have aggregate-typed registers. The values at this point do not necessarily
195 /// have legal types, so each value may require one or more registers of some
196 /// legal type.
197 ///
Chris Lattner95255282006-06-28 23:17:24 +0000198 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman23ce5022008-04-25 18:27:55 +0000199 /// TLI - The TargetLowering object.
Dan Gohman0fe00902008-04-28 18:10:39 +0000200 ///
Dan Gohman23ce5022008-04-25 18:27:55 +0000201 const TargetLowering *TLI;
202
Dan Gohman0fe00902008-04-28 18:10:39 +0000203 /// ValueVTs - The value types of the values, which may not be legal, and
204 /// may need be promoted or synthesized from one or more registers.
205 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000206 SmallVector<MVT, 4> ValueVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000207
Dan Gohman0fe00902008-04-28 18:10:39 +0000208 /// RegVTs - The value types of the registers. This is the same size as
209 /// ValueVTs and it records, for each value, what the type of the assigned
210 /// register or registers are. (Individual values are never synthesized
211 /// from more than one type of register.)
212 ///
213 /// With virtual registers, the contents of RegVTs is redundant with TLI's
214 /// getRegisterType member function, however when with physical registers
215 /// it is necessary to have a separate record of the types.
Chris Lattner864635a2006-02-22 22:37:12 +0000216 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000217 SmallVector<MVT, 4> RegVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000218
Dan Gohman0fe00902008-04-28 18:10:39 +0000219 /// Regs - This list holds the registers assigned to the values.
220 /// Each legal or promoted value requires one register, and each
221 /// expanded value requires multiple registers.
222 ///
223 SmallVector<unsigned, 4> Regs;
Chris Lattner864635a2006-02-22 22:37:12 +0000224
Dan Gohman23ce5022008-04-25 18:27:55 +0000225 RegsForValue() : TLI(0) {}
Chris Lattner864635a2006-02-22 22:37:12 +0000226
Dan Gohman23ce5022008-04-25 18:27:55 +0000227 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000228 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000229 MVT regvt, MVT valuevt)
Dan Gohman0fe00902008-04-28 18:10:39 +0000230 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000231 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000232 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000233 const SmallVector<MVT, 4> &regvts,
234 const SmallVector<MVT, 4> &valuevts)
Dan Gohman0fe00902008-04-28 18:10:39 +0000235 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000236 RegsForValue(const TargetLowering &tli,
237 unsigned Reg, const Type *Ty) : TLI(&tli) {
238 ComputeValueVTs(tli, Ty, ValueVTs);
239
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000240 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000241 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +0000242 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000243 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000244 for (unsigned i = 0; i != NumRegs; ++i)
245 Regs.push_back(Reg + i);
246 RegVTs.push_back(RegisterVT);
247 Reg += NumRegs;
248 }
Chris Lattner864635a2006-02-22 22:37:12 +0000249 }
250
Chris Lattner41f62592008-04-29 04:29:54 +0000251 /// append - Add the specified values to this one.
252 void append(const RegsForValue &RHS) {
253 TLI = RHS.TLI;
254 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
255 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
256 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
257 }
258
259
Chris Lattner864635a2006-02-22 22:37:12 +0000260 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman23ce5022008-04-25 18:27:55 +0000261 /// this value and returns the result as a ValueVTs value. This uses
Chris Lattner864635a2006-02-22 22:37:12 +0000262 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000263 /// If the Flag pointer is NULL, no flag is used.
Chris Lattner864635a2006-02-22 22:37:12 +0000264 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000265 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000266
267 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
268 /// specified value into the registers specified by this object. This uses
269 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000270 /// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000271 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000272 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000273
274 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
275 /// operand list. This adds the code marker and includes the number of
276 /// values added into it.
277 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000278 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000279 };
280}
Evan Cheng4ef10862006-01-23 07:01:07 +0000281
Chris Lattner1c08c712005-01-07 07:47:53 +0000282namespace llvm {
283 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000284 /// createDefaultScheduler - This creates an instruction scheduler appropriate
285 /// for the target.
286 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
287 SelectionDAG *DAG,
Evan Cheng4576f6d2008-07-01 18:05:03 +0000288 MachineBasicBlock *BB,
289 bool Fast) {
Jim Laskey9373beb2006-08-01 19:14:14 +0000290 TargetLowering &TLI = IS->getTargetLowering();
291
292 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
Evan Cheng4576f6d2008-07-01 18:05:03 +0000293 return createTDListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000294 } else {
295 assert(TLI.getSchedulingPreference() ==
296 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng4576f6d2008-07-01 18:05:03 +0000297 return createBURRListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000298 }
299 }
300
301
302 //===--------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000303 /// FunctionLoweringInfo - This contains information that is global to a
304 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000305 class FunctionLoweringInfo {
306 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000307 TargetLowering &TLI;
308 Function &Fn;
309 MachineFunction &MF;
Chris Lattner84bc5422007-12-31 04:13:23 +0000310 MachineRegisterInfo &RegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000311
312 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
313
314 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
315 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
316
317 /// ValueMap - Since we emit code for the function a basic block at a time,
318 /// we must remember which virtual registers hold the values for
319 /// cross-basic-block values.
Chris Lattner9f24ad72007-02-04 01:35:11 +0000320 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000321
322 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
323 /// the entry block. This allows the allocas to be efficiently referenced
324 /// anywhere in the function.
325 std::map<const AllocaInst*, int> StaticAllocaMap;
326
Duncan Sandsf4070822007-06-15 19:04:19 +0000327#ifndef NDEBUG
328 SmallSet<Instruction*, 8> CatchInfoLost;
329 SmallSet<Instruction*, 8> CatchInfoFound;
330#endif
331
Duncan Sands83ec4b62008-06-06 12:08:01 +0000332 unsigned MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000333 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000334 }
Chris Lattner571e4342006-10-27 21:36:01 +0000335
336 /// isExportedInst - Return true if the specified value is an instruction
337 /// exported from its block.
338 bool isExportedInst(const Value *V) {
339 return ValueMap.count(V);
340 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000341
Chris Lattner3c384492006-03-16 19:51:18 +0000342 unsigned CreateRegForValue(const Value *V);
343
Chris Lattner1c08c712005-01-07 07:47:53 +0000344 unsigned InitializeRegForValue(const Value *V) {
345 unsigned &R = ValueMap[V];
346 assert(R == 0 && "Already initialized this value register!");
347 return R = CreateRegForValue(V);
348 }
Chris Lattneread0d882008-06-17 06:09:18 +0000349
350 struct LiveOutInfo {
351 unsigned NumSignBits;
352 APInt KnownOne, KnownZero;
353 LiveOutInfo() : NumSignBits(0) {}
354 };
355
356 /// LiveOutRegInfo - Information about live out vregs, indexed by their
357 /// register number offset by 'FirstVirtualRegister'.
358 std::vector<LiveOutInfo> LiveOutRegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000359 };
360}
361
Duncan Sandscf26d7c2007-07-04 20:52:51 +0000362/// isSelector - Return true if this instruction is a call to the
363/// eh.selector intrinsic.
364static bool isSelector(Instruction *I) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000365 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000366 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
367 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Duncan Sandsf4070822007-06-15 19:04:19 +0000368 return false;
369}
370
Chris Lattner1c08c712005-01-07 07:47:53 +0000371/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000372/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000373/// switch or atomic instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000374static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
375 if (isa<PHINode>(I)) return true;
376 BasicBlock *BB = I->getParent();
377 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000378 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattner571e4342006-10-27 21:36:01 +0000379 // FIXME: Remove switchinst special case.
Nate Begemanf15485a2006-03-27 01:32:24 +0000380 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000381 return true;
382 return false;
383}
384
Chris Lattnerbf209482005-10-30 19:42:35 +0000385/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000386/// entry block, return true. This includes arguments used by switches, since
387/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000388static bool isOnlyUsedInEntryBlock(Argument *A) {
389 BasicBlock *Entry = A->getParent()->begin();
390 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000391 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000392 return false; // Use not in entry block.
393 return true;
394}
395
Chris Lattner1c08c712005-01-07 07:47:53 +0000396FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000397 Function &fn, MachineFunction &mf)
Chris Lattner84bc5422007-12-31 04:13:23 +0000398 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000399
Chris Lattnerbf209482005-10-30 19:42:35 +0000400 // Create a vreg for each argument register that is not dead and is used
401 // outside of the entry block for the function.
402 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
403 AI != E; ++AI)
404 if (!isOnlyUsedInEntryBlock(AI))
405 InitializeRegForValue(AI);
406
Chris Lattner1c08c712005-01-07 07:47:53 +0000407 // Initialize the mapping of values to registers. This is only set up for
408 // instruction values that are used outside of the block that defines
409 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000410 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000411 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
412 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencerb83eb642006-10-20 07:07:24 +0000413 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000414 const Type *Ty = AI->getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +0000415 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000416 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000417 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000418 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000419
Reid Spencerb83eb642006-10-20 07:07:24 +0000420 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000421 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000422 StaticAllocaMap[AI] =
Chris Lattner6266c182007-04-25 04:08:28 +0000423 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000424 }
425
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000426 for (; BB != EB; ++BB)
427 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000428 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
429 if (!isa<AllocaInst>(I) ||
430 !StaticAllocaMap.count(cast<AllocaInst>(I)))
431 InitializeRegForValue(I);
432
433 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
434 // also creates the initial PHI MachineInstrs, though none of the input
435 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000436 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Dan Gohman0e5f1302008-07-07 23:02:41 +0000437 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000438 MBBMap[BB] = MBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +0000439 MF.push_back(MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000440
441 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
442 // appropriate.
443 PHINode *PN;
Chris Lattner8c494ab2006-10-27 23:50:33 +0000444 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
445 if (PN->use_empty()) continue;
446
Duncan Sands83ec4b62008-06-06 12:08:01 +0000447 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +0000448 unsigned NumRegisters = TLI.getNumRegisters(VT);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000449 unsigned PHIReg = ValueMap[PN];
450 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Evan Chengc0f64ff2006-11-27 23:37:22 +0000451 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
Dan Gohmanb9f10192007-06-21 14:42:22 +0000452 for (unsigned i = 0; i != NumRegisters; ++i)
Evan Chengc0f64ff2006-11-27 23:37:22 +0000453 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000454 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000455 }
456}
457
Chris Lattner3c384492006-03-16 19:51:18 +0000458/// CreateRegForValue - Allocate the appropriate number of virtual registers of
459/// the correctly promoted or expanded types. Assign these registers
460/// consecutive vreg numbers and return the first assigned number.
Dan Gohman10a6b7a2008-04-28 18:19:43 +0000461///
462/// In the case that the given value has struct or array type, this function
463/// will assign registers for each member or element.
464///
Chris Lattner3c384492006-03-16 19:51:18 +0000465unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000466 SmallVector<MVT, 4> ValueVTs;
Chris Lattnerb606dba2008-04-28 06:44:42 +0000467 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Bill Wendling95b39552007-04-24 21:13:23 +0000468
Dan Gohman23ce5022008-04-25 18:27:55 +0000469 unsigned FirstReg = 0;
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000470 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000471 MVT ValueVT = ValueVTs[Value];
472 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohman8c8c5fc2007-06-27 14:34:07 +0000473
Chris Lattnerb606dba2008-04-28 06:44:42 +0000474 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000475 for (unsigned i = 0; i != NumRegs; ++i) {
476 unsigned R = MakeReg(RegisterVT);
477 if (!FirstReg) FirstReg = R;
478 }
479 }
480 return FirstReg;
Chris Lattner3c384492006-03-16 19:51:18 +0000481}
Chris Lattner1c08c712005-01-07 07:47:53 +0000482
483//===----------------------------------------------------------------------===//
484/// SelectionDAGLowering - This is the common target-independent lowering
485/// implementation that is parameterized by a TargetLowering object.
486/// Also, targets can overload any lowering method.
487///
488namespace llvm {
489class SelectionDAGLowering {
490 MachineBasicBlock *CurMBB;
491
Chris Lattner0da331f2007-02-04 01:31:47 +0000492 DenseMap<const Value*, SDOperand> NodeMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000493
Chris Lattnerd3948112005-01-17 22:19:26 +0000494 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
495 /// them up and then emit token factor nodes when possible. This allows us to
496 /// get simple disambiguation between loads without worrying about alias
497 /// analysis.
Dan Gohmana44b6742008-06-30 20:31:15 +0000498 SmallVector<SDOperand, 8> PendingLoads;
Chris Lattnerd3948112005-01-17 22:19:26 +0000499
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000500 /// PendingExports - CopyToReg nodes that copy values to virtual registers
501 /// for export to other blocks need to be emitted before any terminator
502 /// instruction, but they have no other ordering requirements. We bunch them
503 /// up and the emit a single tokenfactor for them just before terminator
504 /// instructions.
505 std::vector<SDOperand> PendingExports;
506
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000507 /// Case - A struct to record the Value for a switch case, and the
508 /// case's target basic block.
509 struct Case {
510 Constant* Low;
511 Constant* High;
512 MachineBasicBlock* BB;
513
514 Case() : Low(0), High(0), BB(0) { }
515 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
516 Low(low), High(high), BB(bb) { }
517 uint64_t size() const {
518 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
519 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
520 return (rHigh - rLow + 1ULL);
521 }
522 };
523
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000524 struct CaseBits {
525 uint64_t Mask;
526 MachineBasicBlock* BB;
527 unsigned Bits;
528
529 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
530 Mask(mask), BB(bb), Bits(bits) { }
531 };
532
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000533 typedef std::vector<Case> CaseVector;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000534 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000535 typedef CaseVector::iterator CaseItr;
536 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemanf15485a2006-03-27 01:32:24 +0000537
538 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
539 /// of conditional branches.
540 struct CaseRec {
541 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
542 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
543
544 /// CaseBB - The MBB in which to emit the compare and branch
545 MachineBasicBlock *CaseBB;
546 /// LT, GE - If nonzero, we know the current case value must be less-than or
547 /// greater-than-or-equal-to these Constants.
548 Constant *LT;
549 Constant *GE;
550 /// Range - A pair of iterators representing the range of case values to be
551 /// processed at this point in the binary search tree.
552 CaseRange Range;
553 };
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000554
555 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000556
557 /// The comparison function for sorting the switch case values in the vector.
558 /// WARNING: Case ranges should be disjoint!
Nate Begemanf15485a2006-03-27 01:32:24 +0000559 struct CaseCmp {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000560 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000561 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
562 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
563 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
564 return CI1->getValue().slt(CI2->getValue());
Nate Begemanf15485a2006-03-27 01:32:24 +0000565 }
566 };
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000567
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000568 struct CaseBitsCmp {
569 bool operator () (const CaseBits& C1, const CaseBits& C2) {
570 return C1.Bits > C2.Bits;
571 }
572 };
573
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000574 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemanf15485a2006-03-27 01:32:24 +0000575
Chris Lattner1c08c712005-01-07 07:47:53 +0000576public:
577 // TLI - This is information that describes the available target features we
578 // need for lowering. This indicates when operations are unavailable,
579 // implemented with a libcall, etc.
580 TargetLowering &TLI;
581 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000582 const TargetData *TD;
Dan Gohman5f43f922007-08-27 16:26:13 +0000583 AliasAnalysis &AA;
Chris Lattner1c08c712005-01-07 07:47:53 +0000584
Nate Begemanf15485a2006-03-27 01:32:24 +0000585 /// SwitchCases - Vector of CaseBlock structures used to communicate
586 /// SwitchInst code generation information.
587 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000588 /// JTCases - Vector of JumpTable structures used to communicate
589 /// SwitchInst code generation information.
590 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000591 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemanf15485a2006-03-27 01:32:24 +0000592
Chris Lattner1c08c712005-01-07 07:47:53 +0000593 /// FuncInfo - Information about the function as a whole.
594 ///
595 FunctionLoweringInfo &FuncInfo;
Gordon Henriksence224772008-01-07 01:30:38 +0000596
597 /// GCI - Garbage collection metadata for the function.
598 CollectorMetadata *GCI;
Chris Lattner1c08c712005-01-07 07:47:53 +0000599
600 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman5f43f922007-08-27 16:26:13 +0000601 AliasAnalysis &aa,
Gordon Henriksence224772008-01-07 01:30:38 +0000602 FunctionLoweringInfo &funcinfo,
603 CollectorMetadata *gci)
Dan Gohman5f43f922007-08-27 16:26:13 +0000604 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksence224772008-01-07 01:30:38 +0000605 FuncInfo(funcinfo), GCI(gci) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000606 }
607
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000608 /// getRoot - Return the current virtual root of the Selection DAG,
609 /// flushing any PendingLoad items. This must be done before emitting
610 /// a store or any other node that may need to be ordered after any
611 /// prior load instructions.
Chris Lattnera651cf62005-01-17 19:43:36 +0000612 ///
613 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000614 if (PendingLoads.empty())
615 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000616
Chris Lattnerd3948112005-01-17 22:19:26 +0000617 if (PendingLoads.size() == 1) {
618 SDOperand Root = PendingLoads[0];
619 DAG.setRoot(Root);
620 PendingLoads.clear();
621 return Root;
622 }
623
624 // Otherwise, we have to make a token factor node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000625 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
626 &PendingLoads[0], PendingLoads.size());
Chris Lattnerd3948112005-01-17 22:19:26 +0000627 PendingLoads.clear();
628 DAG.setRoot(Root);
629 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000630 }
631
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000632 /// getControlRoot - Similar to getRoot, but instead of flushing all the
633 /// PendingLoad items, flush all the PendingExports items. It is necessary
634 /// to do this before emitting a terminator instruction.
635 ///
636 SDOperand getControlRoot() {
637 SDOperand Root = DAG.getRoot();
638
639 if (PendingExports.empty())
640 return Root;
641
642 // Turn all of the CopyToReg chains into one factored node.
643 if (Root.getOpcode() != ISD::EntryToken) {
644 unsigned i = 0, e = PendingExports.size();
645 for (; i != e; ++i) {
646 assert(PendingExports[i].Val->getNumOperands() > 1);
647 if (PendingExports[i].Val->getOperand(0) == Root)
648 break; // Don't add the root if we already indirectly depend on it.
649 }
650
651 if (i == e)
652 PendingExports.push_back(Root);
653 }
654
655 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
656 &PendingExports[0],
657 PendingExports.size());
658 PendingExports.clear();
659 DAG.setRoot(Root);
660 return Root;
661 }
662
663 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Chris Lattner571e4342006-10-27 21:36:01 +0000664
Chris Lattner1c08c712005-01-07 07:47:53 +0000665 void visit(Instruction &I) { visit(I.getOpcode(), I); }
666
667 void visit(unsigned Opcode, User &I) {
Chris Lattner1e7aa5c2006-11-10 04:41:34 +0000668 // Note: this doesn't use InstVisitor, because it has to work with
669 // ConstantExpr's in addition to instructions.
Chris Lattner1c08c712005-01-07 07:47:53 +0000670 switch (Opcode) {
671 default: assert(0 && "Unknown instruction type encountered!");
672 abort();
673 // Build the switch statement using the Instruction.def file.
674#define HANDLE_INST(NUM, OPCODE, CLASS) \
675 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
676#include "llvm/Instruction.def"
677 }
678 }
679
680 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
681
Chris Lattner199862b2006-03-16 19:57:50 +0000682 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000683
Chris Lattner0da331f2007-02-04 01:31:47 +0000684 void setValue(const Value *V, SDOperand NewN) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000685 SDOperand &N = NodeMap[V];
686 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner0da331f2007-02-04 01:31:47 +0000687 N = NewN;
Chris Lattner1c08c712005-01-07 07:47:53 +0000688 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000689
Evan Cheng5c807602008-02-26 02:33:44 +0000690 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnere7cf56a2007-04-30 21:11:17 +0000691 std::set<unsigned> &OutputRegs,
692 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000693
Chris Lattner571e4342006-10-27 21:36:01 +0000694 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
695 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
696 unsigned Opc);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000697 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattner571e4342006-10-27 21:36:01 +0000698 void ExportFromCurrentBlock(Value *V);
Duncan Sands6f74b482007-12-19 09:48:52 +0000699 void LowerCallTo(CallSite CS, SDOperand Callee, bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000700 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsdc024672007-11-27 13:23:08 +0000701
Chris Lattner1c08c712005-01-07 07:47:53 +0000702 // Terminator instructions.
703 void visitRet(ReturnInst &I);
704 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000705 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000706 void visitUnreachable(UnreachableInst &I) { /* noop */ }
707
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000708 // Helpers for visitSwitch
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000709 bool handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000710 CaseRecVector& WorkList,
711 Value* SV,
712 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000713 bool handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000714 CaseRecVector& WorkList,
715 Value* SV,
716 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000717 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000718 CaseRecVector& WorkList,
719 Value* SV,
720 MachineBasicBlock* Default);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000721 bool handleBitTestsSwitchCase(CaseRec& CR,
722 CaseRecVector& WorkList,
723 Value* SV,
724 MachineBasicBlock* Default);
Nate Begemanf15485a2006-03-27 01:32:24 +0000725 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000726 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
727 void visitBitTestCase(MachineBasicBlock* NextMBB,
728 unsigned Reg,
729 SelectionDAGISel::BitTestCase &B);
Nate Begeman37efe672006-04-22 18:53:45 +0000730 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000731 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
732 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemanf15485a2006-03-27 01:32:24 +0000733
Chris Lattner1c08c712005-01-07 07:47:53 +0000734 // These all get lowered before this pass.
Jim Laskeyb180aa12007-02-21 22:53:45 +0000735 void visitInvoke(InvokeInst &I);
736 void visitUnwind(UnwindInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000737
Dan Gohman7f321562007-06-25 16:23:39 +0000738 void visitBinary(User &I, unsigned OpCode);
Nate Begemane21ea612005-11-18 07:42:56 +0000739 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000740 void visitAdd(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000741 if (I.getType()->isFPOrFPVector())
742 visitBinary(I, ISD::FADD);
Reid Spencer1628cec2006-10-26 06:15:43 +0000743 else
Dan Gohman7f321562007-06-25 16:23:39 +0000744 visitBinary(I, ISD::ADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000745 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000746 void visitSub(User &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000747 void visitMul(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000748 if (I.getType()->isFPOrFPVector())
749 visitBinary(I, ISD::FMUL);
Reid Spencer1628cec2006-10-26 06:15:43 +0000750 else
Dan Gohman7f321562007-06-25 16:23:39 +0000751 visitBinary(I, ISD::MUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000752 }
Dan Gohman7f321562007-06-25 16:23:39 +0000753 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
754 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
755 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
756 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
757 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
758 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
759 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
760 void visitOr (User &I) { visitBinary(I, ISD::OR); }
761 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer24d6da52007-01-21 00:29:26 +0000762 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencer3822ff52006-11-08 06:47:33 +0000763 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
764 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000765 void visitICmp(User &I);
766 void visitFCmp(User &I);
Nate Begemanb43e9c12008-05-12 19:40:03 +0000767 void visitVICmp(User &I);
768 void visitVFCmp(User &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000769 // Visit the conversion instructions
770 void visitTrunc(User &I);
771 void visitZExt(User &I);
772 void visitSExt(User &I);
773 void visitFPTrunc(User &I);
774 void visitFPExt(User &I);
775 void visitFPToUI(User &I);
776 void visitFPToSI(User &I);
777 void visitUIToFP(User &I);
778 void visitSIToFP(User &I);
779 void visitPtrToInt(User &I);
780 void visitIntToPtr(User &I);
781 void visitBitCast(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000782
Chris Lattner2bbd8102006-03-29 00:11:43 +0000783 void visitExtractElement(User &I);
784 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000785 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000786
Dan Gohman1d685a42008-06-07 02:02:36 +0000787 void visitExtractValue(ExtractValueInst &I);
788 void visitInsertValue(InsertValueInst &I);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000789
Chris Lattner1c08c712005-01-07 07:47:53 +0000790 void visitGetElementPtr(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000791 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000792
793 void visitMalloc(MallocInst &I);
794 void visitFree(FreeInst &I);
795 void visitAlloca(AllocaInst &I);
796 void visitLoad(LoadInst &I);
797 void visitStore(StoreInst &I);
798 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
799 void visitCall(CallInst &I);
Duncan Sandsfd7b3262007-12-17 18:08:19 +0000800 void visitInlineAsm(CallSite CS);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000801 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000802 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000803
Chris Lattner1c08c712005-01-07 07:47:53 +0000804 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000805 void visitVAArg(VAArgInst &I);
806 void visitVAEnd(CallInst &I);
807 void visitVACopy(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000808
Chris Lattner1c08c712005-01-07 07:47:53 +0000809 void visitUserOp1(Instruction &I) {
810 assert(0 && "UserOp1 should not exist at instruction selection time!");
811 abort();
812 }
813 void visitUserOp2(Instruction &I) {
814 assert(0 && "UserOp2 should not exist at instruction selection time!");
815 abort();
816 }
Mon P Wang63307c32008-05-05 19:05:59 +0000817
818private:
819 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
820
Chris Lattner1c08c712005-01-07 07:47:53 +0000821};
822} // end namespace llvm
823
Dan Gohman6183f782007-07-05 20:12:34 +0000824
Duncan Sandsb988bac2008-02-11 20:58:28 +0000825/// getCopyFromParts - Create a value that contains the specified legal parts
826/// combined into the value they represent. If the parts combine to a type
827/// larger then ValueVT then AssertOp can be used to specify whether the extra
828/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattner4468c1f2008-03-09 09:38:46 +0000829/// (ISD::AssertSext).
Dan Gohman6183f782007-07-05 20:12:34 +0000830static SDOperand getCopyFromParts(SelectionDAG &DAG,
831 const SDOperand *Parts,
832 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000833 MVT PartVT,
834 MVT ValueVT,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000835 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000836 assert(NumParts > 0 && "No parts to assemble!");
837 TargetLowering &TLI = DAG.getTargetLoweringInfo();
838 SDOperand Val = Parts[0];
Dan Gohman6183f782007-07-05 20:12:34 +0000839
Duncan Sands014e04a2008-02-12 20:46:31 +0000840 if (NumParts > 1) {
841 // Assemble the value from multiple parts.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000842 if (!ValueVT.isVector()) {
843 unsigned PartBits = PartVT.getSizeInBits();
844 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohman6183f782007-07-05 20:12:34 +0000845
Duncan Sands014e04a2008-02-12 20:46:31 +0000846 // Assemble the power of 2 part.
847 unsigned RoundParts = NumParts & (NumParts - 1) ?
848 1 << Log2_32(NumParts) : NumParts;
849 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000850 MVT RoundVT = RoundBits == ValueBits ?
851 ValueVT : MVT::getIntegerVT(RoundBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000852 SDOperand Lo, Hi;
853
854 if (RoundParts > 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000855 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands014e04a2008-02-12 20:46:31 +0000856 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
857 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
858 PartVT, HalfVT);
Dan Gohman6183f782007-07-05 20:12:34 +0000859 } else {
Duncan Sands014e04a2008-02-12 20:46:31 +0000860 Lo = Parts[0];
861 Hi = Parts[1];
Dan Gohman6183f782007-07-05 20:12:34 +0000862 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000863 if (TLI.isBigEndian())
864 std::swap(Lo, Hi);
865 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
866
867 if (RoundParts < NumParts) {
868 // Assemble the trailing non-power-of-2 part.
869 unsigned OddParts = NumParts - RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000870 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000871 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
872
873 // Combine the round and odd parts.
874 Lo = Val;
875 if (TLI.isBigEndian())
876 std::swap(Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000877 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000878 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
879 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000880 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands014e04a2008-02-12 20:46:31 +0000881 TLI.getShiftAmountTy()));
882 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
883 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
884 }
885 } else {
886 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000887 MVT IntermediateVT, RegisterVT;
Duncan Sands014e04a2008-02-12 20:46:31 +0000888 unsigned NumIntermediates;
889 unsigned NumRegs =
890 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
891 RegisterVT);
Duncan Sands014e04a2008-02-12 20:46:31 +0000892 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +0000893 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands014e04a2008-02-12 20:46:31 +0000894 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
895 assert(RegisterVT == Parts[0].getValueType() &&
896 "Part type doesn't match part!");
897
898 // Assemble the parts into intermediate operands.
899 SmallVector<SDOperand, 8> Ops(NumIntermediates);
900 if (NumIntermediates == NumParts) {
901 // If the register was not expanded, truncate or copy the value,
902 // as appropriate.
903 for (unsigned i = 0; i != NumParts; ++i)
904 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
905 PartVT, IntermediateVT);
906 } else if (NumParts > 0) {
907 // If the intermediate type was expanded, build the intermediate operands
908 // from the parts.
909 assert(NumParts % NumIntermediates == 0 &&
910 "Must expand into a divisible number of parts!");
911 unsigned Factor = NumParts / NumIntermediates;
912 for (unsigned i = 0; i != NumIntermediates; ++i)
913 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
914 PartVT, IntermediateVT);
915 }
916
917 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
918 // operands.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000919 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands014e04a2008-02-12 20:46:31 +0000920 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
921 ValueVT, &Ops[0], NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +0000922 }
Dan Gohman6183f782007-07-05 20:12:34 +0000923 }
924
Duncan Sands014e04a2008-02-12 20:46:31 +0000925 // There is now one part, held in Val. Correct it to match ValueVT.
926 PartVT = Val.getValueType();
Dan Gohman6183f782007-07-05 20:12:34 +0000927
Duncan Sands014e04a2008-02-12 20:46:31 +0000928 if (PartVT == ValueVT)
929 return Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000930
Duncan Sands83ec4b62008-06-06 12:08:01 +0000931 if (PartVT.isVector()) {
932 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands014e04a2008-02-12 20:46:31 +0000933 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000934 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000935
Duncan Sands83ec4b62008-06-06 12:08:01 +0000936 if (ValueVT.isVector()) {
937 assert(ValueVT.getVectorElementType() == PartVT &&
938 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +0000939 "Only trivial scalar-to-vector conversions should get here!");
940 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
941 }
942
Duncan Sands83ec4b62008-06-06 12:08:01 +0000943 if (PartVT.isInteger() &&
944 ValueVT.isInteger()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000945 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000946 // For a truncate, see if we have any information to
947 // indicate whether the truncated bits will always be
948 // zero or sign-extension.
949 if (AssertOp != ISD::DELETED_NODE)
950 Val = DAG.getNode(AssertOp, PartVT, Val,
951 DAG.getValueType(ValueVT));
952 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
953 } else {
954 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
955 }
956 }
957
Duncan Sands83ec4b62008-06-06 12:08:01 +0000958 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000959 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattner4468c1f2008-03-09 09:38:46 +0000960 // FP_ROUND's are always exact here.
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000961 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000962 DAG.getIntPtrConstant(1));
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000963 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
964 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000965
Duncan Sands83ec4b62008-06-06 12:08:01 +0000966 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands014e04a2008-02-12 20:46:31 +0000967 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
968
969 assert(0 && "Unknown mismatch!");
Chris Lattnerd27c9912008-03-30 18:22:13 +0000970 return SDOperand();
Dan Gohman6183f782007-07-05 20:12:34 +0000971}
972
Duncan Sandsb988bac2008-02-11 20:58:28 +0000973/// getCopyToParts - Create a series of nodes that contain the specified value
974/// split into legal parts. If the parts contain more bits than Val, then, for
975/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohman6183f782007-07-05 20:12:34 +0000976static void getCopyToParts(SelectionDAG &DAG,
977 SDOperand Val,
978 SDOperand *Parts,
979 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000980 MVT PartVT,
Duncan Sandsb988bac2008-02-11 20:58:28 +0000981 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohman25ac7e82007-08-10 14:59:38 +0000982 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000983 MVT PtrVT = TLI.getPointerTy();
984 MVT ValueVT = Val.getValueType();
985 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands014e04a2008-02-12 20:46:31 +0000986 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohman6183f782007-07-05 20:12:34 +0000987
Duncan Sands014e04a2008-02-12 20:46:31 +0000988 if (!NumParts)
989 return;
990
Duncan Sands83ec4b62008-06-06 12:08:01 +0000991 if (!ValueVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000992 if (PartVT == ValueVT) {
993 assert(NumParts == 1 && "No-op copy with multiple parts!");
994 Parts[0] = Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000995 return;
996 }
997
Duncan Sands83ec4b62008-06-06 12:08:01 +0000998 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000999 // If the parts cover more bits than the value has, promote the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001000 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001001 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohman6183f782007-07-05 20:12:34 +00001002 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001003 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
1004 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001005 Val = DAG.getNode(ExtendKind, ValueVT, Val);
1006 } else {
1007 assert(0 && "Unknown mismatch!");
1008 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00001009 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001010 // Different types of the same size.
1011 assert(NumParts == 1 && PartVT != ValueVT);
1012 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001013 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001014 // If the parts cover less bits than value has, truncate the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001015 if (PartVT.isInteger() && ValueVT.isInteger()) {
1016 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001017 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +00001018 } else {
1019 assert(0 && "Unknown mismatch!");
1020 }
1021 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001022
1023 // The value may have changed - recompute ValueVT.
1024 ValueVT = Val.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001025 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001026 "Failed to tile the value with PartVT!");
1027
1028 if (NumParts == 1) {
1029 assert(PartVT == ValueVT && "Type conversion failed!");
1030 Parts[0] = Val;
1031 return;
1032 }
1033
1034 // Expand the value into multiple parts.
1035 if (NumParts & (NumParts - 1)) {
1036 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001037 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001038 "Do not know what to expand to!");
1039 unsigned RoundParts = 1 << Log2_32(NumParts);
1040 unsigned RoundBits = RoundParts * PartBits;
1041 unsigned OddParts = NumParts - RoundParts;
1042 SDOperand OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
1043 DAG.getConstant(RoundBits,
1044 TLI.getShiftAmountTy()));
1045 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1046 if (TLI.isBigEndian())
1047 // The odd parts were reversed by getCopyToParts - unreverse them.
1048 std::reverse(Parts + RoundParts, Parts + NumParts);
1049 NumParts = RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001050 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001051 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1052 }
1053
1054 // The number of parts is a power of 2. Repeatedly bisect the value using
1055 // EXTRACT_ELEMENT.
Duncan Sands25eb0432008-03-12 20:30:08 +00001056 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001057 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sands25eb0432008-03-12 20:30:08 +00001058 Val);
Duncan Sands014e04a2008-02-12 20:46:31 +00001059 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1060 for (unsigned i = 0; i < NumParts; i += StepSize) {
1061 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001062 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Duncan Sands25eb0432008-03-12 20:30:08 +00001063 SDOperand &Part0 = Parts[i];
1064 SDOperand &Part1 = Parts[i+StepSize/2];
Duncan Sands014e04a2008-02-12 20:46:31 +00001065
Duncan Sands25eb0432008-03-12 20:30:08 +00001066 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1067 DAG.getConstant(1, PtrVT));
1068 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1069 DAG.getConstant(0, PtrVT));
1070
1071 if (ThisBits == PartBits && ThisVT != PartVT) {
1072 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1073 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1074 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001075 }
1076 }
1077
1078 if (TLI.isBigEndian())
1079 std::reverse(Parts, Parts + NumParts);
1080
1081 return;
1082 }
1083
1084 // Vector ValueVT.
1085 if (NumParts == 1) {
1086 if (PartVT != ValueVT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001087 if (PartVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001088 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1089 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001090 assert(ValueVT.getVectorElementType() == PartVT &&
1091 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001092 "Only trivial vector-to-scalar conversions should get here!");
1093 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1094 DAG.getConstant(0, PtrVT));
1095 }
1096 }
1097
Dan Gohman6183f782007-07-05 20:12:34 +00001098 Parts[0] = Val;
1099 return;
1100 }
1101
1102 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001103 MVT IntermediateVT, RegisterVT;
Dan Gohman6183f782007-07-05 20:12:34 +00001104 unsigned NumIntermediates;
1105 unsigned NumRegs =
1106 DAG.getTargetLoweringInfo()
1107 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1108 RegisterVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001109 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohman6183f782007-07-05 20:12:34 +00001110
1111 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +00001112 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohman6183f782007-07-05 20:12:34 +00001113 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1114
1115 // Split the vector into intermediate operands.
1116 SmallVector<SDOperand, 8> Ops(NumIntermediates);
1117 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001118 if (IntermediateVT.isVector())
Dan Gohman6183f782007-07-05 20:12:34 +00001119 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1120 IntermediateVT, Val,
1121 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohman25ac7e82007-08-10 14:59:38 +00001122 PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001123 else
1124 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1125 IntermediateVT, Val,
Dan Gohman25ac7e82007-08-10 14:59:38 +00001126 DAG.getConstant(i, PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001127
1128 // Split the intermediate operands into legal parts.
1129 if (NumParts == NumIntermediates) {
1130 // If the register was not expanded, promote or copy the value,
1131 // as appropriate.
1132 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001133 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001134 } else if (NumParts > 0) {
1135 // If the intermediate type was expanded, split each the value into
1136 // legal parts.
1137 assert(NumParts % NumIntermediates == 0 &&
1138 "Must expand into a divisible number of parts!");
1139 unsigned Factor = NumParts / NumIntermediates;
1140 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001141 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001142 }
1143}
1144
1145
Chris Lattner199862b2006-03-16 19:57:50 +00001146SDOperand SelectionDAGLowering::getValue(const Value *V) {
1147 SDOperand &N = NodeMap[V];
1148 if (N.Val) return N;
1149
Chris Lattner199862b2006-03-16 19:57:50 +00001150 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001151 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001152
1153 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1154 return N = DAG.getConstant(CI->getValue(), VT);
1155
1156 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001157 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001158
1159 if (isa<ConstantPointerNull>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001160 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001161
1162 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1163 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1164
Dan Gohman1d685a42008-06-07 02:02:36 +00001165 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1166 !V->getType()->isAggregateType())
Chris Lattner6833b062008-04-28 07:16:35 +00001167 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001168
1169 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1170 visit(CE->getOpcode(), *CE);
1171 SDOperand N1 = NodeMap[V];
1172 assert(N1.Val && "visit didn't populate the ValueMap!");
1173 return N1;
1174 }
1175
Dan Gohman1d685a42008-06-07 02:02:36 +00001176 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1177 SmallVector<SDOperand, 4> Constants;
Dan Gohman1d685a42008-06-07 02:02:36 +00001178 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1179 OI != OE; ++OI) {
1180 SDNode *Val = getValue(*OI).Val;
Duncan Sands4bdcb612008-07-02 17:40:58 +00001181 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +00001182 Constants.push_back(SDOperand(Val, i));
Dan Gohman1d685a42008-06-07 02:02:36 +00001183 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001184 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001185 }
1186
1187 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1188 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1189 "Unknown array constant!");
1190 unsigned NumElts = ATy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001191 if (NumElts == 0)
1192 return SDOperand(); // empty array
Dan Gohman1d685a42008-06-07 02:02:36 +00001193 MVT EltVT = TLI.getValueType(ATy->getElementType());
1194 SmallVector<SDOperand, 4> Constants(NumElts);
Dan Gohman1d685a42008-06-07 02:02:36 +00001195 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1196 if (isa<UndefValue>(C))
1197 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1198 else if (EltVT.isFloatingPoint())
1199 Constants[i] = DAG.getConstantFP(0, EltVT);
1200 else
1201 Constants[i] = DAG.getConstant(0, EltVT);
1202 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001203 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001204 }
1205
1206 if (const StructType *STy = dyn_cast<StructType>(C->getType())) {
1207 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1208 "Unknown struct constant!");
1209 unsigned NumElts = STy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001210 if (NumElts == 0)
1211 return SDOperand(); // empty struct
Dan Gohman1d685a42008-06-07 02:02:36 +00001212 SmallVector<SDOperand, 4> Constants(NumElts);
Dan Gohman1d685a42008-06-07 02:02:36 +00001213 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1214 MVT EltVT = TLI.getValueType(STy->getElementType(i));
Dan Gohman1d685a42008-06-07 02:02:36 +00001215 if (isa<UndefValue>(C))
1216 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1217 else if (EltVT.isFloatingPoint())
1218 Constants[i] = DAG.getConstantFP(0, EltVT);
1219 else
1220 Constants[i] = DAG.getConstant(0, EltVT);
1221 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001222 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001223 }
1224
Chris Lattner6833b062008-04-28 07:16:35 +00001225 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001226 unsigned NumElements = VecTy->getNumElements();
Chris Lattnerb606dba2008-04-28 06:44:42 +00001227
Chris Lattner6833b062008-04-28 07:16:35 +00001228 // Now that we know the number and type of the elements, get that number of
1229 // elements into the Ops array based on what kind of constant it is.
1230 SmallVector<SDOperand, 16> Ops;
Chris Lattnerb606dba2008-04-28 06:44:42 +00001231 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1232 for (unsigned i = 0; i != NumElements; ++i)
1233 Ops.push_back(getValue(CP->getOperand(i)));
1234 } else {
Chris Lattner6833b062008-04-28 07:16:35 +00001235 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1236 "Unknown vector constant!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001237 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner6833b062008-04-28 07:16:35 +00001238
Chris Lattnerb606dba2008-04-28 06:44:42 +00001239 SDOperand Op;
Chris Lattner6833b062008-04-28 07:16:35 +00001240 if (isa<UndefValue>(C))
1241 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001242 else if (EltVT.isFloatingPoint())
Chris Lattner6833b062008-04-28 07:16:35 +00001243 Op = DAG.getConstantFP(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001244 else
Chris Lattner6833b062008-04-28 07:16:35 +00001245 Op = DAG.getConstant(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001246 Ops.assign(NumElements, Op);
1247 }
1248
1249 // Create a BUILD_VECTOR node.
1250 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner199862b2006-03-16 19:57:50 +00001251 }
1252
Chris Lattnerb606dba2008-04-28 06:44:42 +00001253 // If this is a static alloca, generate it as the frameindex instead of
1254 // computation.
Chris Lattner199862b2006-03-16 19:57:50 +00001255 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1256 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattnerb606dba2008-04-28 06:44:42 +00001257 FuncInfo.StaticAllocaMap.find(AI);
Chris Lattner199862b2006-03-16 19:57:50 +00001258 if (SI != FuncInfo.StaticAllocaMap.end())
1259 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1260 }
1261
Chris Lattner251db182007-02-25 18:40:32 +00001262 unsigned InReg = FuncInfo.ValueMap[V];
1263 assert(InReg && "Value not in map!");
Chris Lattner199862b2006-03-16 19:57:50 +00001264
Chris Lattner6833b062008-04-28 07:16:35 +00001265 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001266 SDOperand Chain = DAG.getEntryNode();
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001267 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner199862b2006-03-16 19:57:50 +00001268}
1269
1270
Chris Lattner1c08c712005-01-07 07:47:53 +00001271void SelectionDAGLowering::visitRet(ReturnInst &I) {
1272 if (I.getNumOperands() == 0) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001273 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001274 return;
1275 }
Chris Lattnerb606dba2008-04-28 06:44:42 +00001276
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001277 SmallVector<SDOperand, 8> NewValues;
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001278 NewValues.push_back(getControlRoot());
1279 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Nate Begemanee625572006-01-27 21:09:22 +00001280 SDOperand RetOp = getValue(I.getOperand(i));
Duncan Sandsb988bac2008-02-11 20:58:28 +00001281
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001282 SmallVector<MVT, 4> ValueVTs;
1283 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1284 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1285 MVT VT = ValueVTs[j];
Duncan Sandsb988bac2008-02-11 20:58:28 +00001286
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001287 // FIXME: C calling convention requires the return type to be promoted to
1288 // at least 32-bit. But this is not necessary for non-C calling conventions.
1289 if (VT.isInteger()) {
1290 MVT MinVT = TLI.getRegisterType(MVT::i32);
1291 if (VT.bitsLT(MinVT))
1292 VT = MinVT;
1293 }
Duncan Sandsb988bac2008-02-11 20:58:28 +00001294
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001295 unsigned NumParts = TLI.getNumRegisters(VT);
1296 MVT PartVT = TLI.getRegisterType(VT);
1297 SmallVector<SDOperand, 4> Parts(NumParts);
1298 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1299
1300 const Function *F = I.getParent()->getParent();
1301 if (F->paramHasAttr(0, ParamAttr::SExt))
1302 ExtendKind = ISD::SIGN_EXTEND;
1303 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1304 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00001305
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001306 getCopyToParts(DAG, SDOperand(RetOp.Val, RetOp.ResNo + j),
1307 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00001308
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001309 for (unsigned i = 0; i < NumParts; ++i) {
1310 NewValues.push_back(Parts[i]);
1311 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1312 }
Nate Begemanee625572006-01-27 21:09:22 +00001313 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001314 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001315 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1316 &NewValues[0], NewValues.size()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001317}
1318
Chris Lattner571e4342006-10-27 21:36:01 +00001319/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1320/// the current basic block, add it to ValueMap now so that we'll get a
1321/// CopyTo/FromReg.
1322void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1323 // No need to export constants.
1324 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1325
1326 // Already exported?
1327 if (FuncInfo.isExportedInst(V)) return;
1328
1329 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001330 CopyValueToVirtualRegister(V, Reg);
Chris Lattner571e4342006-10-27 21:36:01 +00001331}
1332
Chris Lattner8c494ab2006-10-27 23:50:33 +00001333bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1334 const BasicBlock *FromBB) {
1335 // The operands of the setcc have to be in this block. We don't know
1336 // how to export them from some other block.
1337 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1338 // Can export from current BB.
1339 if (VI->getParent() == FromBB)
1340 return true;
1341
1342 // Is already exported, noop.
1343 return FuncInfo.isExportedInst(V);
1344 }
1345
1346 // If this is an argument, we can export it if the BB is the entry block or
1347 // if it is already exported.
1348 if (isa<Argument>(V)) {
1349 if (FromBB == &FromBB->getParent()->getEntryBlock())
1350 return true;
1351
1352 // Otherwise, can only export this if it is already exported.
1353 return FuncInfo.isExportedInst(V);
1354 }
1355
1356 // Otherwise, constants can always be exported.
1357 return true;
1358}
1359
Chris Lattner6a586c82006-10-29 21:01:20 +00001360static bool InBlock(const Value *V, const BasicBlock *BB) {
1361 if (const Instruction *I = dyn_cast<Instruction>(V))
1362 return I->getParent() == BB;
1363 return true;
1364}
1365
Chris Lattner571e4342006-10-27 21:36:01 +00001366/// FindMergedConditions - If Cond is an expression like
1367void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1368 MachineBasicBlock *TBB,
1369 MachineBasicBlock *FBB,
1370 MachineBasicBlock *CurBB,
1371 unsigned Opc) {
Chris Lattner571e4342006-10-27 21:36:01 +00001372 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001373 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattner571e4342006-10-27 21:36:01 +00001374
Reid Spencere4d87aa2006-12-23 06:05:41 +00001375 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1376 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattner6a586c82006-10-29 21:01:20 +00001377 BOp->getParent() != CurBB->getBasicBlock() ||
1378 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1379 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattner571e4342006-10-27 21:36:01 +00001380 const BasicBlock *BB = CurBB->getBasicBlock();
1381
Reid Spencere4d87aa2006-12-23 06:05:41 +00001382 // If the leaf of the tree is a comparison, merge the condition into
1383 // the caseblock.
1384 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1385 // The operands of the cmp have to be in this block. We don't know
Chris Lattner5a145f02006-10-29 18:23:37 +00001386 // how to export them from some other block. If this is the first block
1387 // of the sequence, no exporting is needed.
1388 (CurBB == CurMBB ||
1389 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1390 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001391 BOp = cast<Instruction>(Cond);
1392 ISD::CondCode Condition;
1393 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1394 switch (IC->getPredicate()) {
1395 default: assert(0 && "Unknown icmp predicate opcode!");
1396 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1397 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1398 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1399 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1400 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1401 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1402 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1403 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1404 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1405 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1406 }
1407 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1408 ISD::CondCode FPC, FOC;
1409 switch (FC->getPredicate()) {
1410 default: assert(0 && "Unknown fcmp predicate opcode!");
1411 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1412 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1413 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1414 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1415 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1416 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1417 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner6bf30ab2008-05-01 07:26:11 +00001418 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1419 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001420 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1421 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1422 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1423 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1424 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1425 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1426 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1427 }
1428 if (FiniteOnlyFPMath())
1429 Condition = FOC;
1430 else
1431 Condition = FPC;
1432 } else {
Chris Lattner0da331f2007-02-04 01:31:47 +00001433 Condition = ISD::SETEQ; // silence warning.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001434 assert(0 && "Unknown compare instruction");
Chris Lattner571e4342006-10-27 21:36:01 +00001435 }
1436
Chris Lattner571e4342006-10-27 21:36:01 +00001437 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001438 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001439 SwitchCases.push_back(CB);
1440 return;
1441 }
1442
1443 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001444 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001445 NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001446 SwitchCases.push_back(CB);
Chris Lattner571e4342006-10-27 21:36:01 +00001447 return;
1448 }
1449
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001450
1451 // Create TmpBB after CurBB.
Chris Lattner571e4342006-10-27 21:36:01 +00001452 MachineFunction::iterator BBI = CurBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +00001453 MachineFunction &MF = DAG.getMachineFunction();
1454 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1455 CurBB->getParent()->insert(++BBI, TmpBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001456
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001457 if (Opc == Instruction::Or) {
1458 // Codegen X | Y as:
1459 // jmp_if_X TBB
1460 // jmp TmpBB
1461 // TmpBB:
1462 // jmp_if_Y TBB
1463 // jmp FBB
1464 //
Chris Lattner571e4342006-10-27 21:36:01 +00001465
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001466 // Emit the LHS condition.
1467 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1468
1469 // Emit the RHS condition into TmpBB.
1470 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1471 } else {
1472 assert(Opc == Instruction::And && "Unknown merge op!");
1473 // Codegen X & Y as:
1474 // jmp_if_X TmpBB
1475 // jmp FBB
1476 // TmpBB:
1477 // jmp_if_Y TBB
1478 // jmp FBB
1479 //
1480 // This requires creation of TmpBB after CurBB.
1481
1482 // Emit the LHS condition.
1483 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1484
1485 // Emit the RHS condition into TmpBB.
1486 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1487 }
Chris Lattner571e4342006-10-27 21:36:01 +00001488}
1489
Chris Lattnerdf19f272006-10-31 22:37:42 +00001490/// If the set of cases should be emitted as a series of branches, return true.
1491/// If we should emit this as a bunch of and/or'd together conditions, return
1492/// false.
1493static bool
1494ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1495 if (Cases.size() != 2) return true;
1496
Chris Lattner0ccb5002006-10-31 23:06:00 +00001497 // If this is two comparisons of the same values or'd or and'd together, they
1498 // will get folded into a single comparison, so don't emit two blocks.
1499 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1500 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1501 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1502 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1503 return false;
1504 }
1505
Chris Lattnerdf19f272006-10-31 22:37:42 +00001506 return true;
1507}
1508
Chris Lattner1c08c712005-01-07 07:47:53 +00001509void SelectionDAGLowering::visitBr(BranchInst &I) {
1510 // Update machine-CFG edges.
1511 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner1c08c712005-01-07 07:47:53 +00001512
1513 // Figure out which block is immediately after the current one.
1514 MachineBasicBlock *NextBlock = 0;
1515 MachineFunction::iterator BBI = CurMBB;
1516 if (++BBI != CurMBB->getParent()->end())
1517 NextBlock = BBI;
1518
1519 if (I.isUnconditional()) {
Owen Anderson2d389e82008-06-07 00:00:23 +00001520 // Update machine-CFG edges.
1521 CurMBB->addSuccessor(Succ0MBB);
1522
Chris Lattner1c08c712005-01-07 07:47:53 +00001523 // If this is not a fall-through branch, emit the branch.
1524 if (Succ0MBB != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001525 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001526 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner57ab6592006-10-24 17:57:59 +00001527 return;
1528 }
1529
1530 // If this condition is one of the special cases we handle, do special stuff
1531 // now.
1532 Value *CondVal = I.getCondition();
Chris Lattner57ab6592006-10-24 17:57:59 +00001533 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattner571e4342006-10-27 21:36:01 +00001534
1535 // If this is a series of conditions that are or'd or and'd together, emit
1536 // this as a sequence of branches instead of setcc's with and/or operations.
1537 // For example, instead of something like:
1538 // cmp A, B
1539 // C = seteq
1540 // cmp D, E
1541 // F = setle
1542 // or C, F
1543 // jnz foo
1544 // Emit:
1545 // cmp A, B
1546 // je foo
1547 // cmp D, E
1548 // jle foo
1549 //
1550 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1551 if (BOp->hasOneUse() &&
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001552 (BOp->getOpcode() == Instruction::And ||
Chris Lattner571e4342006-10-27 21:36:01 +00001553 BOp->getOpcode() == Instruction::Or)) {
1554 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattner0ccb5002006-10-31 23:06:00 +00001555 // If the compares in later blocks need to use values not currently
1556 // exported from this block, export them now. This block should always
1557 // be the first entry.
1558 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1559
Chris Lattnerdf19f272006-10-31 22:37:42 +00001560 // Allow some cases to be rejected.
1561 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattnerdf19f272006-10-31 22:37:42 +00001562 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1563 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1564 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1565 }
1566
1567 // Emit the branch for this block.
1568 visitSwitchCase(SwitchCases[0]);
1569 SwitchCases.erase(SwitchCases.begin());
1570 return;
Chris Lattner5a145f02006-10-29 18:23:37 +00001571 }
1572
Chris Lattner0ccb5002006-10-31 23:06:00 +00001573 // Okay, we decided not to do this, remove any inserted MBB's and clear
1574 // SwitchCases.
1575 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0e5f1302008-07-07 23:02:41 +00001576 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Chris Lattner0ccb5002006-10-31 23:06:00 +00001577
Chris Lattnerdf19f272006-10-31 22:37:42 +00001578 SwitchCases.clear();
Chris Lattner571e4342006-10-27 21:36:01 +00001579 }
1580 }
Chris Lattner24525952006-10-24 18:07:37 +00001581
1582 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001583 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001584 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner24525952006-10-24 18:07:37 +00001585 // Use visitSwitchCase to actually insert the fast branch sequence for this
1586 // cond branch.
1587 visitSwitchCase(CB);
Chris Lattner1c08c712005-01-07 07:47:53 +00001588}
1589
Nate Begemanf15485a2006-03-27 01:32:24 +00001590/// visitSwitchCase - Emits the necessary code to represent a single node in
1591/// the binary search tree resulting from lowering a switch instruction.
1592void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Chris Lattner57ab6592006-10-24 17:57:59 +00001593 SDOperand Cond;
1594 SDOperand CondLHS = getValue(CB.CmpLHS);
1595
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001596 // Build the setcc now.
1597 if (CB.CmpMHS == NULL) {
1598 // Fold "(X == true)" to X and "(X == false)" to !X to
1599 // handle common cases produced by branch lowering.
1600 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1601 Cond = CondLHS;
1602 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1603 SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1604 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1605 } else
1606 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1607 } else {
1608 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001609
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001610 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1611 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1612
1613 SDOperand CmpOp = getValue(CB.CmpMHS);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001614 MVT VT = CmpOp.getValueType();
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001615
1616 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1617 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1618 } else {
1619 SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1620 Cond = DAG.getSetCC(MVT::i1, SUB,
1621 DAG.getConstant(High-Low, VT), ISD::SETULE);
1622 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001623 }
1624
Owen Anderson2d389e82008-06-07 00:00:23 +00001625 // Update successor info
1626 CurMBB->addSuccessor(CB.TrueBB);
1627 CurMBB->addSuccessor(CB.FalseBB);
1628
Nate Begemanf15485a2006-03-27 01:32:24 +00001629 // Set NextBlock to be the MBB immediately after the current one, if any.
1630 // This is used to avoid emitting unnecessary branches to the next block.
1631 MachineBasicBlock *NextBlock = 0;
1632 MachineFunction::iterator BBI = CurMBB;
1633 if (++BBI != CurMBB->getParent()->end())
1634 NextBlock = BBI;
1635
1636 // If the lhs block is the next block, invert the condition so that we can
1637 // fall through to the lhs instead of the rhs block.
Chris Lattner57ab6592006-10-24 17:57:59 +00001638 if (CB.TrueBB == NextBlock) {
1639 std::swap(CB.TrueBB, CB.FalseBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00001640 SDOperand True = DAG.getConstant(1, Cond.getValueType());
1641 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1642 }
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001643 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001644 DAG.getBasicBlock(CB.TrueBB));
1645 if (CB.FalseBB == NextBlock)
Nate Begemanf15485a2006-03-27 01:32:24 +00001646 DAG.setRoot(BrCond);
1647 else
1648 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001649 DAG.getBasicBlock(CB.FalseBB)));
Nate Begemanf15485a2006-03-27 01:32:24 +00001650}
1651
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001652/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman37efe672006-04-22 18:53:45 +00001653void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman37efe672006-04-22 18:53:45 +00001654 // Emit the code for the jump table
Scott Michelf147a8d2007-04-24 01:24:20 +00001655 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001656 MVT PTy = TLI.getPointerTy();
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001657 SDOperand Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001658 SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1659 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1660 Table, Index));
1661 return;
Nate Begeman37efe672006-04-22 18:53:45 +00001662}
1663
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001664/// visitJumpTableHeader - This function emits necessary code to produce index
1665/// in the JumpTable from switch case.
1666void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1667 SelectionDAGISel::JumpTableHeader &JTH) {
1668 // Subtract the lowest switch case value from the value being switched on
1669 // and conditional branch to default mbb if the result is greater than the
1670 // difference between smallest and largest cases.
1671 SDOperand SwitchOp = getValue(JTH.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001672 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001673 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1674 DAG.getConstant(JTH.First, VT));
1675
1676 // The SDNode we just created, which holds the value being switched on
1677 // minus the the smallest case value, needs to be copied to a virtual
1678 // register so it can be used as an index into the jump table in a
1679 // subsequent basic block. This value may be smaller or larger than the
1680 // target's pointer type, and therefore require extension or truncating.
Duncan Sands8e4eb092008-06-08 20:54:56 +00001681 if (VT.bitsGT(TLI.getPointerTy()))
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001682 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1683 else
1684 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1685
1686 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001687 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001688 JT.Reg = JumpTableReg;
1689
1690 // Emit the range check for the jump table, and branch to the default
1691 // block for the switch statement if the value being switched on exceeds
1692 // the largest case in the switch.
Scott Michel5b8f82e2008-03-10 15:42:14 +00001693 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001694 DAG.getConstant(JTH.Last-JTH.First,VT),
1695 ISD::SETUGT);
1696
1697 // Set NextBlock to be the MBB immediately after the current one, if any.
1698 // This is used to avoid emitting unnecessary branches to the next block.
1699 MachineBasicBlock *NextBlock = 0;
1700 MachineFunction::iterator BBI = CurMBB;
1701 if (++BBI != CurMBB->getParent()->end())
1702 NextBlock = BBI;
1703
1704 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1705 DAG.getBasicBlock(JT.Default));
1706
1707 if (JT.MBB == NextBlock)
1708 DAG.setRoot(BrCond);
1709 else
1710 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001711 DAG.getBasicBlock(JT.MBB)));
1712
1713 return;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001714}
1715
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001716/// visitBitTestHeader - This function emits necessary code to produce value
1717/// suitable for "bit tests"
1718void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1719 // Subtract the minimum value
1720 SDOperand SwitchOp = getValue(B.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001721 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001722 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1723 DAG.getConstant(B.First, VT));
1724
1725 // Check range
Scott Michel5b8f82e2008-03-10 15:42:14 +00001726 SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001727 DAG.getConstant(B.Range, VT),
1728 ISD::SETUGT);
1729
1730 SDOperand ShiftOp;
Duncan Sands8e4eb092008-06-08 20:54:56 +00001731 if (VT.bitsGT(TLI.getShiftAmountTy()))
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001732 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1733 else
1734 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1735
1736 // Make desired shift
1737 SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1738 DAG.getConstant(1, TLI.getPointerTy()),
1739 ShiftOp);
1740
1741 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001742 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001743 B.Reg = SwitchReg;
1744
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001745 // Set NextBlock to be the MBB immediately after the current one, if any.
1746 // This is used to avoid emitting unnecessary branches to the next block.
1747 MachineBasicBlock *NextBlock = 0;
1748 MachineFunction::iterator BBI = CurMBB;
1749 if (++BBI != CurMBB->getParent()->end())
1750 NextBlock = BBI;
1751
1752 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson2d389e82008-06-07 00:00:23 +00001753
1754 CurMBB->addSuccessor(B.Default);
1755 CurMBB->addSuccessor(MBB);
1756
1757 SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1758 DAG.getBasicBlock(B.Default));
1759
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001760 if (MBB == NextBlock)
1761 DAG.setRoot(BrRange);
1762 else
1763 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1764 DAG.getBasicBlock(MBB)));
1765
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001766 return;
1767}
1768
1769/// visitBitTestCase - this function produces one "bit test"
1770void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1771 unsigned Reg,
1772 SelectionDAGISel::BitTestCase &B) {
1773 // Emit bit tests and jumps
Chris Lattneread0d882008-06-17 06:09:18 +00001774 SDOperand SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
1775 TLI.getPointerTy());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001776
Chris Lattneread0d882008-06-17 06:09:18 +00001777 SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
1778 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Scott Michel5b8f82e2008-03-10 15:42:14 +00001779 SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001780 DAG.getConstant(0, TLI.getPointerTy()),
1781 ISD::SETNE);
Owen Anderson2d389e82008-06-07 00:00:23 +00001782
1783 CurMBB->addSuccessor(B.TargetBB);
1784 CurMBB->addSuccessor(NextMBB);
1785
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001786 SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001787 AndCmp, DAG.getBasicBlock(B.TargetBB));
1788
1789 // Set NextBlock to be the MBB immediately after the current one, if any.
1790 // This is used to avoid emitting unnecessary branches to the next block.
1791 MachineBasicBlock *NextBlock = 0;
1792 MachineFunction::iterator BBI = CurMBB;
1793 if (++BBI != CurMBB->getParent()->end())
1794 NextBlock = BBI;
1795
1796 if (NextMBB == NextBlock)
1797 DAG.setRoot(BrAnd);
1798 else
1799 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1800 DAG.getBasicBlock(NextMBB)));
1801
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001802 return;
1803}
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001804
Jim Laskeyb180aa12007-02-21 22:53:45 +00001805void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1806 // Retrieve successors.
1807 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001808 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands9fac0b52007-06-06 10:05:18 +00001809
Duncan Sandsfd7b3262007-12-17 18:08:19 +00001810 if (isa<InlineAsm>(I.getCalledValue()))
1811 visitInlineAsm(&I);
1812 else
Duncan Sands6f74b482007-12-19 09:48:52 +00001813 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Duncan Sands9fac0b52007-06-06 10:05:18 +00001814
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001815 // If the value of the invoke is used outside of its defining block, make it
1816 // available as a virtual register.
1817 if (!I.use_empty()) {
1818 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1819 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001820 CopyValueToVirtualRegister(&I, VMI->second);
Jim Laskey183f47f2007-02-25 21:43:59 +00001821 }
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001822
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001823 // Update successor info
1824 CurMBB->addSuccessor(Return);
1825 CurMBB->addSuccessor(LandingPad);
Owen Anderson2d389e82008-06-07 00:00:23 +00001826
1827 // Drop into normal successor.
1828 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1829 DAG.getBasicBlock(Return)));
Jim Laskeyb180aa12007-02-21 22:53:45 +00001830}
1831
1832void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1833}
1834
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001835/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001836/// small case ranges).
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001837bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001838 CaseRecVector& WorkList,
1839 Value* SV,
1840 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001841 Case& BackCase = *(CR.Range.second-1);
1842
1843 // Size is the number of Cases represented by this range.
1844 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001845 if (Size > 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001846 return false;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001847
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001848 // Get the MachineFunction which holds the current MBB. This is used when
1849 // inserting any additional MBBs necessary to represent the switch.
1850 MachineFunction *CurMF = CurMBB->getParent();
1851
1852 // Figure out which block is immediately after the current one.
1853 MachineBasicBlock *NextBlock = 0;
1854 MachineFunction::iterator BBI = CR.CaseBB;
1855
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001856 if (++BBI != CurMBB->getParent()->end())
1857 NextBlock = BBI;
1858
1859 // TODO: If any two of the cases has the same destination, and if one value
1860 // is the same as the other, but has one bit unset that the other has set,
1861 // use bit manipulation to do two compares at once. For example:
1862 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1863
1864 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001865 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001866 // The last case block won't fall through into 'NextBlock' if we emit the
1867 // branches in this order. See if rearranging a case value would help.
1868 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001869 if (I->BB == NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001870 std::swap(*I, BackCase);
1871 break;
1872 }
1873 }
1874 }
1875
1876 // Create a CaseBlock record representing a conditional branch to
1877 // the Case's target mbb if the value being switched on SV is equal
1878 // to C.
1879 MachineBasicBlock *CurBlock = CR.CaseBB;
1880 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1881 MachineBasicBlock *FallThrough;
1882 if (I != E-1) {
Dan Gohman0e5f1302008-07-07 23:02:41 +00001883 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1884 CurMF->insert(BBI, FallThrough);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001885 } else {
1886 // If the last case doesn't match, go to the default block.
1887 FallThrough = Default;
1888 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001889
1890 Value *RHS, *LHS, *MHS;
1891 ISD::CondCode CC;
1892 if (I->High == I->Low) {
1893 // This is just small small case range :) containing exactly 1 case
1894 CC = ISD::SETEQ;
1895 LHS = SV; RHS = I->High; MHS = NULL;
1896 } else {
1897 CC = ISD::SETLE;
1898 LHS = I->Low; MHS = SV; RHS = I->High;
1899 }
1900 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1901 I->BB, FallThrough, CurBlock);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001902
1903 // If emitting the first comparison, just call visitSwitchCase to emit the
1904 // code into the current block. Otherwise, push the CaseBlock onto the
1905 // vector to be later processed by SDISel, and insert the node's MBB
1906 // before the next MBB.
1907 if (CurBlock == CurMBB)
1908 visitSwitchCase(CB);
1909 else
1910 SwitchCases.push_back(CB);
1911
1912 CurBlock = FallThrough;
1913 }
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001914
1915 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001916}
1917
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001918static inline bool areJTsAllowed(const TargetLowering &TLI) {
1919 return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1920 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1921}
1922
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001923/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001924bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001925 CaseRecVector& WorkList,
1926 Value* SV,
1927 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001928 Case& FrontCase = *CR.Range.first;
1929 Case& BackCase = *(CR.Range.second-1);
1930
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001931 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1932 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1933
1934 uint64_t TSize = 0;
1935 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1936 I!=E; ++I)
1937 TSize += I->size();
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001938
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001939 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001940 return false;
1941
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001942 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1943 if (Density < 0.4)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001944 return false;
1945
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001946 DOUT << "Lowering jump table\n"
1947 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001948 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001949
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001950 // Get the MachineFunction which holds the current MBB. This is used when
1951 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001952 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001953
1954 // Figure out which block is immediately after the current one.
1955 MachineBasicBlock *NextBlock = 0;
1956 MachineFunction::iterator BBI = CR.CaseBB;
1957
1958 if (++BBI != CurMBB->getParent()->end())
1959 NextBlock = BBI;
1960
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001961 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1962
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001963 // Create a new basic block to hold the code for loading the address
1964 // of the jump table, and jumping to it. Update successor information;
1965 // we will either branch to the default case for the switch, or the jump
1966 // table.
Dan Gohman0e5f1302008-07-07 23:02:41 +00001967 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1968 CurMF->insert(BBI, JumpTableBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001969 CR.CaseBB->addSuccessor(Default);
1970 CR.CaseBB->addSuccessor(JumpTableBB);
1971
1972 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001973 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001974 // a case statement, push the case's BB onto the vector, otherwise, push
1975 // the default BB.
1976 std::vector<MachineBasicBlock*> DestBBs;
1977 int64_t TEI = First;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001978 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1979 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1980 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1981
1982 if ((Low <= TEI) && (TEI <= High)) {
1983 DestBBs.push_back(I->BB);
1984 if (TEI==High)
1985 ++I;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001986 } else {
1987 DestBBs.push_back(Default);
1988 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001989 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001990
1991 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001992 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001993 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1994 E = DestBBs.end(); I != E; ++I) {
1995 if (!SuccsHandled[(*I)->getNumber()]) {
1996 SuccsHandled[(*I)->getNumber()] = true;
1997 JumpTableBB->addSuccessor(*I);
1998 }
1999 }
2000
2001 // Create a jump table index for this jump table, or return an existing
2002 // one.
2003 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
2004
2005 // Set the jump table information so that we can codegen it as a second
2006 // MachineBasicBlock
Scott Michelf147a8d2007-04-24 01:24:20 +00002007 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002008 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
2009 (CR.CaseBB == CurMBB));
2010 if (CR.CaseBB == CurMBB)
2011 visitJumpTableHeader(JT, JTH);
2012
2013 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002014
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002015 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002016}
2017
2018/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2019/// 2 subtrees.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002020bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002021 CaseRecVector& WorkList,
2022 Value* SV,
2023 MachineBasicBlock* Default) {
2024 // Get the MachineFunction which holds the current MBB. This is used when
2025 // inserting any additional MBBs necessary to represent the switch.
2026 MachineFunction *CurMF = CurMBB->getParent();
2027
2028 // Figure out which block is immediately after the current one.
2029 MachineBasicBlock *NextBlock = 0;
2030 MachineFunction::iterator BBI = CR.CaseBB;
2031
2032 if (++BBI != CurMBB->getParent()->end())
2033 NextBlock = BBI;
2034
2035 Case& FrontCase = *CR.Range.first;
2036 Case& BackCase = *(CR.Range.second-1);
2037 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2038
2039 // Size is the number of Cases represented by this range.
2040 unsigned Size = CR.Range.second - CR.Range.first;
2041
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002042 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2043 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002044 double FMetric = 0;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002045 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002046
2047 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2048 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002049 uint64_t TSize = 0;
2050 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2051 I!=E; ++I)
2052 TSize += I->size();
2053
2054 uint64_t LSize = FrontCase.size();
2055 uint64_t RSize = TSize-LSize;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002056 DOUT << "Selecting best pivot: \n"
2057 << "First: " << First << ", Last: " << Last <<"\n"
2058 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002059 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002060 J!=E; ++I, ++J) {
2061 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2062 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002063 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002064 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2065 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikov54e2b142007-04-09 21:57:03 +00002066 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002067 // Should always split in some non-trivial place
2068 DOUT <<"=>Step\n"
2069 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2070 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2071 << "Metric: " << Metric << "\n";
2072 if (FMetric < Metric) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002073 Pivot = J;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002074 FMetric = Metric;
2075 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002076 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002077
2078 LSize += J->size();
2079 RSize -= J->size();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002080 }
Anton Korobeynikov7294b582007-05-09 20:07:08 +00002081 if (areJTsAllowed(TLI)) {
2082 // If our case is dense we *really* should handle it earlier!
2083 assert((FMetric > 0) && "Should handle dense range earlier!");
2084 } else {
2085 Pivot = CR.Range.first + Size/2;
2086 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002087
2088 CaseRange LHSR(CR.Range.first, Pivot);
2089 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002090 Constant *C = Pivot->Low;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002091 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2092
2093 // We know that we branch to the LHS if the Value being switched on is
2094 // less than the Pivot value, C. We use this to optimize our binary
2095 // tree a bit, by recognizing that if SV is greater than or equal to the
2096 // LHS's Case Value, and that Case Value is exactly one less than the
2097 // Pivot's Value, then we can branch directly to the LHS's Target,
2098 // rather than creating a leaf node for it.
2099 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002100 LHSR.first->High == CR.GE &&
2101 cast<ConstantInt>(C)->getSExtValue() ==
2102 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2103 TrueBB = LHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002104 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002105 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2106 CurMF->insert(BBI, TrueBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002107 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2108 }
2109
2110 // Similar to the optimization above, if the Value being switched on is
2111 // known to be less than the Constant CR.LT, and the current Case Value
2112 // is CR.LT - 1, then we can branch directly to the target block for
2113 // the current Case Value, rather than emitting a RHS leaf node for it.
2114 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002115 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2116 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2117 FalseBB = RHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002118 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002119 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2120 CurMF->insert(BBI, FalseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002121 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2122 }
2123
2124 // Create a CaseBlock record representing a conditional branch to
2125 // the LHS node if the value being switched on SV is less than C.
2126 // Otherwise, branch to LHS.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002127 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2128 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002129
2130 if (CR.CaseBB == CurMBB)
2131 visitSwitchCase(CB);
2132 else
2133 SwitchCases.push_back(CB);
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002134
2135 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002136}
2137
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002138/// handleBitTestsSwitchCase - if current case range has few destination and
2139/// range span less, than machine word bitwidth, encode case range into series
2140/// of masks and emit bit tests with these masks.
2141bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2142 CaseRecVector& WorkList,
2143 Value* SV,
Chris Lattner3ff98172007-04-14 02:26:56 +00002144 MachineBasicBlock* Default){
Duncan Sands83ec4b62008-06-06 12:08:01 +00002145 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002146
2147 Case& FrontCase = *CR.Range.first;
2148 Case& BackCase = *(CR.Range.second-1);
2149
2150 // Get the MachineFunction which holds the current MBB. This is used when
2151 // inserting any additional MBBs necessary to represent the switch.
2152 MachineFunction *CurMF = CurMBB->getParent();
2153
2154 unsigned numCmps = 0;
2155 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2156 I!=E; ++I) {
2157 // Single case counts one, case range - two.
2158 if (I->Low == I->High)
2159 numCmps +=1;
2160 else
2161 numCmps +=2;
2162 }
2163
2164 // Count unique destinations
2165 SmallSet<MachineBasicBlock*, 4> Dests;
2166 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2167 Dests.insert(I->BB);
2168 if (Dests.size() > 3)
2169 // Don't bother the code below, if there are too much unique destinations
2170 return false;
2171 }
2172 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2173 << "Total number of comparisons: " << numCmps << "\n";
2174
2175 // Compute span of values.
2176 Constant* minValue = FrontCase.Low;
2177 Constant* maxValue = BackCase.High;
2178 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2179 cast<ConstantInt>(minValue)->getSExtValue();
2180 DOUT << "Compare range: " << range << "\n"
2181 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2182 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2183
Anton Korobeynikovab8fd402007-04-26 20:44:04 +00002184 if (range>=IntPtrBits ||
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002185 (!(Dests.size() == 1 && numCmps >= 3) &&
2186 !(Dests.size() == 2 && numCmps >= 5) &&
2187 !(Dests.size() >= 3 && numCmps >= 6)))
2188 return false;
2189
2190 DOUT << "Emitting bit tests\n";
2191 int64_t lowBound = 0;
2192
2193 // Optimize the case where all the case values fit in a
2194 // word without having to subtract minValue. In this case,
2195 // we can optimize away the subtraction.
2196 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002197 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002198 range = cast<ConstantInt>(maxValue)->getSExtValue();
2199 } else {
2200 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2201 }
2202
2203 CaseBitsVector CasesBits;
2204 unsigned i, count = 0;
2205
2206 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2207 MachineBasicBlock* Dest = I->BB;
2208 for (i = 0; i < count; ++i)
2209 if (Dest == CasesBits[i].BB)
2210 break;
2211
2212 if (i == count) {
2213 assert((count < 3) && "Too much destinations to test!");
2214 CasesBits.push_back(CaseBits(0, Dest, 0));
2215 count++;
2216 }
2217
2218 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2219 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2220
2221 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002222 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002223 CasesBits[i].Bits++;
2224 }
2225
2226 }
2227 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2228
2229 SelectionDAGISel::BitTestInfo BTC;
2230
2231 // Figure out which block is immediately after the current one.
2232 MachineFunction::iterator BBI = CR.CaseBB;
2233 ++BBI;
2234
2235 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2236
2237 DOUT << "Cases:\n";
2238 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2239 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2240 << ", BB: " << CasesBits[i].BB << "\n";
2241
Dan Gohman0e5f1302008-07-07 23:02:41 +00002242 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2243 CurMF->insert(BBI, CaseBB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002244 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2245 CaseBB,
2246 CasesBits[i].BB));
2247 }
2248
2249 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohenefc36622007-04-09 14:32:59 +00002250 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002251 CR.CaseBB, Default, BTC);
2252
2253 if (CR.CaseBB == CurMBB)
2254 visitBitTestHeader(BTB);
2255
2256 BitTestCases.push_back(BTB);
2257
2258 return true;
2259}
2260
2261
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002262/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002263unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2264 const SwitchInst& SI) {
2265 unsigned numCmps = 0;
2266
2267 // Start with "simple" cases
2268 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2269 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2270 Cases.push_back(Case(SI.getSuccessorValue(i),
2271 SI.getSuccessorValue(i),
2272 SMBB));
2273 }
Chris Lattnerb3d9cdb2007-11-27 06:14:32 +00002274 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002275
2276 // Merge case into clusters
2277 if (Cases.size()>=2)
David Greenea2a48852007-06-29 03:42:23 +00002278 // Must recompute end() each iteration because it may be
2279 // invalidated by erase if we hold on to it
Chris Lattner27a6c732007-11-24 07:07:01 +00002280 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002281 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2282 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2283 MachineBasicBlock* nextBB = J->BB;
2284 MachineBasicBlock* currentBB = I->BB;
2285
2286 // If the two neighboring cases go to the same destination, merge them
2287 // into a single case.
2288 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2289 I->High = J->High;
2290 J = Cases.erase(J);
2291 } else {
2292 I = J++;
2293 }
2294 }
2295
2296 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2297 if (I->Low != I->High)
2298 // A range counts double, since it requires two compares.
2299 ++numCmps;
2300 }
2301
2302 return numCmps;
2303}
2304
2305void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002306 // Figure out which block is immediately after the current one.
2307 MachineBasicBlock *NextBlock = 0;
2308 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002309
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002310 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002311
Nate Begemanf15485a2006-03-27 01:32:24 +00002312 // If there is only the default destination, branch to it if it is not the
2313 // next basic block. Otherwise, just fall through.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002314 if (SI.getNumOperands() == 2) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002315 // Update machine-CFG edges.
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002316
Nate Begemanf15485a2006-03-27 01:32:24 +00002317 // If this is not a fall-through branch, emit the branch.
Owen Anderson2d389e82008-06-07 00:00:23 +00002318 CurMBB->addSuccessor(Default);
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002319 if (Default != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002320 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002321 DAG.getBasicBlock(Default)));
Owen Anderson2d389e82008-06-07 00:00:23 +00002322
Nate Begemanf15485a2006-03-27 01:32:24 +00002323 return;
2324 }
2325
2326 // If there are any non-default case statements, create a vector of Cases
2327 // representing each one, and sort the vector so that we can efficiently
2328 // create a binary search tree from them.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002329 CaseVector Cases;
2330 unsigned numCmps = Clusterify(Cases, SI);
2331 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2332 << ". Total compares: " << numCmps << "\n";
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002333
Nate Begemanf15485a2006-03-27 01:32:24 +00002334 // Get the Value to be switched on and default basic blocks, which will be
2335 // inserted into CaseBlock records, representing basic blocks in the binary
2336 // search tree.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002337 Value *SV = SI.getOperand(0);
Nate Begeman37efe672006-04-22 18:53:45 +00002338
Nate Begemanf15485a2006-03-27 01:32:24 +00002339 // Push the initial CaseRec onto the worklist
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002340 CaseRecVector WorkList;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002341 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2342
2343 while (!WorkList.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002344 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002345 CaseRec CR = WorkList.back();
2346 WorkList.pop_back();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002347
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002348 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2349 continue;
2350
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002351 // If the range has few cases (two or less) emit a series of specific
2352 // tests.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002353 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2354 continue;
2355
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002356 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002357 // target supports indirect branches, then emit a jump table rather than
2358 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002359 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2360 continue;
2361
2362 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2363 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2364 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemanf15485a2006-03-27 01:32:24 +00002365 }
2366}
2367
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002368
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002369void SelectionDAGLowering::visitSub(User &I) {
2370 // -0.0 - X --> fneg
Reid Spencer24d6da52007-01-21 00:29:26 +00002371 const Type *Ty = I.getType();
Reid Spencer9d6565a2007-02-15 02:26:10 +00002372 if (isa<VectorType>(Ty)) {
Dan Gohman7f321562007-06-25 16:23:39 +00002373 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2374 const VectorType *DestTy = cast<VectorType>(I.getType());
2375 const Type *ElTy = DestTy->getElementType();
Evan Chengc45453f2007-06-29 21:44:35 +00002376 if (ElTy->isFloatingPoint()) {
2377 unsigned VL = DestTy->getNumElements();
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002378 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Evan Chengc45453f2007-06-29 21:44:35 +00002379 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2380 if (CV == CNZ) {
2381 SDOperand Op2 = getValue(I.getOperand(1));
2382 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2383 return;
2384 }
Dan Gohman7f321562007-06-25 16:23:39 +00002385 }
2386 }
2387 }
2388 if (Ty->isFloatingPoint()) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002389 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002390 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002391 SDOperand Op2 = getValue(I.getOperand(1));
2392 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2393 return;
2394 }
Dan Gohman7f321562007-06-25 16:23:39 +00002395 }
2396
2397 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002398}
2399
Dan Gohman7f321562007-06-25 16:23:39 +00002400void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00002401 SDOperand Op1 = getValue(I.getOperand(0));
2402 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer24d6da52007-01-21 00:29:26 +00002403
2404 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer1628cec2006-10-26 06:15:43 +00002405}
2406
Nate Begemane21ea612005-11-18 07:42:56 +00002407void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2408 SDOperand Op1 = getValue(I.getOperand(0));
2409 SDOperand Op2 = getValue(I.getOperand(1));
2410
Duncan Sands8e4eb092008-06-08 20:54:56 +00002411 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002412 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002413 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002414 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
Nate Begemane21ea612005-11-18 07:42:56 +00002415
Chris Lattner1c08c712005-01-07 07:47:53 +00002416 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2417}
2418
Reid Spencer45fb3f32006-11-20 01:22:35 +00002419void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002420 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2421 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2422 predicate = IC->getPredicate();
2423 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2424 predicate = ICmpInst::Predicate(IC->getPredicate());
2425 SDOperand Op1 = getValue(I.getOperand(0));
2426 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer45fb3f32006-11-20 01:22:35 +00002427 ISD::CondCode Opcode;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002428 switch (predicate) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002429 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2430 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2431 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2432 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2433 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2434 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2435 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2436 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2437 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2438 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2439 default:
2440 assert(!"Invalid ICmp predicate value");
2441 Opcode = ISD::SETEQ;
2442 break;
2443 }
2444 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2445}
2446
2447void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002448 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2449 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2450 predicate = FC->getPredicate();
2451 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2452 predicate = FCmpInst::Predicate(FC->getPredicate());
Chris Lattner1c08c712005-01-07 07:47:53 +00002453 SDOperand Op1 = getValue(I.getOperand(0));
2454 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002455 ISD::CondCode Condition, FOC, FPC;
2456 switch (predicate) {
2457 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2458 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2459 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2460 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2461 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2462 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2463 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmancba3b442008-05-01 23:40:44 +00002464 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2465 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002466 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2467 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2468 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2469 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2470 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2471 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2472 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2473 default:
2474 assert(!"Invalid FCmp predicate value");
2475 FOC = FPC = ISD::SETFALSE;
2476 break;
2477 }
2478 if (FiniteOnlyFPMath())
2479 Condition = FOC;
2480 else
2481 Condition = FPC;
2482 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner1c08c712005-01-07 07:47:53 +00002483}
2484
Nate Begemanb43e9c12008-05-12 19:40:03 +00002485void SelectionDAGLowering::visitVICmp(User &I) {
2486 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2487 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2488 predicate = IC->getPredicate();
2489 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2490 predicate = ICmpInst::Predicate(IC->getPredicate());
2491 SDOperand Op1 = getValue(I.getOperand(0));
2492 SDOperand Op2 = getValue(I.getOperand(1));
2493 ISD::CondCode Opcode;
2494 switch (predicate) {
2495 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2496 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2497 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2498 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2499 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2500 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2501 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2502 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2503 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2504 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2505 default:
2506 assert(!"Invalid ICmp predicate value");
2507 Opcode = ISD::SETEQ;
2508 break;
2509 }
2510 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2511}
2512
2513void SelectionDAGLowering::visitVFCmp(User &I) {
2514 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2515 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2516 predicate = FC->getPredicate();
2517 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2518 predicate = FCmpInst::Predicate(FC->getPredicate());
2519 SDOperand Op1 = getValue(I.getOperand(0));
2520 SDOperand Op2 = getValue(I.getOperand(1));
2521 ISD::CondCode Condition, FOC, FPC;
2522 switch (predicate) {
2523 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2524 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2525 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2526 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2527 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2528 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2529 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2530 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2531 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2532 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2533 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2534 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2535 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2536 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2537 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2538 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2539 default:
2540 assert(!"Invalid VFCmp predicate value");
2541 FOC = FPC = ISD::SETFALSE;
2542 break;
2543 }
2544 if (FiniteOnlyFPMath())
2545 Condition = FOC;
2546 else
2547 Condition = FPC;
2548
Duncan Sands83ec4b62008-06-06 12:08:01 +00002549 MVT DestVT = TLI.getValueType(I.getType());
Nate Begemanb43e9c12008-05-12 19:40:03 +00002550
2551 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2552}
2553
Chris Lattner1c08c712005-01-07 07:47:53 +00002554void SelectionDAGLowering::visitSelect(User &I) {
2555 SDOperand Cond = getValue(I.getOperand(0));
2556 SDOperand TrueVal = getValue(I.getOperand(1));
2557 SDOperand FalseVal = getValue(I.getOperand(2));
Dan Gohman7f321562007-06-25 16:23:39 +00002558 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2559 TrueVal, FalseVal));
Chris Lattner1c08c712005-01-07 07:47:53 +00002560}
2561
Reid Spencer3da59db2006-11-27 01:05:10 +00002562
2563void SelectionDAGLowering::visitTrunc(User &I) {
2564 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2565 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002566 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002567 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2568}
2569
2570void SelectionDAGLowering::visitZExt(User &I) {
2571 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2572 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2573 SDOperand 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::ZERO_EXTEND, DestVT, N));
2576}
2577
2578void SelectionDAGLowering::visitSExt(User &I) {
2579 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2580 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2581 SDOperand 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::SIGN_EXTEND, DestVT, N));
2584}
2585
2586void SelectionDAGLowering::visitFPTrunc(User &I) {
2587 // FPTrunc is never a no-op cast, no need to check
2588 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002589 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner0bd48932008-01-17 07:00:52 +00002590 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Reid Spencer3da59db2006-11-27 01:05:10 +00002591}
2592
2593void SelectionDAGLowering::visitFPExt(User &I){
2594 // FPTrunc is never a no-op cast, no need to check
2595 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002596 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002597 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2598}
2599
2600void SelectionDAGLowering::visitFPToUI(User &I) {
2601 // FPToUI is never a no-op cast, no need to check
2602 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002603 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002604 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2605}
2606
2607void SelectionDAGLowering::visitFPToSI(User &I) {
2608 // FPToSI is never a no-op cast, no need to check
2609 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002610 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002611 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2612}
2613
2614void SelectionDAGLowering::visitUIToFP(User &I) {
2615 // UIToFP is never a no-op cast, no need to check
2616 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002617 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002618 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2619}
2620
2621void SelectionDAGLowering::visitSIToFP(User &I){
2622 // UIToFP is never a no-op cast, no need to check
2623 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002624 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002625 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2626}
2627
2628void SelectionDAGLowering::visitPtrToInt(User &I) {
2629 // What to do depends on the size of the integer and the size of the pointer.
2630 // We can either truncate, zero extend, or no-op, accordingly.
Chris Lattner1c08c712005-01-07 07:47:53 +00002631 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002632 MVT SrcVT = N.getValueType();
2633 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002634 SDOperand Result;
Duncan Sands8e4eb092008-06-08 20:54:56 +00002635 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002636 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2637 else
2638 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2639 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2640 setValue(&I, Result);
2641}
Chris Lattner1c08c712005-01-07 07:47:53 +00002642
Reid Spencer3da59db2006-11-27 01:05:10 +00002643void SelectionDAGLowering::visitIntToPtr(User &I) {
2644 // What to do depends on the size of the integer and the size of the pointer.
2645 // We can either truncate, zero extend, or no-op, accordingly.
2646 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002647 MVT SrcVT = N.getValueType();
2648 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sands8e4eb092008-06-08 20:54:56 +00002649 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002650 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2651 else
2652 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2653 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2654}
2655
2656void SelectionDAGLowering::visitBitCast(User &I) {
2657 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002658 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002659
2660 // BitCast assures us that source and destination are the same size so this
2661 // is either a BIT_CONVERT or a no-op.
2662 if (DestVT != N.getValueType())
2663 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2664 else
2665 setValue(&I, N); // noop cast.
Chris Lattner1c08c712005-01-07 07:47:53 +00002666}
2667
Chris Lattner2bbd8102006-03-29 00:11:43 +00002668void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00002669 SDOperand InVec = getValue(I.getOperand(0));
2670 SDOperand InVal = getValue(I.getOperand(1));
2671 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2672 getValue(I.getOperand(2)));
2673
Dan Gohman7f321562007-06-25 16:23:39 +00002674 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2675 TLI.getValueType(I.getType()),
2676 InVec, InVal, InIdx));
Chris Lattnerc7029802006-03-18 01:44:44 +00002677}
2678
Chris Lattner2bbd8102006-03-29 00:11:43 +00002679void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00002680 SDOperand InVec = getValue(I.getOperand(0));
2681 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2682 getValue(I.getOperand(1)));
Dan Gohman7f321562007-06-25 16:23:39 +00002683 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner384504c2006-03-21 20:44:12 +00002684 TLI.getValueType(I.getType()), InVec, InIdx));
2685}
Chris Lattnerc7029802006-03-18 01:44:44 +00002686
Chris Lattner3e104b12006-04-08 04:15:24 +00002687void SelectionDAGLowering::visitShuffleVector(User &I) {
2688 SDOperand V1 = getValue(I.getOperand(0));
2689 SDOperand V2 = getValue(I.getOperand(1));
2690 SDOperand Mask = getValue(I.getOperand(2));
2691
Dan Gohman7f321562007-06-25 16:23:39 +00002692 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2693 TLI.getValueType(I.getType()),
2694 V1, V2, Mask));
Chris Lattner3e104b12006-04-08 04:15:24 +00002695}
2696
Dan Gohman1d685a42008-06-07 02:02:36 +00002697void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2698 const Value *Op0 = I.getOperand(0);
2699 const Value *Op1 = I.getOperand(1);
2700 const Type *AggTy = I.getType();
2701 const Type *ValTy = Op1->getType();
2702 bool IntoUndef = isa<UndefValue>(Op0);
2703 bool FromUndef = isa<UndefValue>(Op1);
2704
2705 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2706 I.idx_begin(), I.idx_end());
2707
2708 SmallVector<MVT, 4> AggValueVTs;
2709 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2710 SmallVector<MVT, 4> ValValueVTs;
2711 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2712
2713 unsigned NumAggValues = AggValueVTs.size();
2714 unsigned NumValValues = ValValueVTs.size();
2715 SmallVector<SDOperand, 4> Values(NumAggValues);
2716
2717 SDOperand Agg = getValue(Op0);
2718 SDOperand Val = getValue(Op1);
2719 unsigned i = 0;
2720 // Copy the beginning value(s) from the original aggregate.
2721 for (; i != LinearIndex; ++i)
2722 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2723 SDOperand(Agg.Val, Agg.ResNo + i);
2724 // Copy values from the inserted value(s).
2725 for (; i != LinearIndex + NumValValues; ++i)
2726 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2727 SDOperand(Val.Val, Val.ResNo + i - LinearIndex);
2728 // Copy remaining value(s) from the original aggregate.
2729 for (; i != NumAggValues; ++i)
2730 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2731 SDOperand(Agg.Val, Agg.ResNo + i);
2732
Duncan Sandsf9516202008-06-30 10:19:09 +00002733 setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2734 &Values[0], NumAggValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002735}
2736
Dan Gohman1d685a42008-06-07 02:02:36 +00002737void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2738 const Value *Op0 = I.getOperand(0);
2739 const Type *AggTy = Op0->getType();
2740 const Type *ValTy = I.getType();
2741 bool OutOfUndef = isa<UndefValue>(Op0);
2742
2743 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2744 I.idx_begin(), I.idx_end());
2745
2746 SmallVector<MVT, 4> ValValueVTs;
2747 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2748
2749 unsigned NumValValues = ValValueVTs.size();
2750 SmallVector<SDOperand, 4> Values(NumValValues);
2751
2752 SDOperand Agg = getValue(Op0);
2753 // Copy out the selected value(s).
2754 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2755 Values[i - LinearIndex] =
Dan Gohmandded0fd2008-06-20 00:54:19 +00002756 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
2757 SDOperand(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002758
Duncan Sandsf9516202008-06-30 10:19:09 +00002759 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2760 &Values[0], NumValValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002761}
2762
Chris Lattner3e104b12006-04-08 04:15:24 +00002763
Chris Lattner1c08c712005-01-07 07:47:53 +00002764void SelectionDAGLowering::visitGetElementPtr(User &I) {
2765 SDOperand N = getValue(I.getOperand(0));
2766 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00002767
2768 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2769 OI != E; ++OI) {
2770 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002771 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002772 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner1c08c712005-01-07 07:47:53 +00002773 if (Field) {
2774 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +00002775 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner1c08c712005-01-07 07:47:53 +00002776 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner0bd48932008-01-17 07:00:52 +00002777 DAG.getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00002778 }
2779 Ty = StTy->getElementType(Field);
2780 } else {
2781 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00002782
Chris Lattner7c0104b2005-11-09 04:45:33 +00002783 // If this is a constant subscript, handle it quickly.
2784 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002785 if (CI->getZExtValue() == 0) continue;
Reid Spencer47857812006-12-31 05:55:36 +00002786 uint64_t Offs =
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002787 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00002788 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2789 DAG.getIntPtrConstant(Offs));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002790 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00002791 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00002792
2793 // N = N + Idx * ElementSize;
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002794 uint64_t ElementSize = TD->getABITypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002795 SDOperand IdxN = getValue(Idx);
2796
2797 // If the index is smaller or larger than intptr_t, truncate or extend
2798 // it.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002799 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +00002800 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002801 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Chris Lattner7c0104b2005-11-09 04:45:33 +00002802 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2803
2804 // If this is a multiply by a power of two, turn it into a shl
2805 // immediately. This is a very common case.
2806 if (isPowerOf2_64(ElementSize)) {
2807 unsigned Amt = Log2_64(ElementSize);
2808 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00002809 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002810 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2811 continue;
2812 }
2813
Chris Lattner0bd48932008-01-17 07:00:52 +00002814 SDOperand Scale = DAG.getIntPtrConstant(ElementSize);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002815 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2816 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00002817 }
2818 }
2819 setValue(&I, N);
2820}
2821
2822void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2823 // If this is a fixed sized alloca in the entry block of the function,
2824 // allocate it statically on the stack.
2825 if (FuncInfo.StaticAllocaMap.count(&I))
2826 return; // getValue will auto-populate this.
2827
2828 const Type *Ty = I.getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +00002829 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00002830 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00002831 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner58092e32007-01-20 22:35:55 +00002832 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00002833
2834 SDOperand AllocSize = getValue(I.getArraySize());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002835 MVT IntPtr = TLI.getPointerTy();
Duncan Sands8e4eb092008-06-08 20:54:56 +00002836 if (IntPtr.bitsLT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002837 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002838 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002839 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00002840
Chris Lattner68cd65e2005-01-22 23:04:37 +00002841 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002842 DAG.getIntPtrConstant(TySize));
Chris Lattner1c08c712005-01-07 07:47:53 +00002843
Evan Cheng45157792007-08-16 23:46:29 +00002844 // Handle alignment. If the requested alignment is less than or equal to
2845 // the stack alignment, ignore it. If the size is greater than or equal to
2846 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner1c08c712005-01-07 07:47:53 +00002847 unsigned StackAlign =
2848 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng45157792007-08-16 23:46:29 +00002849 if (Align <= StackAlign)
Chris Lattner1c08c712005-01-07 07:47:53 +00002850 Align = 0;
Evan Cheng45157792007-08-16 23:46:29 +00002851
2852 // Round the size of the allocation up to the stack alignment size
2853 // by add SA-1 to the size.
2854 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002855 DAG.getIntPtrConstant(StackAlign-1));
Evan Cheng45157792007-08-16 23:46:29 +00002856 // Mask out the low bits for alignment purposes.
2857 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002858 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner1c08c712005-01-07 07:47:53 +00002859
Chris Lattner0bd48932008-01-17 07:00:52 +00002860 SDOperand Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands83ec4b62008-06-06 12:08:01 +00002861 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002862 MVT::Other);
2863 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner0da331f2007-02-04 01:31:47 +00002864 setValue(&I, DSA);
2865 DAG.setRoot(DSA.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002866
2867 // Inform the Frame Information that we have just allocated a variable-sized
2868 // object.
2869 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2870}
2871
Chris Lattner1c08c712005-01-07 07:47:53 +00002872void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002873 const Value *SV = I.getOperand(0);
2874 SDOperand Ptr = getValue(SV);
2875
2876 const Type *Ty = I.getType();
2877 bool isVolatile = I.isVolatile();
2878 unsigned Alignment = I.getAlignment();
2879
2880 SmallVector<MVT, 4> ValueVTs;
2881 SmallVector<uint64_t, 4> Offsets;
2882 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2883 unsigned NumValues = ValueVTs.size();
2884 if (NumValues == 0)
2885 return;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002886
Chris Lattnerd3948112005-01-17 22:19:26 +00002887 SDOperand Root;
Dan Gohman8b4588f2008-07-25 00:04:14 +00002888 bool ConstantMemory = false;
Chris Lattnerd3948112005-01-17 22:19:26 +00002889 if (I.isVolatile())
Dan Gohman8b4588f2008-07-25 00:04:14 +00002890 // Serialize volatile loads with other side effects.
Chris Lattnerd3948112005-01-17 22:19:26 +00002891 Root = getRoot();
Dan Gohman8b4588f2008-07-25 00:04:14 +00002892 else if (AA.pointsToConstantMemory(SV)) {
2893 // Do not serialize (non-volatile) loads of constant memory with anything.
2894 Root = DAG.getEntryNode();
2895 ConstantMemory = true;
2896 } else {
Chris Lattnerd3948112005-01-17 22:19:26 +00002897 // Do not serialize non-volatile loads against each other.
2898 Root = DAG.getRoot();
2899 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002900
Dan Gohman1d685a42008-06-07 02:02:36 +00002901 SmallVector<SDOperand, 4> Values(NumValues);
2902 SmallVector<SDOperand, 4> Chains(NumValues);
2903 MVT PtrVT = Ptr.getValueType();
2904 for (unsigned i = 0; i != NumValues; ++i) {
2905 SDOperand L = DAG.getLoad(ValueVTs[i], Root,
2906 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2907 DAG.getConstant(Offsets[i], PtrVT)),
2908 SV, Offsets[i],
2909 isVolatile, Alignment);
2910 Values[i] = L;
2911 Chains[i] = L.getValue(1);
2912 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002913
Dan Gohman8b4588f2008-07-25 00:04:14 +00002914 if (!ConstantMemory) {
2915 SDOperand Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2916 &Chains[0], NumValues);
2917 if (isVolatile)
2918 DAG.setRoot(Chain);
2919 else
2920 PendingLoads.push_back(Chain);
2921 }
Dan Gohman1d685a42008-06-07 02:02:36 +00002922
Duncan Sandsf9516202008-06-30 10:19:09 +00002923 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2924 &Values[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002925}
2926
2927
2928void SelectionDAGLowering::visitStore(StoreInst &I) {
2929 Value *SrcV = I.getOperand(0);
2930 SDOperand Src = getValue(SrcV);
Dan Gohman1d685a42008-06-07 02:02:36 +00002931 Value *PtrV = I.getOperand(1);
2932 SDOperand Ptr = getValue(PtrV);
2933
2934 SmallVector<MVT, 4> ValueVTs;
2935 SmallVector<uint64_t, 4> Offsets;
2936 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2937 unsigned NumValues = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002938 if (NumValues == 0)
2939 return;
Dan Gohman1d685a42008-06-07 02:02:36 +00002940
2941 SDOperand Root = getRoot();
2942 SmallVector<SDOperand, 4> Chains(NumValues);
2943 MVT PtrVT = Ptr.getValueType();
2944 bool isVolatile = I.isVolatile();
2945 unsigned Alignment = I.getAlignment();
2946 for (unsigned i = 0; i != NumValues; ++i)
2947 Chains[i] = DAG.getStore(Root, SDOperand(Src.Val, Src.ResNo + i),
2948 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2949 DAG.getConstant(Offsets[i], PtrVT)),
2950 PtrV, Offsets[i],
2951 isVolatile, Alignment);
2952
2953 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002954}
2955
Chris Lattner0eade312006-03-24 02:22:33 +00002956/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2957/// node.
2958void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2959 unsigned Intrinsic) {
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002960 bool HasChain = !I.doesNotAccessMemory();
2961 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2962
Chris Lattner0eade312006-03-24 02:22:33 +00002963 // Build the operand list.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002964 SmallVector<SDOperand, 8> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00002965 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2966 if (OnlyLoad) {
2967 // We don't need to serialize loads against other loads.
2968 Ops.push_back(DAG.getRoot());
2969 } else {
2970 Ops.push_back(getRoot());
2971 }
2972 }
Chris Lattner0eade312006-03-24 02:22:33 +00002973
2974 // Add the intrinsic ID as an integer operand.
2975 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2976
2977 // Add all operands of the call to the operand list.
2978 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2979 SDOperand Op = getValue(I.getOperand(i));
Chris Lattner0eade312006-03-24 02:22:33 +00002980 assert(TLI.isTypeLegal(Op.getValueType()) &&
2981 "Intrinsic uses a non-legal type?");
2982 Ops.push_back(Op);
2983 }
2984
Duncan Sands83ec4b62008-06-06 12:08:01 +00002985 std::vector<MVT> VTs;
Chris Lattner0eade312006-03-24 02:22:33 +00002986 if (I.getType() != Type::VoidTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002987 MVT VT = TLI.getValueType(I.getType());
2988 if (VT.isVector()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002989 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002990 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Chris Lattner0eade312006-03-24 02:22:33 +00002991
Duncan Sands83ec4b62008-06-06 12:08:01 +00002992 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Chris Lattner0eade312006-03-24 02:22:33 +00002993 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2994 }
2995
2996 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2997 VTs.push_back(VT);
2998 }
2999 if (HasChain)
3000 VTs.push_back(MVT::Other);
3001
Duncan Sands83ec4b62008-06-06 12:08:01 +00003002 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003003
Chris Lattner0eade312006-03-24 02:22:33 +00003004 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00003005 SDOperand Result;
3006 if (!HasChain)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003007 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
3008 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003009 else if (I.getType() != Type::VoidTy)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003010 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
3011 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003012 else
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003013 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
3014 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003015
Chris Lattnere58a7802006-04-02 03:41:14 +00003016 if (HasChain) {
3017 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
3018 if (OnlyLoad)
3019 PendingLoads.push_back(Chain);
3020 else
3021 DAG.setRoot(Chain);
3022 }
Chris Lattner0eade312006-03-24 02:22:33 +00003023 if (I.getType() != Type::VoidTy) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003024 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003025 MVT VT = TLI.getValueType(PTy);
Dan Gohman7f321562007-06-25 16:23:39 +00003026 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattner0eade312006-03-24 02:22:33 +00003027 }
3028 setValue(&I, Result);
3029 }
3030}
3031
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003032/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003033static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003034 V = V->stripPointerCasts();
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003035 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003036 assert ((GV || isa<ConstantPointerNull>(V)) &&
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003037 "TypeInfo must be a global variable or NULL");
3038 return GV;
3039}
3040
Duncan Sandsf4070822007-06-15 19:04:19 +00003041/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003042/// call, and add them to the specified machine basic block.
Duncan Sandsf4070822007-06-15 19:04:19 +00003043static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3044 MachineBasicBlock *MBB) {
3045 // Inform the MachineModuleInfo of the personality for this landing pad.
3046 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3047 assert(CE->getOpcode() == Instruction::BitCast &&
3048 isa<Function>(CE->getOperand(0)) &&
3049 "Personality should be a function");
3050 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3051
3052 // Gather all the type infos for this landing pad and pass them along to
3053 // MachineModuleInfo.
3054 std::vector<GlobalVariable *> TyInfo;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003055 unsigned N = I.getNumOperands();
3056
3057 for (unsigned i = N - 1; i > 2; --i) {
3058 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3059 unsigned FilterLength = CI->getZExtValue();
Duncan Sands6590b042007-08-27 15:47:50 +00003060 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003061 assert (FirstCatch <= N && "Invalid filter length");
3062
3063 if (FirstCatch < N) {
3064 TyInfo.reserve(N - FirstCatch);
3065 for (unsigned j = FirstCatch; j < N; ++j)
3066 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3067 MMI->addCatchTypeInfo(MBB, TyInfo);
3068 TyInfo.clear();
3069 }
3070
Duncan Sands6590b042007-08-27 15:47:50 +00003071 if (!FilterLength) {
3072 // Cleanup.
3073 MMI->addCleanup(MBB);
3074 } else {
3075 // Filter.
3076 TyInfo.reserve(FilterLength - 1);
3077 for (unsigned j = i + 1; j < FirstCatch; ++j)
3078 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3079 MMI->addFilterTypeInfo(MBB, TyInfo);
3080 TyInfo.clear();
3081 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003082
3083 N = i;
3084 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003085 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003086
3087 if (N > 3) {
3088 TyInfo.reserve(N - 3);
3089 for (unsigned j = 3; j < N; ++j)
3090 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sandsf4070822007-06-15 19:04:19 +00003091 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003092 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003093}
3094
Mon P Wang63307c32008-05-05 19:05:59 +00003095
3096/// Inlined utility function to implement binary input atomic intrinsics for
3097// visitIntrinsicCall: I is a call instruction
3098// Op is the associated NodeType for I
3099const char *
3100SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
3101 SDOperand Root = getRoot();
Mon P Wang63307c32008-05-05 19:05:59 +00003102 SDOperand L = DAG.getAtomic(Op, Root,
3103 getValue(I.getOperand(1)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003104 getValue(I.getOperand(2)),
Mon P Wang28873102008-06-25 08:15:39 +00003105 I.getOperand(1));
Mon P Wang63307c32008-05-05 19:05:59 +00003106 setValue(&I, L);
3107 DAG.setRoot(L.getValue(1));
3108 return 0;
3109}
3110
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003111/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3112/// we want to emit this as a call to a named external function, return the name
3113/// otherwise lower it and return null.
3114const char *
3115SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3116 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00003117 default:
3118 // By default, turn this into a target intrinsic node.
3119 visitTargetIntrinsic(I, Intrinsic);
3120 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003121 case Intrinsic::vastart: visitVAStart(I); return 0;
3122 case Intrinsic::vaend: visitVAEnd(I); return 0;
3123 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemanbcc5f362007-01-29 22:58:52 +00003124 case Intrinsic::returnaddress:
3125 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3126 getValue(I.getOperand(1))));
3127 return 0;
3128 case Intrinsic::frameaddress:
3129 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3130 getValue(I.getOperand(1))));
3131 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003132 case Intrinsic::setjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003133 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003134 break;
3135 case Intrinsic::longjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003136 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003137 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00003138 case Intrinsic::memcpy_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003139 case Intrinsic::memcpy_i64: {
3140 SDOperand Op1 = getValue(I.getOperand(1));
3141 SDOperand Op2 = getValue(I.getOperand(2));
3142 SDOperand Op3 = getValue(I.getOperand(3));
3143 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3144 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3145 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003146 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003147 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003148 case Intrinsic::memset_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003149 case Intrinsic::memset_i64: {
3150 SDOperand Op1 = getValue(I.getOperand(1));
3151 SDOperand Op2 = getValue(I.getOperand(2));
3152 SDOperand Op3 = getValue(I.getOperand(3));
3153 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3154 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3155 I.getOperand(1), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003156 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003157 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003158 case Intrinsic::memmove_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003159 case Intrinsic::memmove_i64: {
3160 SDOperand Op1 = getValue(I.getOperand(1));
3161 SDOperand Op2 = getValue(I.getOperand(2));
3162 SDOperand Op3 = getValue(I.getOperand(3));
3163 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3164
3165 // If the source and destination are known to not be aliases, we can
3166 // lower memmove as memcpy.
3167 uint64_t Size = -1ULL;
3168 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3169 Size = C->getValue();
3170 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3171 AliasAnalysis::NoAlias) {
3172 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3173 I.getOperand(1), 0, I.getOperand(2), 0));
3174 return 0;
3175 }
3176
3177 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3178 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003179 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003180 }
Chris Lattner86cb6432005-12-13 17:40:33 +00003181 case Intrinsic::dbg_stoppoint: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003182 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003183 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003184 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003185 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00003186 assert(DD && "Not a debug information descriptor");
Dan Gohman7f460202008-06-30 20:59:49 +00003187 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3188 SPI.getLine(),
3189 SPI.getColumn(),
3190 cast<CompileUnitDesc>(DD)));
Chris Lattner86cb6432005-12-13 17:40:33 +00003191 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003192
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003193 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00003194 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003195 case Intrinsic::dbg_region_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003196 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003197 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003198 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3199 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003200 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003201 }
3202
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003203 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003204 }
3205 case Intrinsic::dbg_region_end: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003206 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003207 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003208 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3209 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003210 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003211 }
3212
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003213 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003214 }
3215 case Intrinsic::dbg_func_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003216 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003217 if (!MMI) return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003218 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003219 Value *SP = FSI.getSubprogram();
3220 if (SP && MMI->Verify(SP)) {
3221 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3222 // what (most?) gdb expects.
3223 DebugInfoDesc *DD = MMI->getDescFor(SP);
3224 assert(DD && "Not a debug information descriptor");
3225 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3226 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
Dan Gohman99fe47b2008-06-30 22:21:03 +00003227 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003228 // Record the source line but does create a label. It will be emitted
3229 // at asm emission time.
3230 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Jim Laskey43970fe2006-03-23 18:06:46 +00003231 }
3232
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003233 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003234 }
3235 case Intrinsic::dbg_declare: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003236 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003237 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Chenga844bde2008-02-02 04:07:54 +00003238 Value *Variable = DI.getVariable();
3239 if (MMI && Variable && MMI->Verify(Variable))
3240 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3241 getValue(DI.getAddress()), getValue(Variable)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003242 return 0;
3243 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003244
Jim Laskeyb180aa12007-02-21 22:53:45 +00003245 case Intrinsic::eh_exception: {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003246 if (!CurMBB->isLandingPad()) {
3247 // FIXME: Mark exception register as live in. Hack for PR1508.
3248 unsigned Reg = TLI.getExceptionAddressRegister();
3249 if (Reg) CurMBB->addLiveIn(Reg);
Jim Laskey735b6f82007-02-22 15:38:06 +00003250 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003251 // Insert the EXCEPTIONADDR instruction.
3252 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3253 SDOperand Ops[1];
3254 Ops[0] = DAG.getRoot();
3255 SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
3256 setValue(&I, Op);
3257 DAG.setRoot(Op.getValue(1));
Jim Laskeyb180aa12007-02-21 22:53:45 +00003258 return 0;
3259 }
3260
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003261 case Intrinsic::eh_selector_i32:
3262 case Intrinsic::eh_selector_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003263 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003264 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003265 MVT::i32 : MVT::i64);
3266
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003267 if (MMI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00003268 if (CurMBB->isLandingPad())
3269 addCatchInfo(I, MMI, CurMBB);
Evan Chenge47c3332007-06-27 18:45:32 +00003270 else {
Duncan Sandsf4070822007-06-15 19:04:19 +00003271#ifndef NDEBUG
Duncan Sandsf4070822007-06-15 19:04:19 +00003272 FuncInfo.CatchInfoLost.insert(&I);
3273#endif
Duncan Sands90291952007-07-06 09:18:59 +00003274 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3275 unsigned Reg = TLI.getExceptionSelectorRegister();
3276 if (Reg) CurMBB->addLiveIn(Reg);
Evan Chenge47c3332007-06-27 18:45:32 +00003277 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003278
3279 // Insert the EHSELECTION instruction.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003280 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Jim Laskey735b6f82007-02-22 15:38:06 +00003281 SDOperand Ops[2];
3282 Ops[0] = getValue(I.getOperand(1));
3283 Ops[1] = getRoot();
3284 SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
3285 setValue(&I, Op);
3286 DAG.setRoot(Op.getValue(1));
Jim Laskey7a1de982007-02-24 09:45:44 +00003287 } else {
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003288 setValue(&I, DAG.getConstant(0, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003289 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003290
3291 return 0;
3292 }
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003293
3294 case Intrinsic::eh_typeid_for_i32:
3295 case Intrinsic::eh_typeid_for_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003296 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003297 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003298 MVT::i32 : MVT::i64);
Jim Laskeyb180aa12007-02-21 22:53:45 +00003299
Jim Laskey735b6f82007-02-22 15:38:06 +00003300 if (MMI) {
3301 // Find the type id for the given typeinfo.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003302 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands3b346362007-05-04 17:12:26 +00003303
Jim Laskey735b6f82007-02-22 15:38:06 +00003304 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003305 setValue(&I, DAG.getConstant(TypeID, VT));
Jim Laskey7a1de982007-02-24 09:45:44 +00003306 } else {
Duncan Sandsf664e412007-07-06 14:46:23 +00003307 // Return something different to eh_selector.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003308 setValue(&I, DAG.getConstant(1, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003309 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003310
3311 return 0;
3312 }
3313
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003314 case Intrinsic::eh_return: {
3315 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3316
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003317 if (MMI) {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003318 MMI->setCallsEHReturn(true);
3319 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3320 MVT::Other,
Dan Gohman86e1ebf2008-03-27 19:56:19 +00003321 getControlRoot(),
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003322 getValue(I.getOperand(1)),
3323 getValue(I.getOperand(2))));
3324 } else {
3325 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3326 }
3327
3328 return 0;
3329 }
3330
3331 case Intrinsic::eh_unwind_init: {
3332 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3333 MMI->setCallsUnwindInit(true);
3334 }
3335
3336 return 0;
3337 }
3338
3339 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003340 MVT VT = getValue(I.getOperand(1)).getValueType();
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003341 SDOperand CfaArg;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003342 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003343 CfaArg = DAG.getNode(ISD::TRUNCATE,
3344 TLI.getPointerTy(), getValue(I.getOperand(1)));
3345 else
3346 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3347 TLI.getPointerTy(), getValue(I.getOperand(1)));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003348
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003349 SDOperand Offset = DAG.getNode(ISD::ADD,
3350 TLI.getPointerTy(),
3351 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3352 TLI.getPointerTy()),
3353 CfaArg);
3354 setValue(&I, DAG.getNode(ISD::ADD,
3355 TLI.getPointerTy(),
3356 DAG.getNode(ISD::FRAMEADDR,
3357 TLI.getPointerTy(),
3358 DAG.getConstant(0,
3359 TLI.getPointerTy())),
3360 Offset));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003361 return 0;
3362 }
3363
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003364 case Intrinsic::sqrt:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003365 setValue(&I, DAG.getNode(ISD::FSQRT,
3366 getValue(I.getOperand(1)).getValueType(),
3367 getValue(I.getOperand(1))));
3368 return 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003369 case Intrinsic::powi:
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003370 setValue(&I, DAG.getNode(ISD::FPOWI,
3371 getValue(I.getOperand(1)).getValueType(),
3372 getValue(I.getOperand(1)),
3373 getValue(I.getOperand(2))));
3374 return 0;
Dan Gohmanac9385a2007-10-12 00:01:22 +00003375 case Intrinsic::sin:
3376 setValue(&I, DAG.getNode(ISD::FSIN,
3377 getValue(I.getOperand(1)).getValueType(),
3378 getValue(I.getOperand(1))));
3379 return 0;
3380 case Intrinsic::cos:
3381 setValue(&I, DAG.getNode(ISD::FCOS,
3382 getValue(I.getOperand(1)).getValueType(),
3383 getValue(I.getOperand(1))));
3384 return 0;
3385 case Intrinsic::pow:
3386 setValue(&I, DAG.getNode(ISD::FPOW,
3387 getValue(I.getOperand(1)).getValueType(),
3388 getValue(I.getOperand(1)),
3389 getValue(I.getOperand(2))));
3390 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003391 case Intrinsic::pcmarker: {
3392 SDOperand Tmp = getValue(I.getOperand(1));
3393 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3394 return 0;
3395 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003396 case Intrinsic::readcyclecounter: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003397 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003398 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
3399 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3400 &Op, 1);
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003401 setValue(&I, Tmp);
3402 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003403 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003404 }
Chris Lattnerc6eb6d72007-04-10 03:20:39 +00003405 case Intrinsic::part_select: {
Reid Spencer3f108cb2007-04-05 01:20:18 +00003406 // Currently not implemented: just abort
Reid Spencerf75b8742007-04-12 02:48:46 +00003407 assert(0 && "part_select intrinsic not implemented");
3408 abort();
3409 }
3410 case Intrinsic::part_set: {
3411 // Currently not implemented: just abort
3412 assert(0 && "part_set intrinsic not implemented");
Reid Spencer3f108cb2007-04-05 01:20:18 +00003413 abort();
Reid Spenceraddd11d2007-04-04 23:48:25 +00003414 }
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003415 case Intrinsic::bswap:
Nate Begemand88fc032006-01-14 03:14:10 +00003416 setValue(&I, DAG.getNode(ISD::BSWAP,
3417 getValue(I.getOperand(1)).getValueType(),
3418 getValue(I.getOperand(1))));
3419 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003420 case Intrinsic::cttz: {
3421 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003422 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003423 SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003424 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003425 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003426 }
3427 case Intrinsic::ctlz: {
3428 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003429 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003430 SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003431 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003432 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003433 }
3434 case Intrinsic::ctpop: {
3435 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003436 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003437 SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003438 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003439 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003440 }
Chris Lattner140d53c2006-01-13 02:50:02 +00003441 case Intrinsic::stacksave: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003442 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003443 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
3444 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattner140d53c2006-01-13 02:50:02 +00003445 setValue(&I, Tmp);
3446 DAG.setRoot(Tmp.getValue(1));
3447 return 0;
3448 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00003449 case Intrinsic::stackrestore: {
3450 SDOperand Tmp = getValue(I.getOperand(1));
3451 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00003452 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00003453 }
Tanya Lattner24e5aad2007-06-15 22:26:58 +00003454 case Intrinsic::var_annotation:
3455 // Discard annotate attributes
3456 return 0;
Duncan Sands36397f52007-07-27 12:58:54 +00003457
Duncan Sands36397f52007-07-27 12:58:54 +00003458 case Intrinsic::init_trampoline: {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003459 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands36397f52007-07-27 12:58:54 +00003460
3461 SDOperand Ops[6];
3462 Ops[0] = getRoot();
3463 Ops[1] = getValue(I.getOperand(1));
3464 Ops[2] = getValue(I.getOperand(2));
3465 Ops[3] = getValue(I.getOperand(3));
3466 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3467 Ops[5] = DAG.getSrcValue(F);
3468
Duncan Sandsf7331b32007-09-11 14:10:23 +00003469 SDOperand Tmp = DAG.getNode(ISD::TRAMPOLINE,
3470 DAG.getNodeValueTypes(TLI.getPointerTy(),
3471 MVT::Other), 2,
3472 Ops, 6);
3473
3474 setValue(&I, Tmp);
3475 DAG.setRoot(Tmp.getValue(1));
Duncan Sands36397f52007-07-27 12:58:54 +00003476 return 0;
3477 }
Gordon Henriksence224772008-01-07 01:30:38 +00003478
3479 case Intrinsic::gcroot:
3480 if (GCI) {
3481 Value *Alloca = I.getOperand(1);
3482 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3483
3484 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3485 GCI->addStackRoot(FI->getIndex(), TypeMap);
3486 }
3487 return 0;
3488
3489 case Intrinsic::gcread:
3490 case Intrinsic::gcwrite:
3491 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3492 return 0;
3493
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003494 case Intrinsic::flt_rounds: {
Dan Gohman1a024862008-01-31 00:41:03 +00003495 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003496 return 0;
3497 }
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003498
3499 case Intrinsic::trap: {
3500 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3501 return 0;
3502 }
Evan Cheng27b7db52008-03-08 00:58:38 +00003503 case Intrinsic::prefetch: {
3504 SDOperand Ops[4];
3505 Ops[0] = getRoot();
3506 Ops[1] = getValue(I.getOperand(1));
3507 Ops[2] = getValue(I.getOperand(2));
3508 Ops[3] = getValue(I.getOperand(3));
3509 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3510 return 0;
3511 }
3512
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003513 case Intrinsic::memory_barrier: {
3514 SDOperand Ops[6];
3515 Ops[0] = getRoot();
3516 for (int x = 1; x < 6; ++x)
3517 Ops[x] = getValue(I.getOperand(x));
3518
3519 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3520 return 0;
3521 }
Mon P Wang28873102008-06-25 08:15:39 +00003522 case Intrinsic::atomic_cmp_swap: {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003523 SDOperand Root = getRoot();
Mon P Wang28873102008-06-25 08:15:39 +00003524 SDOperand L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003525 getValue(I.getOperand(1)),
3526 getValue(I.getOperand(2)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003527 getValue(I.getOperand(3)),
Mon P Wang28873102008-06-25 08:15:39 +00003528 I.getOperand(1));
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003529 setValue(&I, L);
3530 DAG.setRoot(L.getValue(1));
3531 return 0;
3532 }
Mon P Wang28873102008-06-25 08:15:39 +00003533 case Intrinsic::atomic_load_add:
3534 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3535 case Intrinsic::atomic_load_sub:
3536 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang63307c32008-05-05 19:05:59 +00003537 case Intrinsic::atomic_load_and:
3538 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3539 case Intrinsic::atomic_load_or:
3540 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3541 case Intrinsic::atomic_load_xor:
3542 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003543 case Intrinsic::atomic_load_nand:
3544 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang63307c32008-05-05 19:05:59 +00003545 case Intrinsic::atomic_load_min:
3546 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3547 case Intrinsic::atomic_load_max:
3548 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3549 case Intrinsic::atomic_load_umin:
3550 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3551 case Intrinsic::atomic_load_umax:
3552 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3553 case Intrinsic::atomic_swap:
3554 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003555 }
3556}
3557
3558
Duncan Sands6f74b482007-12-19 09:48:52 +00003559void SelectionDAGLowering::LowerCallTo(CallSite CS, SDOperand Callee,
Jim Laskey1da20a72007-02-23 21:45:01 +00003560 bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003561 MachineBasicBlock *LandingPad) {
Duncan Sands6f74b482007-12-19 09:48:52 +00003562 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Jim Laskey735b6f82007-02-22 15:38:06 +00003563 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003564 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3565 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sands6f74b482007-12-19 09:48:52 +00003566
Jim Laskey735b6f82007-02-22 15:38:06 +00003567 TargetLowering::ArgListTy Args;
3568 TargetLowering::ArgListEntry Entry;
Duncan Sands6f74b482007-12-19 09:48:52 +00003569 Args.reserve(CS.arg_size());
3570 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3571 i != e; ++i) {
3572 SDOperand ArgNode = getValue(*i);
3573 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Duncan Sands4fee7032007-05-07 20:49:28 +00003574
Duncan Sands6f74b482007-12-19 09:48:52 +00003575 unsigned attrInd = i - CS.arg_begin() + 1;
3576 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3577 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3578 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3579 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3580 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3581 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen08e78b12008-02-22 17:49:45 +00003582 Entry.Alignment = CS.getParamAlignment(attrInd);
Jim Laskey735b6f82007-02-22 15:38:06 +00003583 Args.push_back(Entry);
3584 }
3585
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003586 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003587 // Insert a label before the invoke call to mark the try range. This can be
3588 // used to detect deletion of the invoke via the MachineModuleInfo.
3589 BeginLabel = MMI->NextLabelID();
Dale Johannesena4091d32008-04-04 23:48:31 +00003590 // Both PendingLoads and PendingExports must be flushed here;
3591 // this call might not return.
3592 (void)getRoot();
Dan Gohman44066042008-07-01 00:05:16 +00003593 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003594 }
Duncan Sands6f74b482007-12-19 09:48:52 +00003595
Jim Laskey735b6f82007-02-22 15:38:06 +00003596 std::pair<SDOperand,SDOperand> Result =
Duncan Sands6f74b482007-12-19 09:48:52 +00003597 TLI.LowerCallTo(getRoot(), CS.getType(),
3598 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sands00fee652008-02-14 17:28:50 +00003599 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sands6f74b482007-12-19 09:48:52 +00003600 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Jim Laskey735b6f82007-02-22 15:38:06 +00003601 Callee, Args, DAG);
Duncan Sands6f74b482007-12-19 09:48:52 +00003602 if (CS.getType() != Type::VoidTy)
3603 setValue(CS.getInstruction(), Result.first);
Jim Laskey735b6f82007-02-22 15:38:06 +00003604 DAG.setRoot(Result.second);
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003605
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003606 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003607 // Insert a label at the end of the invoke call to mark the try range. This
3608 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3609 EndLabel = MMI->NextLabelID();
Dan Gohman44066042008-07-01 00:05:16 +00003610 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003611
Duncan Sands6f74b482007-12-19 09:48:52 +00003612 // Inform MachineModuleInfo of range.
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003613 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3614 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003615}
3616
3617
Chris Lattner1c08c712005-01-07 07:47:53 +00003618void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00003619 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003620 if (Function *F = I.getCalledFunction()) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003621 if (F->isDeclaration()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003622 if (unsigned IID = F->getIntrinsicID()) {
3623 RenameFn = visitIntrinsicCall(I, IID);
3624 if (!RenameFn)
3625 return;
Chris Lattner87b51bc2007-09-10 21:15:22 +00003626 }
3627 }
3628
3629 // Check for well-known libc/libm calls. If the function is internal, it
3630 // can't be a library call.
3631 unsigned NameLen = F->getNameLen();
3632 if (!F->hasInternalLinkage() && NameLen) {
3633 const char *NameStr = F->getNameStart();
3634 if (NameStr[0] == 'c' &&
3635 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3636 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3637 if (I.getNumOperands() == 3 && // Basic sanity checks.
3638 I.getOperand(1)->getType()->isFloatingPoint() &&
3639 I.getType() == I.getOperand(1)->getType() &&
3640 I.getType() == I.getOperand(2)->getType()) {
3641 SDOperand LHS = getValue(I.getOperand(1));
3642 SDOperand RHS = getValue(I.getOperand(2));
3643 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3644 LHS, RHS));
3645 return;
3646 }
3647 } else if (NameStr[0] == 'f' &&
3648 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003649 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3650 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003651 if (I.getNumOperands() == 2 && // Basic sanity checks.
3652 I.getOperand(1)->getType()->isFloatingPoint() &&
3653 I.getType() == I.getOperand(1)->getType()) {
3654 SDOperand Tmp = getValue(I.getOperand(1));
3655 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3656 return;
3657 }
3658 } else if (NameStr[0] == 's' &&
3659 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003660 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3661 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003662 if (I.getNumOperands() == 2 && // Basic sanity checks.
3663 I.getOperand(1)->getType()->isFloatingPoint() &&
3664 I.getType() == I.getOperand(1)->getType()) {
3665 SDOperand Tmp = getValue(I.getOperand(1));
3666 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3667 return;
3668 }
3669 } else if (NameStr[0] == 'c' &&
3670 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003671 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3672 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003673 if (I.getNumOperands() == 2 && // Basic sanity checks.
3674 I.getOperand(1)->getType()->isFloatingPoint() &&
3675 I.getType() == I.getOperand(1)->getType()) {
3676 SDOperand Tmp = getValue(I.getOperand(1));
3677 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3678 return;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003679 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00003680 }
Chris Lattner87b51bc2007-09-10 21:15:22 +00003681 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00003682 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00003683 visitInlineAsm(&I);
Chris Lattnerce7518c2006-01-26 22:24:51 +00003684 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003685 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003686
Chris Lattner64e14b12005-01-08 22:48:57 +00003687 SDOperand Callee;
3688 if (!RenameFn)
3689 Callee = getValue(I.getOperand(0));
3690 else
3691 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003692
Duncan Sands6f74b482007-12-19 09:48:52 +00003693 LowerCallTo(&I, Callee, I.isTailCall());
Chris Lattner1c08c712005-01-07 07:47:53 +00003694}
3695
Jim Laskey735b6f82007-02-22 15:38:06 +00003696
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003697/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3698/// this value and returns the result as a ValueVT value. This uses
3699/// Chain/Flag as the input and updates them for the output Chain/Flag.
3700/// If the Flag pointer is NULL, no flag is used.
Chris Lattneread0d882008-06-17 06:09:18 +00003701SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner6833b062008-04-28 07:16:35 +00003702 SDOperand &Chain,
3703 SDOperand *Flag) const {
Dan Gohman23ce5022008-04-25 18:27:55 +00003704 // Assemble the legal parts into the final values.
3705 SmallVector<SDOperand, 4> Values(ValueVTs.size());
Chris Lattner6833b062008-04-28 07:16:35 +00003706 SmallVector<SDOperand, 8> Parts;
3707 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman23ce5022008-04-25 18:27:55 +00003708 // Copy the legal parts from the registers.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003709 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003710 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003711 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003712
Chris Lattner6833b062008-04-28 07:16:35 +00003713 Parts.resize(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003714 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003715 SDOperand P;
3716 if (Flag == 0)
3717 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3718 else {
3719 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman23ce5022008-04-25 18:27:55 +00003720 *Flag = P.getValue(2);
Chris Lattner6833b062008-04-28 07:16:35 +00003721 }
3722 Chain = P.getValue(1);
Chris Lattneread0d882008-06-17 06:09:18 +00003723
3724 // If the source register was virtual and if we know something about it,
3725 // add an assert node.
3726 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3727 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3728 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3729 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3730 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3731 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3732
3733 unsigned RegSize = RegisterVT.getSizeInBits();
3734 unsigned NumSignBits = LOI.NumSignBits;
3735 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3736
3737 // FIXME: We capture more information than the dag can represent. For
3738 // now, just use the tightest assertzext/assertsext possible.
3739 bool isSExt = true;
3740 MVT FromVT(MVT::Other);
3741 if (NumSignBits == RegSize)
3742 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3743 else if (NumZeroBits >= RegSize-1)
3744 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3745 else if (NumSignBits > RegSize-8)
3746 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3747 else if (NumZeroBits >= RegSize-9)
3748 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3749 else if (NumSignBits > RegSize-16)
3750 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3751 else if (NumZeroBits >= RegSize-17)
3752 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3753 else if (NumSignBits > RegSize-32)
3754 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3755 else if (NumZeroBits >= RegSize-33)
3756 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3757
3758 if (FromVT != MVT::Other) {
3759 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3760 RegisterVT, P, DAG.getValueType(FromVT));
3761
3762 }
3763 }
3764 }
3765
Dan Gohman23ce5022008-04-25 18:27:55 +00003766 Parts[Part+i] = P;
3767 }
Chris Lattner5df99b32007-03-25 05:00:54 +00003768
Dan Gohman23ce5022008-04-25 18:27:55 +00003769 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3770 ValueVT);
3771 Part += NumRegs;
3772 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00003773
Duncan Sandsf9516202008-06-30 10:19:09 +00003774 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3775 &Values[0], ValueVTs.size());
Chris Lattner864635a2006-02-22 22:37:12 +00003776}
3777
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003778/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3779/// specified value into the registers specified by this object. This uses
3780/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003781/// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003782void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003783 SDOperand &Chain, SDOperand *Flag) const {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003784 // Get the list of the values's legal parts.
Dan Gohman23ce5022008-04-25 18:27:55 +00003785 unsigned NumRegs = Regs.size();
3786 SmallVector<SDOperand, 8> Parts(NumRegs);
Chris Lattner6833b062008-04-28 07:16:35 +00003787 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003788 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003789 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003790 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003791
3792 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3793 &Parts[Part], NumParts, RegisterVT);
3794 Part += NumParts;
3795 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003796
3797 // Copy the parts into the registers.
Dan Gohman23ce5022008-04-25 18:27:55 +00003798 SmallVector<SDOperand, 8> Chains(NumRegs);
3799 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003800 SDOperand Part;
3801 if (Flag == 0)
3802 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3803 else {
3804 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003805 *Flag = Part.getValue(1);
Chris Lattner6833b062008-04-28 07:16:35 +00003806 }
3807 Chains[i] = Part.getValue(0);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003808 }
Chris Lattner6833b062008-04-28 07:16:35 +00003809
Evan Cheng33bf38a2008-04-28 22:07:13 +00003810 if (NumRegs == 1 || Flag)
3811 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3812 // flagged to it. That is the CopyToReg nodes and the user are considered
3813 // a single scheduling unit. If we create a TokenFactor and return it as
3814 // chain, then the TokenFactor is both a predecessor (operand) of the
3815 // user as well as a successor (the TF operands are flagged to the user).
3816 // c1, f1 = CopyToReg
3817 // c2, f2 = CopyToReg
3818 // c3 = TokenFactor c1, c2
3819 // ...
3820 // = op c3, ..., f2
3821 Chain = Chains[NumRegs-1];
Chris Lattner6833b062008-04-28 07:16:35 +00003822 else
3823 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003824}
Chris Lattner864635a2006-02-22 22:37:12 +00003825
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003826/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3827/// operand list. This adds the code marker and includes the number of
3828/// values added into it.
3829void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00003830 std::vector<SDOperand> &Ops) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003831 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner4b993b12007-04-09 00:33:58 +00003832 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner6833b062008-04-28 07:16:35 +00003833 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3834 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003835 MVT RegisterVT = RegVTs[Value];
Chris Lattner6833b062008-04-28 07:16:35 +00003836 for (unsigned i = 0; i != NumRegs; ++i)
3837 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman23ce5022008-04-25 18:27:55 +00003838 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003839}
Chris Lattner864635a2006-02-22 22:37:12 +00003840
3841/// isAllocatableRegister - If the specified register is safe to allocate,
3842/// i.e. it isn't a stack pointer or some other special register, return the
3843/// register class for the register. Otherwise, return null.
3844static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003845isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman6f0d0242008-02-10 18:45:23 +00003846 const TargetLowering &TLI,
3847 const TargetRegisterInfo *TRI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003848 MVT FoundVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003849 const TargetRegisterClass *FoundRC = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +00003850 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3851 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003852 MVT ThisVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003853
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003854 const TargetRegisterClass *RC = *RCI;
3855 // If none of the the value types for this register class are valid, we
3856 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003857 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3858 I != E; ++I) {
3859 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003860 // If we have already found this register in a different register class,
3861 // choose the one with the largest VT specified. For example, on
3862 // PowerPC, we favor f64 register classes over f32.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003863 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003864 ThisVT = *I;
3865 break;
3866 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003867 }
3868 }
3869
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003870 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003871
Chris Lattner864635a2006-02-22 22:37:12 +00003872 // NOTE: This isn't ideal. In particular, this might allocate the
3873 // frame pointer in functions that need it (due to them not being taken
3874 // out of allocation, because a variable sized allocation hasn't been seen
3875 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003876 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3877 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003878 if (*I == Reg) {
3879 // We found a matching register class. Keep looking at others in case
3880 // we find one with larger registers that this physreg is also in.
3881 FoundRC = RC;
3882 FoundVT = ThisVT;
3883 break;
3884 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00003885 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003886 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00003887}
3888
Chris Lattner4e4b5762006-02-01 18:59:47 +00003889
Chris Lattner0c583402007-04-28 20:49:53 +00003890namespace {
3891/// AsmOperandInfo - This contains information for each constraint that we are
3892/// lowering.
Evan Cheng5c807602008-02-26 02:33:44 +00003893struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3894 /// CallOperand - If this is the result output operand or a clobber
3895 /// this is null, otherwise it is the incoming operand to the CallInst.
3896 /// This gets modified as the asm is processed.
Chris Lattner0c583402007-04-28 20:49:53 +00003897 SDOperand CallOperand;
Evan Cheng5c807602008-02-26 02:33:44 +00003898
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003899 /// AssignedRegs - If this is a register or register class operand, this
3900 /// contains the set of register corresponding to the operand.
3901 RegsForValue AssignedRegs;
3902
Dan Gohman23ce5022008-04-25 18:27:55 +00003903 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Cheng5c807602008-02-26 02:33:44 +00003904 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Chris Lattner0c583402007-04-28 20:49:53 +00003905 }
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003906
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003907 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3908 /// busy in OutputRegs/InputRegs.
3909 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3910 std::set<unsigned> &OutputRegs,
Chris Lattner7cbeb242008-02-21 04:55:52 +00003911 std::set<unsigned> &InputRegs,
3912 const TargetRegisterInfo &TRI) const {
3913 if (isOutReg) {
3914 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3915 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3916 }
3917 if (isInReg) {
3918 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3919 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3920 }
3921 }
3922
3923private:
3924 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3925 /// specified set.
3926 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3927 const TargetRegisterInfo &TRI) {
3928 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3929 Regs.insert(Reg);
3930 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3931 for (; *Aliases; ++Aliases)
3932 Regs.insert(*Aliases);
3933 }
Chris Lattner0c583402007-04-28 20:49:53 +00003934};
3935} // end anon namespace.
Chris Lattner864635a2006-02-22 22:37:12 +00003936
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003937
Chris Lattner0fe71e92008-02-21 19:43:13 +00003938/// GetRegistersForValue - Assign registers (virtual or physical) for the
3939/// specified operand. We prefer to assign virtual registers, to allow the
3940/// register allocator handle the assignment process. However, if the asm uses
3941/// features that we can't model on machineinstrs, we have SDISel do the
3942/// allocation. This produces generally horrible, but correct, code.
3943///
3944/// OpInfo describes the operand.
3945/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3946/// or any explicitly clobbered registers.
3947/// Input and OutputRegs are the set of already allocated physical registers.
3948///
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003949void SelectionDAGLowering::
Evan Cheng5c807602008-02-26 02:33:44 +00003950GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnerbf996f12007-04-30 17:29:31 +00003951 std::set<unsigned> &OutputRegs,
3952 std::set<unsigned> &InputRegs) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003953 // Compute whether this value requires an input register, an output register,
3954 // or both.
3955 bool isOutReg = false;
3956 bool isInReg = false;
3957 switch (OpInfo.Type) {
3958 case InlineAsm::isOutput:
3959 isOutReg = true;
3960
3961 // If this is an early-clobber output, or if there is an input
3962 // constraint that matches this, we need to reserve the input register
3963 // so no other inputs allocate to it.
3964 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3965 break;
3966 case InlineAsm::isInput:
3967 isInReg = true;
3968 isOutReg = false;
3969 break;
3970 case InlineAsm::isClobber:
3971 isOutReg = true;
3972 isInReg = true;
3973 break;
3974 }
3975
3976
3977 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerb606dba2008-04-28 06:44:42 +00003978 SmallVector<unsigned, 4> Regs;
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003979
3980 // If this is a constraint for a single physreg, or a constraint for a
3981 // register class, find it.
3982 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
3983 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3984 OpInfo.ConstraintVT);
Chris Lattnerbf996f12007-04-30 17:29:31 +00003985
3986 unsigned NumRegs = 1;
3987 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohmanb9f10192007-06-21 14:42:22 +00003988 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003989 MVT RegVT;
3990 MVT ValueVT = OpInfo.ConstraintVT;
Chris Lattnerbf996f12007-04-30 17:29:31 +00003991
Chris Lattnerbf996f12007-04-30 17:29:31 +00003992
3993 // If this is a constraint for a specific physical register, like {r17},
3994 // assign it now.
3995 if (PhysReg.first) {
3996 if (OpInfo.ConstraintVT == MVT::Other)
3997 ValueVT = *PhysReg.second->vt_begin();
3998
3999 // Get the actual register value type. This is important, because the user
4000 // may have asked for (e.g.) the AX register in i32 type. We need to
4001 // remember that AX is actually i16 to get the right extension.
4002 RegVT = *PhysReg.second->vt_begin();
4003
4004 // This is a explicit reference to a physical register.
4005 Regs.push_back(PhysReg.first);
4006
4007 // If this is an expanded reference, add the rest of the regs to Regs.
4008 if (NumRegs != 1) {
4009 TargetRegisterClass::iterator I = PhysReg.second->begin();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004010 for (; *I != PhysReg.first; ++I)
Evan Cheng50871242008-05-14 20:07:51 +00004011 assert(I != PhysReg.second->end() && "Didn't find reg!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004012
4013 // Already added the first reg.
4014 --NumRegs; ++I;
4015 for (; NumRegs; --NumRegs, ++I) {
Evan Cheng50871242008-05-14 20:07:51 +00004016 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004017 Regs.push_back(*I);
4018 }
4019 }
Dan Gohman23ce5022008-04-25 18:27:55 +00004020 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004021 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4022 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004023 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004024 }
4025
4026 // Otherwise, if this was a reference to an LLVM register class, create vregs
4027 // for this reference.
4028 std::vector<unsigned> RegClassRegs;
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004029 const TargetRegisterClass *RC = PhysReg.second;
4030 if (RC) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004031 // If this is an early clobber or tied register, our regalloc doesn't know
4032 // how to maintain the constraint. If it isn't, go ahead and create vreg
4033 // and let the regalloc do the right thing.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004034 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4035 // If there is some other early clobber and this is an input register,
4036 // then we are forced to pre-allocate the input reg so it doesn't
4037 // conflict with the earlyclobber.
4038 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004039 RegVT = *PhysReg.second->vt_begin();
4040
4041 if (OpInfo.ConstraintVT == MVT::Other)
4042 ValueVT = RegVT;
4043
4044 // Create the appropriate number of virtual registers.
Chris Lattner84bc5422007-12-31 04:13:23 +00004045 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004046 for (; NumRegs; --NumRegs)
Chris Lattner84bc5422007-12-31 04:13:23 +00004047 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Chris Lattnerbf996f12007-04-30 17:29:31 +00004048
Dan Gohman23ce5022008-04-25 18:27:55 +00004049 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004050 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004051 }
4052
4053 // Otherwise, we can't allocate it. Let the code below figure out how to
4054 // maintain these constraints.
4055 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4056
4057 } else {
4058 // This is a reference to a register class that doesn't directly correspond
4059 // to an LLVM register class. Allocate NumRegs consecutive, available,
4060 // registers from the class.
4061 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4062 OpInfo.ConstraintVT);
4063 }
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004064
Dan Gohman6f0d0242008-02-10 18:45:23 +00004065 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004066 unsigned NumAllocated = 0;
4067 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4068 unsigned Reg = RegClassRegs[i];
4069 // See if this register is available.
4070 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4071 (isInReg && InputRegs.count(Reg))) { // Already used.
4072 // Make sure we find consecutive registers.
4073 NumAllocated = 0;
4074 continue;
4075 }
4076
4077 // Check to see if this register is allocatable (i.e. don't give out the
4078 // stack pointer).
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004079 if (RC == 0) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004080 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004081 if (!RC) { // Couldn't allocate this register.
4082 // Reset NumAllocated to make sure we return consecutive registers.
4083 NumAllocated = 0;
4084 continue;
4085 }
Chris Lattnerbf996f12007-04-30 17:29:31 +00004086 }
4087
4088 // Okay, this register is good, we can use it.
4089 ++NumAllocated;
4090
4091 // If we allocated enough consecutive registers, succeed.
4092 if (NumAllocated == NumRegs) {
4093 unsigned RegStart = (i-NumAllocated)+1;
4094 unsigned RegEnd = i+1;
4095 // Mark all of the allocated registers used.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004096 for (unsigned i = RegStart; i != RegEnd; ++i)
4097 Regs.push_back(RegClassRegs[i]);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004098
Dan Gohman23ce5022008-04-25 18:27:55 +00004099 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004100 OpInfo.ConstraintVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004101 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004102 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004103 }
4104 }
4105
4106 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattnerbf996f12007-04-30 17:29:31 +00004107}
4108
4109
Chris Lattnerce7518c2006-01-26 22:24:51 +00004110/// visitInlineAsm - Handle a call to an InlineAsm object.
4111///
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004112void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4113 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004114
Chris Lattner0c583402007-04-28 20:49:53 +00004115 /// ConstraintOperands - Information about all of the constraints.
Evan Cheng5c807602008-02-26 02:33:44 +00004116 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004117
4118 SDOperand Chain = getRoot();
4119 SDOperand Flag;
4120
Chris Lattner4e4b5762006-02-01 18:59:47 +00004121 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004122
Chris Lattner0c583402007-04-28 20:49:53 +00004123 // Do a prepass over the constraints, canonicalizing them, and building up the
4124 // ConstraintOperands list.
4125 std::vector<InlineAsm::ConstraintInfo>
4126 ConstraintInfos = IA->ParseConstraints();
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004127
4128 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4129 // constraint. If so, we can't let the register allocator allocate any input
4130 // registers, because it will not know to avoid the earlyclobbered output reg.
4131 bool SawEarlyClobber = false;
4132
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004133 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattneracf8b012008-04-27 23:44:28 +00004134 unsigned ResNo = 0; // ResNo - The result number of the next output.
Chris Lattner0c583402007-04-28 20:49:53 +00004135 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004136 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4137 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Chris Lattner0c583402007-04-28 20:49:53 +00004138
Duncan Sands83ec4b62008-06-06 12:08:01 +00004139 MVT OpVT = MVT::Other;
Chris Lattner0c583402007-04-28 20:49:53 +00004140
4141 // Compute the value type for each operand.
4142 switch (OpInfo.Type) {
Chris Lattner1efa40f2006-02-22 00:56:39 +00004143 case InlineAsm::isOutput:
Chris Lattneracf8b012008-04-27 23:44:28 +00004144 // Indirect outputs just consume an argument.
4145 if (OpInfo.isIndirect) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004146 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattneracf8b012008-04-27 23:44:28 +00004147 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004148 }
Chris Lattneracf8b012008-04-27 23:44:28 +00004149 // The return value of the call is this value. As such, there is no
4150 // corresponding argument.
4151 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4152 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4153 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4154 } else {
4155 assert(ResNo == 0 && "Asm only has one result!");
4156 OpVT = TLI.getValueType(CS.getType());
4157 }
4158 ++ResNo;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004159 break;
4160 case InlineAsm::isInput:
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004161 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner1efa40f2006-02-22 00:56:39 +00004162 break;
4163 case InlineAsm::isClobber:
Chris Lattner0c583402007-04-28 20:49:53 +00004164 // Nothing to do.
Chris Lattner1efa40f2006-02-22 00:56:39 +00004165 break;
4166 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004167
Chris Lattner0c583402007-04-28 20:49:53 +00004168 // If this is an input or an indirect output, process the call argument.
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004169 // BasicBlocks are labels, currently appearing only in asm's.
Chris Lattner0c583402007-04-28 20:49:53 +00004170 if (OpInfo.CallOperandVal) {
Chris Lattner507ffd22008-04-27 00:16:18 +00004171 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4172 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004173 else {
4174 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4175 const Type *OpTy = OpInfo.CallOperandVal->getType();
4176 // If this is an indirect operand, the operand is a pointer to the
4177 // accessed type.
4178 if (OpInfo.isIndirect)
4179 OpTy = cast<PointerType>(OpTy)->getElementType();
4180
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004181 // If OpTy is not a single value, it may be a struct/union that we
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004182 // can tile with integers.
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004183 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004184 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4185 switch (BitSize) {
4186 default: break;
4187 case 1:
4188 case 8:
4189 case 16:
4190 case 32:
4191 case 64:
4192 OpTy = IntegerType::get(BitSize);
4193 break;
4194 }
Chris Lattner6995cf62007-04-29 18:58:03 +00004195 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004196
4197 OpVT = TLI.getValueType(OpTy, true);
Chris Lattner0c583402007-04-28 20:49:53 +00004198 }
4199 }
4200
4201 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a600be2007-04-28 21:01:43 +00004202
Chris Lattner3ff90dc2007-04-30 17:16:27 +00004203 // Compute the constraint code and ConstraintType to use.
Chris Lattner5a096902008-04-27 00:37:18 +00004204 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Chris Lattner0c583402007-04-28 20:49:53 +00004205
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004206 // Keep track of whether we see an earlyclobber.
4207 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004208
Chris Lattner0fe71e92008-02-21 19:43:13 +00004209 // If we see a clobber of a register, it is an early clobber.
Chris Lattner69e6a8d2008-02-21 20:54:31 +00004210 if (!SawEarlyClobber &&
4211 OpInfo.Type == InlineAsm::isClobber &&
4212 OpInfo.ConstraintType == TargetLowering::C_Register) {
4213 // Note that we want to ignore things that we don't trick here, like
4214 // dirflag, fpsr, flags, etc.
4215 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4216 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4217 OpInfo.ConstraintVT);
4218 if (PhysReg.first || PhysReg.second) {
4219 // This is a register we know of.
4220 SawEarlyClobber = true;
4221 }
4222 }
Chris Lattner0fe71e92008-02-21 19:43:13 +00004223
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004224 // If this is a memory input, and if the operand is not indirect, do what we
4225 // need to to provide an address for the memory input.
4226 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4227 !OpInfo.isIndirect) {
4228 assert(OpInfo.Type == InlineAsm::isInput &&
4229 "Can only indirectify direct input operands!");
4230
4231 // Memory operands really want the address of the value. If we don't have
4232 // an indirect input, put it in the constpool if we can, otherwise spill
4233 // it to a stack slot.
4234
4235 // If the operand is a float, integer, or vector constant, spill to a
4236 // constant pool entry to get its address.
4237 Value *OpVal = OpInfo.CallOperandVal;
4238 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4239 isa<ConstantVector>(OpVal)) {
4240 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4241 TLI.getPointerTy());
4242 } else {
4243 // Otherwise, create a stack slot and emit a store to it before the
4244 // asm.
4245 const Type *Ty = OpVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +00004246 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004247 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4248 MachineFunction &MF = DAG.getMachineFunction();
4249 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
4250 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4251 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4252 OpInfo.CallOperand = StackSlot;
4253 }
4254
4255 // There is no longer a Value* corresponding to this operand.
4256 OpInfo.CallOperandVal = 0;
4257 // It is now an indirect operand.
4258 OpInfo.isIndirect = true;
4259 }
4260
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004261 // If this constraint is for a specific register, allocate it before
4262 // anything else.
4263 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4264 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattner0c583402007-04-28 20:49:53 +00004265 }
Chris Lattner0c583402007-04-28 20:49:53 +00004266 ConstraintInfos.clear();
4267
4268
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004269 // Second pass - Loop over all of the operands, assigning virtual or physregs
4270 // to registerclass operands.
4271 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004272 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004273
4274 // C_Register operands have already been allocated, Other/Memory don't need
4275 // to be.
4276 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4277 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4278 }
4279
Chris Lattner0c583402007-04-28 20:49:53 +00004280 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
4281 std::vector<SDOperand> AsmNodeOperands;
4282 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
4283 AsmNodeOperands.push_back(
4284 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4285
Chris Lattner2cc2f662006-02-01 01:28:23 +00004286
Chris Lattner0f0b7d42006-02-21 23:12:12 +00004287 // Loop over all of the inputs, copying the operand values into the
4288 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00004289 RegsForValue RetValRegs;
Chris Lattner41f62592008-04-29 04:29:54 +00004290
Chris Lattner0c583402007-04-28 20:49:53 +00004291 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4292 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4293
4294 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004295 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner1efa40f2006-02-22 00:56:39 +00004296
Chris Lattner0c583402007-04-28 20:49:53 +00004297 switch (OpInfo.Type) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00004298 case InlineAsm::isOutput: {
Chris Lattnerc83994e2007-04-28 21:03:16 +00004299 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4300 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerf2f3cd52007-04-28 06:08:13 +00004301 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004302 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner22873462006-02-27 23:45:39 +00004303
Chris Lattner22873462006-02-27 23:45:39 +00004304 // Add information to the INLINEASM node to know about this output.
4305 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004306 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4307 TLI.getPointerTy()));
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004308 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner22873462006-02-27 23:45:39 +00004309 break;
4310 }
4311
Chris Lattner2a600be2007-04-28 21:01:43 +00004312 // Otherwise, this is a register or register class output.
Chris Lattner22873462006-02-27 23:45:39 +00004313
Chris Lattner864635a2006-02-22 22:37:12 +00004314 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00004315 // we can use.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004316 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sandsa47c6c32008-06-17 03:24:13 +00004317 cerr << "Couldn't allocate output reg for constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004318 << OpInfo.ConstraintCode << "'!\n";
Chris Lattnerd03f1582006-10-31 07:33:13 +00004319 exit(1);
4320 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004321
Chris Lattner41f62592008-04-29 04:29:54 +00004322 // If this is an indirect operand, store through the pointer after the
4323 // asm.
4324 if (OpInfo.isIndirect) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004325 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattner0c583402007-04-28 20:49:53 +00004326 OpInfo.CallOperandVal));
Chris Lattner41f62592008-04-29 04:29:54 +00004327 } else {
4328 // This is the result value of the call.
4329 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4330 // Concatenate this output onto the outputs list.
4331 RetValRegs.append(OpInfo.AssignedRegs);
Chris Lattner2cc2f662006-02-01 01:28:23 +00004332 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004333
4334 // Add information to the INLINEASM node to know that this register is
4335 // set.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004336 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4337 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004338 break;
4339 }
4340 case InlineAsm::isInput: {
Chris Lattner0c583402007-04-28 20:49:53 +00004341 SDOperand InOperandVal = OpInfo.CallOperand;
Chris Lattner3d81fee2006-02-04 02:16:44 +00004342
Chris Lattner0c583402007-04-28 20:49:53 +00004343 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner2223aea2006-02-02 00:25:23 +00004344 // If this is required to match an output register we have already set,
4345 // just use its register.
Chris Lattner0c583402007-04-28 20:49:53 +00004346 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00004347
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004348 // Scan until we find the definition we already emitted of this operand.
4349 // When we find it, create a RegsForValue operand.
4350 unsigned CurOp = 2; // The first operand.
4351 for (; OperandNo; --OperandNo) {
4352 // Advance to the next operand.
4353 unsigned NumOps =
4354 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00004355 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4356 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004357 "Skipped past definitions?");
4358 CurOp += (NumOps>>3)+1;
4359 }
4360
4361 unsigned NumOps =
4362 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattner527fae12007-02-01 01:21:12 +00004363 if ((NumOps & 7) == 2 /*REGDEF*/) {
4364 // Add NumOps>>3 registers to MatchedRegs.
4365 RegsForValue MatchedRegs;
Dan Gohman23ce5022008-04-25 18:27:55 +00004366 MatchedRegs.TLI = &TLI;
Dan Gohman1fa850b2008-05-02 00:03:54 +00004367 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4368 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Chris Lattner527fae12007-02-01 01:21:12 +00004369 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4370 unsigned Reg =
4371 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4372 MatchedRegs.Regs.push_back(Reg);
4373 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004374
Chris Lattner527fae12007-02-01 01:21:12 +00004375 // Use the produced MatchedRegs object to
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004376 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner527fae12007-02-01 01:21:12 +00004377 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4378 break;
4379 } else {
4380 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattnerf9853bc2008-02-21 05:27:19 +00004381 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4382 // Add information to the INLINEASM node to know about this input.
4383 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4384 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4385 TLI.getPointerTy()));
4386 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4387 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004388 }
Chris Lattner2223aea2006-02-02 00:25:23 +00004389 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004390
Chris Lattner2a600be2007-04-28 21:01:43 +00004391 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Chris Lattner0c583402007-04-28 20:49:53 +00004392 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004393 "Don't know how to handle indirect other inputs yet!");
4394
Chris Lattner48884cd2007-08-25 00:47:38 +00004395 std::vector<SDOperand> Ops;
4396 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4397 Ops, DAG);
4398 if (Ops.empty()) {
Bill Wendling832171c2006-12-07 20:04:42 +00004399 cerr << "Invalid operand for inline asm constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004400 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner53069fb2006-10-31 19:41:18 +00004401 exit(1);
4402 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004403
4404 // Add information to the INLINEASM node to know about this input.
Chris Lattner48884cd2007-08-25 00:47:38 +00004405 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004406 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4407 TLI.getPointerTy()));
Chris Lattner48884cd2007-08-25 00:47:38 +00004408 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004409 break;
Chris Lattner2a600be2007-04-28 21:01:43 +00004410 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004411 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner44b2c502007-04-28 06:42:38 +00004412 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4413 "Memory operands expect pointer values");
4414
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004415 // Add information to the INLINEASM node to know about this input.
4416 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004417 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4418 TLI.getPointerTy()));
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004419 AsmNodeOperands.push_back(InOperandVal);
4420 break;
4421 }
4422
Chris Lattner2a600be2007-04-28 21:01:43 +00004423 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4424 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4425 "Unknown constraint type!");
Chris Lattner0c583402007-04-28 20:49:53 +00004426 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004427 "Don't know how to handle indirect register inputs yet!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004428
4429 // Copy the input into the appropriate registers.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004430 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4431 "Couldn't allocate input reg!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004432
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004433 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004434
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004435 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4436 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004437 break;
4438 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004439 case InlineAsm::isClobber: {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004440 // Add the clobbered value to the operand list, so that the register
4441 // allocator is aware that the physreg got clobbered.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004442 if (!OpInfo.AssignedRegs.Regs.empty())
4443 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4444 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004445 break;
4446 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004447 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004448 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004449
4450 // Finish up input operands.
4451 AsmNodeOperands[0] = Chain;
4452 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4453
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004454 Chain = DAG.getNode(ISD::INLINEASM,
4455 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004456 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004457 Flag = Chain.getValue(1);
4458
Chris Lattner6656dd12006-01-31 02:03:41 +00004459 // If this asm returns a register value, copy the result from that register
4460 // and set it as the value of the call.
Chris Lattner3a508c92007-04-12 06:00:20 +00004461 if (!RetValRegs.Regs.empty()) {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004462 SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner3fb29682008-04-29 04:48:56 +00004463
4464 // If any of the results of the inline asm is a vector, it may have the
4465 // wrong width/num elts. This can happen for register classes that can
4466 // contain multiple different value types. The preg or vreg allocated may
4467 // not have the same VT as was expected. Convert it to the right type with
Dan Gohman7f321562007-06-25 16:23:39 +00004468 // bit_convert.
Chris Lattner3fb29682008-04-29 04:48:56 +00004469 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4470 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004471 if (Val.Val->getValueType(i).isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004472 Val = DAG.getNode(ISD::BIT_CONVERT,
4473 TLI.getValueType(ResSTy->getElementType(i)), Val);
4474 }
4475 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004476 if (Val.getValueType().isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004477 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4478 Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004479 }
Chris Lattner3fb29682008-04-29 04:48:56 +00004480
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004481 setValue(CS.getInstruction(), Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004482 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004483
Chris Lattner6656dd12006-01-31 02:03:41 +00004484 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
4485
4486 // Process indirect outputs, first output all of the flagged copies out of
4487 // physregs.
4488 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00004489 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00004490 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004491 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner864635a2006-02-22 22:37:12 +00004492 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00004493 }
4494
4495 // Emit the non-flagged stores from the physregs.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004496 SmallVector<SDOperand, 8> OutChains;
Chris Lattner6656dd12006-01-31 02:03:41 +00004497 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattner0c583402007-04-28 20:49:53 +00004498 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner6656dd12006-01-31 02:03:41 +00004499 getValue(StoresToEmit[i].second),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004500 StoresToEmit[i].second, 0));
Chris Lattner6656dd12006-01-31 02:03:41 +00004501 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004502 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4503 &OutChains[0], OutChains.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004504 DAG.setRoot(Chain);
4505}
4506
4507
Chris Lattner1c08c712005-01-07 07:47:53 +00004508void SelectionDAGLowering::visitMalloc(MallocInst &I) {
4509 SDOperand Src = getValue(I.getOperand(0));
4510
Duncan Sands83ec4b62008-06-06 12:08:01 +00004511 MVT IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00004512
Duncan Sands8e4eb092008-06-08 20:54:56 +00004513 if (IntPtr.bitsLT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004514 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004515 else if (IntPtr.bitsGT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004516 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00004517
4518 // Scale the source by the type size.
Duncan Sands514ab342007-11-01 20:53:16 +00004519 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00004520 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner0bd48932008-01-17 07:00:52 +00004521 Src, DAG.getIntPtrConstant(ElementSize));
Chris Lattner1c08c712005-01-07 07:47:53 +00004522
Reid Spencer47857812006-12-31 05:55:36 +00004523 TargetLowering::ArgListTy Args;
4524 TargetLowering::ArgListEntry Entry;
4525 Entry.Node = Src;
4526 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004527 Args.push_back(Entry);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004528
4529 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004530 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4531 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004532 setValue(&I, Result.first); // Pointers always fit in registers
4533 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004534}
4535
4536void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencer47857812006-12-31 05:55:36 +00004537 TargetLowering::ArgListTy Args;
4538 TargetLowering::ArgListEntry Entry;
4539 Entry.Node = getValue(I.getOperand(0));
4540 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004541 Args.push_back(Entry);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004542 MVT IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00004543 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004544 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4545 CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00004546 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4547 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004548}
4549
Evan Chengff9b3732008-01-30 18:18:23 +00004550// EmitInstrWithCustomInserter - This method should be implemented by targets
4551// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +00004552// instructions are special in various ways, which require special support to
4553// insert. The specified MachineInstr is created but not inserted into any
4554// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +00004555MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Chris Lattner025c39b2005-08-26 20:54:47 +00004556 MachineBasicBlock *MBB) {
Bill Wendling832171c2006-12-07 20:04:42 +00004557 cerr << "If a target marks an instruction with "
4558 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chengff9b3732008-01-30 18:18:23 +00004559 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Chris Lattner025c39b2005-08-26 20:54:47 +00004560 abort();
4561 return 0;
4562}
4563
Chris Lattner39ae3622005-01-09 00:00:49 +00004564void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004565 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4566 getValue(I.getOperand(1)),
4567 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00004568}
4569
4570void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004571 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
4572 getValue(I.getOperand(0)),
4573 DAG.getSrcValue(I.getOperand(0)));
4574 setValue(&I, V);
4575 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00004576}
4577
4578void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004579 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4580 getValue(I.getOperand(1)),
4581 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004582}
4583
4584void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004585 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4586 getValue(I.getOperand(1)),
4587 getValue(I.getOperand(2)),
4588 DAG.getSrcValue(I.getOperand(1)),
4589 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004590}
4591
Chris Lattnerfdfded52006-04-12 16:20:43 +00004592/// TargetLowering::LowerArguments - This is the default LowerArguments
4593/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004594/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4595/// integrated into SDISel.
Dan Gohmana44b6742008-06-30 20:31:15 +00004596void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
4597 SmallVectorImpl<SDOperand> &ArgValues) {
Chris Lattnerfdfded52006-04-12 16:20:43 +00004598 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
Dan Gohmana44b6742008-06-30 20:31:15 +00004599 SmallVector<SDOperand, 3+16> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004600 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00004601 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4602 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4603
4604 // Add one result value for each formal argument.
Dan Gohmana44b6742008-06-30 20:31:15 +00004605 SmallVector<MVT, 16> RetVals;
Anton Korobeynikov6aa279d2007-01-28 18:01:49 +00004606 unsigned j = 1;
Anton Korobeynikovac2b2cf2007-01-28 16:04:40 +00004607 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4608 I != E; ++I, ++j) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004609 SmallVector<MVT, 4> ValueVTs;
4610 ComputeValueVTs(*this, I->getType(), ValueVTs);
4611 for (unsigned Value = 0, NumValues = ValueVTs.size();
4612 Value != NumValues; ++Value) {
4613 MVT VT = ValueVTs[Value];
4614 const Type *ArgTy = VT.getTypeForMVT();
4615 ISD::ArgFlagsTy Flags;
4616 unsigned OriginalAlignment =
4617 getTargetData()->getABITypeAlignment(ArgTy);
Lauro Ramos Venancio7aa47b62007-02-13 13:50:08 +00004618
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004619 if (F.paramHasAttr(j, ParamAttr::ZExt))
4620 Flags.setZExt();
4621 if (F.paramHasAttr(j, ParamAttr::SExt))
4622 Flags.setSExt();
4623 if (F.paramHasAttr(j, ParamAttr::InReg))
4624 Flags.setInReg();
4625 if (F.paramHasAttr(j, ParamAttr::StructRet))
4626 Flags.setSRet();
4627 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4628 Flags.setByVal();
4629 const PointerType *Ty = cast<PointerType>(I->getType());
4630 const Type *ElementTy = Ty->getElementType();
4631 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4632 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4633 // For ByVal, alignment should be passed from FE. BE will guess if
4634 // this info is not there but there are cases it cannot get right.
4635 if (F.getParamAlignment(j))
4636 FrameAlign = F.getParamAlignment(j);
4637 Flags.setByValAlign(FrameAlign);
4638 Flags.setByValSize(FrameSize);
4639 }
4640 if (F.paramHasAttr(j, ParamAttr::Nest))
4641 Flags.setNest();
4642 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004643
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004644 MVT RegisterVT = getRegisterType(VT);
4645 unsigned NumRegs = getNumRegisters(VT);
4646 for (unsigned i = 0; i != NumRegs; ++i) {
4647 RetVals.push_back(RegisterVT);
4648 ISD::ArgFlagsTy MyFlags = Flags;
4649 if (NumRegs > 1 && i == 0)
4650 MyFlags.setSplit();
4651 // if it isn't first piece, alignment must be 1
4652 else if (i > 0)
4653 MyFlags.setOrigAlign(1);
4654 Ops.push_back(DAG.getArgFlags(MyFlags));
4655 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004656 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004657 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00004658
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004659 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00004660
4661 // Create the node.
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004662 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004663 DAG.getVTList(&RetVals[0], RetVals.size()),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004664 &Ops[0], Ops.size()).Val;
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004665
4666 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4667 // allows exposing the loads that may be part of the argument access to the
4668 // first DAGCombiner pass.
4669 SDOperand TmpRes = LowerOperation(SDOperand(Result, 0), DAG);
4670
4671 // The number of results should match up, except that the lowered one may have
4672 // an extra flag result.
4673 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4674 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4675 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4676 && "Lowering produced unexpected number of results!");
Dan Gohman2dbc1672008-07-21 21:04:07 +00004677
4678 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
4679 if (Result != TmpRes.Val && Result->use_empty()) {
4680 HandleSDNode Dummy(DAG.getRoot());
4681 DAG.RemoveDeadNode(Result);
4682 }
4683
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004684 Result = TmpRes.Val;
4685
Dan Gohman27a70be2007-07-02 16:18:06 +00004686 unsigned NumArgRegs = Result->getNumValues() - 1;
4687 DAG.setRoot(SDOperand(Result, NumArgRegs));
Chris Lattnerfdfded52006-04-12 16:20:43 +00004688
4689 // Set up the return result vector.
Chris Lattnerfdfded52006-04-12 16:20:43 +00004690 unsigned i = 0;
Reid Spencer47857812006-12-31 05:55:36 +00004691 unsigned Idx = 1;
4692 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4693 ++I, ++Idx) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004694 SmallVector<MVT, 4> ValueVTs;
4695 ComputeValueVTs(*this, I->getType(), ValueVTs);
4696 for (unsigned Value = 0, NumValues = ValueVTs.size();
4697 Value != NumValues; ++Value) {
4698 MVT VT = ValueVTs[Value];
4699 MVT PartVT = getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004700
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004701 unsigned NumParts = getNumRegisters(VT);
4702 SmallVector<SDOperand, 4> Parts(NumParts);
4703 for (unsigned j = 0; j != NumParts; ++j)
4704 Parts[j] = SDOperand(Result, i++);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004705
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004706 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4707 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4708 AssertOp = ISD::AssertSext;
4709 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4710 AssertOp = ISD::AssertZext;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004711
Dan Gohmana44b6742008-06-30 20:31:15 +00004712 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4713 AssertOp));
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004714 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004715 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004716 assert(i == NumArgRegs && "Argument register count mismatch!");
Chris Lattnerfdfded52006-04-12 16:20:43 +00004717}
4718
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004719
4720/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4721/// implementation, which just inserts an ISD::CALL node, which is later custom
4722/// lowered by the target to something concrete. FIXME: When all targets are
4723/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
4724std::pair<SDOperand, SDOperand>
Duncan Sands00fee652008-02-14 17:28:50 +00004725TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
4726 bool RetSExt, bool RetZExt, bool isVarArg,
4727 unsigned CallingConv, bool isTailCall,
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004728 SDOperand Callee,
4729 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattnerbe384162006-08-16 22:57:46 +00004730 SmallVector<SDOperand, 32> Ops;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004731 Ops.push_back(Chain); // Op#0 - Chain
4732 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4733 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4734 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4735 Ops.push_back(Callee);
4736
4737 // Handle all of the outgoing arguments.
4738 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004739 SmallVector<MVT, 4> ValueVTs;
4740 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4741 for (unsigned Value = 0, NumValues = ValueVTs.size();
4742 Value != NumValues; ++Value) {
4743 MVT VT = ValueVTs[Value];
4744 const Type *ArgTy = VT.getTypeForMVT();
4745 SDOperand Op = SDOperand(Args[i].Node.Val, Args[i].Node.ResNo + Value);
4746 ISD::ArgFlagsTy Flags;
4747 unsigned OriginalAlignment =
4748 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sands276dcbd2008-03-21 09:14:45 +00004749
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004750 if (Args[i].isZExt)
4751 Flags.setZExt();
4752 if (Args[i].isSExt)
4753 Flags.setSExt();
4754 if (Args[i].isInReg)
4755 Flags.setInReg();
4756 if (Args[i].isSRet)
4757 Flags.setSRet();
4758 if (Args[i].isByVal) {
4759 Flags.setByVal();
4760 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4761 const Type *ElementTy = Ty->getElementType();
4762 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4763 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4764 // For ByVal, alignment should come from FE. BE will guess if this
4765 // info is not there but there are cases it cannot get right.
4766 if (Args[i].Alignment)
4767 FrameAlign = Args[i].Alignment;
4768 Flags.setByValAlign(FrameAlign);
4769 Flags.setByValSize(FrameSize);
4770 }
4771 if (Args[i].isNest)
4772 Flags.setNest();
4773 Flags.setOrigAlign(OriginalAlignment);
Dan Gohman27a70be2007-07-02 16:18:06 +00004774
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004775 MVT PartVT = getRegisterType(VT);
4776 unsigned NumParts = getNumRegisters(VT);
4777 SmallVector<SDOperand, 4> Parts(NumParts);
4778 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004779
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004780 if (Args[i].isSExt)
4781 ExtendKind = ISD::SIGN_EXTEND;
4782 else if (Args[i].isZExt)
4783 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004784
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004785 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004786
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004787 for (unsigned i = 0; i != NumParts; ++i) {
4788 // if it isn't first piece, alignment must be 1
4789 ISD::ArgFlagsTy MyFlags = Flags;
4790 if (NumParts > 1 && i == 0)
4791 MyFlags.setSplit();
4792 else if (i != 0)
4793 MyFlags.setOrigAlign(1);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004794
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004795 Ops.push_back(Parts[i]);
4796 Ops.push_back(DAG.getArgFlags(MyFlags));
4797 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004798 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004799 }
4800
Dan Gohmanef5d1942008-03-11 21:11:25 +00004801 // Figure out the result value types. We start by making a list of
Dan Gohman23ce5022008-04-25 18:27:55 +00004802 // the potentially illegal return value types.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004803 SmallVector<MVT, 4> LoweredRetTys;
4804 SmallVector<MVT, 4> RetTys;
Dan Gohman23ce5022008-04-25 18:27:55 +00004805 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004806
Dan Gohman23ce5022008-04-25 18:27:55 +00004807 // Then we translate that to a list of legal types.
4808 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004809 MVT VT = RetTys[I];
4810 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004811 unsigned NumRegs = getNumRegisters(VT);
4812 for (unsigned i = 0; i != NumRegs; ++i)
4813 LoweredRetTys.push_back(RegisterVT);
4814 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004815
Dan Gohmanef5d1942008-03-11 21:11:25 +00004816 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004817
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004818 // Create the CALL node.
Chris Lattnerbe384162006-08-16 22:57:46 +00004819 SDOperand Res = DAG.getNode(ISD::CALL,
Dan Gohmanef5d1942008-03-11 21:11:25 +00004820 DAG.getVTList(&LoweredRetTys[0],
4821 LoweredRetTys.size()),
Chris Lattnerbe384162006-08-16 22:57:46 +00004822 &Ops[0], Ops.size());
Dan Gohmanef5d1942008-03-11 21:11:25 +00004823 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004824
4825 // Gather up the call result into a single value.
4826 if (RetTy != Type::VoidTy) {
Duncan Sands00fee652008-02-14 17:28:50 +00004827 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4828
4829 if (RetSExt)
4830 AssertOp = ISD::AssertSext;
4831 else if (RetZExt)
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004832 AssertOp = ISD::AssertZext;
Duncan Sands00fee652008-02-14 17:28:50 +00004833
Dan Gohmanef5d1942008-03-11 21:11:25 +00004834 SmallVector<SDOperand, 4> ReturnValues;
4835 unsigned RegNo = 0;
Dan Gohman23ce5022008-04-25 18:27:55 +00004836 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004837 MVT VT = RetTys[I];
4838 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004839 unsigned NumRegs = getNumRegisters(VT);
4840 unsigned RegNoEnd = NumRegs + RegNo;
4841 SmallVector<SDOperand, 4> Results;
4842 for (; RegNo != RegNoEnd; ++RegNo)
4843 Results.push_back(Res.getValue(RegNo));
4844 SDOperand ReturnValue =
4845 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4846 AssertOp);
4847 ReturnValues.push_back(ReturnValue);
4848 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004849 Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4850 &ReturnValues[0], ReturnValues.size());
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004851 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004852
4853 return std::make_pair(Res, Chain);
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004854}
4855
Chris Lattner50381b62005-05-14 05:50:48 +00004856SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00004857 assert(0 && "LowerOperation not implemented for this target!");
4858 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00004859 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00004860}
4861
Nate Begeman0aed7842006-01-28 03:14:31 +00004862
Chris Lattner7041ee32005-01-11 05:56:49 +00004863//===----------------------------------------------------------------------===//
4864// SelectionDAGISel code
4865//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00004866
Duncan Sands83ec4b62008-06-06 12:08:01 +00004867unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +00004868 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +00004869}
4870
Chris Lattner495a0b52005-08-17 06:37:43 +00004871void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004872 AU.addRequired<AliasAnalysis>();
Gordon Henriksence224772008-01-07 01:30:38 +00004873 AU.addRequired<CollectorModuleMetadata>();
Chris Lattnerc8d288f2007-03-31 04:18:03 +00004874 AU.setPreservesAll();
Chris Lattner495a0b52005-08-17 06:37:43 +00004875}
Chris Lattner1c08c712005-01-07 07:47:53 +00004876
Chris Lattner1c08c712005-01-07 07:47:53 +00004877bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman5f43f922007-08-27 16:26:13 +00004878 // Get alias analysis for load/store combining.
4879 AA = &getAnalysis<AliasAnalysis>();
4880
Chris Lattner1c08c712005-01-07 07:47:53 +00004881 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksence224772008-01-07 01:30:38 +00004882 if (MF.getFunction()->hasCollector())
4883 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4884 else
4885 GCI = 0;
Chris Lattner84bc5422007-12-31 04:13:23 +00004886 RegInfo = &MF.getRegInfo();
Bill Wendling832171c2006-12-07 20:04:42 +00004887 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00004888
4889 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4890
Dale Johannesen1532f3d2008-04-02 00:25:04 +00004891 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4892 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4893 // Mark landing pad.
4894 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +00004895
Dan Gohman0e5f1302008-07-07 23:02:41 +00004896 SelectAllBasicBlocks(Fn, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00004897
Evan Chengad2070c2007-02-10 02:43:39 +00004898 // Add function live-ins to entry block live-in set.
4899 BasicBlock *EntryBB = &Fn.getEntryBlock();
4900 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner84bc5422007-12-31 04:13:23 +00004901 if (!RegInfo->livein_empty())
4902 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4903 E = RegInfo->livein_end(); I != E; ++I)
Evan Chengad2070c2007-02-10 02:43:39 +00004904 BB->addLiveIn(I->first);
4905
Duncan Sandsf4070822007-06-15 19:04:19 +00004906#ifndef NDEBUG
4907 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4908 "Not all catch info was assigned to a landing pad!");
4909#endif
4910
Chris Lattner1c08c712005-01-07 07:47:53 +00004911 return true;
4912}
4913
Chris Lattner6833b062008-04-28 07:16:35 +00004914void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Chris Lattner571e4342006-10-27 21:36:01 +00004915 SDOperand Op = getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00004916 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004917 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00004918 "Copy from a reg to the same reg!");
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004919 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004920
Dan Gohman23ce5022008-04-25 18:27:55 +00004921 RegsForValue RFV(TLI, Reg, V->getType());
4922 SDOperand Chain = DAG.getEntryNode();
4923 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4924 PendingExports.push_back(Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00004925}
4926
Chris Lattner068a81e2005-01-17 17:15:02 +00004927void SelectionDAGISel::
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004928LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Chris Lattner068a81e2005-01-17 17:15:02 +00004929 // If this is the entry block, emit arguments.
Evan Cheng15699fc2007-02-10 01:08:18 +00004930 Function &F = *LLVMBB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00004931 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00004932 SDOperand OldRoot = SDL.DAG.getRoot();
Dan Gohmana44b6742008-06-30 20:31:15 +00004933 SmallVector<SDOperand, 16> Args;
4934 TLI.LowerArguments(F, SDL.DAG, Args);
Chris Lattner068a81e2005-01-17 17:15:02 +00004935
Chris Lattnerbf209482005-10-30 19:42:35 +00004936 unsigned a = 0;
4937 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004938 AI != E; ++AI) {
4939 SmallVector<MVT, 4> ValueVTs;
4940 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4941 unsigned NumValues = ValueVTs.size();
Chris Lattnerbf209482005-10-30 19:42:35 +00004942 if (!AI->use_empty()) {
Duncan Sands4bdcb612008-07-02 17:40:58 +00004943 SDL.setValue(AI, SDL.DAG.getMergeValues(&Args[a], NumValues));
Chris Lattnerbf209482005-10-30 19:42:35 +00004944 // If this argument is live outside of the entry block, insert a copy from
4945 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner251db182007-02-25 18:40:32 +00004946 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4947 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004948 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattnerbf209482005-10-30 19:42:35 +00004949 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00004950 }
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004951 a += NumValues;
4952 }
Chris Lattnerbf209482005-10-30 19:42:35 +00004953
Chris Lattnerbf209482005-10-30 19:42:35 +00004954 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00004955 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00004956 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00004957}
4958
Duncan Sandsf4070822007-06-15 19:04:19 +00004959static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4960 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004961 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00004962 if (isSelector(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004963 // Apply the catch info to DestBB.
4964 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4965#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +00004966 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4967 FLI.CatchInfoFound.insert(I);
Duncan Sandsf4070822007-06-15 19:04:19 +00004968#endif
4969 }
4970}
4971
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004972/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4973/// whether object offset >= 0.
4974static bool
4975IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDOperand Op) {
4976 if (!isa<FrameIndexSDNode>(Op)) return false;
4977
4978 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
4979 int FrameIdx = FrameIdxNode->getIndex();
4980 return MFI->isFixedObjectIndex(FrameIdx) &&
4981 MFI->getObjectOffset(FrameIdx) >= 0;
4982}
4983
4984/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
4985/// possibly be overwritten when lowering the outgoing arguments in a tail
4986/// call. Currently the implementation of this call is very conservative and
4987/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
4988/// virtual registers would be overwritten by direct lowering.
4989static bool IsPossiblyOverwrittenArgumentOfTailCall(SDOperand Op,
4990 MachineFrameInfo * MFI) {
4991 RegisterSDNode * OpReg = NULL;
4992 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
4993 (Op.getOpcode()== ISD::CopyFromReg &&
4994 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
4995 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
4996 (Op.getOpcode() == ISD::LOAD &&
4997 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
4998 (Op.getOpcode() == ISD::MERGE_VALUES &&
4999 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5000 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5001 getOperand(1))))
5002 return true;
5003 return false;
5004}
5005
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005006/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005007/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005008static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5009 TargetLowering& TLI) {
5010 SDNode * Ret = NULL;
5011 SDOperand Terminator = DAG.getRoot();
5012
5013 // Find RET node.
5014 if (Terminator.getOpcode() == ISD::RET) {
5015 Ret = Terminator.Val;
5016 }
5017
5018 // Fix tail call attribute of CALL nodes.
5019 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
Dan Gohman0e5f1302008-07-07 23:02:41 +00005020 BI = DAG.allnodes_end(); BI != BE; ) {
5021 --BI;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005022 if (BI->getOpcode() == ISD::CALL) {
5023 SDOperand OpRet(Ret, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00005024 SDOperand OpCall(BI, 0);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005025 bool isMarkedTailCall =
5026 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5027 // If CALL node has tail call attribute set to true and the call is not
5028 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005029 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005030 // must correctly identify tail call optimizable calls.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005031 if (!isMarkedTailCall) continue;
5032 if (Ret==NULL ||
5033 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5034 // Not eligible. Mark CALL node as non tail call.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005035 SmallVector<SDOperand, 32> Ops;
5036 unsigned idx=0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005037 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5038 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005039 if (idx!=3)
5040 Ops.push_back(*I);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005041 else
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005042 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5043 }
5044 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005045 } else {
5046 // Look for tail call clobbered arguments. Emit a series of
5047 // copyto/copyfrom virtual register nodes to protect them.
5048 SmallVector<SDOperand, 32> Ops;
5049 SDOperand Chain = OpCall.getOperand(0), InFlag;
5050 unsigned idx=0;
5051 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5052 E = OpCall.Val->op_end(); I != E; I++, idx++) {
5053 SDOperand Arg = *I;
5054 if (idx > 4 && (idx % 2)) {
5055 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5056 getArgFlags().isByVal();
5057 MachineFunction &MF = DAG.getMachineFunction();
5058 MachineFrameInfo *MFI = MF.getFrameInfo();
5059 if (!isByVal &&
5060 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005061 MVT VT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005062 unsigned VReg = MF.getRegInfo().
5063 createVirtualRegister(TLI.getRegClassFor(VT));
5064 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5065 InFlag = Chain.getValue(1);
5066 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5067 Chain = Arg.getValue(1);
5068 InFlag = Arg.getValue(2);
5069 }
5070 }
5071 Ops.push_back(Arg);
5072 }
5073 // Link in chain of CopyTo/CopyFromReg.
5074 Ops[0] = Chain;
5075 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005076 }
5077 }
5078 }
5079}
5080
Chris Lattner1c08c712005-01-07 07:47:53 +00005081void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5082 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00005083 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksence224772008-01-07 01:30:38 +00005084 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerddb870b2005-01-13 17:59:43 +00005085
Chris Lattnerbf209482005-10-30 19:42:35 +00005086 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +00005087 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005088 LowerArguments(LLVMBB, SDL);
Chris Lattner1c08c712005-01-07 07:47:53 +00005089
5090 BB = FuncInfo.MBBMap[LLVMBB];
5091 SDL.setCurrentBasicBlock(BB);
5092
Duncan Sandsf4070822007-06-15 19:04:19 +00005093 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands9fac0b52007-06-06 10:05:18 +00005094
Dale Johannesen1532f3d2008-04-02 00:25:04 +00005095 if (MMI && BB->isLandingPad()) {
Duncan Sandsf4070822007-06-15 19:04:19 +00005096 // Add a label to mark the beginning of the landing pad. Deletion of the
5097 // landing pad can thus be detected via the MachineModuleInfo.
5098 unsigned LabelID = MMI->addLandingPad(BB);
Dan Gohman44066042008-07-01 00:05:16 +00005099 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, DAG.getEntryNode(), LabelID));
Duncan Sandsf4070822007-06-15 19:04:19 +00005100
Evan Chenge47c3332007-06-27 18:45:32 +00005101 // Mark exception register as live in.
5102 unsigned Reg = TLI.getExceptionAddressRegister();
5103 if (Reg) BB->addLiveIn(Reg);
5104
5105 // Mark exception selector register as live in.
5106 Reg = TLI.getExceptionSelectorRegister();
5107 if (Reg) BB->addLiveIn(Reg);
5108
Duncan Sandsf4070822007-06-15 19:04:19 +00005109 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5110 // function and list of typeids logically belong to the invoke (or, if you
5111 // like, the basic block containing the invoke), and need to be associated
5112 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005113 // information is provided by an intrinsic (eh.selector) that can be moved
5114 // to unexpected places by the optimizers: if the unwind edge is critical,
5115 // then breaking it can result in the intrinsics being in the successor of
5116 // the landing pad, not the landing pad itself. This results in exceptions
5117 // not being caught because no typeids are associated with the invoke.
5118 // This may not be the only way things can go wrong, but it is the only way
5119 // we try to work around for the moment.
Duncan Sandsf4070822007-06-15 19:04:19 +00005120 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5121
5122 if (Br && Br->isUnconditional()) { // Critical edge?
5123 BasicBlock::iterator I, E;
5124 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005125 if (isSelector(I))
Duncan Sandsf4070822007-06-15 19:04:19 +00005126 break;
5127
5128 if (I == E)
5129 // No catch info found - try to extract some from the successor.
5130 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands9fac0b52007-06-06 10:05:18 +00005131 }
5132 }
5133
Chris Lattner1c08c712005-01-07 07:47:53 +00005134 // Lower all of the non-terminator instructions.
5135 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5136 I != E; ++I)
5137 SDL.visit(*I);
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005138
Chris Lattner1c08c712005-01-07 07:47:53 +00005139 // Ensure that all instructions which are used outside of their defining
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005140 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner1c08c712005-01-07 07:47:53 +00005141 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005142 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner9f24ad72007-02-04 01:35:11 +00005143 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00005144 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005145 SDL.CopyValueToVirtualRegister(I, VMI->second);
Chris Lattner1c08c712005-01-07 07:47:53 +00005146 }
5147
5148 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5149 // ensure constants are generated when needed. Remember the virtual registers
5150 // that need to be added to the Machine PHI nodes as input. We cannot just
5151 // directly add them, because expansion might result in multiple MBB's for one
5152 // BB. As such, the start of the BB might correspond to a different MBB than
5153 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00005154 //
Chris Lattner8c494ab2006-10-27 23:50:33 +00005155 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner1c08c712005-01-07 07:47:53 +00005156
5157 // Emit constants only once even if used by multiple PHI nodes.
5158 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005159
Chris Lattner8c494ab2006-10-27 23:50:33 +00005160 // Vector bool would be better, but vector<bool> is really slow.
5161 std::vector<unsigned char> SuccsHandled;
5162 if (TI->getNumSuccessors())
5163 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5164
Dan Gohman532dc2e2007-07-09 20:59:04 +00005165 // Check successor nodes' PHI nodes that expect a constant to be available
5166 // from this block.
Chris Lattner1c08c712005-01-07 07:47:53 +00005167 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5168 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005169 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner8c494ab2006-10-27 23:50:33 +00005170 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005171
Chris Lattner8c494ab2006-10-27 23:50:33 +00005172 // If this terminator has multiple identical successors (common for
5173 // switches), only handle each succ once.
5174 unsigned SuccMBBNo = SuccMBB->getNumber();
5175 if (SuccsHandled[SuccMBBNo]) continue;
5176 SuccsHandled[SuccMBBNo] = true;
5177
5178 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner1c08c712005-01-07 07:47:53 +00005179 PHINode *PN;
5180
5181 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5182 // nodes and Machine PHI nodes, but the incoming operands have not been
5183 // emitted yet.
5184 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8c494ab2006-10-27 23:50:33 +00005185 (PN = dyn_cast<PHINode>(I)); ++I) {
5186 // Ignore dead phi's.
5187 if (PN->use_empty()) continue;
5188
5189 unsigned Reg;
5190 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner3f7927c2006-11-29 01:12:32 +00005191
Chris Lattner8c494ab2006-10-27 23:50:33 +00005192 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5193 unsigned &RegOut = ConstantsOut[C];
5194 if (RegOut == 0) {
5195 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005196 SDL.CopyValueToVirtualRegister(C, RegOut);
Chris Lattner1c08c712005-01-07 07:47:53 +00005197 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005198 Reg = RegOut;
5199 } else {
5200 Reg = FuncInfo.ValueMap[PHIOp];
5201 if (Reg == 0) {
5202 assert(isa<AllocaInst>(PHIOp) &&
5203 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5204 "Didn't codegen value into a register!??");
5205 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005206 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Chris Lattner7e021512006-03-31 02:12:18 +00005207 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005208 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005209
5210 // Remember that this register needs to added to the machine PHI node as
5211 // the input for this MBB.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005212 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +00005213 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohmanb9f10192007-06-21 14:42:22 +00005214 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Chris Lattner8c494ab2006-10-27 23:50:33 +00005215 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5216 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005217 }
5218 ConstantsOut.clear();
5219
5220 // Lower the terminator after the copies are emitted.
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005221 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00005222
Nate Begemanf15485a2006-03-27 01:32:24 +00005223 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00005224 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00005225 SwitchCases.clear();
5226 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005227 JTCases.clear();
5228 JTCases = SDL.JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005229 BitTestCases.clear();
5230 BitTestCases = SDL.BitTestCases;
5231
Chris Lattnera651cf62005-01-17 19:43:36 +00005232 // Make sure the root of the DAG is up-to-date.
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005233 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005234
5235 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5236 // with correct tailcall attribute so that the target can rely on the tailcall
5237 // attribute indicating whether the call is really eligible for tail call
5238 // optimization.
5239 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Chris Lattner1c08c712005-01-07 07:47:53 +00005240}
5241
Chris Lattneread0d882008-06-17 06:09:18 +00005242void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5243 SmallPtrSet<SDNode*, 128> VisitedNodes;
5244 SmallVector<SDNode*, 128> Worklist;
5245
5246 Worklist.push_back(DAG.getRoot().Val);
5247
5248 APInt Mask;
5249 APInt KnownZero;
5250 APInt KnownOne;
5251
5252 while (!Worklist.empty()) {
5253 SDNode *N = Worklist.back();
5254 Worklist.pop_back();
5255
5256 // If we've already seen this node, ignore it.
5257 if (!VisitedNodes.insert(N))
5258 continue;
5259
5260 // Otherwise, add all chain operands to the worklist.
5261 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5262 if (N->getOperand(i).getValueType() == MVT::Other)
5263 Worklist.push_back(N->getOperand(i).Val);
5264
5265 // If this is a CopyToReg with a vreg dest, process it.
5266 if (N->getOpcode() != ISD::CopyToReg)
5267 continue;
5268
5269 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5270 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5271 continue;
5272
5273 // Ignore non-scalar or non-integer values.
5274 SDOperand Src = N->getOperand(2);
5275 MVT SrcVT = Src.getValueType();
5276 if (!SrcVT.isInteger() || SrcVT.isVector())
5277 continue;
5278
5279 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5280 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5281 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5282
5283 // Only install this information if it tells us something.
5284 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5285 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5286 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5287 if (DestReg >= FLI.LiveOutRegInfo.size())
5288 FLI.LiveOutRegInfo.resize(DestReg+1);
5289 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5290 LOI.NumSignBits = NumSignBits;
5291 LOI.KnownOne = NumSignBits;
5292 LOI.KnownZero = NumSignBits;
5293 }
5294 }
5295}
5296
Nate Begemanf15485a2006-03-27 01:32:24 +00005297void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohman462dc7f2008-07-21 20:00:07 +00005298 std::string GroupName;
5299 if (TimePassesIsEnabled)
5300 GroupName = "Instruction Selection and Scheduling";
5301 std::string BlockName;
5302 if (ViewDAGCombine1 || ViewLegalizeTypesDAGs || ViewLegalizeDAGs ||
5303 ViewDAGCombine2 || ViewISelDAGs || ViewSchedDAGs || ViewSUnitDAGs)
5304 BlockName = DAG.getMachineFunction().getFunction()->getName() + ':' +
5305 BB->getBasicBlock()->getName();
5306
5307 DOUT << "Initial selection DAG:\n";
Dan Gohman417e11b2007-10-08 15:12:17 +00005308 DEBUG(DAG.dump());
Dan Gohman462dc7f2008-07-21 20:00:07 +00005309
5310 if (ViewDAGCombine1) DAG.viewGraph("dag-combine1 input for " + BlockName);
Dan Gohman417e11b2007-10-08 15:12:17 +00005311
Chris Lattneraf21d552005-10-10 16:47:10 +00005312 // Run the DAG combiner in pre-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005313 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005314 NamedRegionTimer T("DAG Combining 1", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005315 DAG.Combine(false, *AA);
5316 } else {
5317 DAG.Combine(false, *AA);
5318 }
Nate Begeman2300f552005-09-07 00:15:36 +00005319
Dan Gohman417e11b2007-10-08 15:12:17 +00005320 DOUT << "Optimized lowered selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005321 DEBUG(DAG.dump());
Duncan Sandsf00e74f2008-07-17 17:06:03 +00005322
Chris Lattner1c08c712005-01-07 07:47:53 +00005323 // Second step, hack on the DAG until it only uses operations and types that
5324 // the target supports.
Duncan Sandsf00e74f2008-07-17 17:06:03 +00005325 if (EnableLegalizeTypes) {// Enable this some day.
Dan Gohman462dc7f2008-07-21 20:00:07 +00005326 if (ViewLegalizeTypesDAGs) DAG.viewGraph("legalize-types input for " +
5327 BlockName);
5328
5329 if (TimePassesIsEnabled) {
5330 NamedRegionTimer T("Type Legalization", GroupName);
5331 DAG.LegalizeTypes();
5332 } else {
5333 DAG.LegalizeTypes();
5334 }
5335
5336 DOUT << "Type-legalized selection DAG:\n";
5337 DEBUG(DAG.dump());
5338
Chris Lattner70587ea2008-07-10 23:37:50 +00005339 // TODO: enable a dag combine pass here.
5340 }
Duncan Sandsf00e74f2008-07-17 17:06:03 +00005341
Dan Gohman462dc7f2008-07-21 20:00:07 +00005342 if (ViewLegalizeDAGs) DAG.viewGraph("legalize input for " + BlockName);
5343
Evan Chengebffb662008-07-01 17:59:20 +00005344 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005345 NamedRegionTimer T("DAG Legalization", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005346 DAG.Legalize();
5347 } else {
5348 DAG.Legalize();
5349 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005350
Bill Wendling832171c2006-12-07 20:04:42 +00005351 DOUT << "Legalized selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005352 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005353
Dan Gohman462dc7f2008-07-21 20:00:07 +00005354 if (ViewDAGCombine2) DAG.viewGraph("dag-combine2 input for " + BlockName);
5355
Chris Lattneraf21d552005-10-10 16:47:10 +00005356 // Run the DAG combiner in post-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005357 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005358 NamedRegionTimer T("DAG Combining 2", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005359 DAG.Combine(true, *AA);
5360 } else {
5361 DAG.Combine(true, *AA);
5362 }
Nate Begeman2300f552005-09-07 00:15:36 +00005363
Dan Gohman417e11b2007-10-08 15:12:17 +00005364 DOUT << "Optimized legalized selection DAG:\n";
5365 DEBUG(DAG.dump());
5366
Dan Gohman462dc7f2008-07-21 20:00:07 +00005367 if (ViewISelDAGs) DAG.viewGraph("isel input for " + BlockName);
Chris Lattneread0d882008-06-17 06:09:18 +00005368
Evan Chengf1a792b2008-07-01 18:15:04 +00005369 if (!FastISel && EnableValueProp)
Chris Lattneread0d882008-06-17 06:09:18 +00005370 ComputeLiveOutVRegInfo(DAG);
Evan Cheng552c4a82006-04-28 02:09:19 +00005371
Chris Lattnera33ef482005-03-30 01:10:47 +00005372 // Third, instruction select all of the operations to machine code, adding the
5373 // code to the MachineBasicBlock.
Evan Chengebffb662008-07-01 17:59:20 +00005374 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005375 NamedRegionTimer T("Instruction Selection", GroupName);
Evan Chengebffb662008-07-01 17:59:20 +00005376 InstructionSelect(DAG);
5377 } else {
5378 InstructionSelect(DAG);
5379 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005380
Dan Gohman462dc7f2008-07-21 20:00:07 +00005381 DOUT << "Selected selection DAG:\n";
5382 DEBUG(DAG.dump());
5383
5384 if (ViewSchedDAGs) DAG.viewGraph("scheduler input for " + BlockName);
5385
Dan Gohman5e843682008-07-14 18:19:29 +00005386 // Schedule machine code.
5387 ScheduleDAG *Scheduler;
5388 if (TimePassesIsEnabled) {
5389 NamedRegionTimer T("Instruction Scheduling", GroupName);
5390 Scheduler = Schedule(DAG);
5391 } else {
5392 Scheduler = Schedule(DAG);
5393 }
5394
Dan Gohman462dc7f2008-07-21 20:00:07 +00005395 if (ViewSUnitDAGs) Scheduler->viewGraph();
5396
Evan Chengdb8d56b2008-06-30 20:45:06 +00005397 // Emit machine code to BB. This can change 'BB' to the last block being
5398 // inserted into.
Evan Chengebffb662008-07-01 17:59:20 +00005399 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005400 NamedRegionTimer T("Instruction Creation", GroupName);
5401 BB = Scheduler->EmitSchedule();
Evan Chengebffb662008-07-01 17:59:20 +00005402 } else {
Dan Gohman5e843682008-07-14 18:19:29 +00005403 BB = Scheduler->EmitSchedule();
5404 }
5405
5406 // Free the scheduler state.
5407 if (TimePassesIsEnabled) {
5408 NamedRegionTimer T("Instruction Scheduling Cleanup", GroupName);
5409 delete Scheduler;
5410 } else {
5411 delete Scheduler;
Evan Chengebffb662008-07-01 17:59:20 +00005412 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005413
5414 // Perform target specific isel post processing.
Evan Chengebffb662008-07-01 17:59:20 +00005415 if (TimePassesIsEnabled) {
Dan Gohman5e843682008-07-14 18:19:29 +00005416 NamedRegionTimer T("Instruction Selection Post Processing", GroupName);
Dan Gohman462dc7f2008-07-21 20:00:07 +00005417 InstructionSelectPostProcessing();
Evan Chengebffb662008-07-01 17:59:20 +00005418 } else {
Dan Gohman462dc7f2008-07-21 20:00:07 +00005419 InstructionSelectPostProcessing();
Evan Chengebffb662008-07-01 17:59:20 +00005420 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005421
Bill Wendling832171c2006-12-07 20:04:42 +00005422 DOUT << "Selected machine code:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005423 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005424}
Chris Lattner1c08c712005-01-07 07:47:53 +00005425
Dan Gohman0e5f1302008-07-07 23:02:41 +00005426void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF,
5427 FunctionLoweringInfo &FuncInfo) {
5428 // Define AllNodes here so that memory allocation is reused for
5429 // each basic block.
5430 alist<SDNode, LargestSDNode> AllNodes;
5431
5432 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
5433 SelectBasicBlock(I, MF, FuncInfo, AllNodes);
5434 AllNodes.clear();
5435 }
5436}
5437
Nate Begemanf15485a2006-03-27 01:32:24 +00005438void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005439 FunctionLoweringInfo &FuncInfo,
5440 alist<SDNode, LargestSDNode> &AllNodes) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005441 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5442 {
Chris Lattneread0d882008-06-17 06:09:18 +00005443 SelectionDAG DAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005444 getAnalysisToUpdate<MachineModuleInfo>(),
5445 AllNodes);
Nate Begemanf15485a2006-03-27 01:32:24 +00005446 CurDAG = &DAG;
5447
5448 // First step, lower LLVM code to some DAG. This DAG may use operations and
5449 // types that are not supported by the target.
5450 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5451
5452 // Second step, emit the lowered DAG as machine code.
5453 CodeGenAndEmitDAG(DAG);
5454 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005455
5456 DOUT << "Total amount of phi nodes to update: "
5457 << PHINodesToUpdate.size() << "\n";
5458 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5459 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5460 << ", " << PHINodesToUpdate[i].second << ")\n";);
Nate Begemanf15485a2006-03-27 01:32:24 +00005461
Chris Lattnera33ef482005-03-30 01:10:47 +00005462 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00005463 // PHI nodes in successors.
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005464 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005465 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5466 MachineInstr *PHI = PHINodesToUpdate[i].first;
5467 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5468 "This is not a machine PHI node that we are updating!");
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005469 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5470 false));
5471 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +00005472 }
5473 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00005474 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005475
5476 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5477 // Lower header first, if it wasn't already lowered
5478 if (!BitTestCases[i].Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005479 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005480 getAnalysisToUpdate<MachineModuleInfo>(),
5481 AllNodes);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005482 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005483 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005484 // Set the current basic block to the mbb we wish to insert the code into
5485 BB = BitTestCases[i].Parent;
5486 HSDL.setCurrentBasicBlock(BB);
5487 // Emit the code
5488 HSDL.visitBitTestHeader(BitTestCases[i]);
5489 HSDAG.setRoot(HSDL.getRoot());
5490 CodeGenAndEmitDAG(HSDAG);
5491 }
5492
5493 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattneread0d882008-06-17 06:09:18 +00005494 SelectionDAG BSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005495 getAnalysisToUpdate<MachineModuleInfo>(),
5496 AllNodes);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005497 CurDAG = &BSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005498 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005499 // Set the current basic block to the mbb we wish to insert the code into
5500 BB = BitTestCases[i].Cases[j].ThisBB;
5501 BSDL.setCurrentBasicBlock(BB);
5502 // Emit the code
5503 if (j+1 != ej)
5504 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5505 BitTestCases[i].Reg,
5506 BitTestCases[i].Cases[j]);
5507 else
5508 BSDL.visitBitTestCase(BitTestCases[i].Default,
5509 BitTestCases[i].Reg,
5510 BitTestCases[i].Cases[j]);
5511
5512
5513 BSDAG.setRoot(BSDL.getRoot());
5514 CodeGenAndEmitDAG(BSDAG);
5515 }
5516
5517 // Update PHI Nodes
5518 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5519 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5520 MachineBasicBlock *PHIBB = PHI->getParent();
5521 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5522 "This is not a machine PHI node that we are updating!");
5523 // This is "default" BB. We have two jumps to it. From "header" BB and
5524 // from last "case" BB.
5525 if (PHIBB == BitTestCases[i].Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005526 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5527 false));
5528 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5529 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5530 false));
5531 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5532 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005533 }
5534 // One of "cases" BB.
5535 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5536 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5537 if (cBB->succ_end() !=
5538 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005539 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5540 false));
5541 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005542 }
5543 }
5544 }
5545 }
5546
Nate Begeman9453eea2006-04-23 06:26:20 +00005547 // If the JumpTable record is filled in, then we need to emit a jump table.
5548 // Updating the PHI nodes is tricky in this case, since we need to determine
5549 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005550 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5551 // Lower header first, if it wasn't already lowered
5552 if (!JTCases[i].first.Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005553 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005554 getAnalysisToUpdate<MachineModuleInfo>(),
5555 AllNodes);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005556 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005557 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005558 // Set the current basic block to the mbb we wish to insert the code into
5559 BB = JTCases[i].first.HeaderBB;
5560 HSDL.setCurrentBasicBlock(BB);
5561 // Emit the code
5562 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5563 HSDAG.setRoot(HSDL.getRoot());
5564 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005565 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005566
Chris Lattneread0d882008-06-17 06:09:18 +00005567 SelectionDAG JSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005568 getAnalysisToUpdate<MachineModuleInfo>(),
5569 AllNodes);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005570 CurDAG = &JSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005571 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Nate Begeman37efe672006-04-22 18:53:45 +00005572 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005573 BB = JTCases[i].second.MBB;
5574 JSDL.setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00005575 // Emit the code
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005576 JSDL.visitJumpTable(JTCases[i].second);
5577 JSDAG.setRoot(JSDL.getRoot());
5578 CodeGenAndEmitDAG(JSDAG);
5579
Nate Begeman37efe672006-04-22 18:53:45 +00005580 // Update PHI Nodes
5581 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5582 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5583 MachineBasicBlock *PHIBB = PHI->getParent();
5584 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5585 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005586 // "default" BB. We can go there only from header BB.
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005587 if (PHIBB == JTCases[i].second.Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005588 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5589 false));
5590 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +00005591 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005592 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +00005593 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005594 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5595 false));
5596 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +00005597 }
5598 }
Nate Begeman37efe672006-04-22 18:53:45 +00005599 }
5600
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005601 // If the switch block involved a branch to one of the actual successors, we
5602 // need to update PHI nodes in that block.
5603 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5604 MachineInstr *PHI = PHINodesToUpdate[i].first;
5605 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5606 "This is not a machine PHI node that we are updating!");
5607 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005608 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5609 false));
5610 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005611 }
5612 }
5613
Nate Begemanf15485a2006-03-27 01:32:24 +00005614 // If we generated any switch lowering information, build and codegen any
5615 // additional DAGs necessary.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005616 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattneread0d882008-06-17 06:09:18 +00005617 SelectionDAG SDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005618 getAnalysisToUpdate<MachineModuleInfo>(),
5619 AllNodes);
Nate Begemanf15485a2006-03-27 01:32:24 +00005620 CurDAG = &SDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005621 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005622
Nate Begemanf15485a2006-03-27 01:32:24 +00005623 // Set the current basic block to the mbb we wish to insert the code into
5624 BB = SwitchCases[i].ThisBB;
5625 SDL.setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005626
Nate Begemanf15485a2006-03-27 01:32:24 +00005627 // Emit the code
5628 SDL.visitSwitchCase(SwitchCases[i]);
5629 SDAG.setRoot(SDL.getRoot());
5630 CodeGenAndEmitDAG(SDAG);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005631
5632 // Handle any PHI nodes in successors of this chunk, as if we were coming
5633 // from the original BB before switch expansion. Note that PHI nodes can
5634 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5635 // handle them the right number of times.
Chris Lattner57ab6592006-10-24 17:57:59 +00005636 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005637 for (MachineBasicBlock::iterator Phi = BB->begin();
5638 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5639 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5640 for (unsigned pn = 0; ; ++pn) {
5641 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5642 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005643 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5644 second, false));
5645 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005646 break;
5647 }
5648 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005649 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005650
5651 // Don't process RHS if same block as LHS.
Chris Lattner57ab6592006-10-24 17:57:59 +00005652 if (BB == SwitchCases[i].FalseBB)
5653 SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005654
5655 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner24525952006-10-24 18:07:37 +00005656 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner57ab6592006-10-24 17:57:59 +00005657 SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00005658 }
Chris Lattner57ab6592006-10-24 17:57:59 +00005659 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00005660 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005661}
Evan Chenga9c20912006-01-21 02:32:06 +00005662
Jim Laskey13ec7022006-08-01 14:21:23 +00005663
Dan Gohman5e843682008-07-14 18:19:29 +00005664/// Schedule - Pick a safe ordering for instructions for each
Evan Chenga9c20912006-01-21 02:32:06 +00005665/// target node in the graph.
Dan Gohman5e843682008-07-14 18:19:29 +00005666///
5667ScheduleDAG *SelectionDAGISel::Schedule(SelectionDAG &DAG) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005668 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00005669
5670 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005671 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00005672 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00005673 }
Jim Laskey13ec7022006-08-01 14:21:23 +00005674
Dan Gohman5e843682008-07-14 18:19:29 +00005675 ScheduleDAG *Scheduler = Ctor(this, &DAG, BB, FastISel);
5676 Scheduler->Run();
Dan Gohman3e1a7ae2007-08-28 20:32:58 +00005677
Dan Gohman5e843682008-07-14 18:19:29 +00005678 return Scheduler;
Evan Chenga9c20912006-01-21 02:32:06 +00005679}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005680
Chris Lattner03fc53c2006-03-06 00:22:00 +00005681
Jim Laskey9ff542f2006-08-01 18:29:48 +00005682HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5683 return new HazardRecognizer();
5684}
5685
Chris Lattner75548062006-10-11 03:58:02 +00005686//===----------------------------------------------------------------------===//
5687// Helper functions used by the generated instruction selector.
5688//===----------------------------------------------------------------------===//
5689// Calls to these methods are generated by tblgen.
5690
5691/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5692/// the dag combiner simplified the 255, we still want to match. RHS is the
5693/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5694/// specified in the .td file (e.g. 255).
5695bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00005696 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005697 const APInt &ActualMask = RHS->getAPIntValue();
5698 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005699
5700 // If the actual mask exactly matches, success!
5701 if (ActualMask == DesiredMask)
5702 return true;
5703
5704 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005705 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005706 return false;
5707
5708 // Otherwise, the DAG Combiner may have proven that the value coming in is
5709 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005710 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00005711 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00005712 return true;
5713
5714 // TODO: check to see if missing bits are just not demanded.
5715
5716 // Otherwise, this pattern doesn't match.
5717 return false;
5718}
5719
5720/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5721/// the dag combiner simplified the 255, we still want to match. RHS is the
5722/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5723/// specified in the .td file (e.g. 255).
5724bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005725 int64_t DesiredMaskS) const {
5726 const APInt &ActualMask = RHS->getAPIntValue();
5727 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005728
5729 // If the actual mask exactly matches, success!
5730 if (ActualMask == DesiredMask)
5731 return true;
5732
5733 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005734 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005735 return false;
5736
5737 // Otherwise, the DAG Combiner may have proven that the value coming in is
5738 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005739 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00005740
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005741 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005742 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00005743
5744 // If all the missing bits in the or are already known to be set, match!
5745 if ((NeededMask & KnownOne) == NeededMask)
5746 return true;
5747
5748 // TODO: check to see if missing bits are just not demanded.
5749
5750 // Otherwise, this pattern doesn't match.
5751 return false;
5752}
5753
Jim Laskey9ff542f2006-08-01 18:29:48 +00005754
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005755/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5756/// by tblgen. Others should not call it.
5757void SelectionDAGISel::
5758SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
5759 std::vector<SDOperand> InOps;
5760 std::swap(InOps, Ops);
5761
5762 Ops.push_back(InOps[0]); // input chain.
5763 Ops.push_back(InOps[1]); // input asm string.
5764
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005765 unsigned i = 2, e = InOps.size();
5766 if (InOps[e-1].getValueType() == MVT::Flag)
5767 --e; // Don't process a flag operand if it is here.
5768
5769 while (i != e) {
5770 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5771 if ((Flags & 7) != 4 /*MEM*/) {
5772 // Just skip over this operand, copying the operands verbatim.
5773 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5774 i += (Flags >> 3) + 1;
5775 } else {
5776 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5777 // Otherwise, this is a memory operand. Ask the target to select it.
5778 std::vector<SDOperand> SelOps;
5779 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling832171c2006-12-07 20:04:42 +00005780 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005781 exit(1);
5782 }
5783
5784 // Add this to the output node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005785 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner36d43962006-12-16 21:14:48 +00005786 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattner4b993b12007-04-09 00:33:58 +00005787 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005788 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5789 i += 2;
5790 }
5791 }
5792
5793 // Add the flag input back if present.
5794 if (e != InOps.size())
5795 Ops.push_back(InOps.back());
5796}
Devang Patel794fd752007-05-01 21:15:47 +00005797
Devang Patel19974732007-05-03 01:11:54 +00005798char SelectionDAGISel::ID = 0;