blob: bc1eda34083bf8330a042a2cdbc750618bd8a261 [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>
53EnableValueProp("enable-value-prop", cl::Hidden, cl::init(false));
54
55
Chris Lattnerda8abb02005-09-01 18:44:10 +000056#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000057static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000058ViewISelDAGs("view-isel-dags", cl::Hidden,
59 cl::desc("Pop up a window to show isel dags as they are selected"));
60static cl::opt<bool>
61ViewSchedDAGs("view-sched-dags", cl::Hidden,
62 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000063static cl::opt<bool>
64ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +000065 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000066#else
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000067static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0, ViewSUnitDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000068#endif
69
Jim Laskeyeb577ba2006-08-02 12:30:23 +000070//===---------------------------------------------------------------------===//
71///
72/// RegisterScheduler class - Track the registration of instruction schedulers.
73///
74//===---------------------------------------------------------------------===//
75MachinePassRegistry RegisterScheduler::Registry;
76
77//===---------------------------------------------------------------------===//
78///
79/// ISHeuristic command line option for instruction schedulers.
80///
81//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +000082static cl::opt<RegisterScheduler::FunctionPassCtor, false,
83 RegisterPassParser<RegisterScheduler> >
84ISHeuristic("pre-RA-sched",
85 cl::init(&createDefaultScheduler),
86 cl::desc("Instruction schedulers available (before register"
87 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +000088
Dan Gohman844731a2008-05-13 00:00:25 +000089static RegisterScheduler
90defaultListDAGScheduler("default", " Best scheduler for the target",
91 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +000092
Evan Cheng5c807602008-02-26 02:33:44 +000093namespace { struct SDISelAsmOperandInfo; }
Chris Lattnerbf996f12007-04-30 17:29:31 +000094
Dan Gohman1d685a42008-06-07 02:02:36 +000095/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
96/// insertvalue or extractvalue indices that identify a member, return
97/// the linearized index of the start of the member.
98///
99static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
100 const unsigned *Indices,
101 const unsigned *IndicesEnd,
102 unsigned CurIndex = 0) {
103 // Base case: We're done.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000104 if (Indices && Indices == IndicesEnd)
Dan Gohman1d685a42008-06-07 02:02:36 +0000105 return CurIndex;
106
Chris Lattnerf899fce2008-04-27 23:48:12 +0000107 // Given a struct type, recursively traverse the elements.
108 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000109 for (StructType::element_iterator EB = STy->element_begin(),
110 EI = EB,
Dan Gohman1d685a42008-06-07 02:02:36 +0000111 EE = STy->element_end();
112 EI != EE; ++EI) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000113 if (Indices && *Indices == unsigned(EI - EB))
114 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
115 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000116 }
117 }
118 // Given an array type, recursively traverse the elements.
119 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
120 const Type *EltTy = ATy->getElementType();
121 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000122 if (Indices && *Indices == i)
123 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
124 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
Dan Gohman1d685a42008-06-07 02:02:36 +0000125 }
126 }
127 // We haven't found the type we're looking for, so keep searching.
Dan Gohman8f36f6d2008-06-20 00:53:00 +0000128 return CurIndex + 1;
Dan Gohman1d685a42008-06-07 02:02:36 +0000129}
130
131/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
132/// MVTs that represent all the individual underlying
133/// non-aggregate types that comprise it.
134///
135/// If Offsets is non-null, it points to a vector to be filled in
136/// with the in-memory offsets of each of the individual values.
137///
138static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
139 SmallVectorImpl<MVT> &ValueVTs,
140 SmallVectorImpl<uint64_t> *Offsets = 0,
141 uint64_t StartingOffset = 0) {
142 // Given a struct type, recursively traverse the elements.
143 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
144 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
145 for (StructType::element_iterator EB = STy->element_begin(),
146 EI = EB,
147 EE = STy->element_end();
148 EI != EE; ++EI)
149 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
150 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattnerf899fce2008-04-27 23:48:12 +0000151 return;
Dan Gohman23ce5022008-04-25 18:27:55 +0000152 }
Chris Lattnerf899fce2008-04-27 23:48:12 +0000153 // Given an array type, recursively traverse the elements.
154 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
155 const Type *EltTy = ATy->getElementType();
Dan Gohman1d685a42008-06-07 02:02:36 +0000156 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000157 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +0000158 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
159 StartingOffset + i * EltSize);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000160 return;
161 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000162 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattnerf899fce2008-04-27 23:48:12 +0000163 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman1d685a42008-06-07 02:02:36 +0000164 if (Offsets)
165 Offsets->push_back(StartingOffset);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000166}
Dan Gohman23ce5022008-04-25 18:27:55 +0000167
Chris Lattnerf899fce2008-04-27 23:48:12 +0000168namespace {
Dan Gohman0fe00902008-04-28 18:10:39 +0000169 /// RegsForValue - This struct represents the registers (physical or virtual)
170 /// that a particular set of values is assigned, and the type information about
171 /// the value. The most common situation is to represent one value at a time,
172 /// but struct or array values are handled element-wise as multiple values.
173 /// The splitting of aggregates is performed recursively, so that we never
174 /// have aggregate-typed registers. The values at this point do not necessarily
175 /// have legal types, so each value may require one or more registers of some
176 /// legal type.
177 ///
Chris Lattner95255282006-06-28 23:17:24 +0000178 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman23ce5022008-04-25 18:27:55 +0000179 /// TLI - The TargetLowering object.
Dan Gohman0fe00902008-04-28 18:10:39 +0000180 ///
Dan Gohman23ce5022008-04-25 18:27:55 +0000181 const TargetLowering *TLI;
182
Dan Gohman0fe00902008-04-28 18:10:39 +0000183 /// ValueVTs - The value types of the values, which may not be legal, and
184 /// may need be promoted or synthesized from one or more registers.
185 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000186 SmallVector<MVT, 4> ValueVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000187
Dan Gohman0fe00902008-04-28 18:10:39 +0000188 /// RegVTs - The value types of the registers. This is the same size as
189 /// ValueVTs and it records, for each value, what the type of the assigned
190 /// register or registers are. (Individual values are never synthesized
191 /// from more than one type of register.)
192 ///
193 /// With virtual registers, the contents of RegVTs is redundant with TLI's
194 /// getRegisterType member function, however when with physical registers
195 /// it is necessary to have a separate record of the types.
Chris Lattner864635a2006-02-22 22:37:12 +0000196 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000197 SmallVector<MVT, 4> RegVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000198
Dan Gohman0fe00902008-04-28 18:10:39 +0000199 /// Regs - This list holds the registers assigned to the values.
200 /// Each legal or promoted value requires one register, and each
201 /// expanded value requires multiple registers.
202 ///
203 SmallVector<unsigned, 4> Regs;
Chris Lattner864635a2006-02-22 22:37:12 +0000204
Dan Gohman23ce5022008-04-25 18:27:55 +0000205 RegsForValue() : TLI(0) {}
Chris Lattner864635a2006-02-22 22:37:12 +0000206
Dan Gohman23ce5022008-04-25 18:27:55 +0000207 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000208 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000209 MVT regvt, MVT valuevt)
Dan Gohman0fe00902008-04-28 18:10:39 +0000210 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000211 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000212 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000213 const SmallVector<MVT, 4> &regvts,
214 const SmallVector<MVT, 4> &valuevts)
Dan Gohman0fe00902008-04-28 18:10:39 +0000215 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000216 RegsForValue(const TargetLowering &tli,
217 unsigned Reg, const Type *Ty) : TLI(&tli) {
218 ComputeValueVTs(tli, Ty, ValueVTs);
219
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000220 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000221 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +0000222 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000223 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000224 for (unsigned i = 0; i != NumRegs; ++i)
225 Regs.push_back(Reg + i);
226 RegVTs.push_back(RegisterVT);
227 Reg += NumRegs;
228 }
Chris Lattner864635a2006-02-22 22:37:12 +0000229 }
230
Chris Lattner41f62592008-04-29 04:29:54 +0000231 /// append - Add the specified values to this one.
232 void append(const RegsForValue &RHS) {
233 TLI = RHS.TLI;
234 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
235 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
236 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
237 }
238
239
Chris Lattner864635a2006-02-22 22:37:12 +0000240 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman23ce5022008-04-25 18:27:55 +0000241 /// this value and returns the result as a ValueVTs value. This uses
Chris Lattner864635a2006-02-22 22:37:12 +0000242 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000243 /// If the Flag pointer is NULL, no flag is used.
Chris Lattner864635a2006-02-22 22:37:12 +0000244 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000245 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000246
247 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
248 /// specified value into the registers specified by this object. This uses
249 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000250 /// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000251 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000252 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000253
254 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
255 /// operand list. This adds the code marker and includes the number of
256 /// values added into it.
257 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000258 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000259 };
260}
Evan Cheng4ef10862006-01-23 07:01:07 +0000261
Chris Lattner1c08c712005-01-07 07:47:53 +0000262namespace llvm {
263 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000264 /// createDefaultScheduler - This creates an instruction scheduler appropriate
265 /// for the target.
266 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
267 SelectionDAG *DAG,
Evan Cheng4576f6d2008-07-01 18:05:03 +0000268 MachineBasicBlock *BB,
269 bool Fast) {
Jim Laskey9373beb2006-08-01 19:14:14 +0000270 TargetLowering &TLI = IS->getTargetLowering();
271
272 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
Evan Cheng4576f6d2008-07-01 18:05:03 +0000273 return createTDListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000274 } else {
275 assert(TLI.getSchedulingPreference() ==
276 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
Evan Cheng4576f6d2008-07-01 18:05:03 +0000277 return createBURRListDAGScheduler(IS, DAG, BB, Fast);
Jim Laskey9373beb2006-08-01 19:14:14 +0000278 }
279 }
280
281
282 //===--------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000283 /// FunctionLoweringInfo - This contains information that is global to a
284 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000285 class FunctionLoweringInfo {
286 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000287 TargetLowering &TLI;
288 Function &Fn;
289 MachineFunction &MF;
Chris Lattner84bc5422007-12-31 04:13:23 +0000290 MachineRegisterInfo &RegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000291
292 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
293
294 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
295 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
296
297 /// ValueMap - Since we emit code for the function a basic block at a time,
298 /// we must remember which virtual registers hold the values for
299 /// cross-basic-block values.
Chris Lattner9f24ad72007-02-04 01:35:11 +0000300 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000301
302 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
303 /// the entry block. This allows the allocas to be efficiently referenced
304 /// anywhere in the function.
305 std::map<const AllocaInst*, int> StaticAllocaMap;
306
Duncan Sandsf4070822007-06-15 19:04:19 +0000307#ifndef NDEBUG
308 SmallSet<Instruction*, 8> CatchInfoLost;
309 SmallSet<Instruction*, 8> CatchInfoFound;
310#endif
311
Duncan Sands83ec4b62008-06-06 12:08:01 +0000312 unsigned MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000313 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000314 }
Chris Lattner571e4342006-10-27 21:36:01 +0000315
316 /// isExportedInst - Return true if the specified value is an instruction
317 /// exported from its block.
318 bool isExportedInst(const Value *V) {
319 return ValueMap.count(V);
320 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000321
Chris Lattner3c384492006-03-16 19:51:18 +0000322 unsigned CreateRegForValue(const Value *V);
323
Chris Lattner1c08c712005-01-07 07:47:53 +0000324 unsigned InitializeRegForValue(const Value *V) {
325 unsigned &R = ValueMap[V];
326 assert(R == 0 && "Already initialized this value register!");
327 return R = CreateRegForValue(V);
328 }
Chris Lattneread0d882008-06-17 06:09:18 +0000329
330 struct LiveOutInfo {
331 unsigned NumSignBits;
332 APInt KnownOne, KnownZero;
333 LiveOutInfo() : NumSignBits(0) {}
334 };
335
336 /// LiveOutRegInfo - Information about live out vregs, indexed by their
337 /// register number offset by 'FirstVirtualRegister'.
338 std::vector<LiveOutInfo> LiveOutRegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000339 };
340}
341
Duncan Sandscf26d7c2007-07-04 20:52:51 +0000342/// isSelector - Return true if this instruction is a call to the
343/// eh.selector intrinsic.
344static bool isSelector(Instruction *I) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000345 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000346 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
347 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Duncan Sandsf4070822007-06-15 19:04:19 +0000348 return false;
349}
350
Chris Lattner1c08c712005-01-07 07:47:53 +0000351/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000352/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000353/// switch or atomic instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000354static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
355 if (isa<PHINode>(I)) return true;
356 BasicBlock *BB = I->getParent();
357 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000358 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattner571e4342006-10-27 21:36:01 +0000359 // FIXME: Remove switchinst special case.
Nate Begemanf15485a2006-03-27 01:32:24 +0000360 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000361 return true;
362 return false;
363}
364
Chris Lattnerbf209482005-10-30 19:42:35 +0000365/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000366/// entry block, return true. This includes arguments used by switches, since
367/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000368static bool isOnlyUsedInEntryBlock(Argument *A) {
369 BasicBlock *Entry = A->getParent()->begin();
370 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000371 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000372 return false; // Use not in entry block.
373 return true;
374}
375
Chris Lattner1c08c712005-01-07 07:47:53 +0000376FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000377 Function &fn, MachineFunction &mf)
Chris Lattner84bc5422007-12-31 04:13:23 +0000378 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000379
Chris Lattnerbf209482005-10-30 19:42:35 +0000380 // Create a vreg for each argument register that is not dead and is used
381 // outside of the entry block for the function.
382 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
383 AI != E; ++AI)
384 if (!isOnlyUsedInEntryBlock(AI))
385 InitializeRegForValue(AI);
386
Chris Lattner1c08c712005-01-07 07:47:53 +0000387 // Initialize the mapping of values to registers. This is only set up for
388 // instruction values that are used outside of the block that defines
389 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000390 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000391 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
392 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencerb83eb642006-10-20 07:07:24 +0000393 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000394 const Type *Ty = AI->getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +0000395 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000396 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000397 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000398 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000399
Reid Spencerb83eb642006-10-20 07:07:24 +0000400 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000401 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000402 StaticAllocaMap[AI] =
Chris Lattner6266c182007-04-25 04:08:28 +0000403 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000404 }
405
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000406 for (; BB != EB; ++BB)
407 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000408 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
409 if (!isa<AllocaInst>(I) ||
410 !StaticAllocaMap.count(cast<AllocaInst>(I)))
411 InitializeRegForValue(I);
412
413 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
414 // also creates the initial PHI MachineInstrs, though none of the input
415 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000416 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Dan Gohman0e5f1302008-07-07 23:02:41 +0000417 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000418 MBBMap[BB] = MBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +0000419 MF.push_back(MBB);
Chris Lattner1c08c712005-01-07 07:47:53 +0000420
421 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
422 // appropriate.
423 PHINode *PN;
Chris Lattner8c494ab2006-10-27 23:50:33 +0000424 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
425 if (PN->use_empty()) continue;
426
Duncan Sands83ec4b62008-06-06 12:08:01 +0000427 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +0000428 unsigned NumRegisters = TLI.getNumRegisters(VT);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000429 unsigned PHIReg = ValueMap[PN];
430 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Evan Chengc0f64ff2006-11-27 23:37:22 +0000431 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
Dan Gohmanb9f10192007-06-21 14:42:22 +0000432 for (unsigned i = 0; i != NumRegisters; ++i)
Evan Chengc0f64ff2006-11-27 23:37:22 +0000433 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000434 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000435 }
436}
437
Chris Lattner3c384492006-03-16 19:51:18 +0000438/// CreateRegForValue - Allocate the appropriate number of virtual registers of
439/// the correctly promoted or expanded types. Assign these registers
440/// consecutive vreg numbers and return the first assigned number.
Dan Gohman10a6b7a2008-04-28 18:19:43 +0000441///
442/// In the case that the given value has struct or array type, this function
443/// will assign registers for each member or element.
444///
Chris Lattner3c384492006-03-16 19:51:18 +0000445unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000446 SmallVector<MVT, 4> ValueVTs;
Chris Lattnerb606dba2008-04-28 06:44:42 +0000447 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Bill Wendling95b39552007-04-24 21:13:23 +0000448
Dan Gohman23ce5022008-04-25 18:27:55 +0000449 unsigned FirstReg = 0;
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000450 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000451 MVT ValueVT = ValueVTs[Value];
452 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohman8c8c5fc2007-06-27 14:34:07 +0000453
Chris Lattnerb606dba2008-04-28 06:44:42 +0000454 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000455 for (unsigned i = 0; i != NumRegs; ++i) {
456 unsigned R = MakeReg(RegisterVT);
457 if (!FirstReg) FirstReg = R;
458 }
459 }
460 return FirstReg;
Chris Lattner3c384492006-03-16 19:51:18 +0000461}
Chris Lattner1c08c712005-01-07 07:47:53 +0000462
463//===----------------------------------------------------------------------===//
464/// SelectionDAGLowering - This is the common target-independent lowering
465/// implementation that is parameterized by a TargetLowering object.
466/// Also, targets can overload any lowering method.
467///
468namespace llvm {
469class SelectionDAGLowering {
470 MachineBasicBlock *CurMBB;
471
Chris Lattner0da331f2007-02-04 01:31:47 +0000472 DenseMap<const Value*, SDOperand> NodeMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000473
Chris Lattnerd3948112005-01-17 22:19:26 +0000474 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
475 /// them up and then emit token factor nodes when possible. This allows us to
476 /// get simple disambiguation between loads without worrying about alias
477 /// analysis.
Dan Gohmana44b6742008-06-30 20:31:15 +0000478 SmallVector<SDOperand, 8> PendingLoads;
Chris Lattnerd3948112005-01-17 22:19:26 +0000479
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000480 /// PendingExports - CopyToReg nodes that copy values to virtual registers
481 /// for export to other blocks need to be emitted before any terminator
482 /// instruction, but they have no other ordering requirements. We bunch them
483 /// up and the emit a single tokenfactor for them just before terminator
484 /// instructions.
485 std::vector<SDOperand> PendingExports;
486
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000487 /// Case - A struct to record the Value for a switch case, and the
488 /// case's target basic block.
489 struct Case {
490 Constant* Low;
491 Constant* High;
492 MachineBasicBlock* BB;
493
494 Case() : Low(0), High(0), BB(0) { }
495 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
496 Low(low), High(high), BB(bb) { }
497 uint64_t size() const {
498 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
499 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
500 return (rHigh - rLow + 1ULL);
501 }
502 };
503
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000504 struct CaseBits {
505 uint64_t Mask;
506 MachineBasicBlock* BB;
507 unsigned Bits;
508
509 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
510 Mask(mask), BB(bb), Bits(bits) { }
511 };
512
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000513 typedef std::vector<Case> CaseVector;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000514 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000515 typedef CaseVector::iterator CaseItr;
516 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemanf15485a2006-03-27 01:32:24 +0000517
518 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
519 /// of conditional branches.
520 struct CaseRec {
521 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
522 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
523
524 /// CaseBB - The MBB in which to emit the compare and branch
525 MachineBasicBlock *CaseBB;
526 /// LT, GE - If nonzero, we know the current case value must be less-than or
527 /// greater-than-or-equal-to these Constants.
528 Constant *LT;
529 Constant *GE;
530 /// Range - A pair of iterators representing the range of case values to be
531 /// processed at this point in the binary search tree.
532 CaseRange Range;
533 };
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000534
535 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000536
537 /// The comparison function for sorting the switch case values in the vector.
538 /// WARNING: Case ranges should be disjoint!
Nate Begemanf15485a2006-03-27 01:32:24 +0000539 struct CaseCmp {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000540 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000541 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
542 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
543 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
544 return CI1->getValue().slt(CI2->getValue());
Nate Begemanf15485a2006-03-27 01:32:24 +0000545 }
546 };
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000547
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000548 struct CaseBitsCmp {
549 bool operator () (const CaseBits& C1, const CaseBits& C2) {
550 return C1.Bits > C2.Bits;
551 }
552 };
553
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000554 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemanf15485a2006-03-27 01:32:24 +0000555
Chris Lattner1c08c712005-01-07 07:47:53 +0000556public:
557 // TLI - This is information that describes the available target features we
558 // need for lowering. This indicates when operations are unavailable,
559 // implemented with a libcall, etc.
560 TargetLowering &TLI;
561 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000562 const TargetData *TD;
Dan Gohman5f43f922007-08-27 16:26:13 +0000563 AliasAnalysis &AA;
Chris Lattner1c08c712005-01-07 07:47:53 +0000564
Nate Begemanf15485a2006-03-27 01:32:24 +0000565 /// SwitchCases - Vector of CaseBlock structures used to communicate
566 /// SwitchInst code generation information.
567 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000568 /// JTCases - Vector of JumpTable structures used to communicate
569 /// SwitchInst code generation information.
570 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000571 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemanf15485a2006-03-27 01:32:24 +0000572
Chris Lattner1c08c712005-01-07 07:47:53 +0000573 /// FuncInfo - Information about the function as a whole.
574 ///
575 FunctionLoweringInfo &FuncInfo;
Gordon Henriksence224772008-01-07 01:30:38 +0000576
577 /// GCI - Garbage collection metadata for the function.
578 CollectorMetadata *GCI;
Chris Lattner1c08c712005-01-07 07:47:53 +0000579
580 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman5f43f922007-08-27 16:26:13 +0000581 AliasAnalysis &aa,
Gordon Henriksence224772008-01-07 01:30:38 +0000582 FunctionLoweringInfo &funcinfo,
583 CollectorMetadata *gci)
Dan Gohman5f43f922007-08-27 16:26:13 +0000584 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksence224772008-01-07 01:30:38 +0000585 FuncInfo(funcinfo), GCI(gci) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000586 }
587
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000588 /// getRoot - Return the current virtual root of the Selection DAG,
589 /// flushing any PendingLoad items. This must be done before emitting
590 /// a store or any other node that may need to be ordered after any
591 /// prior load instructions.
Chris Lattnera651cf62005-01-17 19:43:36 +0000592 ///
593 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000594 if (PendingLoads.empty())
595 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000596
Chris Lattnerd3948112005-01-17 22:19:26 +0000597 if (PendingLoads.size() == 1) {
598 SDOperand Root = PendingLoads[0];
599 DAG.setRoot(Root);
600 PendingLoads.clear();
601 return Root;
602 }
603
604 // Otherwise, we have to make a token factor node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000605 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
606 &PendingLoads[0], PendingLoads.size());
Chris Lattnerd3948112005-01-17 22:19:26 +0000607 PendingLoads.clear();
608 DAG.setRoot(Root);
609 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000610 }
611
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000612 /// getControlRoot - Similar to getRoot, but instead of flushing all the
613 /// PendingLoad items, flush all the PendingExports items. It is necessary
614 /// to do this before emitting a terminator instruction.
615 ///
616 SDOperand getControlRoot() {
617 SDOperand Root = DAG.getRoot();
618
619 if (PendingExports.empty())
620 return Root;
621
622 // Turn all of the CopyToReg chains into one factored node.
623 if (Root.getOpcode() != ISD::EntryToken) {
624 unsigned i = 0, e = PendingExports.size();
625 for (; i != e; ++i) {
626 assert(PendingExports[i].Val->getNumOperands() > 1);
627 if (PendingExports[i].Val->getOperand(0) == Root)
628 break; // Don't add the root if we already indirectly depend on it.
629 }
630
631 if (i == e)
632 PendingExports.push_back(Root);
633 }
634
635 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
636 &PendingExports[0],
637 PendingExports.size());
638 PendingExports.clear();
639 DAG.setRoot(Root);
640 return Root;
641 }
642
643 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Chris Lattner571e4342006-10-27 21:36:01 +0000644
Chris Lattner1c08c712005-01-07 07:47:53 +0000645 void visit(Instruction &I) { visit(I.getOpcode(), I); }
646
647 void visit(unsigned Opcode, User &I) {
Chris Lattner1e7aa5c2006-11-10 04:41:34 +0000648 // Note: this doesn't use InstVisitor, because it has to work with
649 // ConstantExpr's in addition to instructions.
Chris Lattner1c08c712005-01-07 07:47:53 +0000650 switch (Opcode) {
651 default: assert(0 && "Unknown instruction type encountered!");
652 abort();
653 // Build the switch statement using the Instruction.def file.
654#define HANDLE_INST(NUM, OPCODE, CLASS) \
655 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
656#include "llvm/Instruction.def"
657 }
658 }
659
660 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
661
Chris Lattner199862b2006-03-16 19:57:50 +0000662 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000663
Chris Lattner0da331f2007-02-04 01:31:47 +0000664 void setValue(const Value *V, SDOperand NewN) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000665 SDOperand &N = NodeMap[V];
666 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner0da331f2007-02-04 01:31:47 +0000667 N = NewN;
Chris Lattner1c08c712005-01-07 07:47:53 +0000668 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000669
Evan Cheng5c807602008-02-26 02:33:44 +0000670 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnere7cf56a2007-04-30 21:11:17 +0000671 std::set<unsigned> &OutputRegs,
672 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000673
Chris Lattner571e4342006-10-27 21:36:01 +0000674 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
675 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
676 unsigned Opc);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000677 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattner571e4342006-10-27 21:36:01 +0000678 void ExportFromCurrentBlock(Value *V);
Duncan Sands6f74b482007-12-19 09:48:52 +0000679 void LowerCallTo(CallSite CS, SDOperand Callee, bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000680 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsdc024672007-11-27 13:23:08 +0000681
Chris Lattner1c08c712005-01-07 07:47:53 +0000682 // Terminator instructions.
683 void visitRet(ReturnInst &I);
684 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000685 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000686 void visitUnreachable(UnreachableInst &I) { /* noop */ }
687
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000688 // Helpers for visitSwitch
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000689 bool handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000690 CaseRecVector& WorkList,
691 Value* SV,
692 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000693 bool handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000694 CaseRecVector& WorkList,
695 Value* SV,
696 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000697 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000698 CaseRecVector& WorkList,
699 Value* SV,
700 MachineBasicBlock* Default);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000701 bool handleBitTestsSwitchCase(CaseRec& CR,
702 CaseRecVector& WorkList,
703 Value* SV,
704 MachineBasicBlock* Default);
Nate Begemanf15485a2006-03-27 01:32:24 +0000705 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000706 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
707 void visitBitTestCase(MachineBasicBlock* NextMBB,
708 unsigned Reg,
709 SelectionDAGISel::BitTestCase &B);
Nate Begeman37efe672006-04-22 18:53:45 +0000710 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000711 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
712 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemanf15485a2006-03-27 01:32:24 +0000713
Chris Lattner1c08c712005-01-07 07:47:53 +0000714 // These all get lowered before this pass.
Jim Laskeyb180aa12007-02-21 22:53:45 +0000715 void visitInvoke(InvokeInst &I);
716 void visitUnwind(UnwindInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000717
Dan Gohman7f321562007-06-25 16:23:39 +0000718 void visitBinary(User &I, unsigned OpCode);
Nate Begemane21ea612005-11-18 07:42:56 +0000719 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000720 void visitAdd(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000721 if (I.getType()->isFPOrFPVector())
722 visitBinary(I, ISD::FADD);
Reid Spencer1628cec2006-10-26 06:15:43 +0000723 else
Dan Gohman7f321562007-06-25 16:23:39 +0000724 visitBinary(I, ISD::ADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000725 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000726 void visitSub(User &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000727 void visitMul(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000728 if (I.getType()->isFPOrFPVector())
729 visitBinary(I, ISD::FMUL);
Reid Spencer1628cec2006-10-26 06:15:43 +0000730 else
Dan Gohman7f321562007-06-25 16:23:39 +0000731 visitBinary(I, ISD::MUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000732 }
Dan Gohman7f321562007-06-25 16:23:39 +0000733 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
734 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
735 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
736 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
737 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
738 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
739 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
740 void visitOr (User &I) { visitBinary(I, ISD::OR); }
741 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer24d6da52007-01-21 00:29:26 +0000742 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencer3822ff52006-11-08 06:47:33 +0000743 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
744 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000745 void visitICmp(User &I);
746 void visitFCmp(User &I);
Nate Begemanb43e9c12008-05-12 19:40:03 +0000747 void visitVICmp(User &I);
748 void visitVFCmp(User &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000749 // Visit the conversion instructions
750 void visitTrunc(User &I);
751 void visitZExt(User &I);
752 void visitSExt(User &I);
753 void visitFPTrunc(User &I);
754 void visitFPExt(User &I);
755 void visitFPToUI(User &I);
756 void visitFPToSI(User &I);
757 void visitUIToFP(User &I);
758 void visitSIToFP(User &I);
759 void visitPtrToInt(User &I);
760 void visitIntToPtr(User &I);
761 void visitBitCast(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000762
Chris Lattner2bbd8102006-03-29 00:11:43 +0000763 void visitExtractElement(User &I);
764 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000765 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000766
Dan Gohman1d685a42008-06-07 02:02:36 +0000767 void visitExtractValue(ExtractValueInst &I);
768 void visitInsertValue(InsertValueInst &I);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000769
Chris Lattner1c08c712005-01-07 07:47:53 +0000770 void visitGetElementPtr(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000771 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000772
773 void visitMalloc(MallocInst &I);
774 void visitFree(FreeInst &I);
775 void visitAlloca(AllocaInst &I);
776 void visitLoad(LoadInst &I);
777 void visitStore(StoreInst &I);
778 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
779 void visitCall(CallInst &I);
Duncan Sandsfd7b3262007-12-17 18:08:19 +0000780 void visitInlineAsm(CallSite CS);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000781 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000782 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000783
Chris Lattner1c08c712005-01-07 07:47:53 +0000784 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000785 void visitVAArg(VAArgInst &I);
786 void visitVAEnd(CallInst &I);
787 void visitVACopy(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000788
Dan Gohmanef5d1942008-03-11 21:11:25 +0000789 void visitGetResult(GetResultInst &I);
Devang Patel40a04212008-02-19 22:15:16 +0000790
Chris Lattner1c08c712005-01-07 07:47:53 +0000791 void visitUserOp1(Instruction &I) {
792 assert(0 && "UserOp1 should not exist at instruction selection time!");
793 abort();
794 }
795 void visitUserOp2(Instruction &I) {
796 assert(0 && "UserOp2 should not exist at instruction selection time!");
797 abort();
798 }
Mon P Wang63307c32008-05-05 19:05:59 +0000799
800private:
801 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
802
Chris Lattner1c08c712005-01-07 07:47:53 +0000803};
804} // end namespace llvm
805
Dan Gohman6183f782007-07-05 20:12:34 +0000806
Duncan Sandsb988bac2008-02-11 20:58:28 +0000807/// getCopyFromParts - Create a value that contains the specified legal parts
808/// combined into the value they represent. If the parts combine to a type
809/// larger then ValueVT then AssertOp can be used to specify whether the extra
810/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattner4468c1f2008-03-09 09:38:46 +0000811/// (ISD::AssertSext).
Dan Gohman6183f782007-07-05 20:12:34 +0000812static SDOperand getCopyFromParts(SelectionDAG &DAG,
813 const SDOperand *Parts,
814 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000815 MVT PartVT,
816 MVT ValueVT,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000817 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000818 assert(NumParts > 0 && "No parts to assemble!");
819 TargetLowering &TLI = DAG.getTargetLoweringInfo();
820 SDOperand Val = Parts[0];
Dan Gohman6183f782007-07-05 20:12:34 +0000821
Duncan Sands014e04a2008-02-12 20:46:31 +0000822 if (NumParts > 1) {
823 // Assemble the value from multiple parts.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000824 if (!ValueVT.isVector()) {
825 unsigned PartBits = PartVT.getSizeInBits();
826 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohman6183f782007-07-05 20:12:34 +0000827
Duncan Sands014e04a2008-02-12 20:46:31 +0000828 // Assemble the power of 2 part.
829 unsigned RoundParts = NumParts & (NumParts - 1) ?
830 1 << Log2_32(NumParts) : NumParts;
831 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000832 MVT RoundVT = RoundBits == ValueBits ?
833 ValueVT : MVT::getIntegerVT(RoundBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000834 SDOperand Lo, Hi;
835
836 if (RoundParts > 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000837 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands014e04a2008-02-12 20:46:31 +0000838 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
839 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
840 PartVT, HalfVT);
Dan Gohman6183f782007-07-05 20:12:34 +0000841 } else {
Duncan Sands014e04a2008-02-12 20:46:31 +0000842 Lo = Parts[0];
843 Hi = Parts[1];
Dan Gohman6183f782007-07-05 20:12:34 +0000844 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000845 if (TLI.isBigEndian())
846 std::swap(Lo, Hi);
847 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
848
849 if (RoundParts < NumParts) {
850 // Assemble the trailing non-power-of-2 part.
851 unsigned OddParts = NumParts - RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000852 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000853 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
854
855 // Combine the round and odd parts.
856 Lo = Val;
857 if (TLI.isBigEndian())
858 std::swap(Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000859 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000860 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
861 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000862 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands014e04a2008-02-12 20:46:31 +0000863 TLI.getShiftAmountTy()));
864 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
865 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
866 }
867 } else {
868 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000869 MVT IntermediateVT, RegisterVT;
Duncan Sands014e04a2008-02-12 20:46:31 +0000870 unsigned NumIntermediates;
871 unsigned NumRegs =
872 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
873 RegisterVT);
Duncan Sands014e04a2008-02-12 20:46:31 +0000874 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +0000875 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands014e04a2008-02-12 20:46:31 +0000876 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
877 assert(RegisterVT == Parts[0].getValueType() &&
878 "Part type doesn't match part!");
879
880 // Assemble the parts into intermediate operands.
881 SmallVector<SDOperand, 8> Ops(NumIntermediates);
882 if (NumIntermediates == NumParts) {
883 // If the register was not expanded, truncate or copy the value,
884 // as appropriate.
885 for (unsigned i = 0; i != NumParts; ++i)
886 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
887 PartVT, IntermediateVT);
888 } else if (NumParts > 0) {
889 // If the intermediate type was expanded, build the intermediate operands
890 // from the parts.
891 assert(NumParts % NumIntermediates == 0 &&
892 "Must expand into a divisible number of parts!");
893 unsigned Factor = NumParts / NumIntermediates;
894 for (unsigned i = 0; i != NumIntermediates; ++i)
895 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
896 PartVT, IntermediateVT);
897 }
898
899 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
900 // operands.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000901 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands014e04a2008-02-12 20:46:31 +0000902 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
903 ValueVT, &Ops[0], NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +0000904 }
Dan Gohman6183f782007-07-05 20:12:34 +0000905 }
906
Duncan Sands014e04a2008-02-12 20:46:31 +0000907 // There is now one part, held in Val. Correct it to match ValueVT.
908 PartVT = Val.getValueType();
Dan Gohman6183f782007-07-05 20:12:34 +0000909
Duncan Sands014e04a2008-02-12 20:46:31 +0000910 if (PartVT == ValueVT)
911 return Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000912
Duncan Sands83ec4b62008-06-06 12:08:01 +0000913 if (PartVT.isVector()) {
914 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands014e04a2008-02-12 20:46:31 +0000915 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000916 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000917
Duncan Sands83ec4b62008-06-06 12:08:01 +0000918 if (ValueVT.isVector()) {
919 assert(ValueVT.getVectorElementType() == PartVT &&
920 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +0000921 "Only trivial scalar-to-vector conversions should get here!");
922 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
923 }
924
Duncan Sands83ec4b62008-06-06 12:08:01 +0000925 if (PartVT.isInteger() &&
926 ValueVT.isInteger()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000927 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000928 // For a truncate, see if we have any information to
929 // indicate whether the truncated bits will always be
930 // zero or sign-extension.
931 if (AssertOp != ISD::DELETED_NODE)
932 Val = DAG.getNode(AssertOp, PartVT, Val,
933 DAG.getValueType(ValueVT));
934 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
935 } else {
936 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
937 }
938 }
939
Duncan Sands83ec4b62008-06-06 12:08:01 +0000940 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000941 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattner4468c1f2008-03-09 09:38:46 +0000942 // FP_ROUND's are always exact here.
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000943 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000944 DAG.getIntPtrConstant(1));
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000945 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
946 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000947
Duncan Sands83ec4b62008-06-06 12:08:01 +0000948 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands014e04a2008-02-12 20:46:31 +0000949 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
950
951 assert(0 && "Unknown mismatch!");
Chris Lattnerd27c9912008-03-30 18:22:13 +0000952 return SDOperand();
Dan Gohman6183f782007-07-05 20:12:34 +0000953}
954
Duncan Sandsb988bac2008-02-11 20:58:28 +0000955/// getCopyToParts - Create a series of nodes that contain the specified value
956/// split into legal parts. If the parts contain more bits than Val, then, for
957/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohman6183f782007-07-05 20:12:34 +0000958static void getCopyToParts(SelectionDAG &DAG,
959 SDOperand Val,
960 SDOperand *Parts,
961 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000962 MVT PartVT,
Duncan Sandsb988bac2008-02-11 20:58:28 +0000963 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohman25ac7e82007-08-10 14:59:38 +0000964 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000965 MVT PtrVT = TLI.getPointerTy();
966 MVT ValueVT = Val.getValueType();
967 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands014e04a2008-02-12 20:46:31 +0000968 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohman6183f782007-07-05 20:12:34 +0000969
Duncan Sands014e04a2008-02-12 20:46:31 +0000970 if (!NumParts)
971 return;
972
Duncan Sands83ec4b62008-06-06 12:08:01 +0000973 if (!ValueVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000974 if (PartVT == ValueVT) {
975 assert(NumParts == 1 && "No-op copy with multiple parts!");
976 Parts[0] = Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000977 return;
978 }
979
Duncan Sands83ec4b62008-06-06 12:08:01 +0000980 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000981 // If the parts cover more bits than the value has, promote the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000982 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000983 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohman6183f782007-07-05 20:12:34 +0000984 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000985 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
986 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000987 Val = DAG.getNode(ExtendKind, ValueVT, Val);
988 } else {
989 assert(0 && "Unknown mismatch!");
990 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000991 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000992 // Different types of the same size.
993 assert(NumParts == 1 && PartVT != ValueVT);
994 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000995 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000996 // If the parts cover less bits than value has, truncate the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000997 if (PartVT.isInteger() && ValueVT.isInteger()) {
998 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000999 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +00001000 } else {
1001 assert(0 && "Unknown mismatch!");
1002 }
1003 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001004
1005 // The value may have changed - recompute ValueVT.
1006 ValueVT = Val.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001007 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001008 "Failed to tile the value with PartVT!");
1009
1010 if (NumParts == 1) {
1011 assert(PartVT == ValueVT && "Type conversion failed!");
1012 Parts[0] = Val;
1013 return;
1014 }
1015
1016 // Expand the value into multiple parts.
1017 if (NumParts & (NumParts - 1)) {
1018 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001019 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001020 "Do not know what to expand to!");
1021 unsigned RoundParts = 1 << Log2_32(NumParts);
1022 unsigned RoundBits = RoundParts * PartBits;
1023 unsigned OddParts = NumParts - RoundParts;
1024 SDOperand OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
1025 DAG.getConstant(RoundBits,
1026 TLI.getShiftAmountTy()));
1027 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1028 if (TLI.isBigEndian())
1029 // The odd parts were reversed by getCopyToParts - unreverse them.
1030 std::reverse(Parts + RoundParts, Parts + NumParts);
1031 NumParts = RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001032 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001033 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1034 }
1035
1036 // The number of parts is a power of 2. Repeatedly bisect the value using
1037 // EXTRACT_ELEMENT.
Duncan Sands25eb0432008-03-12 20:30:08 +00001038 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001039 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sands25eb0432008-03-12 20:30:08 +00001040 Val);
Duncan Sands014e04a2008-02-12 20:46:31 +00001041 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1042 for (unsigned i = 0; i < NumParts; i += StepSize) {
1043 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001044 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Duncan Sands25eb0432008-03-12 20:30:08 +00001045 SDOperand &Part0 = Parts[i];
1046 SDOperand &Part1 = Parts[i+StepSize/2];
Duncan Sands014e04a2008-02-12 20:46:31 +00001047
Duncan Sands25eb0432008-03-12 20:30:08 +00001048 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1049 DAG.getConstant(1, PtrVT));
1050 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1051 DAG.getConstant(0, PtrVT));
1052
1053 if (ThisBits == PartBits && ThisVT != PartVT) {
1054 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1055 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1056 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001057 }
1058 }
1059
1060 if (TLI.isBigEndian())
1061 std::reverse(Parts, Parts + NumParts);
1062
1063 return;
1064 }
1065
1066 // Vector ValueVT.
1067 if (NumParts == 1) {
1068 if (PartVT != ValueVT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001069 if (PartVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001070 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1071 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001072 assert(ValueVT.getVectorElementType() == PartVT &&
1073 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001074 "Only trivial vector-to-scalar conversions should get here!");
1075 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1076 DAG.getConstant(0, PtrVT));
1077 }
1078 }
1079
Dan Gohman6183f782007-07-05 20:12:34 +00001080 Parts[0] = Val;
1081 return;
1082 }
1083
1084 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001085 MVT IntermediateVT, RegisterVT;
Dan Gohman6183f782007-07-05 20:12:34 +00001086 unsigned NumIntermediates;
1087 unsigned NumRegs =
1088 DAG.getTargetLoweringInfo()
1089 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1090 RegisterVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001091 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohman6183f782007-07-05 20:12:34 +00001092
1093 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +00001094 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohman6183f782007-07-05 20:12:34 +00001095 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1096
1097 // Split the vector into intermediate operands.
1098 SmallVector<SDOperand, 8> Ops(NumIntermediates);
1099 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001100 if (IntermediateVT.isVector())
Dan Gohman6183f782007-07-05 20:12:34 +00001101 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1102 IntermediateVT, Val,
1103 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohman25ac7e82007-08-10 14:59:38 +00001104 PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001105 else
1106 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1107 IntermediateVT, Val,
Dan Gohman25ac7e82007-08-10 14:59:38 +00001108 DAG.getConstant(i, PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001109
1110 // Split the intermediate operands into legal parts.
1111 if (NumParts == NumIntermediates) {
1112 // If the register was not expanded, promote or copy the value,
1113 // as appropriate.
1114 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001115 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001116 } else if (NumParts > 0) {
1117 // If the intermediate type was expanded, split each the value into
1118 // legal parts.
1119 assert(NumParts % NumIntermediates == 0 &&
1120 "Must expand into a divisible number of parts!");
1121 unsigned Factor = NumParts / NumIntermediates;
1122 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001123 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001124 }
1125}
1126
1127
Chris Lattner199862b2006-03-16 19:57:50 +00001128SDOperand SelectionDAGLowering::getValue(const Value *V) {
1129 SDOperand &N = NodeMap[V];
1130 if (N.Val) return N;
1131
Chris Lattner199862b2006-03-16 19:57:50 +00001132 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001133 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001134
1135 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1136 return N = DAG.getConstant(CI->getValue(), VT);
1137
1138 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001139 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001140
1141 if (isa<ConstantPointerNull>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001142 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001143
1144 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1145 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1146
Dan Gohman1d685a42008-06-07 02:02:36 +00001147 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1148 !V->getType()->isAggregateType())
Chris Lattner6833b062008-04-28 07:16:35 +00001149 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001150
1151 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1152 visit(CE->getOpcode(), *CE);
1153 SDOperand N1 = NodeMap[V];
1154 assert(N1.Val && "visit didn't populate the ValueMap!");
1155 return N1;
1156 }
1157
Dan Gohman1d685a42008-06-07 02:02:36 +00001158 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1159 SmallVector<SDOperand, 4> Constants;
Dan Gohman1d685a42008-06-07 02:02:36 +00001160 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1161 OI != OE; ++OI) {
1162 SDNode *Val = getValue(*OI).Val;
Duncan Sands4bdcb612008-07-02 17:40:58 +00001163 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +00001164 Constants.push_back(SDOperand(Val, i));
Dan Gohman1d685a42008-06-07 02:02:36 +00001165 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001166 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001167 }
1168
1169 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1170 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1171 "Unknown array constant!");
1172 unsigned NumElts = ATy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001173 if (NumElts == 0)
1174 return SDOperand(); // empty array
Dan Gohman1d685a42008-06-07 02:02:36 +00001175 MVT EltVT = TLI.getValueType(ATy->getElementType());
1176 SmallVector<SDOperand, 4> Constants(NumElts);
Dan Gohman1d685a42008-06-07 02:02:36 +00001177 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1178 if (isa<UndefValue>(C))
1179 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1180 else if (EltVT.isFloatingPoint())
1181 Constants[i] = DAG.getConstantFP(0, EltVT);
1182 else
1183 Constants[i] = DAG.getConstant(0, EltVT);
1184 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001185 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001186 }
1187
1188 if (const StructType *STy = dyn_cast<StructType>(C->getType())) {
1189 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1190 "Unknown struct constant!");
1191 unsigned NumElts = STy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001192 if (NumElts == 0)
1193 return SDOperand(); // empty struct
Dan Gohman1d685a42008-06-07 02:02:36 +00001194 SmallVector<SDOperand, 4> Constants(NumElts);
Dan Gohman1d685a42008-06-07 02:02:36 +00001195 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1196 MVT EltVT = TLI.getValueType(STy->getElementType(i));
Dan Gohman1d685a42008-06-07 02:02:36 +00001197 if (isa<UndefValue>(C))
1198 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1199 else if (EltVT.isFloatingPoint())
1200 Constants[i] = DAG.getConstantFP(0, EltVT);
1201 else
1202 Constants[i] = DAG.getConstant(0, EltVT);
1203 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001204 return DAG.getMergeValues(&Constants[0], Constants.size());
Dan Gohman1d685a42008-06-07 02:02:36 +00001205 }
1206
Chris Lattner6833b062008-04-28 07:16:35 +00001207 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001208 unsigned NumElements = VecTy->getNumElements();
Chris Lattnerb606dba2008-04-28 06:44:42 +00001209
Chris Lattner6833b062008-04-28 07:16:35 +00001210 // Now that we know the number and type of the elements, get that number of
1211 // elements into the Ops array based on what kind of constant it is.
1212 SmallVector<SDOperand, 16> Ops;
Chris Lattnerb606dba2008-04-28 06:44:42 +00001213 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1214 for (unsigned i = 0; i != NumElements; ++i)
1215 Ops.push_back(getValue(CP->getOperand(i)));
1216 } else {
Chris Lattner6833b062008-04-28 07:16:35 +00001217 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1218 "Unknown vector constant!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001219 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner6833b062008-04-28 07:16:35 +00001220
Chris Lattnerb606dba2008-04-28 06:44:42 +00001221 SDOperand Op;
Chris Lattner6833b062008-04-28 07:16:35 +00001222 if (isa<UndefValue>(C))
1223 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001224 else if (EltVT.isFloatingPoint())
Chris Lattner6833b062008-04-28 07:16:35 +00001225 Op = DAG.getConstantFP(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001226 else
Chris Lattner6833b062008-04-28 07:16:35 +00001227 Op = DAG.getConstant(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001228 Ops.assign(NumElements, Op);
1229 }
1230
1231 // Create a BUILD_VECTOR node.
1232 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner199862b2006-03-16 19:57:50 +00001233 }
1234
Chris Lattnerb606dba2008-04-28 06:44:42 +00001235 // If this is a static alloca, generate it as the frameindex instead of
1236 // computation.
Chris Lattner199862b2006-03-16 19:57:50 +00001237 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1238 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattnerb606dba2008-04-28 06:44:42 +00001239 FuncInfo.StaticAllocaMap.find(AI);
Chris Lattner199862b2006-03-16 19:57:50 +00001240 if (SI != FuncInfo.StaticAllocaMap.end())
1241 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1242 }
1243
Chris Lattner251db182007-02-25 18:40:32 +00001244 unsigned InReg = FuncInfo.ValueMap[V];
1245 assert(InReg && "Value not in map!");
Chris Lattner199862b2006-03-16 19:57:50 +00001246
Chris Lattner6833b062008-04-28 07:16:35 +00001247 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001248 SDOperand Chain = DAG.getEntryNode();
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001249 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner199862b2006-03-16 19:57:50 +00001250}
1251
1252
Chris Lattner1c08c712005-01-07 07:47:53 +00001253void SelectionDAGLowering::visitRet(ReturnInst &I) {
1254 if (I.getNumOperands() == 0) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001255 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001256 return;
1257 }
Chris Lattnerb606dba2008-04-28 06:44:42 +00001258
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001259 SmallVector<SDOperand, 8> NewValues;
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001260 NewValues.push_back(getControlRoot());
1261 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Nate Begemanee625572006-01-27 21:09:22 +00001262 SDOperand RetOp = getValue(I.getOperand(i));
Duncan Sandsb988bac2008-02-11 20:58:28 +00001263
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001264 SmallVector<MVT, 4> ValueVTs;
1265 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1266 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1267 MVT VT = ValueVTs[j];
Duncan Sandsb988bac2008-02-11 20:58:28 +00001268
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001269 // FIXME: C calling convention requires the return type to be promoted to
1270 // at least 32-bit. But this is not necessary for non-C calling conventions.
1271 if (VT.isInteger()) {
1272 MVT MinVT = TLI.getRegisterType(MVT::i32);
1273 if (VT.bitsLT(MinVT))
1274 VT = MinVT;
1275 }
Duncan Sandsb988bac2008-02-11 20:58:28 +00001276
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001277 unsigned NumParts = TLI.getNumRegisters(VT);
1278 MVT PartVT = TLI.getRegisterType(VT);
1279 SmallVector<SDOperand, 4> Parts(NumParts);
1280 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1281
1282 const Function *F = I.getParent()->getParent();
1283 if (F->paramHasAttr(0, ParamAttr::SExt))
1284 ExtendKind = ISD::SIGN_EXTEND;
1285 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1286 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00001287
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001288 getCopyToParts(DAG, SDOperand(RetOp.Val, RetOp.ResNo + j),
1289 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00001290
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001291 for (unsigned i = 0; i < NumParts; ++i) {
1292 NewValues.push_back(Parts[i]);
1293 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1294 }
Nate Begemanee625572006-01-27 21:09:22 +00001295 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001296 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001297 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1298 &NewValues[0], NewValues.size()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001299}
1300
Chris Lattner571e4342006-10-27 21:36:01 +00001301/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1302/// the current basic block, add it to ValueMap now so that we'll get a
1303/// CopyTo/FromReg.
1304void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1305 // No need to export constants.
1306 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1307
1308 // Already exported?
1309 if (FuncInfo.isExportedInst(V)) return;
1310
1311 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001312 CopyValueToVirtualRegister(V, Reg);
Chris Lattner571e4342006-10-27 21:36:01 +00001313}
1314
Chris Lattner8c494ab2006-10-27 23:50:33 +00001315bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1316 const BasicBlock *FromBB) {
1317 // The operands of the setcc have to be in this block. We don't know
1318 // how to export them from some other block.
1319 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1320 // Can export from current BB.
1321 if (VI->getParent() == FromBB)
1322 return true;
1323
1324 // Is already exported, noop.
1325 return FuncInfo.isExportedInst(V);
1326 }
1327
1328 // If this is an argument, we can export it if the BB is the entry block or
1329 // if it is already exported.
1330 if (isa<Argument>(V)) {
1331 if (FromBB == &FromBB->getParent()->getEntryBlock())
1332 return true;
1333
1334 // Otherwise, can only export this if it is already exported.
1335 return FuncInfo.isExportedInst(V);
1336 }
1337
1338 // Otherwise, constants can always be exported.
1339 return true;
1340}
1341
Chris Lattner6a586c82006-10-29 21:01:20 +00001342static bool InBlock(const Value *V, const BasicBlock *BB) {
1343 if (const Instruction *I = dyn_cast<Instruction>(V))
1344 return I->getParent() == BB;
1345 return true;
1346}
1347
Chris Lattner571e4342006-10-27 21:36:01 +00001348/// FindMergedConditions - If Cond is an expression like
1349void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1350 MachineBasicBlock *TBB,
1351 MachineBasicBlock *FBB,
1352 MachineBasicBlock *CurBB,
1353 unsigned Opc) {
Chris Lattner571e4342006-10-27 21:36:01 +00001354 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001355 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattner571e4342006-10-27 21:36:01 +00001356
Reid Spencere4d87aa2006-12-23 06:05:41 +00001357 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1358 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattner6a586c82006-10-29 21:01:20 +00001359 BOp->getParent() != CurBB->getBasicBlock() ||
1360 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1361 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattner571e4342006-10-27 21:36:01 +00001362 const BasicBlock *BB = CurBB->getBasicBlock();
1363
Reid Spencere4d87aa2006-12-23 06:05:41 +00001364 // If the leaf of the tree is a comparison, merge the condition into
1365 // the caseblock.
1366 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1367 // The operands of the cmp have to be in this block. We don't know
Chris Lattner5a145f02006-10-29 18:23:37 +00001368 // how to export them from some other block. If this is the first block
1369 // of the sequence, no exporting is needed.
1370 (CurBB == CurMBB ||
1371 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1372 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001373 BOp = cast<Instruction>(Cond);
1374 ISD::CondCode Condition;
1375 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1376 switch (IC->getPredicate()) {
1377 default: assert(0 && "Unknown icmp predicate opcode!");
1378 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1379 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1380 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1381 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1382 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1383 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1384 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1385 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1386 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1387 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1388 }
1389 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1390 ISD::CondCode FPC, FOC;
1391 switch (FC->getPredicate()) {
1392 default: assert(0 && "Unknown fcmp predicate opcode!");
1393 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1394 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1395 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1396 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1397 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1398 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1399 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner6bf30ab2008-05-01 07:26:11 +00001400 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1401 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001402 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1403 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1404 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1405 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1406 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1407 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1408 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1409 }
1410 if (FiniteOnlyFPMath())
1411 Condition = FOC;
1412 else
1413 Condition = FPC;
1414 } else {
Chris Lattner0da331f2007-02-04 01:31:47 +00001415 Condition = ISD::SETEQ; // silence warning.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001416 assert(0 && "Unknown compare instruction");
Chris Lattner571e4342006-10-27 21:36:01 +00001417 }
1418
Chris Lattner571e4342006-10-27 21:36:01 +00001419 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001420 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001421 SwitchCases.push_back(CB);
1422 return;
1423 }
1424
1425 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001426 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001427 NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001428 SwitchCases.push_back(CB);
Chris Lattner571e4342006-10-27 21:36:01 +00001429 return;
1430 }
1431
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001432
1433 // Create TmpBB after CurBB.
Chris Lattner571e4342006-10-27 21:36:01 +00001434 MachineFunction::iterator BBI = CurBB;
Dan Gohman0e5f1302008-07-07 23:02:41 +00001435 MachineFunction &MF = DAG.getMachineFunction();
1436 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1437 CurBB->getParent()->insert(++BBI, TmpBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001438
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001439 if (Opc == Instruction::Or) {
1440 // Codegen X | Y as:
1441 // jmp_if_X TBB
1442 // jmp TmpBB
1443 // TmpBB:
1444 // jmp_if_Y TBB
1445 // jmp FBB
1446 //
Chris Lattner571e4342006-10-27 21:36:01 +00001447
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001448 // Emit the LHS condition.
1449 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1450
1451 // Emit the RHS condition into TmpBB.
1452 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1453 } else {
1454 assert(Opc == Instruction::And && "Unknown merge op!");
1455 // Codegen X & Y as:
1456 // jmp_if_X TmpBB
1457 // jmp FBB
1458 // TmpBB:
1459 // jmp_if_Y TBB
1460 // jmp FBB
1461 //
1462 // This requires creation of TmpBB after CurBB.
1463
1464 // Emit the LHS condition.
1465 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1466
1467 // Emit the RHS condition into TmpBB.
1468 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1469 }
Chris Lattner571e4342006-10-27 21:36:01 +00001470}
1471
Chris Lattnerdf19f272006-10-31 22:37:42 +00001472/// If the set of cases should be emitted as a series of branches, return true.
1473/// If we should emit this as a bunch of and/or'd together conditions, return
1474/// false.
1475static bool
1476ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1477 if (Cases.size() != 2) return true;
1478
Chris Lattner0ccb5002006-10-31 23:06:00 +00001479 // If this is two comparisons of the same values or'd or and'd together, they
1480 // will get folded into a single comparison, so don't emit two blocks.
1481 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1482 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1483 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1484 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1485 return false;
1486 }
1487
Chris Lattnerdf19f272006-10-31 22:37:42 +00001488 return true;
1489}
1490
Chris Lattner1c08c712005-01-07 07:47:53 +00001491void SelectionDAGLowering::visitBr(BranchInst &I) {
1492 // Update machine-CFG edges.
1493 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner1c08c712005-01-07 07:47:53 +00001494
1495 // Figure out which block is immediately after the current one.
1496 MachineBasicBlock *NextBlock = 0;
1497 MachineFunction::iterator BBI = CurMBB;
1498 if (++BBI != CurMBB->getParent()->end())
1499 NextBlock = BBI;
1500
1501 if (I.isUnconditional()) {
Owen Anderson2d389e82008-06-07 00:00:23 +00001502 // Update machine-CFG edges.
1503 CurMBB->addSuccessor(Succ0MBB);
1504
Chris Lattner1c08c712005-01-07 07:47:53 +00001505 // If this is not a fall-through branch, emit the branch.
1506 if (Succ0MBB != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001507 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001508 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner57ab6592006-10-24 17:57:59 +00001509 return;
1510 }
1511
1512 // If this condition is one of the special cases we handle, do special stuff
1513 // now.
1514 Value *CondVal = I.getCondition();
Chris Lattner57ab6592006-10-24 17:57:59 +00001515 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattner571e4342006-10-27 21:36:01 +00001516
1517 // If this is a series of conditions that are or'd or and'd together, emit
1518 // this as a sequence of branches instead of setcc's with and/or operations.
1519 // For example, instead of something like:
1520 // cmp A, B
1521 // C = seteq
1522 // cmp D, E
1523 // F = setle
1524 // or C, F
1525 // jnz foo
1526 // Emit:
1527 // cmp A, B
1528 // je foo
1529 // cmp D, E
1530 // jle foo
1531 //
1532 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1533 if (BOp->hasOneUse() &&
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001534 (BOp->getOpcode() == Instruction::And ||
Chris Lattner571e4342006-10-27 21:36:01 +00001535 BOp->getOpcode() == Instruction::Or)) {
1536 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattner0ccb5002006-10-31 23:06:00 +00001537 // If the compares in later blocks need to use values not currently
1538 // exported from this block, export them now. This block should always
1539 // be the first entry.
1540 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1541
Chris Lattnerdf19f272006-10-31 22:37:42 +00001542 // Allow some cases to be rejected.
1543 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattnerdf19f272006-10-31 22:37:42 +00001544 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1545 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1546 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1547 }
1548
1549 // Emit the branch for this block.
1550 visitSwitchCase(SwitchCases[0]);
1551 SwitchCases.erase(SwitchCases.begin());
1552 return;
Chris Lattner5a145f02006-10-29 18:23:37 +00001553 }
1554
Chris Lattner0ccb5002006-10-31 23:06:00 +00001555 // Okay, we decided not to do this, remove any inserted MBB's and clear
1556 // SwitchCases.
1557 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0e5f1302008-07-07 23:02:41 +00001558 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Chris Lattner0ccb5002006-10-31 23:06:00 +00001559
Chris Lattnerdf19f272006-10-31 22:37:42 +00001560 SwitchCases.clear();
Chris Lattner571e4342006-10-27 21:36:01 +00001561 }
1562 }
Chris Lattner24525952006-10-24 18:07:37 +00001563
1564 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001565 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001566 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner24525952006-10-24 18:07:37 +00001567 // Use visitSwitchCase to actually insert the fast branch sequence for this
1568 // cond branch.
1569 visitSwitchCase(CB);
Chris Lattner1c08c712005-01-07 07:47:53 +00001570}
1571
Nate Begemanf15485a2006-03-27 01:32:24 +00001572/// visitSwitchCase - Emits the necessary code to represent a single node in
1573/// the binary search tree resulting from lowering a switch instruction.
1574void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Chris Lattner57ab6592006-10-24 17:57:59 +00001575 SDOperand Cond;
1576 SDOperand CondLHS = getValue(CB.CmpLHS);
1577
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001578 // Build the setcc now.
1579 if (CB.CmpMHS == NULL) {
1580 // Fold "(X == true)" to X and "(X == false)" to !X to
1581 // handle common cases produced by branch lowering.
1582 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1583 Cond = CondLHS;
1584 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1585 SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1586 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1587 } else
1588 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1589 } else {
1590 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001591
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001592 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1593 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1594
1595 SDOperand CmpOp = getValue(CB.CmpMHS);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001596 MVT VT = CmpOp.getValueType();
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001597
1598 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1599 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1600 } else {
1601 SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1602 Cond = DAG.getSetCC(MVT::i1, SUB,
1603 DAG.getConstant(High-Low, VT), ISD::SETULE);
1604 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001605 }
1606
Owen Anderson2d389e82008-06-07 00:00:23 +00001607 // Update successor info
1608 CurMBB->addSuccessor(CB.TrueBB);
1609 CurMBB->addSuccessor(CB.FalseBB);
1610
Nate Begemanf15485a2006-03-27 01:32:24 +00001611 // Set NextBlock to be the MBB immediately after the current one, if any.
1612 // This is used to avoid emitting unnecessary branches to the next block.
1613 MachineBasicBlock *NextBlock = 0;
1614 MachineFunction::iterator BBI = CurMBB;
1615 if (++BBI != CurMBB->getParent()->end())
1616 NextBlock = BBI;
1617
1618 // If the lhs block is the next block, invert the condition so that we can
1619 // fall through to the lhs instead of the rhs block.
Chris Lattner57ab6592006-10-24 17:57:59 +00001620 if (CB.TrueBB == NextBlock) {
1621 std::swap(CB.TrueBB, CB.FalseBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00001622 SDOperand True = DAG.getConstant(1, Cond.getValueType());
1623 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1624 }
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001625 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001626 DAG.getBasicBlock(CB.TrueBB));
1627 if (CB.FalseBB == NextBlock)
Nate Begemanf15485a2006-03-27 01:32:24 +00001628 DAG.setRoot(BrCond);
1629 else
1630 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001631 DAG.getBasicBlock(CB.FalseBB)));
Nate Begemanf15485a2006-03-27 01:32:24 +00001632}
1633
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001634/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman37efe672006-04-22 18:53:45 +00001635void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman37efe672006-04-22 18:53:45 +00001636 // Emit the code for the jump table
Scott Michelf147a8d2007-04-24 01:24:20 +00001637 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001638 MVT PTy = TLI.getPointerTy();
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001639 SDOperand Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001640 SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1641 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1642 Table, Index));
1643 return;
Nate Begeman37efe672006-04-22 18:53:45 +00001644}
1645
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001646/// visitJumpTableHeader - This function emits necessary code to produce index
1647/// in the JumpTable from switch case.
1648void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1649 SelectionDAGISel::JumpTableHeader &JTH) {
1650 // Subtract the lowest switch case value from the value being switched on
1651 // and conditional branch to default mbb if the result is greater than the
1652 // difference between smallest and largest cases.
1653 SDOperand SwitchOp = getValue(JTH.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001654 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001655 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1656 DAG.getConstant(JTH.First, VT));
1657
1658 // The SDNode we just created, which holds the value being switched on
1659 // minus the the smallest case value, needs to be copied to a virtual
1660 // register so it can be used as an index into the jump table in a
1661 // subsequent basic block. This value may be smaller or larger than the
1662 // target's pointer type, and therefore require extension or truncating.
Duncan Sands8e4eb092008-06-08 20:54:56 +00001663 if (VT.bitsGT(TLI.getPointerTy()))
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001664 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1665 else
1666 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1667
1668 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001669 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001670 JT.Reg = JumpTableReg;
1671
1672 // Emit the range check for the jump table, and branch to the default
1673 // block for the switch statement if the value being switched on exceeds
1674 // the largest case in the switch.
Scott Michel5b8f82e2008-03-10 15:42:14 +00001675 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001676 DAG.getConstant(JTH.Last-JTH.First,VT),
1677 ISD::SETUGT);
1678
1679 // Set NextBlock to be the MBB immediately after the current one, if any.
1680 // This is used to avoid emitting unnecessary branches to the next block.
1681 MachineBasicBlock *NextBlock = 0;
1682 MachineFunction::iterator BBI = CurMBB;
1683 if (++BBI != CurMBB->getParent()->end())
1684 NextBlock = BBI;
1685
1686 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1687 DAG.getBasicBlock(JT.Default));
1688
1689 if (JT.MBB == NextBlock)
1690 DAG.setRoot(BrCond);
1691 else
1692 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001693 DAG.getBasicBlock(JT.MBB)));
1694
1695 return;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001696}
1697
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001698/// visitBitTestHeader - This function emits necessary code to produce value
1699/// suitable for "bit tests"
1700void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1701 // Subtract the minimum value
1702 SDOperand SwitchOp = getValue(B.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001703 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001704 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1705 DAG.getConstant(B.First, VT));
1706
1707 // Check range
Scott Michel5b8f82e2008-03-10 15:42:14 +00001708 SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001709 DAG.getConstant(B.Range, VT),
1710 ISD::SETUGT);
1711
1712 SDOperand ShiftOp;
Duncan Sands8e4eb092008-06-08 20:54:56 +00001713 if (VT.bitsGT(TLI.getShiftAmountTy()))
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001714 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1715 else
1716 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1717
1718 // Make desired shift
1719 SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1720 DAG.getConstant(1, TLI.getPointerTy()),
1721 ShiftOp);
1722
1723 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001724 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001725 B.Reg = SwitchReg;
1726
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001727 // Set NextBlock to be the MBB immediately after the current one, if any.
1728 // This is used to avoid emitting unnecessary branches to the next block.
1729 MachineBasicBlock *NextBlock = 0;
1730 MachineFunction::iterator BBI = CurMBB;
1731 if (++BBI != CurMBB->getParent()->end())
1732 NextBlock = BBI;
1733
1734 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson2d389e82008-06-07 00:00:23 +00001735
1736 CurMBB->addSuccessor(B.Default);
1737 CurMBB->addSuccessor(MBB);
1738
1739 SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1740 DAG.getBasicBlock(B.Default));
1741
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001742 if (MBB == NextBlock)
1743 DAG.setRoot(BrRange);
1744 else
1745 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1746 DAG.getBasicBlock(MBB)));
1747
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001748 return;
1749}
1750
1751/// visitBitTestCase - this function produces one "bit test"
1752void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1753 unsigned Reg,
1754 SelectionDAGISel::BitTestCase &B) {
1755 // Emit bit tests and jumps
Chris Lattneread0d882008-06-17 06:09:18 +00001756 SDOperand SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
1757 TLI.getPointerTy());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001758
Chris Lattneread0d882008-06-17 06:09:18 +00001759 SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
1760 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Scott Michel5b8f82e2008-03-10 15:42:14 +00001761 SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001762 DAG.getConstant(0, TLI.getPointerTy()),
1763 ISD::SETNE);
Owen Anderson2d389e82008-06-07 00:00:23 +00001764
1765 CurMBB->addSuccessor(B.TargetBB);
1766 CurMBB->addSuccessor(NextMBB);
1767
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001768 SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001769 AndCmp, DAG.getBasicBlock(B.TargetBB));
1770
1771 // Set NextBlock to be the MBB immediately after the current one, if any.
1772 // This is used to avoid emitting unnecessary branches to the next block.
1773 MachineBasicBlock *NextBlock = 0;
1774 MachineFunction::iterator BBI = CurMBB;
1775 if (++BBI != CurMBB->getParent()->end())
1776 NextBlock = BBI;
1777
1778 if (NextMBB == NextBlock)
1779 DAG.setRoot(BrAnd);
1780 else
1781 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1782 DAG.getBasicBlock(NextMBB)));
1783
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001784 return;
1785}
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001786
Jim Laskeyb180aa12007-02-21 22:53:45 +00001787void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1788 // Retrieve successors.
1789 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001790 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands9fac0b52007-06-06 10:05:18 +00001791
Duncan Sandsfd7b3262007-12-17 18:08:19 +00001792 if (isa<InlineAsm>(I.getCalledValue()))
1793 visitInlineAsm(&I);
1794 else
Duncan Sands6f74b482007-12-19 09:48:52 +00001795 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Duncan Sands9fac0b52007-06-06 10:05:18 +00001796
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001797 // If the value of the invoke is used outside of its defining block, make it
1798 // available as a virtual register.
1799 if (!I.use_empty()) {
1800 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1801 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001802 CopyValueToVirtualRegister(&I, VMI->second);
Jim Laskey183f47f2007-02-25 21:43:59 +00001803 }
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001804
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001805 // Update successor info
1806 CurMBB->addSuccessor(Return);
1807 CurMBB->addSuccessor(LandingPad);
Owen Anderson2d389e82008-06-07 00:00:23 +00001808
1809 // Drop into normal successor.
1810 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1811 DAG.getBasicBlock(Return)));
Jim Laskeyb180aa12007-02-21 22:53:45 +00001812}
1813
1814void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1815}
1816
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001817/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001818/// small case ranges).
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001819bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001820 CaseRecVector& WorkList,
1821 Value* SV,
1822 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001823 Case& BackCase = *(CR.Range.second-1);
1824
1825 // Size is the number of Cases represented by this range.
1826 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001827 if (Size > 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001828 return false;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001829
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001830 // Get the MachineFunction which holds the current MBB. This is used when
1831 // inserting any additional MBBs necessary to represent the switch.
1832 MachineFunction *CurMF = CurMBB->getParent();
1833
1834 // Figure out which block is immediately after the current one.
1835 MachineBasicBlock *NextBlock = 0;
1836 MachineFunction::iterator BBI = CR.CaseBB;
1837
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001838 if (++BBI != CurMBB->getParent()->end())
1839 NextBlock = BBI;
1840
1841 // TODO: If any two of the cases has the same destination, and if one value
1842 // is the same as the other, but has one bit unset that the other has set,
1843 // use bit manipulation to do two compares at once. For example:
1844 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1845
1846 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001847 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001848 // The last case block won't fall through into 'NextBlock' if we emit the
1849 // branches in this order. See if rearranging a case value would help.
1850 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001851 if (I->BB == NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001852 std::swap(*I, BackCase);
1853 break;
1854 }
1855 }
1856 }
1857
1858 // Create a CaseBlock record representing a conditional branch to
1859 // the Case's target mbb if the value being switched on SV is equal
1860 // to C.
1861 MachineBasicBlock *CurBlock = CR.CaseBB;
1862 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1863 MachineBasicBlock *FallThrough;
1864 if (I != E-1) {
Dan Gohman0e5f1302008-07-07 23:02:41 +00001865 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1866 CurMF->insert(BBI, FallThrough);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001867 } else {
1868 // If the last case doesn't match, go to the default block.
1869 FallThrough = Default;
1870 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001871
1872 Value *RHS, *LHS, *MHS;
1873 ISD::CondCode CC;
1874 if (I->High == I->Low) {
1875 // This is just small small case range :) containing exactly 1 case
1876 CC = ISD::SETEQ;
1877 LHS = SV; RHS = I->High; MHS = NULL;
1878 } else {
1879 CC = ISD::SETLE;
1880 LHS = I->Low; MHS = SV; RHS = I->High;
1881 }
1882 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1883 I->BB, FallThrough, CurBlock);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001884
1885 // If emitting the first comparison, just call visitSwitchCase to emit the
1886 // code into the current block. Otherwise, push the CaseBlock onto the
1887 // vector to be later processed by SDISel, and insert the node's MBB
1888 // before the next MBB.
1889 if (CurBlock == CurMBB)
1890 visitSwitchCase(CB);
1891 else
1892 SwitchCases.push_back(CB);
1893
1894 CurBlock = FallThrough;
1895 }
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001896
1897 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001898}
1899
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001900static inline bool areJTsAllowed(const TargetLowering &TLI) {
1901 return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1902 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1903}
1904
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001905/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001906bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001907 CaseRecVector& WorkList,
1908 Value* SV,
1909 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001910 Case& FrontCase = *CR.Range.first;
1911 Case& BackCase = *(CR.Range.second-1);
1912
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001913 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1914 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1915
1916 uint64_t TSize = 0;
1917 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1918 I!=E; ++I)
1919 TSize += I->size();
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001920
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001921 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001922 return false;
1923
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001924 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1925 if (Density < 0.4)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001926 return false;
1927
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001928 DOUT << "Lowering jump table\n"
1929 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001930 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001931
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001932 // Get the MachineFunction which holds the current MBB. This is used when
1933 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001934 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001935
1936 // Figure out which block is immediately after the current one.
1937 MachineBasicBlock *NextBlock = 0;
1938 MachineFunction::iterator BBI = CR.CaseBB;
1939
1940 if (++BBI != CurMBB->getParent()->end())
1941 NextBlock = BBI;
1942
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001943 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1944
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001945 // Create a new basic block to hold the code for loading the address
1946 // of the jump table, and jumping to it. Update successor information;
1947 // we will either branch to the default case for the switch, or the jump
1948 // table.
Dan Gohman0e5f1302008-07-07 23:02:41 +00001949 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1950 CurMF->insert(BBI, JumpTableBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001951 CR.CaseBB->addSuccessor(Default);
1952 CR.CaseBB->addSuccessor(JumpTableBB);
1953
1954 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001955 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001956 // a case statement, push the case's BB onto the vector, otherwise, push
1957 // the default BB.
1958 std::vector<MachineBasicBlock*> DestBBs;
1959 int64_t TEI = First;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001960 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1961 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1962 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1963
1964 if ((Low <= TEI) && (TEI <= High)) {
1965 DestBBs.push_back(I->BB);
1966 if (TEI==High)
1967 ++I;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001968 } else {
1969 DestBBs.push_back(Default);
1970 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001971 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001972
1973 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001974 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001975 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1976 E = DestBBs.end(); I != E; ++I) {
1977 if (!SuccsHandled[(*I)->getNumber()]) {
1978 SuccsHandled[(*I)->getNumber()] = true;
1979 JumpTableBB->addSuccessor(*I);
1980 }
1981 }
1982
1983 // Create a jump table index for this jump table, or return an existing
1984 // one.
1985 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1986
1987 // Set the jump table information so that we can codegen it as a second
1988 // MachineBasicBlock
Scott Michelf147a8d2007-04-24 01:24:20 +00001989 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001990 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
1991 (CR.CaseBB == CurMBB));
1992 if (CR.CaseBB == CurMBB)
1993 visitJumpTableHeader(JT, JTH);
1994
1995 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001996
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001997 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001998}
1999
2000/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2001/// 2 subtrees.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002002bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002003 CaseRecVector& WorkList,
2004 Value* SV,
2005 MachineBasicBlock* Default) {
2006 // Get the MachineFunction which holds the current MBB. This is used when
2007 // inserting any additional MBBs necessary to represent the switch.
2008 MachineFunction *CurMF = CurMBB->getParent();
2009
2010 // Figure out which block is immediately after the current one.
2011 MachineBasicBlock *NextBlock = 0;
2012 MachineFunction::iterator BBI = CR.CaseBB;
2013
2014 if (++BBI != CurMBB->getParent()->end())
2015 NextBlock = BBI;
2016
2017 Case& FrontCase = *CR.Range.first;
2018 Case& BackCase = *(CR.Range.second-1);
2019 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2020
2021 // Size is the number of Cases represented by this range.
2022 unsigned Size = CR.Range.second - CR.Range.first;
2023
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002024 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2025 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002026 double FMetric = 0;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002027 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002028
2029 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2030 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002031 uint64_t TSize = 0;
2032 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2033 I!=E; ++I)
2034 TSize += I->size();
2035
2036 uint64_t LSize = FrontCase.size();
2037 uint64_t RSize = TSize-LSize;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002038 DOUT << "Selecting best pivot: \n"
2039 << "First: " << First << ", Last: " << Last <<"\n"
2040 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002041 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002042 J!=E; ++I, ++J) {
2043 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2044 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002045 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002046 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2047 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikov54e2b142007-04-09 21:57:03 +00002048 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002049 // Should always split in some non-trivial place
2050 DOUT <<"=>Step\n"
2051 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2052 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2053 << "Metric: " << Metric << "\n";
2054 if (FMetric < Metric) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002055 Pivot = J;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002056 FMetric = Metric;
2057 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002058 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002059
2060 LSize += J->size();
2061 RSize -= J->size();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002062 }
Anton Korobeynikov7294b582007-05-09 20:07:08 +00002063 if (areJTsAllowed(TLI)) {
2064 // If our case is dense we *really* should handle it earlier!
2065 assert((FMetric > 0) && "Should handle dense range earlier!");
2066 } else {
2067 Pivot = CR.Range.first + Size/2;
2068 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002069
2070 CaseRange LHSR(CR.Range.first, Pivot);
2071 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002072 Constant *C = Pivot->Low;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002073 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2074
2075 // We know that we branch to the LHS if the Value being switched on is
2076 // less than the Pivot value, C. We use this to optimize our binary
2077 // tree a bit, by recognizing that if SV is greater than or equal to the
2078 // LHS's Case Value, and that Case Value is exactly one less than the
2079 // Pivot's Value, then we can branch directly to the LHS's Target,
2080 // rather than creating a leaf node for it.
2081 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002082 LHSR.first->High == CR.GE &&
2083 cast<ConstantInt>(C)->getSExtValue() ==
2084 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2085 TrueBB = LHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002086 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002087 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2088 CurMF->insert(BBI, TrueBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002089 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2090 }
2091
2092 // Similar to the optimization above, if the Value being switched on is
2093 // known to be less than the Constant CR.LT, and the current Case Value
2094 // is CR.LT - 1, then we can branch directly to the target block for
2095 // the current Case Value, rather than emitting a RHS leaf node for it.
2096 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002097 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2098 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2099 FalseBB = RHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002100 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00002101 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2102 CurMF->insert(BBI, FalseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002103 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2104 }
2105
2106 // Create a CaseBlock record representing a conditional branch to
2107 // the LHS node if the value being switched on SV is less than C.
2108 // Otherwise, branch to LHS.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002109 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2110 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002111
2112 if (CR.CaseBB == CurMBB)
2113 visitSwitchCase(CB);
2114 else
2115 SwitchCases.push_back(CB);
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002116
2117 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002118}
2119
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002120/// handleBitTestsSwitchCase - if current case range has few destination and
2121/// range span less, than machine word bitwidth, encode case range into series
2122/// of masks and emit bit tests with these masks.
2123bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2124 CaseRecVector& WorkList,
2125 Value* SV,
Chris Lattner3ff98172007-04-14 02:26:56 +00002126 MachineBasicBlock* Default){
Duncan Sands83ec4b62008-06-06 12:08:01 +00002127 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002128
2129 Case& FrontCase = *CR.Range.first;
2130 Case& BackCase = *(CR.Range.second-1);
2131
2132 // Get the MachineFunction which holds the current MBB. This is used when
2133 // inserting any additional MBBs necessary to represent the switch.
2134 MachineFunction *CurMF = CurMBB->getParent();
2135
2136 unsigned numCmps = 0;
2137 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2138 I!=E; ++I) {
2139 // Single case counts one, case range - two.
2140 if (I->Low == I->High)
2141 numCmps +=1;
2142 else
2143 numCmps +=2;
2144 }
2145
2146 // Count unique destinations
2147 SmallSet<MachineBasicBlock*, 4> Dests;
2148 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2149 Dests.insert(I->BB);
2150 if (Dests.size() > 3)
2151 // Don't bother the code below, if there are too much unique destinations
2152 return false;
2153 }
2154 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2155 << "Total number of comparisons: " << numCmps << "\n";
2156
2157 // Compute span of values.
2158 Constant* minValue = FrontCase.Low;
2159 Constant* maxValue = BackCase.High;
2160 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2161 cast<ConstantInt>(minValue)->getSExtValue();
2162 DOUT << "Compare range: " << range << "\n"
2163 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2164 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2165
Anton Korobeynikovab8fd402007-04-26 20:44:04 +00002166 if (range>=IntPtrBits ||
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002167 (!(Dests.size() == 1 && numCmps >= 3) &&
2168 !(Dests.size() == 2 && numCmps >= 5) &&
2169 !(Dests.size() >= 3 && numCmps >= 6)))
2170 return false;
2171
2172 DOUT << "Emitting bit tests\n";
2173 int64_t lowBound = 0;
2174
2175 // Optimize the case where all the case values fit in a
2176 // word without having to subtract minValue. In this case,
2177 // we can optimize away the subtraction.
2178 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002179 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002180 range = cast<ConstantInt>(maxValue)->getSExtValue();
2181 } else {
2182 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2183 }
2184
2185 CaseBitsVector CasesBits;
2186 unsigned i, count = 0;
2187
2188 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2189 MachineBasicBlock* Dest = I->BB;
2190 for (i = 0; i < count; ++i)
2191 if (Dest == CasesBits[i].BB)
2192 break;
2193
2194 if (i == count) {
2195 assert((count < 3) && "Too much destinations to test!");
2196 CasesBits.push_back(CaseBits(0, Dest, 0));
2197 count++;
2198 }
2199
2200 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2201 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2202
2203 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002204 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002205 CasesBits[i].Bits++;
2206 }
2207
2208 }
2209 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2210
2211 SelectionDAGISel::BitTestInfo BTC;
2212
2213 // Figure out which block is immediately after the current one.
2214 MachineFunction::iterator BBI = CR.CaseBB;
2215 ++BBI;
2216
2217 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2218
2219 DOUT << "Cases:\n";
2220 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2221 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2222 << ", BB: " << CasesBits[i].BB << "\n";
2223
Dan Gohman0e5f1302008-07-07 23:02:41 +00002224 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2225 CurMF->insert(BBI, CaseBB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002226 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2227 CaseBB,
2228 CasesBits[i].BB));
2229 }
2230
2231 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohenefc36622007-04-09 14:32:59 +00002232 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002233 CR.CaseBB, Default, BTC);
2234
2235 if (CR.CaseBB == CurMBB)
2236 visitBitTestHeader(BTB);
2237
2238 BitTestCases.push_back(BTB);
2239
2240 return true;
2241}
2242
2243
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002244/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002245unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2246 const SwitchInst& SI) {
2247 unsigned numCmps = 0;
2248
2249 // Start with "simple" cases
2250 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2251 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2252 Cases.push_back(Case(SI.getSuccessorValue(i),
2253 SI.getSuccessorValue(i),
2254 SMBB));
2255 }
Chris Lattnerb3d9cdb2007-11-27 06:14:32 +00002256 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002257
2258 // Merge case into clusters
2259 if (Cases.size()>=2)
David Greenea2a48852007-06-29 03:42:23 +00002260 // Must recompute end() each iteration because it may be
2261 // invalidated by erase if we hold on to it
Chris Lattner27a6c732007-11-24 07:07:01 +00002262 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002263 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2264 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2265 MachineBasicBlock* nextBB = J->BB;
2266 MachineBasicBlock* currentBB = I->BB;
2267
2268 // If the two neighboring cases go to the same destination, merge them
2269 // into a single case.
2270 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2271 I->High = J->High;
2272 J = Cases.erase(J);
2273 } else {
2274 I = J++;
2275 }
2276 }
2277
2278 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2279 if (I->Low != I->High)
2280 // A range counts double, since it requires two compares.
2281 ++numCmps;
2282 }
2283
2284 return numCmps;
2285}
2286
2287void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002288 // Figure out which block is immediately after the current one.
2289 MachineBasicBlock *NextBlock = 0;
2290 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002291
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002292 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002293
Nate Begemanf15485a2006-03-27 01:32:24 +00002294 // If there is only the default destination, branch to it if it is not the
2295 // next basic block. Otherwise, just fall through.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002296 if (SI.getNumOperands() == 2) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002297 // Update machine-CFG edges.
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002298
Nate Begemanf15485a2006-03-27 01:32:24 +00002299 // If this is not a fall-through branch, emit the branch.
Owen Anderson2d389e82008-06-07 00:00:23 +00002300 CurMBB->addSuccessor(Default);
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002301 if (Default != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002302 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002303 DAG.getBasicBlock(Default)));
Owen Anderson2d389e82008-06-07 00:00:23 +00002304
Nate Begemanf15485a2006-03-27 01:32:24 +00002305 return;
2306 }
2307
2308 // If there are any non-default case statements, create a vector of Cases
2309 // representing each one, and sort the vector so that we can efficiently
2310 // create a binary search tree from them.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002311 CaseVector Cases;
2312 unsigned numCmps = Clusterify(Cases, SI);
2313 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2314 << ". Total compares: " << numCmps << "\n";
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002315
Nate Begemanf15485a2006-03-27 01:32:24 +00002316 // Get the Value to be switched on and default basic blocks, which will be
2317 // inserted into CaseBlock records, representing basic blocks in the binary
2318 // search tree.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002319 Value *SV = SI.getOperand(0);
Nate Begeman37efe672006-04-22 18:53:45 +00002320
Nate Begemanf15485a2006-03-27 01:32:24 +00002321 // Push the initial CaseRec onto the worklist
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002322 CaseRecVector WorkList;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002323 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2324
2325 while (!WorkList.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002326 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002327 CaseRec CR = WorkList.back();
2328 WorkList.pop_back();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002329
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002330 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2331 continue;
2332
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002333 // If the range has few cases (two or less) emit a series of specific
2334 // tests.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002335 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2336 continue;
2337
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002338 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002339 // target supports indirect branches, then emit a jump table rather than
2340 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002341 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2342 continue;
2343
2344 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2345 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2346 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemanf15485a2006-03-27 01:32:24 +00002347 }
2348}
2349
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002350
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002351void SelectionDAGLowering::visitSub(User &I) {
2352 // -0.0 - X --> fneg
Reid Spencer24d6da52007-01-21 00:29:26 +00002353 const Type *Ty = I.getType();
Reid Spencer9d6565a2007-02-15 02:26:10 +00002354 if (isa<VectorType>(Ty)) {
Dan Gohman7f321562007-06-25 16:23:39 +00002355 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2356 const VectorType *DestTy = cast<VectorType>(I.getType());
2357 const Type *ElTy = DestTy->getElementType();
Evan Chengc45453f2007-06-29 21:44:35 +00002358 if (ElTy->isFloatingPoint()) {
2359 unsigned VL = DestTy->getNumElements();
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002360 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Evan Chengc45453f2007-06-29 21:44:35 +00002361 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2362 if (CV == CNZ) {
2363 SDOperand Op2 = getValue(I.getOperand(1));
2364 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2365 return;
2366 }
Dan Gohman7f321562007-06-25 16:23:39 +00002367 }
2368 }
2369 }
2370 if (Ty->isFloatingPoint()) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002371 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002372 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002373 SDOperand Op2 = getValue(I.getOperand(1));
2374 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2375 return;
2376 }
Dan Gohman7f321562007-06-25 16:23:39 +00002377 }
2378
2379 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002380}
2381
Dan Gohman7f321562007-06-25 16:23:39 +00002382void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00002383 SDOperand Op1 = getValue(I.getOperand(0));
2384 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer24d6da52007-01-21 00:29:26 +00002385
2386 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer1628cec2006-10-26 06:15:43 +00002387}
2388
Nate Begemane21ea612005-11-18 07:42:56 +00002389void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2390 SDOperand Op1 = getValue(I.getOperand(0));
2391 SDOperand Op2 = getValue(I.getOperand(1));
2392
Duncan Sands8e4eb092008-06-08 20:54:56 +00002393 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002394 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002395 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002396 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
Nate Begemane21ea612005-11-18 07:42:56 +00002397
Chris Lattner1c08c712005-01-07 07:47:53 +00002398 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2399}
2400
Reid Spencer45fb3f32006-11-20 01:22:35 +00002401void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002402 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2403 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2404 predicate = IC->getPredicate();
2405 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2406 predicate = ICmpInst::Predicate(IC->getPredicate());
2407 SDOperand Op1 = getValue(I.getOperand(0));
2408 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer45fb3f32006-11-20 01:22:35 +00002409 ISD::CondCode Opcode;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002410 switch (predicate) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002411 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2412 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2413 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2414 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2415 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2416 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2417 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2418 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2419 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2420 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2421 default:
2422 assert(!"Invalid ICmp predicate value");
2423 Opcode = ISD::SETEQ;
2424 break;
2425 }
2426 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2427}
2428
2429void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002430 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2431 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2432 predicate = FC->getPredicate();
2433 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2434 predicate = FCmpInst::Predicate(FC->getPredicate());
Chris Lattner1c08c712005-01-07 07:47:53 +00002435 SDOperand Op1 = getValue(I.getOperand(0));
2436 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002437 ISD::CondCode Condition, FOC, FPC;
2438 switch (predicate) {
2439 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2440 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2441 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2442 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2443 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2444 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2445 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmancba3b442008-05-01 23:40:44 +00002446 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2447 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002448 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2449 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2450 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2451 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2452 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2453 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2454 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2455 default:
2456 assert(!"Invalid FCmp predicate value");
2457 FOC = FPC = ISD::SETFALSE;
2458 break;
2459 }
2460 if (FiniteOnlyFPMath())
2461 Condition = FOC;
2462 else
2463 Condition = FPC;
2464 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner1c08c712005-01-07 07:47:53 +00002465}
2466
Nate Begemanb43e9c12008-05-12 19:40:03 +00002467void SelectionDAGLowering::visitVICmp(User &I) {
2468 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2469 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2470 predicate = IC->getPredicate();
2471 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2472 predicate = ICmpInst::Predicate(IC->getPredicate());
2473 SDOperand Op1 = getValue(I.getOperand(0));
2474 SDOperand Op2 = getValue(I.getOperand(1));
2475 ISD::CondCode Opcode;
2476 switch (predicate) {
2477 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2478 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2479 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2480 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2481 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2482 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2483 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2484 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2485 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2486 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2487 default:
2488 assert(!"Invalid ICmp predicate value");
2489 Opcode = ISD::SETEQ;
2490 break;
2491 }
2492 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2493}
2494
2495void SelectionDAGLowering::visitVFCmp(User &I) {
2496 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2497 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2498 predicate = FC->getPredicate();
2499 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2500 predicate = FCmpInst::Predicate(FC->getPredicate());
2501 SDOperand Op1 = getValue(I.getOperand(0));
2502 SDOperand Op2 = getValue(I.getOperand(1));
2503 ISD::CondCode Condition, FOC, FPC;
2504 switch (predicate) {
2505 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2506 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2507 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2508 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2509 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2510 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2511 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2512 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2513 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2514 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2515 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2516 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2517 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2518 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2519 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2520 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2521 default:
2522 assert(!"Invalid VFCmp predicate value");
2523 FOC = FPC = ISD::SETFALSE;
2524 break;
2525 }
2526 if (FiniteOnlyFPMath())
2527 Condition = FOC;
2528 else
2529 Condition = FPC;
2530
Duncan Sands83ec4b62008-06-06 12:08:01 +00002531 MVT DestVT = TLI.getValueType(I.getType());
Nate Begemanb43e9c12008-05-12 19:40:03 +00002532
2533 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2534}
2535
Chris Lattner1c08c712005-01-07 07:47:53 +00002536void SelectionDAGLowering::visitSelect(User &I) {
2537 SDOperand Cond = getValue(I.getOperand(0));
2538 SDOperand TrueVal = getValue(I.getOperand(1));
2539 SDOperand FalseVal = getValue(I.getOperand(2));
Dan Gohman7f321562007-06-25 16:23:39 +00002540 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2541 TrueVal, FalseVal));
Chris Lattner1c08c712005-01-07 07:47:53 +00002542}
2543
Reid Spencer3da59db2006-11-27 01:05:10 +00002544
2545void SelectionDAGLowering::visitTrunc(User &I) {
2546 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2547 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002548 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002549 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2550}
2551
2552void SelectionDAGLowering::visitZExt(User &I) {
2553 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2554 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2555 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002556 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002557 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2558}
2559
2560void SelectionDAGLowering::visitSExt(User &I) {
2561 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2562 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2563 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002564 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002565 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2566}
2567
2568void SelectionDAGLowering::visitFPTrunc(User &I) {
2569 // FPTrunc is never a no-op cast, no need to check
2570 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002571 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner0bd48932008-01-17 07:00:52 +00002572 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Reid Spencer3da59db2006-11-27 01:05:10 +00002573}
2574
2575void SelectionDAGLowering::visitFPExt(User &I){
2576 // FPTrunc is never a no-op cast, no need to check
2577 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002578 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002579 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2580}
2581
2582void SelectionDAGLowering::visitFPToUI(User &I) {
2583 // FPToUI is never a no-op cast, no need to check
2584 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002585 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002586 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2587}
2588
2589void SelectionDAGLowering::visitFPToSI(User &I) {
2590 // FPToSI is never a no-op cast, no need to check
2591 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002592 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002593 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2594}
2595
2596void SelectionDAGLowering::visitUIToFP(User &I) {
2597 // UIToFP is never a no-op cast, no need to check
2598 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002599 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002600 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2601}
2602
2603void SelectionDAGLowering::visitSIToFP(User &I){
2604 // UIToFP is never a no-op cast, no need to check
2605 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002606 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002607 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2608}
2609
2610void SelectionDAGLowering::visitPtrToInt(User &I) {
2611 // What to do depends on the size of the integer and the size of the pointer.
2612 // We can either truncate, zero extend, or no-op, accordingly.
Chris Lattner1c08c712005-01-07 07:47:53 +00002613 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002614 MVT SrcVT = N.getValueType();
2615 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002616 SDOperand Result;
Duncan Sands8e4eb092008-06-08 20:54:56 +00002617 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002618 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2619 else
2620 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2621 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2622 setValue(&I, Result);
2623}
Chris Lattner1c08c712005-01-07 07:47:53 +00002624
Reid Spencer3da59db2006-11-27 01:05:10 +00002625void SelectionDAGLowering::visitIntToPtr(User &I) {
2626 // What to do depends on the size of the integer and the size of the pointer.
2627 // We can either truncate, zero extend, or no-op, accordingly.
2628 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002629 MVT SrcVT = N.getValueType();
2630 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sands8e4eb092008-06-08 20:54:56 +00002631 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002632 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2633 else
2634 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2635 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2636}
2637
2638void SelectionDAGLowering::visitBitCast(User &I) {
2639 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002640 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002641
2642 // BitCast assures us that source and destination are the same size so this
2643 // is either a BIT_CONVERT or a no-op.
2644 if (DestVT != N.getValueType())
2645 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2646 else
2647 setValue(&I, N); // noop cast.
Chris Lattner1c08c712005-01-07 07:47:53 +00002648}
2649
Chris Lattner2bbd8102006-03-29 00:11:43 +00002650void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00002651 SDOperand InVec = getValue(I.getOperand(0));
2652 SDOperand InVal = getValue(I.getOperand(1));
2653 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2654 getValue(I.getOperand(2)));
2655
Dan Gohman7f321562007-06-25 16:23:39 +00002656 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2657 TLI.getValueType(I.getType()),
2658 InVec, InVal, InIdx));
Chris Lattnerc7029802006-03-18 01:44:44 +00002659}
2660
Chris Lattner2bbd8102006-03-29 00:11:43 +00002661void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00002662 SDOperand InVec = getValue(I.getOperand(0));
2663 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2664 getValue(I.getOperand(1)));
Dan Gohman7f321562007-06-25 16:23:39 +00002665 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner384504c2006-03-21 20:44:12 +00002666 TLI.getValueType(I.getType()), InVec, InIdx));
2667}
Chris Lattnerc7029802006-03-18 01:44:44 +00002668
Chris Lattner3e104b12006-04-08 04:15:24 +00002669void SelectionDAGLowering::visitShuffleVector(User &I) {
2670 SDOperand V1 = getValue(I.getOperand(0));
2671 SDOperand V2 = getValue(I.getOperand(1));
2672 SDOperand Mask = getValue(I.getOperand(2));
2673
Dan Gohman7f321562007-06-25 16:23:39 +00002674 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2675 TLI.getValueType(I.getType()),
2676 V1, V2, Mask));
Chris Lattner3e104b12006-04-08 04:15:24 +00002677}
2678
Dan Gohman1d685a42008-06-07 02:02:36 +00002679void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2680 const Value *Op0 = I.getOperand(0);
2681 const Value *Op1 = I.getOperand(1);
2682 const Type *AggTy = I.getType();
2683 const Type *ValTy = Op1->getType();
2684 bool IntoUndef = isa<UndefValue>(Op0);
2685 bool FromUndef = isa<UndefValue>(Op1);
2686
2687 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2688 I.idx_begin(), I.idx_end());
2689
2690 SmallVector<MVT, 4> AggValueVTs;
2691 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2692 SmallVector<MVT, 4> ValValueVTs;
2693 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2694
2695 unsigned NumAggValues = AggValueVTs.size();
2696 unsigned NumValValues = ValValueVTs.size();
2697 SmallVector<SDOperand, 4> Values(NumAggValues);
2698
2699 SDOperand Agg = getValue(Op0);
2700 SDOperand Val = getValue(Op1);
2701 unsigned i = 0;
2702 // Copy the beginning value(s) from the original aggregate.
2703 for (; i != LinearIndex; ++i)
2704 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2705 SDOperand(Agg.Val, Agg.ResNo + i);
2706 // Copy values from the inserted value(s).
2707 for (; i != LinearIndex + NumValValues; ++i)
2708 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2709 SDOperand(Val.Val, Val.ResNo + i - LinearIndex);
2710 // Copy remaining value(s) from the original aggregate.
2711 for (; i != NumAggValues; ++i)
2712 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2713 SDOperand(Agg.Val, Agg.ResNo + i);
2714
Duncan Sandsf9516202008-06-30 10:19:09 +00002715 setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2716 &Values[0], NumAggValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002717}
2718
Dan Gohman1d685a42008-06-07 02:02:36 +00002719void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2720 const Value *Op0 = I.getOperand(0);
2721 const Type *AggTy = Op0->getType();
2722 const Type *ValTy = I.getType();
2723 bool OutOfUndef = isa<UndefValue>(Op0);
2724
2725 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2726 I.idx_begin(), I.idx_end());
2727
2728 SmallVector<MVT, 4> ValValueVTs;
2729 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2730
2731 unsigned NumValValues = ValValueVTs.size();
2732 SmallVector<SDOperand, 4> Values(NumValValues);
2733
2734 SDOperand Agg = getValue(Op0);
2735 // Copy out the selected value(s).
2736 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2737 Values[i - LinearIndex] =
Dan Gohmandded0fd2008-06-20 00:54:19 +00002738 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
2739 SDOperand(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002740
Duncan Sandsf9516202008-06-30 10:19:09 +00002741 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2742 &Values[0], NumValValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002743}
2744
Chris Lattner3e104b12006-04-08 04:15:24 +00002745
Chris Lattner1c08c712005-01-07 07:47:53 +00002746void SelectionDAGLowering::visitGetElementPtr(User &I) {
2747 SDOperand N = getValue(I.getOperand(0));
2748 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00002749
2750 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2751 OI != E; ++OI) {
2752 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002753 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002754 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner1c08c712005-01-07 07:47:53 +00002755 if (Field) {
2756 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +00002757 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner1c08c712005-01-07 07:47:53 +00002758 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner0bd48932008-01-17 07:00:52 +00002759 DAG.getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00002760 }
2761 Ty = StTy->getElementType(Field);
2762 } else {
2763 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00002764
Chris Lattner7c0104b2005-11-09 04:45:33 +00002765 // If this is a constant subscript, handle it quickly.
2766 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002767 if (CI->getZExtValue() == 0) continue;
Reid Spencer47857812006-12-31 05:55:36 +00002768 uint64_t Offs =
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002769 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00002770 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2771 DAG.getIntPtrConstant(Offs));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002772 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00002773 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00002774
2775 // N = N + Idx * ElementSize;
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002776 uint64_t ElementSize = TD->getABITypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002777 SDOperand IdxN = getValue(Idx);
2778
2779 // If the index is smaller or larger than intptr_t, truncate or extend
2780 // it.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002781 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +00002782 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002783 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Chris Lattner7c0104b2005-11-09 04:45:33 +00002784 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2785
2786 // If this is a multiply by a power of two, turn it into a shl
2787 // immediately. This is a very common case.
2788 if (isPowerOf2_64(ElementSize)) {
2789 unsigned Amt = Log2_64(ElementSize);
2790 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00002791 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002792 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2793 continue;
2794 }
2795
Chris Lattner0bd48932008-01-17 07:00:52 +00002796 SDOperand Scale = DAG.getIntPtrConstant(ElementSize);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002797 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2798 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00002799 }
2800 }
2801 setValue(&I, N);
2802}
2803
2804void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2805 // If this is a fixed sized alloca in the entry block of the function,
2806 // allocate it statically on the stack.
2807 if (FuncInfo.StaticAllocaMap.count(&I))
2808 return; // getValue will auto-populate this.
2809
2810 const Type *Ty = I.getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +00002811 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00002812 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00002813 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner58092e32007-01-20 22:35:55 +00002814 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00002815
2816 SDOperand AllocSize = getValue(I.getArraySize());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002817 MVT IntPtr = TLI.getPointerTy();
Duncan Sands8e4eb092008-06-08 20:54:56 +00002818 if (IntPtr.bitsLT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002819 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002820 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002821 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00002822
Chris Lattner68cd65e2005-01-22 23:04:37 +00002823 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002824 DAG.getIntPtrConstant(TySize));
Chris Lattner1c08c712005-01-07 07:47:53 +00002825
Evan Cheng45157792007-08-16 23:46:29 +00002826 // Handle alignment. If the requested alignment is less than or equal to
2827 // the stack alignment, ignore it. If the size is greater than or equal to
2828 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner1c08c712005-01-07 07:47:53 +00002829 unsigned StackAlign =
2830 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng45157792007-08-16 23:46:29 +00002831 if (Align <= StackAlign)
Chris Lattner1c08c712005-01-07 07:47:53 +00002832 Align = 0;
Evan Cheng45157792007-08-16 23:46:29 +00002833
2834 // Round the size of the allocation up to the stack alignment size
2835 // by add SA-1 to the size.
2836 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002837 DAG.getIntPtrConstant(StackAlign-1));
Evan Cheng45157792007-08-16 23:46:29 +00002838 // Mask out the low bits for alignment purposes.
2839 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002840 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner1c08c712005-01-07 07:47:53 +00002841
Chris Lattner0bd48932008-01-17 07:00:52 +00002842 SDOperand Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands83ec4b62008-06-06 12:08:01 +00002843 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002844 MVT::Other);
2845 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner0da331f2007-02-04 01:31:47 +00002846 setValue(&I, DSA);
2847 DAG.setRoot(DSA.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002848
2849 // Inform the Frame Information that we have just allocated a variable-sized
2850 // object.
2851 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2852}
2853
Chris Lattner1c08c712005-01-07 07:47:53 +00002854void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002855 const Value *SV = I.getOperand(0);
2856 SDOperand Ptr = getValue(SV);
2857
2858 const Type *Ty = I.getType();
2859 bool isVolatile = I.isVolatile();
2860 unsigned Alignment = I.getAlignment();
2861
2862 SmallVector<MVT, 4> ValueVTs;
2863 SmallVector<uint64_t, 4> Offsets;
2864 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2865 unsigned NumValues = ValueVTs.size();
2866 if (NumValues == 0)
2867 return;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002868
Chris Lattnerd3948112005-01-17 22:19:26 +00002869 SDOperand Root;
2870 if (I.isVolatile())
2871 Root = getRoot();
2872 else {
2873 // Do not serialize non-volatile loads against each other.
2874 Root = DAG.getRoot();
2875 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002876
Dan Gohman1d685a42008-06-07 02:02:36 +00002877 SmallVector<SDOperand, 4> Values(NumValues);
2878 SmallVector<SDOperand, 4> Chains(NumValues);
2879 MVT PtrVT = Ptr.getValueType();
2880 for (unsigned i = 0; i != NumValues; ++i) {
2881 SDOperand L = DAG.getLoad(ValueVTs[i], Root,
2882 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2883 DAG.getConstant(Offsets[i], PtrVT)),
2884 SV, Offsets[i],
2885 isVolatile, Alignment);
2886 Values[i] = L;
2887 Chains[i] = L.getValue(1);
2888 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002889
Dan Gohman1d685a42008-06-07 02:02:36 +00002890 SDOperand Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2891 &Chains[0], NumValues);
2892 if (isVolatile)
2893 DAG.setRoot(Chain);
2894 else
2895 PendingLoads.push_back(Chain);
2896
Duncan Sandsf9516202008-06-30 10:19:09 +00002897 setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2898 &Values[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002899}
2900
2901
2902void SelectionDAGLowering::visitStore(StoreInst &I) {
2903 Value *SrcV = I.getOperand(0);
2904 SDOperand Src = getValue(SrcV);
Dan Gohman1d685a42008-06-07 02:02:36 +00002905 Value *PtrV = I.getOperand(1);
2906 SDOperand Ptr = getValue(PtrV);
2907
2908 SmallVector<MVT, 4> ValueVTs;
2909 SmallVector<uint64_t, 4> Offsets;
2910 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2911 unsigned NumValues = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002912 if (NumValues == 0)
2913 return;
Dan Gohman1d685a42008-06-07 02:02:36 +00002914
2915 SDOperand Root = getRoot();
2916 SmallVector<SDOperand, 4> Chains(NumValues);
2917 MVT PtrVT = Ptr.getValueType();
2918 bool isVolatile = I.isVolatile();
2919 unsigned Alignment = I.getAlignment();
2920 for (unsigned i = 0; i != NumValues; ++i)
2921 Chains[i] = DAG.getStore(Root, SDOperand(Src.Val, Src.ResNo + i),
2922 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2923 DAG.getConstant(Offsets[i], PtrVT)),
2924 PtrV, Offsets[i],
2925 isVolatile, Alignment);
2926
2927 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002928}
2929
Chris Lattner0eade312006-03-24 02:22:33 +00002930/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2931/// node.
2932void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2933 unsigned Intrinsic) {
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002934 bool HasChain = !I.doesNotAccessMemory();
2935 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2936
Chris Lattner0eade312006-03-24 02:22:33 +00002937 // Build the operand list.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002938 SmallVector<SDOperand, 8> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00002939 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2940 if (OnlyLoad) {
2941 // We don't need to serialize loads against other loads.
2942 Ops.push_back(DAG.getRoot());
2943 } else {
2944 Ops.push_back(getRoot());
2945 }
2946 }
Chris Lattner0eade312006-03-24 02:22:33 +00002947
2948 // Add the intrinsic ID as an integer operand.
2949 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2950
2951 // Add all operands of the call to the operand list.
2952 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2953 SDOperand Op = getValue(I.getOperand(i));
Chris Lattner0eade312006-03-24 02:22:33 +00002954 assert(TLI.isTypeLegal(Op.getValueType()) &&
2955 "Intrinsic uses a non-legal type?");
2956 Ops.push_back(Op);
2957 }
2958
Duncan Sands83ec4b62008-06-06 12:08:01 +00002959 std::vector<MVT> VTs;
Chris Lattner0eade312006-03-24 02:22:33 +00002960 if (I.getType() != Type::VoidTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002961 MVT VT = TLI.getValueType(I.getType());
2962 if (VT.isVector()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002963 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002964 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Chris Lattner0eade312006-03-24 02:22:33 +00002965
Duncan Sands83ec4b62008-06-06 12:08:01 +00002966 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Chris Lattner0eade312006-03-24 02:22:33 +00002967 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2968 }
2969
2970 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2971 VTs.push_back(VT);
2972 }
2973 if (HasChain)
2974 VTs.push_back(MVT::Other);
2975
Duncan Sands83ec4b62008-06-06 12:08:01 +00002976 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002977
Chris Lattner0eade312006-03-24 02:22:33 +00002978 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00002979 SDOperand Result;
2980 if (!HasChain)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002981 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2982 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002983 else if (I.getType() != Type::VoidTy)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002984 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2985 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002986 else
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002987 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
2988 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002989
Chris Lattnere58a7802006-04-02 03:41:14 +00002990 if (HasChain) {
2991 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
2992 if (OnlyLoad)
2993 PendingLoads.push_back(Chain);
2994 else
2995 DAG.setRoot(Chain);
2996 }
Chris Lattner0eade312006-03-24 02:22:33 +00002997 if (I.getType() != Type::VoidTy) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002998 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002999 MVT VT = TLI.getValueType(PTy);
Dan Gohman7f321562007-06-25 16:23:39 +00003000 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattner0eade312006-03-24 02:22:33 +00003001 }
3002 setValue(&I, Result);
3003 }
3004}
3005
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003006/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003007static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003008 V = V->stripPointerCasts();
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003009 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003010 assert ((GV || isa<ConstantPointerNull>(V)) &&
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003011 "TypeInfo must be a global variable or NULL");
3012 return GV;
3013}
3014
Duncan Sandsf4070822007-06-15 19:04:19 +00003015/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003016/// call, and add them to the specified machine basic block.
Duncan Sandsf4070822007-06-15 19:04:19 +00003017static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3018 MachineBasicBlock *MBB) {
3019 // Inform the MachineModuleInfo of the personality for this landing pad.
3020 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3021 assert(CE->getOpcode() == Instruction::BitCast &&
3022 isa<Function>(CE->getOperand(0)) &&
3023 "Personality should be a function");
3024 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3025
3026 // Gather all the type infos for this landing pad and pass them along to
3027 // MachineModuleInfo.
3028 std::vector<GlobalVariable *> TyInfo;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003029 unsigned N = I.getNumOperands();
3030
3031 for (unsigned i = N - 1; i > 2; --i) {
3032 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3033 unsigned FilterLength = CI->getZExtValue();
Duncan Sands6590b042007-08-27 15:47:50 +00003034 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003035 assert (FirstCatch <= N && "Invalid filter length");
3036
3037 if (FirstCatch < N) {
3038 TyInfo.reserve(N - FirstCatch);
3039 for (unsigned j = FirstCatch; j < N; ++j)
3040 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3041 MMI->addCatchTypeInfo(MBB, TyInfo);
3042 TyInfo.clear();
3043 }
3044
Duncan Sands6590b042007-08-27 15:47:50 +00003045 if (!FilterLength) {
3046 // Cleanup.
3047 MMI->addCleanup(MBB);
3048 } else {
3049 // Filter.
3050 TyInfo.reserve(FilterLength - 1);
3051 for (unsigned j = i + 1; j < FirstCatch; ++j)
3052 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3053 MMI->addFilterTypeInfo(MBB, TyInfo);
3054 TyInfo.clear();
3055 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003056
3057 N = i;
3058 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003059 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003060
3061 if (N > 3) {
3062 TyInfo.reserve(N - 3);
3063 for (unsigned j = 3; j < N; ++j)
3064 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sandsf4070822007-06-15 19:04:19 +00003065 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003066 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003067}
3068
Mon P Wang63307c32008-05-05 19:05:59 +00003069
3070/// Inlined utility function to implement binary input atomic intrinsics for
3071// visitIntrinsicCall: I is a call instruction
3072// Op is the associated NodeType for I
3073const char *
3074SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
3075 SDOperand Root = getRoot();
Mon P Wang63307c32008-05-05 19:05:59 +00003076 SDOperand L = DAG.getAtomic(Op, Root,
3077 getValue(I.getOperand(1)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003078 getValue(I.getOperand(2)),
Mon P Wang28873102008-06-25 08:15:39 +00003079 I.getOperand(1));
Mon P Wang63307c32008-05-05 19:05:59 +00003080 setValue(&I, L);
3081 DAG.setRoot(L.getValue(1));
3082 return 0;
3083}
3084
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003085/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3086/// we want to emit this as a call to a named external function, return the name
3087/// otherwise lower it and return null.
3088const char *
3089SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3090 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00003091 default:
3092 // By default, turn this into a target intrinsic node.
3093 visitTargetIntrinsic(I, Intrinsic);
3094 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003095 case Intrinsic::vastart: visitVAStart(I); return 0;
3096 case Intrinsic::vaend: visitVAEnd(I); return 0;
3097 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemanbcc5f362007-01-29 22:58:52 +00003098 case Intrinsic::returnaddress:
3099 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3100 getValue(I.getOperand(1))));
3101 return 0;
3102 case Intrinsic::frameaddress:
3103 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3104 getValue(I.getOperand(1))));
3105 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003106 case Intrinsic::setjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003107 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003108 break;
3109 case Intrinsic::longjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003110 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003111 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00003112 case Intrinsic::memcpy_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003113 case Intrinsic::memcpy_i64: {
3114 SDOperand Op1 = getValue(I.getOperand(1));
3115 SDOperand Op2 = getValue(I.getOperand(2));
3116 SDOperand Op3 = getValue(I.getOperand(3));
3117 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3118 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3119 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003120 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003121 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003122 case Intrinsic::memset_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003123 case Intrinsic::memset_i64: {
3124 SDOperand Op1 = getValue(I.getOperand(1));
3125 SDOperand Op2 = getValue(I.getOperand(2));
3126 SDOperand Op3 = getValue(I.getOperand(3));
3127 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3128 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3129 I.getOperand(1), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003130 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003131 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003132 case Intrinsic::memmove_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003133 case Intrinsic::memmove_i64: {
3134 SDOperand Op1 = getValue(I.getOperand(1));
3135 SDOperand Op2 = getValue(I.getOperand(2));
3136 SDOperand Op3 = getValue(I.getOperand(3));
3137 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3138
3139 // If the source and destination are known to not be aliases, we can
3140 // lower memmove as memcpy.
3141 uint64_t Size = -1ULL;
3142 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3143 Size = C->getValue();
3144 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3145 AliasAnalysis::NoAlias) {
3146 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3147 I.getOperand(1), 0, I.getOperand(2), 0));
3148 return 0;
3149 }
3150
3151 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3152 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003153 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003154 }
Chris Lattner86cb6432005-12-13 17:40:33 +00003155 case Intrinsic::dbg_stoppoint: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003156 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003157 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003158 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003159 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00003160 assert(DD && "Not a debug information descriptor");
Dan Gohman7f460202008-06-30 20:59:49 +00003161 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3162 SPI.getLine(),
3163 SPI.getColumn(),
3164 cast<CompileUnitDesc>(DD)));
Chris Lattner86cb6432005-12-13 17:40:33 +00003165 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003166
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003167 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00003168 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003169 case Intrinsic::dbg_region_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003170 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003171 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003172 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3173 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003174 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003175 }
3176
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003177 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003178 }
3179 case Intrinsic::dbg_region_end: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003180 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003181 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003182 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3183 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Dan Gohman44066042008-07-01 00:05:16 +00003184 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Jim Laskey43970fe2006-03-23 18:06:46 +00003185 }
3186
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003187 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003188 }
3189 case Intrinsic::dbg_func_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003190 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003191 if (!MMI) return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003192 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003193 Value *SP = FSI.getSubprogram();
3194 if (SP && MMI->Verify(SP)) {
3195 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3196 // what (most?) gdb expects.
3197 DebugInfoDesc *DD = MMI->getDescFor(SP);
3198 assert(DD && "Not a debug information descriptor");
3199 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3200 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
Dan Gohman99fe47b2008-06-30 22:21:03 +00003201 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003202 // Record the source line but does create a label. It will be emitted
3203 // at asm emission time.
3204 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Jim Laskey43970fe2006-03-23 18:06:46 +00003205 }
3206
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003207 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003208 }
3209 case Intrinsic::dbg_declare: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003210 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003211 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Chenga844bde2008-02-02 04:07:54 +00003212 Value *Variable = DI.getVariable();
3213 if (MMI && Variable && MMI->Verify(Variable))
3214 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3215 getValue(DI.getAddress()), getValue(Variable)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003216 return 0;
3217 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003218
Jim Laskeyb180aa12007-02-21 22:53:45 +00003219 case Intrinsic::eh_exception: {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003220 if (!CurMBB->isLandingPad()) {
3221 // FIXME: Mark exception register as live in. Hack for PR1508.
3222 unsigned Reg = TLI.getExceptionAddressRegister();
3223 if (Reg) CurMBB->addLiveIn(Reg);
Jim Laskey735b6f82007-02-22 15:38:06 +00003224 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003225 // Insert the EXCEPTIONADDR instruction.
3226 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3227 SDOperand Ops[1];
3228 Ops[0] = DAG.getRoot();
3229 SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
3230 setValue(&I, Op);
3231 DAG.setRoot(Op.getValue(1));
Jim Laskeyb180aa12007-02-21 22:53:45 +00003232 return 0;
3233 }
3234
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003235 case Intrinsic::eh_selector_i32:
3236 case Intrinsic::eh_selector_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003237 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003238 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003239 MVT::i32 : MVT::i64);
3240
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003241 if (MMI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00003242 if (CurMBB->isLandingPad())
3243 addCatchInfo(I, MMI, CurMBB);
Evan Chenge47c3332007-06-27 18:45:32 +00003244 else {
Duncan Sandsf4070822007-06-15 19:04:19 +00003245#ifndef NDEBUG
Duncan Sandsf4070822007-06-15 19:04:19 +00003246 FuncInfo.CatchInfoLost.insert(&I);
3247#endif
Duncan Sands90291952007-07-06 09:18:59 +00003248 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3249 unsigned Reg = TLI.getExceptionSelectorRegister();
3250 if (Reg) CurMBB->addLiveIn(Reg);
Evan Chenge47c3332007-06-27 18:45:32 +00003251 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003252
3253 // Insert the EHSELECTION instruction.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003254 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Jim Laskey735b6f82007-02-22 15:38:06 +00003255 SDOperand Ops[2];
3256 Ops[0] = getValue(I.getOperand(1));
3257 Ops[1] = getRoot();
3258 SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
3259 setValue(&I, Op);
3260 DAG.setRoot(Op.getValue(1));
Jim Laskey7a1de982007-02-24 09:45:44 +00003261 } else {
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003262 setValue(&I, DAG.getConstant(0, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003263 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003264
3265 return 0;
3266 }
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003267
3268 case Intrinsic::eh_typeid_for_i32:
3269 case Intrinsic::eh_typeid_for_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003270 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003271 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003272 MVT::i32 : MVT::i64);
Jim Laskeyb180aa12007-02-21 22:53:45 +00003273
Jim Laskey735b6f82007-02-22 15:38:06 +00003274 if (MMI) {
3275 // Find the type id for the given typeinfo.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003276 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands3b346362007-05-04 17:12:26 +00003277
Jim Laskey735b6f82007-02-22 15:38:06 +00003278 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003279 setValue(&I, DAG.getConstant(TypeID, VT));
Jim Laskey7a1de982007-02-24 09:45:44 +00003280 } else {
Duncan Sandsf664e412007-07-06 14:46:23 +00003281 // Return something different to eh_selector.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003282 setValue(&I, DAG.getConstant(1, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003283 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003284
3285 return 0;
3286 }
3287
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003288 case Intrinsic::eh_return: {
3289 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3290
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003291 if (MMI) {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003292 MMI->setCallsEHReturn(true);
3293 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3294 MVT::Other,
Dan Gohman86e1ebf2008-03-27 19:56:19 +00003295 getControlRoot(),
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003296 getValue(I.getOperand(1)),
3297 getValue(I.getOperand(2))));
3298 } else {
3299 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3300 }
3301
3302 return 0;
3303 }
3304
3305 case Intrinsic::eh_unwind_init: {
3306 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3307 MMI->setCallsUnwindInit(true);
3308 }
3309
3310 return 0;
3311 }
3312
3313 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003314 MVT VT = getValue(I.getOperand(1)).getValueType();
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003315 SDOperand CfaArg;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003316 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003317 CfaArg = DAG.getNode(ISD::TRUNCATE,
3318 TLI.getPointerTy(), getValue(I.getOperand(1)));
3319 else
3320 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3321 TLI.getPointerTy(), getValue(I.getOperand(1)));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003322
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003323 SDOperand Offset = DAG.getNode(ISD::ADD,
3324 TLI.getPointerTy(),
3325 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3326 TLI.getPointerTy()),
3327 CfaArg);
3328 setValue(&I, DAG.getNode(ISD::ADD,
3329 TLI.getPointerTy(),
3330 DAG.getNode(ISD::FRAMEADDR,
3331 TLI.getPointerTy(),
3332 DAG.getConstant(0,
3333 TLI.getPointerTy())),
3334 Offset));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003335 return 0;
3336 }
3337
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003338 case Intrinsic::sqrt:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003339 setValue(&I, DAG.getNode(ISD::FSQRT,
3340 getValue(I.getOperand(1)).getValueType(),
3341 getValue(I.getOperand(1))));
3342 return 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003343 case Intrinsic::powi:
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003344 setValue(&I, DAG.getNode(ISD::FPOWI,
3345 getValue(I.getOperand(1)).getValueType(),
3346 getValue(I.getOperand(1)),
3347 getValue(I.getOperand(2))));
3348 return 0;
Dan Gohmanac9385a2007-10-12 00:01:22 +00003349 case Intrinsic::sin:
3350 setValue(&I, DAG.getNode(ISD::FSIN,
3351 getValue(I.getOperand(1)).getValueType(),
3352 getValue(I.getOperand(1))));
3353 return 0;
3354 case Intrinsic::cos:
3355 setValue(&I, DAG.getNode(ISD::FCOS,
3356 getValue(I.getOperand(1)).getValueType(),
3357 getValue(I.getOperand(1))));
3358 return 0;
3359 case Intrinsic::pow:
3360 setValue(&I, DAG.getNode(ISD::FPOW,
3361 getValue(I.getOperand(1)).getValueType(),
3362 getValue(I.getOperand(1)),
3363 getValue(I.getOperand(2))));
3364 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003365 case Intrinsic::pcmarker: {
3366 SDOperand Tmp = getValue(I.getOperand(1));
3367 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3368 return 0;
3369 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003370 case Intrinsic::readcyclecounter: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003371 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003372 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
3373 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3374 &Op, 1);
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003375 setValue(&I, Tmp);
3376 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003377 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003378 }
Chris Lattnerc6eb6d72007-04-10 03:20:39 +00003379 case Intrinsic::part_select: {
Reid Spencer3f108cb2007-04-05 01:20:18 +00003380 // Currently not implemented: just abort
Reid Spencerf75b8742007-04-12 02:48:46 +00003381 assert(0 && "part_select intrinsic not implemented");
3382 abort();
3383 }
3384 case Intrinsic::part_set: {
3385 // Currently not implemented: just abort
3386 assert(0 && "part_set intrinsic not implemented");
Reid Spencer3f108cb2007-04-05 01:20:18 +00003387 abort();
Reid Spenceraddd11d2007-04-04 23:48:25 +00003388 }
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003389 case Intrinsic::bswap:
Nate Begemand88fc032006-01-14 03:14:10 +00003390 setValue(&I, DAG.getNode(ISD::BSWAP,
3391 getValue(I.getOperand(1)).getValueType(),
3392 getValue(I.getOperand(1))));
3393 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003394 case Intrinsic::cttz: {
3395 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003396 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003397 SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003398 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003399 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003400 }
3401 case Intrinsic::ctlz: {
3402 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003403 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003404 SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003405 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003406 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003407 }
3408 case Intrinsic::ctpop: {
3409 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003410 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003411 SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003412 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003413 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003414 }
Chris Lattner140d53c2006-01-13 02:50:02 +00003415 case Intrinsic::stacksave: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003416 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003417 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
3418 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattner140d53c2006-01-13 02:50:02 +00003419 setValue(&I, Tmp);
3420 DAG.setRoot(Tmp.getValue(1));
3421 return 0;
3422 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00003423 case Intrinsic::stackrestore: {
3424 SDOperand Tmp = getValue(I.getOperand(1));
3425 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00003426 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00003427 }
Tanya Lattner24e5aad2007-06-15 22:26:58 +00003428 case Intrinsic::var_annotation:
3429 // Discard annotate attributes
3430 return 0;
Duncan Sands36397f52007-07-27 12:58:54 +00003431
Duncan Sands36397f52007-07-27 12:58:54 +00003432 case Intrinsic::init_trampoline: {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003433 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands36397f52007-07-27 12:58:54 +00003434
3435 SDOperand Ops[6];
3436 Ops[0] = getRoot();
3437 Ops[1] = getValue(I.getOperand(1));
3438 Ops[2] = getValue(I.getOperand(2));
3439 Ops[3] = getValue(I.getOperand(3));
3440 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3441 Ops[5] = DAG.getSrcValue(F);
3442
Duncan Sandsf7331b32007-09-11 14:10:23 +00003443 SDOperand Tmp = DAG.getNode(ISD::TRAMPOLINE,
3444 DAG.getNodeValueTypes(TLI.getPointerTy(),
3445 MVT::Other), 2,
3446 Ops, 6);
3447
3448 setValue(&I, Tmp);
3449 DAG.setRoot(Tmp.getValue(1));
Duncan Sands36397f52007-07-27 12:58:54 +00003450 return 0;
3451 }
Gordon Henriksence224772008-01-07 01:30:38 +00003452
3453 case Intrinsic::gcroot:
3454 if (GCI) {
3455 Value *Alloca = I.getOperand(1);
3456 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3457
3458 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3459 GCI->addStackRoot(FI->getIndex(), TypeMap);
3460 }
3461 return 0;
3462
3463 case Intrinsic::gcread:
3464 case Intrinsic::gcwrite:
3465 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3466 return 0;
3467
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003468 case Intrinsic::flt_rounds: {
Dan Gohman1a024862008-01-31 00:41:03 +00003469 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003470 return 0;
3471 }
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003472
3473 case Intrinsic::trap: {
3474 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3475 return 0;
3476 }
Evan Cheng27b7db52008-03-08 00:58:38 +00003477 case Intrinsic::prefetch: {
3478 SDOperand Ops[4];
3479 Ops[0] = getRoot();
3480 Ops[1] = getValue(I.getOperand(1));
3481 Ops[2] = getValue(I.getOperand(2));
3482 Ops[3] = getValue(I.getOperand(3));
3483 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3484 return 0;
3485 }
3486
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003487 case Intrinsic::memory_barrier: {
3488 SDOperand Ops[6];
3489 Ops[0] = getRoot();
3490 for (int x = 1; x < 6; ++x)
3491 Ops[x] = getValue(I.getOperand(x));
3492
3493 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3494 return 0;
3495 }
Mon P Wang28873102008-06-25 08:15:39 +00003496 case Intrinsic::atomic_cmp_swap: {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003497 SDOperand Root = getRoot();
Mon P Wang28873102008-06-25 08:15:39 +00003498 SDOperand L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003499 getValue(I.getOperand(1)),
3500 getValue(I.getOperand(2)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003501 getValue(I.getOperand(3)),
Mon P Wang28873102008-06-25 08:15:39 +00003502 I.getOperand(1));
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003503 setValue(&I, L);
3504 DAG.setRoot(L.getValue(1));
3505 return 0;
3506 }
Mon P Wang28873102008-06-25 08:15:39 +00003507 case Intrinsic::atomic_load_add:
3508 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3509 case Intrinsic::atomic_load_sub:
3510 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang63307c32008-05-05 19:05:59 +00003511 case Intrinsic::atomic_load_and:
3512 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3513 case Intrinsic::atomic_load_or:
3514 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3515 case Intrinsic::atomic_load_xor:
3516 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003517 case Intrinsic::atomic_load_nand:
3518 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang63307c32008-05-05 19:05:59 +00003519 case Intrinsic::atomic_load_min:
3520 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3521 case Intrinsic::atomic_load_max:
3522 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3523 case Intrinsic::atomic_load_umin:
3524 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3525 case Intrinsic::atomic_load_umax:
3526 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3527 case Intrinsic::atomic_swap:
3528 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003529 }
3530}
3531
3532
Duncan Sands6f74b482007-12-19 09:48:52 +00003533void SelectionDAGLowering::LowerCallTo(CallSite CS, SDOperand Callee,
Jim Laskey1da20a72007-02-23 21:45:01 +00003534 bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003535 MachineBasicBlock *LandingPad) {
Duncan Sands6f74b482007-12-19 09:48:52 +00003536 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Jim Laskey735b6f82007-02-22 15:38:06 +00003537 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003538 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3539 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sands6f74b482007-12-19 09:48:52 +00003540
Jim Laskey735b6f82007-02-22 15:38:06 +00003541 TargetLowering::ArgListTy Args;
3542 TargetLowering::ArgListEntry Entry;
Duncan Sands6f74b482007-12-19 09:48:52 +00003543 Args.reserve(CS.arg_size());
3544 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3545 i != e; ++i) {
3546 SDOperand ArgNode = getValue(*i);
3547 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Duncan Sands4fee7032007-05-07 20:49:28 +00003548
Duncan Sands6f74b482007-12-19 09:48:52 +00003549 unsigned attrInd = i - CS.arg_begin() + 1;
3550 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3551 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3552 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3553 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3554 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3555 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen08e78b12008-02-22 17:49:45 +00003556 Entry.Alignment = CS.getParamAlignment(attrInd);
Jim Laskey735b6f82007-02-22 15:38:06 +00003557 Args.push_back(Entry);
3558 }
3559
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003560 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003561 // Insert a label before the invoke call to mark the try range. This can be
3562 // used to detect deletion of the invoke via the MachineModuleInfo.
3563 BeginLabel = MMI->NextLabelID();
Dale Johannesena4091d32008-04-04 23:48:31 +00003564 // Both PendingLoads and PendingExports must be flushed here;
3565 // this call might not return.
3566 (void)getRoot();
Dan Gohman44066042008-07-01 00:05:16 +00003567 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003568 }
Duncan Sands6f74b482007-12-19 09:48:52 +00003569
Jim Laskey735b6f82007-02-22 15:38:06 +00003570 std::pair<SDOperand,SDOperand> Result =
Duncan Sands6f74b482007-12-19 09:48:52 +00003571 TLI.LowerCallTo(getRoot(), CS.getType(),
3572 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sands00fee652008-02-14 17:28:50 +00003573 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sands6f74b482007-12-19 09:48:52 +00003574 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Jim Laskey735b6f82007-02-22 15:38:06 +00003575 Callee, Args, DAG);
Duncan Sands6f74b482007-12-19 09:48:52 +00003576 if (CS.getType() != Type::VoidTy)
3577 setValue(CS.getInstruction(), Result.first);
Jim Laskey735b6f82007-02-22 15:38:06 +00003578 DAG.setRoot(Result.second);
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003579
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003580 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003581 // Insert a label at the end of the invoke call to mark the try range. This
3582 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3583 EndLabel = MMI->NextLabelID();
Dan Gohman44066042008-07-01 00:05:16 +00003584 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003585
Duncan Sands6f74b482007-12-19 09:48:52 +00003586 // Inform MachineModuleInfo of range.
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003587 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3588 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003589}
3590
3591
Chris Lattner1c08c712005-01-07 07:47:53 +00003592void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00003593 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003594 if (Function *F = I.getCalledFunction()) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003595 if (F->isDeclaration()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003596 if (unsigned IID = F->getIntrinsicID()) {
3597 RenameFn = visitIntrinsicCall(I, IID);
3598 if (!RenameFn)
3599 return;
Chris Lattner87b51bc2007-09-10 21:15:22 +00003600 }
3601 }
3602
3603 // Check for well-known libc/libm calls. If the function is internal, it
3604 // can't be a library call.
3605 unsigned NameLen = F->getNameLen();
3606 if (!F->hasInternalLinkage() && NameLen) {
3607 const char *NameStr = F->getNameStart();
3608 if (NameStr[0] == 'c' &&
3609 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3610 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3611 if (I.getNumOperands() == 3 && // Basic sanity checks.
3612 I.getOperand(1)->getType()->isFloatingPoint() &&
3613 I.getType() == I.getOperand(1)->getType() &&
3614 I.getType() == I.getOperand(2)->getType()) {
3615 SDOperand LHS = getValue(I.getOperand(1));
3616 SDOperand RHS = getValue(I.getOperand(2));
3617 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3618 LHS, RHS));
3619 return;
3620 }
3621 } else if (NameStr[0] == 'f' &&
3622 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003623 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3624 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003625 if (I.getNumOperands() == 2 && // Basic sanity checks.
3626 I.getOperand(1)->getType()->isFloatingPoint() &&
3627 I.getType() == I.getOperand(1)->getType()) {
3628 SDOperand Tmp = getValue(I.getOperand(1));
3629 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3630 return;
3631 }
3632 } else if (NameStr[0] == 's' &&
3633 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003634 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3635 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003636 if (I.getNumOperands() == 2 && // Basic sanity checks.
3637 I.getOperand(1)->getType()->isFloatingPoint() &&
3638 I.getType() == I.getOperand(1)->getType()) {
3639 SDOperand Tmp = getValue(I.getOperand(1));
3640 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3641 return;
3642 }
3643 } else if (NameStr[0] == 'c' &&
3644 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003645 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3646 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003647 if (I.getNumOperands() == 2 && // Basic sanity checks.
3648 I.getOperand(1)->getType()->isFloatingPoint() &&
3649 I.getType() == I.getOperand(1)->getType()) {
3650 SDOperand Tmp = getValue(I.getOperand(1));
3651 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3652 return;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003653 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00003654 }
Chris Lattner87b51bc2007-09-10 21:15:22 +00003655 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00003656 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00003657 visitInlineAsm(&I);
Chris Lattnerce7518c2006-01-26 22:24:51 +00003658 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003659 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003660
Chris Lattner64e14b12005-01-08 22:48:57 +00003661 SDOperand Callee;
3662 if (!RenameFn)
3663 Callee = getValue(I.getOperand(0));
3664 else
3665 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003666
Duncan Sands6f74b482007-12-19 09:48:52 +00003667 LowerCallTo(&I, Callee, I.isTailCall());
Chris Lattner1c08c712005-01-07 07:47:53 +00003668}
3669
Jim Laskey735b6f82007-02-22 15:38:06 +00003670
Dan Gohmanef5d1942008-03-11 21:11:25 +00003671void SelectionDAGLowering::visitGetResult(GetResultInst &I) {
Dan Gohman67780f12008-04-23 20:25:16 +00003672 if (isa<UndefValue>(I.getOperand(0))) {
Dan Gohman3dc34f62008-04-23 20:21:29 +00003673 SDOperand Undef = DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()));
3674 setValue(&I, Undef);
Chris Lattner6833b062008-04-28 07:16:35 +00003675 return;
Dan Gohman3dc34f62008-04-23 20:21:29 +00003676 }
Chris Lattner6833b062008-04-28 07:16:35 +00003677
3678 // To add support for individual return values with aggregate types,
3679 // we'd need a way to take a getresult index and determine which
3680 // values of the Call SDNode are associated with it.
3681 assert(TLI.getValueType(I.getType(), true) != MVT::Other &&
3682 "Individual return values must not be aggregates!");
3683
3684 SDOperand Call = getValue(I.getOperand(0));
3685 setValue(&I, SDOperand(Call.Val, I.getIndex()));
Dan Gohmanef5d1942008-03-11 21:11:25 +00003686}
3687
3688
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003689/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3690/// this value and returns the result as a ValueVT value. This uses
3691/// Chain/Flag as the input and updates them for the output Chain/Flag.
3692/// If the Flag pointer is NULL, no flag is used.
Chris Lattneread0d882008-06-17 06:09:18 +00003693SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner6833b062008-04-28 07:16:35 +00003694 SDOperand &Chain,
3695 SDOperand *Flag) const {
Dan Gohman23ce5022008-04-25 18:27:55 +00003696 // Assemble the legal parts into the final values.
3697 SmallVector<SDOperand, 4> Values(ValueVTs.size());
Chris Lattner6833b062008-04-28 07:16:35 +00003698 SmallVector<SDOperand, 8> Parts;
3699 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman23ce5022008-04-25 18:27:55 +00003700 // Copy the legal parts from the registers.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003701 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003702 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003703 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003704
Chris Lattner6833b062008-04-28 07:16:35 +00003705 Parts.resize(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003706 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003707 SDOperand P;
3708 if (Flag == 0)
3709 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3710 else {
3711 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman23ce5022008-04-25 18:27:55 +00003712 *Flag = P.getValue(2);
Chris Lattner6833b062008-04-28 07:16:35 +00003713 }
3714 Chain = P.getValue(1);
Chris Lattneread0d882008-06-17 06:09:18 +00003715
3716 // If the source register was virtual and if we know something about it,
3717 // add an assert node.
3718 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3719 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3720 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3721 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3722 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3723 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3724
3725 unsigned RegSize = RegisterVT.getSizeInBits();
3726 unsigned NumSignBits = LOI.NumSignBits;
3727 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3728
3729 // FIXME: We capture more information than the dag can represent. For
3730 // now, just use the tightest assertzext/assertsext possible.
3731 bool isSExt = true;
3732 MVT FromVT(MVT::Other);
3733 if (NumSignBits == RegSize)
3734 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3735 else if (NumZeroBits >= RegSize-1)
3736 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3737 else if (NumSignBits > RegSize-8)
3738 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3739 else if (NumZeroBits >= RegSize-9)
3740 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3741 else if (NumSignBits > RegSize-16)
3742 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3743 else if (NumZeroBits >= RegSize-17)
3744 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3745 else if (NumSignBits > RegSize-32)
3746 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3747 else if (NumZeroBits >= RegSize-33)
3748 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3749
3750 if (FromVT != MVT::Other) {
3751 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3752 RegisterVT, P, DAG.getValueType(FromVT));
3753
3754 }
3755 }
3756 }
3757
Dan Gohman23ce5022008-04-25 18:27:55 +00003758 Parts[Part+i] = P;
3759 }
Chris Lattner5df99b32007-03-25 05:00:54 +00003760
Dan Gohman23ce5022008-04-25 18:27:55 +00003761 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3762 ValueVT);
3763 Part += NumRegs;
3764 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00003765
Duncan Sandsf9516202008-06-30 10:19:09 +00003766 return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3767 &Values[0], ValueVTs.size());
Chris Lattner864635a2006-02-22 22:37:12 +00003768}
3769
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003770/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3771/// specified value into the registers specified by this object. This uses
3772/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003773/// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003774void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003775 SDOperand &Chain, SDOperand *Flag) const {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003776 // Get the list of the values's legal parts.
Dan Gohman23ce5022008-04-25 18:27:55 +00003777 unsigned NumRegs = Regs.size();
3778 SmallVector<SDOperand, 8> Parts(NumRegs);
Chris Lattner6833b062008-04-28 07:16:35 +00003779 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003780 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003781 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003782 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003783
3784 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3785 &Parts[Part], NumParts, RegisterVT);
3786 Part += NumParts;
3787 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003788
3789 // Copy the parts into the registers.
Dan Gohman23ce5022008-04-25 18:27:55 +00003790 SmallVector<SDOperand, 8> Chains(NumRegs);
3791 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003792 SDOperand Part;
3793 if (Flag == 0)
3794 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3795 else {
3796 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003797 *Flag = Part.getValue(1);
Chris Lattner6833b062008-04-28 07:16:35 +00003798 }
3799 Chains[i] = Part.getValue(0);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003800 }
Chris Lattner6833b062008-04-28 07:16:35 +00003801
Evan Cheng33bf38a2008-04-28 22:07:13 +00003802 if (NumRegs == 1 || Flag)
3803 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3804 // flagged to it. That is the CopyToReg nodes and the user are considered
3805 // a single scheduling unit. If we create a TokenFactor and return it as
3806 // chain, then the TokenFactor is both a predecessor (operand) of the
3807 // user as well as a successor (the TF operands are flagged to the user).
3808 // c1, f1 = CopyToReg
3809 // c2, f2 = CopyToReg
3810 // c3 = TokenFactor c1, c2
3811 // ...
3812 // = op c3, ..., f2
3813 Chain = Chains[NumRegs-1];
Chris Lattner6833b062008-04-28 07:16:35 +00003814 else
3815 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003816}
Chris Lattner864635a2006-02-22 22:37:12 +00003817
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003818/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3819/// operand list. This adds the code marker and includes the number of
3820/// values added into it.
3821void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00003822 std::vector<SDOperand> &Ops) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003823 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner4b993b12007-04-09 00:33:58 +00003824 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner6833b062008-04-28 07:16:35 +00003825 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3826 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003827 MVT RegisterVT = RegVTs[Value];
Chris Lattner6833b062008-04-28 07:16:35 +00003828 for (unsigned i = 0; i != NumRegs; ++i)
3829 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman23ce5022008-04-25 18:27:55 +00003830 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003831}
Chris Lattner864635a2006-02-22 22:37:12 +00003832
3833/// isAllocatableRegister - If the specified register is safe to allocate,
3834/// i.e. it isn't a stack pointer or some other special register, return the
3835/// register class for the register. Otherwise, return null.
3836static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003837isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman6f0d0242008-02-10 18:45:23 +00003838 const TargetLowering &TLI,
3839 const TargetRegisterInfo *TRI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003840 MVT FoundVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003841 const TargetRegisterClass *FoundRC = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +00003842 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3843 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003844 MVT ThisVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003845
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003846 const TargetRegisterClass *RC = *RCI;
3847 // If none of the the value types for this register class are valid, we
3848 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003849 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3850 I != E; ++I) {
3851 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003852 // If we have already found this register in a different register class,
3853 // choose the one with the largest VT specified. For example, on
3854 // PowerPC, we favor f64 register classes over f32.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003855 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003856 ThisVT = *I;
3857 break;
3858 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003859 }
3860 }
3861
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003862 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003863
Chris Lattner864635a2006-02-22 22:37:12 +00003864 // NOTE: This isn't ideal. In particular, this might allocate the
3865 // frame pointer in functions that need it (due to them not being taken
3866 // out of allocation, because a variable sized allocation hasn't been seen
3867 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003868 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3869 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003870 if (*I == Reg) {
3871 // We found a matching register class. Keep looking at others in case
3872 // we find one with larger registers that this physreg is also in.
3873 FoundRC = RC;
3874 FoundVT = ThisVT;
3875 break;
3876 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00003877 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003878 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00003879}
3880
Chris Lattner4e4b5762006-02-01 18:59:47 +00003881
Chris Lattner0c583402007-04-28 20:49:53 +00003882namespace {
3883/// AsmOperandInfo - This contains information for each constraint that we are
3884/// lowering.
Evan Cheng5c807602008-02-26 02:33:44 +00003885struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3886 /// CallOperand - If this is the result output operand or a clobber
3887 /// this is null, otherwise it is the incoming operand to the CallInst.
3888 /// This gets modified as the asm is processed.
Chris Lattner0c583402007-04-28 20:49:53 +00003889 SDOperand CallOperand;
Evan Cheng5c807602008-02-26 02:33:44 +00003890
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003891 /// AssignedRegs - If this is a register or register class operand, this
3892 /// contains the set of register corresponding to the operand.
3893 RegsForValue AssignedRegs;
3894
Dan Gohman23ce5022008-04-25 18:27:55 +00003895 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Cheng5c807602008-02-26 02:33:44 +00003896 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Chris Lattner0c583402007-04-28 20:49:53 +00003897 }
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003898
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003899 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3900 /// busy in OutputRegs/InputRegs.
3901 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3902 std::set<unsigned> &OutputRegs,
Chris Lattner7cbeb242008-02-21 04:55:52 +00003903 std::set<unsigned> &InputRegs,
3904 const TargetRegisterInfo &TRI) const {
3905 if (isOutReg) {
3906 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3907 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3908 }
3909 if (isInReg) {
3910 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3911 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3912 }
3913 }
3914
3915private:
3916 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3917 /// specified set.
3918 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3919 const TargetRegisterInfo &TRI) {
3920 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3921 Regs.insert(Reg);
3922 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3923 for (; *Aliases; ++Aliases)
3924 Regs.insert(*Aliases);
3925 }
Chris Lattner0c583402007-04-28 20:49:53 +00003926};
3927} // end anon namespace.
Chris Lattner864635a2006-02-22 22:37:12 +00003928
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003929
Chris Lattner0fe71e92008-02-21 19:43:13 +00003930/// GetRegistersForValue - Assign registers (virtual or physical) for the
3931/// specified operand. We prefer to assign virtual registers, to allow the
3932/// register allocator handle the assignment process. However, if the asm uses
3933/// features that we can't model on machineinstrs, we have SDISel do the
3934/// allocation. This produces generally horrible, but correct, code.
3935///
3936/// OpInfo describes the operand.
3937/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3938/// or any explicitly clobbered registers.
3939/// Input and OutputRegs are the set of already allocated physical registers.
3940///
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003941void SelectionDAGLowering::
Evan Cheng5c807602008-02-26 02:33:44 +00003942GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnerbf996f12007-04-30 17:29:31 +00003943 std::set<unsigned> &OutputRegs,
3944 std::set<unsigned> &InputRegs) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003945 // Compute whether this value requires an input register, an output register,
3946 // or both.
3947 bool isOutReg = false;
3948 bool isInReg = false;
3949 switch (OpInfo.Type) {
3950 case InlineAsm::isOutput:
3951 isOutReg = true;
3952
3953 // If this is an early-clobber output, or if there is an input
3954 // constraint that matches this, we need to reserve the input register
3955 // so no other inputs allocate to it.
3956 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3957 break;
3958 case InlineAsm::isInput:
3959 isInReg = true;
3960 isOutReg = false;
3961 break;
3962 case InlineAsm::isClobber:
3963 isOutReg = true;
3964 isInReg = true;
3965 break;
3966 }
3967
3968
3969 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerb606dba2008-04-28 06:44:42 +00003970 SmallVector<unsigned, 4> Regs;
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003971
3972 // If this is a constraint for a single physreg, or a constraint for a
3973 // register class, find it.
3974 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
3975 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3976 OpInfo.ConstraintVT);
Chris Lattnerbf996f12007-04-30 17:29:31 +00003977
3978 unsigned NumRegs = 1;
3979 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohmanb9f10192007-06-21 14:42:22 +00003980 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003981 MVT RegVT;
3982 MVT ValueVT = OpInfo.ConstraintVT;
Chris Lattnerbf996f12007-04-30 17:29:31 +00003983
Chris Lattnerbf996f12007-04-30 17:29:31 +00003984
3985 // If this is a constraint for a specific physical register, like {r17},
3986 // assign it now.
3987 if (PhysReg.first) {
3988 if (OpInfo.ConstraintVT == MVT::Other)
3989 ValueVT = *PhysReg.second->vt_begin();
3990
3991 // Get the actual register value type. This is important, because the user
3992 // may have asked for (e.g.) the AX register in i32 type. We need to
3993 // remember that AX is actually i16 to get the right extension.
3994 RegVT = *PhysReg.second->vt_begin();
3995
3996 // This is a explicit reference to a physical register.
3997 Regs.push_back(PhysReg.first);
3998
3999 // If this is an expanded reference, add the rest of the regs to Regs.
4000 if (NumRegs != 1) {
4001 TargetRegisterClass::iterator I = PhysReg.second->begin();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004002 for (; *I != PhysReg.first; ++I)
Evan Cheng50871242008-05-14 20:07:51 +00004003 assert(I != PhysReg.second->end() && "Didn't find reg!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004004
4005 // Already added the first reg.
4006 --NumRegs; ++I;
4007 for (; NumRegs; --NumRegs, ++I) {
Evan Cheng50871242008-05-14 20:07:51 +00004008 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004009 Regs.push_back(*I);
4010 }
4011 }
Dan Gohman23ce5022008-04-25 18:27:55 +00004012 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004013 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4014 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004015 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004016 }
4017
4018 // Otherwise, if this was a reference to an LLVM register class, create vregs
4019 // for this reference.
4020 std::vector<unsigned> RegClassRegs;
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004021 const TargetRegisterClass *RC = PhysReg.second;
4022 if (RC) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004023 // If this is an early clobber or tied register, our regalloc doesn't know
4024 // how to maintain the constraint. If it isn't, go ahead and create vreg
4025 // and let the regalloc do the right thing.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004026 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4027 // If there is some other early clobber and this is an input register,
4028 // then we are forced to pre-allocate the input reg so it doesn't
4029 // conflict with the earlyclobber.
4030 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004031 RegVT = *PhysReg.second->vt_begin();
4032
4033 if (OpInfo.ConstraintVT == MVT::Other)
4034 ValueVT = RegVT;
4035
4036 // Create the appropriate number of virtual registers.
Chris Lattner84bc5422007-12-31 04:13:23 +00004037 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004038 for (; NumRegs; --NumRegs)
Chris Lattner84bc5422007-12-31 04:13:23 +00004039 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Chris Lattnerbf996f12007-04-30 17:29:31 +00004040
Dan Gohman23ce5022008-04-25 18:27:55 +00004041 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004042 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004043 }
4044
4045 // Otherwise, we can't allocate it. Let the code below figure out how to
4046 // maintain these constraints.
4047 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4048
4049 } else {
4050 // This is a reference to a register class that doesn't directly correspond
4051 // to an LLVM register class. Allocate NumRegs consecutive, available,
4052 // registers from the class.
4053 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4054 OpInfo.ConstraintVT);
4055 }
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004056
Dan Gohman6f0d0242008-02-10 18:45:23 +00004057 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004058 unsigned NumAllocated = 0;
4059 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4060 unsigned Reg = RegClassRegs[i];
4061 // See if this register is available.
4062 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4063 (isInReg && InputRegs.count(Reg))) { // Already used.
4064 // Make sure we find consecutive registers.
4065 NumAllocated = 0;
4066 continue;
4067 }
4068
4069 // Check to see if this register is allocatable (i.e. don't give out the
4070 // stack pointer).
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004071 if (RC == 0) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004072 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004073 if (!RC) { // Couldn't allocate this register.
4074 // Reset NumAllocated to make sure we return consecutive registers.
4075 NumAllocated = 0;
4076 continue;
4077 }
Chris Lattnerbf996f12007-04-30 17:29:31 +00004078 }
4079
4080 // Okay, this register is good, we can use it.
4081 ++NumAllocated;
4082
4083 // If we allocated enough consecutive registers, succeed.
4084 if (NumAllocated == NumRegs) {
4085 unsigned RegStart = (i-NumAllocated)+1;
4086 unsigned RegEnd = i+1;
4087 // Mark all of the allocated registers used.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004088 for (unsigned i = RegStart; i != RegEnd; ++i)
4089 Regs.push_back(RegClassRegs[i]);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004090
Dan Gohman23ce5022008-04-25 18:27:55 +00004091 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004092 OpInfo.ConstraintVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004093 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004094 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004095 }
4096 }
4097
4098 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattnerbf996f12007-04-30 17:29:31 +00004099}
4100
4101
Chris Lattnerce7518c2006-01-26 22:24:51 +00004102/// visitInlineAsm - Handle a call to an InlineAsm object.
4103///
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004104void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4105 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004106
Chris Lattner0c583402007-04-28 20:49:53 +00004107 /// ConstraintOperands - Information about all of the constraints.
Evan Cheng5c807602008-02-26 02:33:44 +00004108 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004109
4110 SDOperand Chain = getRoot();
4111 SDOperand Flag;
4112
Chris Lattner4e4b5762006-02-01 18:59:47 +00004113 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004114
Chris Lattner0c583402007-04-28 20:49:53 +00004115 // Do a prepass over the constraints, canonicalizing them, and building up the
4116 // ConstraintOperands list.
4117 std::vector<InlineAsm::ConstraintInfo>
4118 ConstraintInfos = IA->ParseConstraints();
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004119
4120 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4121 // constraint. If so, we can't let the register allocator allocate any input
4122 // registers, because it will not know to avoid the earlyclobbered output reg.
4123 bool SawEarlyClobber = false;
4124
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004125 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattneracf8b012008-04-27 23:44:28 +00004126 unsigned ResNo = 0; // ResNo - The result number of the next output.
Chris Lattner0c583402007-04-28 20:49:53 +00004127 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004128 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4129 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Chris Lattner0c583402007-04-28 20:49:53 +00004130
Duncan Sands83ec4b62008-06-06 12:08:01 +00004131 MVT OpVT = MVT::Other;
Chris Lattner0c583402007-04-28 20:49:53 +00004132
4133 // Compute the value type for each operand.
4134 switch (OpInfo.Type) {
Chris Lattner1efa40f2006-02-22 00:56:39 +00004135 case InlineAsm::isOutput:
Chris Lattneracf8b012008-04-27 23:44:28 +00004136 // Indirect outputs just consume an argument.
4137 if (OpInfo.isIndirect) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004138 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattneracf8b012008-04-27 23:44:28 +00004139 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004140 }
Chris Lattneracf8b012008-04-27 23:44:28 +00004141 // The return value of the call is this value. As such, there is no
4142 // corresponding argument.
4143 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4144 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4145 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4146 } else {
4147 assert(ResNo == 0 && "Asm only has one result!");
4148 OpVT = TLI.getValueType(CS.getType());
4149 }
4150 ++ResNo;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004151 break;
4152 case InlineAsm::isInput:
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004153 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner1efa40f2006-02-22 00:56:39 +00004154 break;
4155 case InlineAsm::isClobber:
Chris Lattner0c583402007-04-28 20:49:53 +00004156 // Nothing to do.
Chris Lattner1efa40f2006-02-22 00:56:39 +00004157 break;
4158 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004159
Chris Lattner0c583402007-04-28 20:49:53 +00004160 // If this is an input or an indirect output, process the call argument.
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004161 // BasicBlocks are labels, currently appearing only in asm's.
Chris Lattner0c583402007-04-28 20:49:53 +00004162 if (OpInfo.CallOperandVal) {
Chris Lattner507ffd22008-04-27 00:16:18 +00004163 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4164 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004165 else {
4166 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4167 const Type *OpTy = OpInfo.CallOperandVal->getType();
4168 // If this is an indirect operand, the operand is a pointer to the
4169 // accessed type.
4170 if (OpInfo.isIndirect)
4171 OpTy = cast<PointerType>(OpTy)->getElementType();
4172
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004173 // If OpTy is not a single value, it may be a struct/union that we
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004174 // can tile with integers.
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004175 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004176 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4177 switch (BitSize) {
4178 default: break;
4179 case 1:
4180 case 8:
4181 case 16:
4182 case 32:
4183 case 64:
4184 OpTy = IntegerType::get(BitSize);
4185 break;
4186 }
Chris Lattner6995cf62007-04-29 18:58:03 +00004187 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004188
4189 OpVT = TLI.getValueType(OpTy, true);
Chris Lattner0c583402007-04-28 20:49:53 +00004190 }
4191 }
4192
4193 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a600be2007-04-28 21:01:43 +00004194
Chris Lattner3ff90dc2007-04-30 17:16:27 +00004195 // Compute the constraint code and ConstraintType to use.
Chris Lattner5a096902008-04-27 00:37:18 +00004196 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Chris Lattner0c583402007-04-28 20:49:53 +00004197
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004198 // Keep track of whether we see an earlyclobber.
4199 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004200
Chris Lattner0fe71e92008-02-21 19:43:13 +00004201 // If we see a clobber of a register, it is an early clobber.
Chris Lattner69e6a8d2008-02-21 20:54:31 +00004202 if (!SawEarlyClobber &&
4203 OpInfo.Type == InlineAsm::isClobber &&
4204 OpInfo.ConstraintType == TargetLowering::C_Register) {
4205 // Note that we want to ignore things that we don't trick here, like
4206 // dirflag, fpsr, flags, etc.
4207 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4208 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4209 OpInfo.ConstraintVT);
4210 if (PhysReg.first || PhysReg.second) {
4211 // This is a register we know of.
4212 SawEarlyClobber = true;
4213 }
4214 }
Chris Lattner0fe71e92008-02-21 19:43:13 +00004215
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004216 // If this is a memory input, and if the operand is not indirect, do what we
4217 // need to to provide an address for the memory input.
4218 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4219 !OpInfo.isIndirect) {
4220 assert(OpInfo.Type == InlineAsm::isInput &&
4221 "Can only indirectify direct input operands!");
4222
4223 // Memory operands really want the address of the value. If we don't have
4224 // an indirect input, put it in the constpool if we can, otherwise spill
4225 // it to a stack slot.
4226
4227 // If the operand is a float, integer, or vector constant, spill to a
4228 // constant pool entry to get its address.
4229 Value *OpVal = OpInfo.CallOperandVal;
4230 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4231 isa<ConstantVector>(OpVal)) {
4232 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4233 TLI.getPointerTy());
4234 } else {
4235 // Otherwise, create a stack slot and emit a store to it before the
4236 // asm.
4237 const Type *Ty = OpVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +00004238 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004239 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4240 MachineFunction &MF = DAG.getMachineFunction();
4241 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
4242 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4243 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4244 OpInfo.CallOperand = StackSlot;
4245 }
4246
4247 // There is no longer a Value* corresponding to this operand.
4248 OpInfo.CallOperandVal = 0;
4249 // It is now an indirect operand.
4250 OpInfo.isIndirect = true;
4251 }
4252
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004253 // If this constraint is for a specific register, allocate it before
4254 // anything else.
4255 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4256 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattner0c583402007-04-28 20:49:53 +00004257 }
Chris Lattner0c583402007-04-28 20:49:53 +00004258 ConstraintInfos.clear();
4259
4260
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004261 // Second pass - Loop over all of the operands, assigning virtual or physregs
4262 // to registerclass operands.
4263 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004264 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004265
4266 // C_Register operands have already been allocated, Other/Memory don't need
4267 // to be.
4268 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4269 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4270 }
4271
Chris Lattner0c583402007-04-28 20:49:53 +00004272 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
4273 std::vector<SDOperand> AsmNodeOperands;
4274 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
4275 AsmNodeOperands.push_back(
4276 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4277
Chris Lattner2cc2f662006-02-01 01:28:23 +00004278
Chris Lattner0f0b7d42006-02-21 23:12:12 +00004279 // Loop over all of the inputs, copying the operand values into the
4280 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00004281 RegsForValue RetValRegs;
Chris Lattner41f62592008-04-29 04:29:54 +00004282
Chris Lattner0c583402007-04-28 20:49:53 +00004283 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4284 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4285
4286 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004287 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner1efa40f2006-02-22 00:56:39 +00004288
Chris Lattner0c583402007-04-28 20:49:53 +00004289 switch (OpInfo.Type) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00004290 case InlineAsm::isOutput: {
Chris Lattnerc83994e2007-04-28 21:03:16 +00004291 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4292 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerf2f3cd52007-04-28 06:08:13 +00004293 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004294 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner22873462006-02-27 23:45:39 +00004295
Chris Lattner22873462006-02-27 23:45:39 +00004296 // Add information to the INLINEASM node to know about this output.
4297 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004298 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4299 TLI.getPointerTy()));
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004300 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner22873462006-02-27 23:45:39 +00004301 break;
4302 }
4303
Chris Lattner2a600be2007-04-28 21:01:43 +00004304 // Otherwise, this is a register or register class output.
Chris Lattner22873462006-02-27 23:45:39 +00004305
Chris Lattner864635a2006-02-22 22:37:12 +00004306 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00004307 // we can use.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004308 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sandsa47c6c32008-06-17 03:24:13 +00004309 cerr << "Couldn't allocate output reg for constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004310 << OpInfo.ConstraintCode << "'!\n";
Chris Lattnerd03f1582006-10-31 07:33:13 +00004311 exit(1);
4312 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004313
Chris Lattner41f62592008-04-29 04:29:54 +00004314 // If this is an indirect operand, store through the pointer after the
4315 // asm.
4316 if (OpInfo.isIndirect) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004317 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattner0c583402007-04-28 20:49:53 +00004318 OpInfo.CallOperandVal));
Chris Lattner41f62592008-04-29 04:29:54 +00004319 } else {
4320 // This is the result value of the call.
4321 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4322 // Concatenate this output onto the outputs list.
4323 RetValRegs.append(OpInfo.AssignedRegs);
Chris Lattner2cc2f662006-02-01 01:28:23 +00004324 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004325
4326 // Add information to the INLINEASM node to know that this register is
4327 // set.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004328 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4329 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004330 break;
4331 }
4332 case InlineAsm::isInput: {
Chris Lattner0c583402007-04-28 20:49:53 +00004333 SDOperand InOperandVal = OpInfo.CallOperand;
Chris Lattner3d81fee2006-02-04 02:16:44 +00004334
Chris Lattner0c583402007-04-28 20:49:53 +00004335 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner2223aea2006-02-02 00:25:23 +00004336 // If this is required to match an output register we have already set,
4337 // just use its register.
Chris Lattner0c583402007-04-28 20:49:53 +00004338 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00004339
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004340 // Scan until we find the definition we already emitted of this operand.
4341 // When we find it, create a RegsForValue operand.
4342 unsigned CurOp = 2; // The first operand.
4343 for (; OperandNo; --OperandNo) {
4344 // Advance to the next operand.
4345 unsigned NumOps =
4346 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00004347 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4348 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004349 "Skipped past definitions?");
4350 CurOp += (NumOps>>3)+1;
4351 }
4352
4353 unsigned NumOps =
4354 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattner527fae12007-02-01 01:21:12 +00004355 if ((NumOps & 7) == 2 /*REGDEF*/) {
4356 // Add NumOps>>3 registers to MatchedRegs.
4357 RegsForValue MatchedRegs;
Dan Gohman23ce5022008-04-25 18:27:55 +00004358 MatchedRegs.TLI = &TLI;
Dan Gohman1fa850b2008-05-02 00:03:54 +00004359 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4360 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Chris Lattner527fae12007-02-01 01:21:12 +00004361 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4362 unsigned Reg =
4363 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4364 MatchedRegs.Regs.push_back(Reg);
4365 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004366
Chris Lattner527fae12007-02-01 01:21:12 +00004367 // Use the produced MatchedRegs object to
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004368 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner527fae12007-02-01 01:21:12 +00004369 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4370 break;
4371 } else {
4372 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattnerf9853bc2008-02-21 05:27:19 +00004373 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4374 // Add information to the INLINEASM node to know about this input.
4375 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4376 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4377 TLI.getPointerTy()));
4378 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4379 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004380 }
Chris Lattner2223aea2006-02-02 00:25:23 +00004381 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004382
Chris Lattner2a600be2007-04-28 21:01:43 +00004383 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Chris Lattner0c583402007-04-28 20:49:53 +00004384 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004385 "Don't know how to handle indirect other inputs yet!");
4386
Chris Lattner48884cd2007-08-25 00:47:38 +00004387 std::vector<SDOperand> Ops;
4388 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4389 Ops, DAG);
4390 if (Ops.empty()) {
Bill Wendling832171c2006-12-07 20:04:42 +00004391 cerr << "Invalid operand for inline asm constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004392 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner53069fb2006-10-31 19:41:18 +00004393 exit(1);
4394 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004395
4396 // Add information to the INLINEASM node to know about this input.
Chris Lattner48884cd2007-08-25 00:47:38 +00004397 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004398 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4399 TLI.getPointerTy()));
Chris Lattner48884cd2007-08-25 00:47:38 +00004400 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004401 break;
Chris Lattner2a600be2007-04-28 21:01:43 +00004402 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004403 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner44b2c502007-04-28 06:42:38 +00004404 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4405 "Memory operands expect pointer values");
4406
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004407 // Add information to the INLINEASM node to know about this input.
4408 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004409 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4410 TLI.getPointerTy()));
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004411 AsmNodeOperands.push_back(InOperandVal);
4412 break;
4413 }
4414
Chris Lattner2a600be2007-04-28 21:01:43 +00004415 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4416 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4417 "Unknown constraint type!");
Chris Lattner0c583402007-04-28 20:49:53 +00004418 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004419 "Don't know how to handle indirect register inputs yet!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004420
4421 // Copy the input into the appropriate registers.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004422 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4423 "Couldn't allocate input reg!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004424
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004425 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004426
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004427 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4428 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004429 break;
4430 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004431 case InlineAsm::isClobber: {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004432 // Add the clobbered value to the operand list, so that the register
4433 // allocator is aware that the physreg got clobbered.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004434 if (!OpInfo.AssignedRegs.Regs.empty())
4435 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4436 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004437 break;
4438 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004439 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004440 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004441
4442 // Finish up input operands.
4443 AsmNodeOperands[0] = Chain;
4444 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4445
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004446 Chain = DAG.getNode(ISD::INLINEASM,
4447 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004448 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004449 Flag = Chain.getValue(1);
4450
Chris Lattner6656dd12006-01-31 02:03:41 +00004451 // If this asm returns a register value, copy the result from that register
4452 // and set it as the value of the call.
Chris Lattner3a508c92007-04-12 06:00:20 +00004453 if (!RetValRegs.Regs.empty()) {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004454 SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner3fb29682008-04-29 04:48:56 +00004455
4456 // If any of the results of the inline asm is a vector, it may have the
4457 // wrong width/num elts. This can happen for register classes that can
4458 // contain multiple different value types. The preg or vreg allocated may
4459 // not have the same VT as was expected. Convert it to the right type with
Dan Gohman7f321562007-06-25 16:23:39 +00004460 // bit_convert.
Chris Lattner3fb29682008-04-29 04:48:56 +00004461 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4462 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004463 if (Val.Val->getValueType(i).isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004464 Val = DAG.getNode(ISD::BIT_CONVERT,
4465 TLI.getValueType(ResSTy->getElementType(i)), Val);
4466 }
4467 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004468 if (Val.getValueType().isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004469 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4470 Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004471 }
Chris Lattner3fb29682008-04-29 04:48:56 +00004472
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004473 setValue(CS.getInstruction(), Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004474 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004475
Chris Lattner6656dd12006-01-31 02:03:41 +00004476 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
4477
4478 // Process indirect outputs, first output all of the flagged copies out of
4479 // physregs.
4480 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00004481 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00004482 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004483 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner864635a2006-02-22 22:37:12 +00004484 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00004485 }
4486
4487 // Emit the non-flagged stores from the physregs.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004488 SmallVector<SDOperand, 8> OutChains;
Chris Lattner6656dd12006-01-31 02:03:41 +00004489 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattner0c583402007-04-28 20:49:53 +00004490 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner6656dd12006-01-31 02:03:41 +00004491 getValue(StoresToEmit[i].second),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004492 StoresToEmit[i].second, 0));
Chris Lattner6656dd12006-01-31 02:03:41 +00004493 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004494 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4495 &OutChains[0], OutChains.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004496 DAG.setRoot(Chain);
4497}
4498
4499
Chris Lattner1c08c712005-01-07 07:47:53 +00004500void SelectionDAGLowering::visitMalloc(MallocInst &I) {
4501 SDOperand Src = getValue(I.getOperand(0));
4502
Duncan Sands83ec4b62008-06-06 12:08:01 +00004503 MVT IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00004504
Duncan Sands8e4eb092008-06-08 20:54:56 +00004505 if (IntPtr.bitsLT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004506 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004507 else if (IntPtr.bitsGT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004508 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00004509
4510 // Scale the source by the type size.
Duncan Sands514ab342007-11-01 20:53:16 +00004511 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00004512 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner0bd48932008-01-17 07:00:52 +00004513 Src, DAG.getIntPtrConstant(ElementSize));
Chris Lattner1c08c712005-01-07 07:47:53 +00004514
Reid Spencer47857812006-12-31 05:55:36 +00004515 TargetLowering::ArgListTy Args;
4516 TargetLowering::ArgListEntry Entry;
4517 Entry.Node = Src;
4518 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004519 Args.push_back(Entry);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004520
4521 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004522 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4523 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004524 setValue(&I, Result.first); // Pointers always fit in registers
4525 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004526}
4527
4528void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencer47857812006-12-31 05:55:36 +00004529 TargetLowering::ArgListTy Args;
4530 TargetLowering::ArgListEntry Entry;
4531 Entry.Node = getValue(I.getOperand(0));
4532 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004533 Args.push_back(Entry);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004534 MVT IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00004535 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004536 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4537 CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00004538 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4539 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004540}
4541
Evan Chengff9b3732008-01-30 18:18:23 +00004542// EmitInstrWithCustomInserter - This method should be implemented by targets
4543// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +00004544// instructions are special in various ways, which require special support to
4545// insert. The specified MachineInstr is created but not inserted into any
4546// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +00004547MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Chris Lattner025c39b2005-08-26 20:54:47 +00004548 MachineBasicBlock *MBB) {
Bill Wendling832171c2006-12-07 20:04:42 +00004549 cerr << "If a target marks an instruction with "
4550 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chengff9b3732008-01-30 18:18:23 +00004551 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Chris Lattner025c39b2005-08-26 20:54:47 +00004552 abort();
4553 return 0;
4554}
4555
Chris Lattner39ae3622005-01-09 00:00:49 +00004556void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004557 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4558 getValue(I.getOperand(1)),
4559 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00004560}
4561
4562void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004563 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
4564 getValue(I.getOperand(0)),
4565 DAG.getSrcValue(I.getOperand(0)));
4566 setValue(&I, V);
4567 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00004568}
4569
4570void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004571 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4572 getValue(I.getOperand(1)),
4573 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004574}
4575
4576void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004577 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4578 getValue(I.getOperand(1)),
4579 getValue(I.getOperand(2)),
4580 DAG.getSrcValue(I.getOperand(1)),
4581 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004582}
4583
Chris Lattnerfdfded52006-04-12 16:20:43 +00004584/// TargetLowering::LowerArguments - This is the default LowerArguments
4585/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004586/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4587/// integrated into SDISel.
Dan Gohmana44b6742008-06-30 20:31:15 +00004588void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
4589 SmallVectorImpl<SDOperand> &ArgValues) {
Chris Lattnerfdfded52006-04-12 16:20:43 +00004590 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
Dan Gohmana44b6742008-06-30 20:31:15 +00004591 SmallVector<SDOperand, 3+16> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004592 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00004593 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4594 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4595
4596 // Add one result value for each formal argument.
Dan Gohmana44b6742008-06-30 20:31:15 +00004597 SmallVector<MVT, 16> RetVals;
Anton Korobeynikov6aa279d2007-01-28 18:01:49 +00004598 unsigned j = 1;
Anton Korobeynikovac2b2cf2007-01-28 16:04:40 +00004599 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4600 I != E; ++I, ++j) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004601 SmallVector<MVT, 4> ValueVTs;
4602 ComputeValueVTs(*this, I->getType(), ValueVTs);
4603 for (unsigned Value = 0, NumValues = ValueVTs.size();
4604 Value != NumValues; ++Value) {
4605 MVT VT = ValueVTs[Value];
4606 const Type *ArgTy = VT.getTypeForMVT();
4607 ISD::ArgFlagsTy Flags;
4608 unsigned OriginalAlignment =
4609 getTargetData()->getABITypeAlignment(ArgTy);
Lauro Ramos Venancio7aa47b62007-02-13 13:50:08 +00004610
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004611 if (F.paramHasAttr(j, ParamAttr::ZExt))
4612 Flags.setZExt();
4613 if (F.paramHasAttr(j, ParamAttr::SExt))
4614 Flags.setSExt();
4615 if (F.paramHasAttr(j, ParamAttr::InReg))
4616 Flags.setInReg();
4617 if (F.paramHasAttr(j, ParamAttr::StructRet))
4618 Flags.setSRet();
4619 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4620 Flags.setByVal();
4621 const PointerType *Ty = cast<PointerType>(I->getType());
4622 const Type *ElementTy = Ty->getElementType();
4623 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4624 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4625 // For ByVal, alignment should be passed from FE. BE will guess if
4626 // this info is not there but there are cases it cannot get right.
4627 if (F.getParamAlignment(j))
4628 FrameAlign = F.getParamAlignment(j);
4629 Flags.setByValAlign(FrameAlign);
4630 Flags.setByValSize(FrameSize);
4631 }
4632 if (F.paramHasAttr(j, ParamAttr::Nest))
4633 Flags.setNest();
4634 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004635
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004636 MVT RegisterVT = getRegisterType(VT);
4637 unsigned NumRegs = getNumRegisters(VT);
4638 for (unsigned i = 0; i != NumRegs; ++i) {
4639 RetVals.push_back(RegisterVT);
4640 ISD::ArgFlagsTy MyFlags = Flags;
4641 if (NumRegs > 1 && i == 0)
4642 MyFlags.setSplit();
4643 // if it isn't first piece, alignment must be 1
4644 else if (i > 0)
4645 MyFlags.setOrigAlign(1);
4646 Ops.push_back(DAG.getArgFlags(MyFlags));
4647 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004648 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004649 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00004650
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004651 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00004652
4653 // Create the node.
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004654 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004655 DAG.getVTList(&RetVals[0], RetVals.size()),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004656 &Ops[0], Ops.size()).Val;
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004657
4658 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4659 // allows exposing the loads that may be part of the argument access to the
4660 // first DAGCombiner pass.
4661 SDOperand TmpRes = LowerOperation(SDOperand(Result, 0), DAG);
4662
4663 // The number of results should match up, except that the lowered one may have
4664 // an extra flag result.
4665 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4666 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4667 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4668 && "Lowering produced unexpected number of results!");
4669 Result = TmpRes.Val;
4670
Dan Gohman27a70be2007-07-02 16:18:06 +00004671 unsigned NumArgRegs = Result->getNumValues() - 1;
4672 DAG.setRoot(SDOperand(Result, NumArgRegs));
Chris Lattnerfdfded52006-04-12 16:20:43 +00004673
4674 // Set up the return result vector.
Chris Lattnerfdfded52006-04-12 16:20:43 +00004675 unsigned i = 0;
Reid Spencer47857812006-12-31 05:55:36 +00004676 unsigned Idx = 1;
4677 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4678 ++I, ++Idx) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004679 SmallVector<MVT, 4> ValueVTs;
4680 ComputeValueVTs(*this, I->getType(), ValueVTs);
4681 for (unsigned Value = 0, NumValues = ValueVTs.size();
4682 Value != NumValues; ++Value) {
4683 MVT VT = ValueVTs[Value];
4684 MVT PartVT = getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004685
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004686 unsigned NumParts = getNumRegisters(VT);
4687 SmallVector<SDOperand, 4> Parts(NumParts);
4688 for (unsigned j = 0; j != NumParts; ++j)
4689 Parts[j] = SDOperand(Result, i++);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004690
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004691 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4692 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4693 AssertOp = ISD::AssertSext;
4694 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4695 AssertOp = ISD::AssertZext;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004696
Dan Gohmana44b6742008-06-30 20:31:15 +00004697 ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4698 AssertOp));
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004699 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004700 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004701 assert(i == NumArgRegs && "Argument register count mismatch!");
Chris Lattnerfdfded52006-04-12 16:20:43 +00004702}
4703
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004704
4705/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4706/// implementation, which just inserts an ISD::CALL node, which is later custom
4707/// lowered by the target to something concrete. FIXME: When all targets are
4708/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
4709std::pair<SDOperand, SDOperand>
Duncan Sands00fee652008-02-14 17:28:50 +00004710TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
4711 bool RetSExt, bool RetZExt, bool isVarArg,
4712 unsigned CallingConv, bool isTailCall,
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004713 SDOperand Callee,
4714 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattnerbe384162006-08-16 22:57:46 +00004715 SmallVector<SDOperand, 32> Ops;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004716 Ops.push_back(Chain); // Op#0 - Chain
4717 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4718 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4719 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4720 Ops.push_back(Callee);
4721
4722 // Handle all of the outgoing arguments.
4723 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004724 SmallVector<MVT, 4> ValueVTs;
4725 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4726 for (unsigned Value = 0, NumValues = ValueVTs.size();
4727 Value != NumValues; ++Value) {
4728 MVT VT = ValueVTs[Value];
4729 const Type *ArgTy = VT.getTypeForMVT();
4730 SDOperand Op = SDOperand(Args[i].Node.Val, Args[i].Node.ResNo + Value);
4731 ISD::ArgFlagsTy Flags;
4732 unsigned OriginalAlignment =
4733 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sands276dcbd2008-03-21 09:14:45 +00004734
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004735 if (Args[i].isZExt)
4736 Flags.setZExt();
4737 if (Args[i].isSExt)
4738 Flags.setSExt();
4739 if (Args[i].isInReg)
4740 Flags.setInReg();
4741 if (Args[i].isSRet)
4742 Flags.setSRet();
4743 if (Args[i].isByVal) {
4744 Flags.setByVal();
4745 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4746 const Type *ElementTy = Ty->getElementType();
4747 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4748 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4749 // For ByVal, alignment should come from FE. BE will guess if this
4750 // info is not there but there are cases it cannot get right.
4751 if (Args[i].Alignment)
4752 FrameAlign = Args[i].Alignment;
4753 Flags.setByValAlign(FrameAlign);
4754 Flags.setByValSize(FrameSize);
4755 }
4756 if (Args[i].isNest)
4757 Flags.setNest();
4758 Flags.setOrigAlign(OriginalAlignment);
Dan Gohman27a70be2007-07-02 16:18:06 +00004759
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004760 MVT PartVT = getRegisterType(VT);
4761 unsigned NumParts = getNumRegisters(VT);
4762 SmallVector<SDOperand, 4> Parts(NumParts);
4763 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004764
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004765 if (Args[i].isSExt)
4766 ExtendKind = ISD::SIGN_EXTEND;
4767 else if (Args[i].isZExt)
4768 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004769
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004770 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004771
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004772 for (unsigned i = 0; i != NumParts; ++i) {
4773 // if it isn't first piece, alignment must be 1
4774 ISD::ArgFlagsTy MyFlags = Flags;
4775 if (NumParts > 1 && i == 0)
4776 MyFlags.setSplit();
4777 else if (i != 0)
4778 MyFlags.setOrigAlign(1);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004779
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004780 Ops.push_back(Parts[i]);
4781 Ops.push_back(DAG.getArgFlags(MyFlags));
4782 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004783 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004784 }
4785
Dan Gohmanef5d1942008-03-11 21:11:25 +00004786 // Figure out the result value types. We start by making a list of
Dan Gohman23ce5022008-04-25 18:27:55 +00004787 // the potentially illegal return value types.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004788 SmallVector<MVT, 4> LoweredRetTys;
4789 SmallVector<MVT, 4> RetTys;
Dan Gohman23ce5022008-04-25 18:27:55 +00004790 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004791
Dan Gohman23ce5022008-04-25 18:27:55 +00004792 // Then we translate that to a list of legal types.
4793 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004794 MVT VT = RetTys[I];
4795 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004796 unsigned NumRegs = getNumRegisters(VT);
4797 for (unsigned i = 0; i != NumRegs; ++i)
4798 LoweredRetTys.push_back(RegisterVT);
4799 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004800
Dan Gohmanef5d1942008-03-11 21:11:25 +00004801 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004802
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004803 // Create the CALL node.
Chris Lattnerbe384162006-08-16 22:57:46 +00004804 SDOperand Res = DAG.getNode(ISD::CALL,
Dan Gohmanef5d1942008-03-11 21:11:25 +00004805 DAG.getVTList(&LoweredRetTys[0],
4806 LoweredRetTys.size()),
Chris Lattnerbe384162006-08-16 22:57:46 +00004807 &Ops[0], Ops.size());
Dan Gohmanef5d1942008-03-11 21:11:25 +00004808 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004809
4810 // Gather up the call result into a single value.
4811 if (RetTy != Type::VoidTy) {
Duncan Sands00fee652008-02-14 17:28:50 +00004812 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4813
4814 if (RetSExt)
4815 AssertOp = ISD::AssertSext;
4816 else if (RetZExt)
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004817 AssertOp = ISD::AssertZext;
Duncan Sands00fee652008-02-14 17:28:50 +00004818
Dan Gohmanef5d1942008-03-11 21:11:25 +00004819 SmallVector<SDOperand, 4> ReturnValues;
4820 unsigned RegNo = 0;
Dan Gohman23ce5022008-04-25 18:27:55 +00004821 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004822 MVT VT = RetTys[I];
4823 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004824 unsigned NumRegs = getNumRegisters(VT);
4825 unsigned RegNoEnd = NumRegs + RegNo;
4826 SmallVector<SDOperand, 4> Results;
4827 for (; RegNo != RegNoEnd; ++RegNo)
4828 Results.push_back(Res.getValue(RegNo));
4829 SDOperand ReturnValue =
4830 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4831 AssertOp);
4832 ReturnValues.push_back(ReturnValue);
4833 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004834 Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4835 &ReturnValues[0], ReturnValues.size());
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004836 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004837
4838 return std::make_pair(Res, Chain);
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004839}
4840
Chris Lattner50381b62005-05-14 05:50:48 +00004841SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00004842 assert(0 && "LowerOperation not implemented for this target!");
4843 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00004844 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00004845}
4846
Nate Begeman0aed7842006-01-28 03:14:31 +00004847
Chris Lattner7041ee32005-01-11 05:56:49 +00004848//===----------------------------------------------------------------------===//
4849// SelectionDAGISel code
4850//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00004851
Duncan Sands83ec4b62008-06-06 12:08:01 +00004852unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +00004853 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +00004854}
4855
Chris Lattner495a0b52005-08-17 06:37:43 +00004856void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004857 AU.addRequired<AliasAnalysis>();
Gordon Henriksence224772008-01-07 01:30:38 +00004858 AU.addRequired<CollectorModuleMetadata>();
Chris Lattnerc8d288f2007-03-31 04:18:03 +00004859 AU.setPreservesAll();
Chris Lattner495a0b52005-08-17 06:37:43 +00004860}
Chris Lattner1c08c712005-01-07 07:47:53 +00004861
Chris Lattner1c08c712005-01-07 07:47:53 +00004862bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman5f43f922007-08-27 16:26:13 +00004863 // Get alias analysis for load/store combining.
4864 AA = &getAnalysis<AliasAnalysis>();
4865
Chris Lattner1c08c712005-01-07 07:47:53 +00004866 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksence224772008-01-07 01:30:38 +00004867 if (MF.getFunction()->hasCollector())
4868 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4869 else
4870 GCI = 0;
Chris Lattner84bc5422007-12-31 04:13:23 +00004871 RegInfo = &MF.getRegInfo();
Bill Wendling832171c2006-12-07 20:04:42 +00004872 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00004873
4874 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4875
Dale Johannesen1532f3d2008-04-02 00:25:04 +00004876 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4877 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4878 // Mark landing pad.
4879 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +00004880
Dan Gohman0e5f1302008-07-07 23:02:41 +00004881 SelectAllBasicBlocks(Fn, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00004882
Evan Chengad2070c2007-02-10 02:43:39 +00004883 // Add function live-ins to entry block live-in set.
4884 BasicBlock *EntryBB = &Fn.getEntryBlock();
4885 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner84bc5422007-12-31 04:13:23 +00004886 if (!RegInfo->livein_empty())
4887 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4888 E = RegInfo->livein_end(); I != E; ++I)
Evan Chengad2070c2007-02-10 02:43:39 +00004889 BB->addLiveIn(I->first);
4890
Duncan Sandsf4070822007-06-15 19:04:19 +00004891#ifndef NDEBUG
4892 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4893 "Not all catch info was assigned to a landing pad!");
4894#endif
4895
Chris Lattner1c08c712005-01-07 07:47:53 +00004896 return true;
4897}
4898
Chris Lattner6833b062008-04-28 07:16:35 +00004899void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Chris Lattner571e4342006-10-27 21:36:01 +00004900 SDOperand Op = getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00004901 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004902 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00004903 "Copy from a reg to the same reg!");
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004904 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004905
Dan Gohman23ce5022008-04-25 18:27:55 +00004906 RegsForValue RFV(TLI, Reg, V->getType());
4907 SDOperand Chain = DAG.getEntryNode();
4908 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4909 PendingExports.push_back(Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00004910}
4911
Chris Lattner068a81e2005-01-17 17:15:02 +00004912void SelectionDAGISel::
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004913LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Chris Lattner068a81e2005-01-17 17:15:02 +00004914 // If this is the entry block, emit arguments.
Evan Cheng15699fc2007-02-10 01:08:18 +00004915 Function &F = *LLVMBB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00004916 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00004917 SDOperand OldRoot = SDL.DAG.getRoot();
Dan Gohmana44b6742008-06-30 20:31:15 +00004918 SmallVector<SDOperand, 16> Args;
4919 TLI.LowerArguments(F, SDL.DAG, Args);
Chris Lattner068a81e2005-01-17 17:15:02 +00004920
Chris Lattnerbf209482005-10-30 19:42:35 +00004921 unsigned a = 0;
4922 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004923 AI != E; ++AI) {
4924 SmallVector<MVT, 4> ValueVTs;
4925 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4926 unsigned NumValues = ValueVTs.size();
Chris Lattnerbf209482005-10-30 19:42:35 +00004927 if (!AI->use_empty()) {
Duncan Sands4bdcb612008-07-02 17:40:58 +00004928 SDL.setValue(AI, SDL.DAG.getMergeValues(&Args[a], NumValues));
Chris Lattnerbf209482005-10-30 19:42:35 +00004929 // If this argument is live outside of the entry block, insert a copy from
4930 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner251db182007-02-25 18:40:32 +00004931 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4932 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004933 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattnerbf209482005-10-30 19:42:35 +00004934 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00004935 }
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004936 a += NumValues;
4937 }
Chris Lattnerbf209482005-10-30 19:42:35 +00004938
Chris Lattnerbf209482005-10-30 19:42:35 +00004939 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00004940 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00004941 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00004942}
4943
Duncan Sandsf4070822007-06-15 19:04:19 +00004944static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4945 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004946 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00004947 if (isSelector(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004948 // Apply the catch info to DestBB.
4949 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4950#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +00004951 if (!FLI.MBBMap[SrcBB]->isLandingPad())
4952 FLI.CatchInfoFound.insert(I);
Duncan Sandsf4070822007-06-15 19:04:19 +00004953#endif
4954 }
4955}
4956
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004957/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4958/// whether object offset >= 0.
4959static bool
4960IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDOperand Op) {
4961 if (!isa<FrameIndexSDNode>(Op)) return false;
4962
4963 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
4964 int FrameIdx = FrameIdxNode->getIndex();
4965 return MFI->isFixedObjectIndex(FrameIdx) &&
4966 MFI->getObjectOffset(FrameIdx) >= 0;
4967}
4968
4969/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
4970/// possibly be overwritten when lowering the outgoing arguments in a tail
4971/// call. Currently the implementation of this call is very conservative and
4972/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
4973/// virtual registers would be overwritten by direct lowering.
4974static bool IsPossiblyOverwrittenArgumentOfTailCall(SDOperand Op,
4975 MachineFrameInfo * MFI) {
4976 RegisterSDNode * OpReg = NULL;
4977 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
4978 (Op.getOpcode()== ISD::CopyFromReg &&
4979 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
4980 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
4981 (Op.getOpcode() == ISD::LOAD &&
4982 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
4983 (Op.getOpcode() == ISD::MERGE_VALUES &&
4984 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
4985 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
4986 getOperand(1))))
4987 return true;
4988 return false;
4989}
4990
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004991/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00004992/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004993static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
4994 TargetLowering& TLI) {
4995 SDNode * Ret = NULL;
4996 SDOperand Terminator = DAG.getRoot();
4997
4998 // Find RET node.
4999 if (Terminator.getOpcode() == ISD::RET) {
5000 Ret = Terminator.Val;
5001 }
5002
5003 // Fix tail call attribute of CALL nodes.
5004 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
Dan Gohman0e5f1302008-07-07 23:02:41 +00005005 BI = DAG.allnodes_end(); BI != BE; ) {
5006 --BI;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005007 if (BI->getOpcode() == ISD::CALL) {
5008 SDOperand OpRet(Ret, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00005009 SDOperand OpCall(BI, 0);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005010 bool isMarkedTailCall =
5011 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5012 // If CALL node has tail call attribute set to true and the call is not
5013 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005014 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005015 // must correctly identify tail call optimizable calls.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005016 if (!isMarkedTailCall) continue;
5017 if (Ret==NULL ||
5018 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5019 // Not eligible. Mark CALL node as non tail call.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005020 SmallVector<SDOperand, 32> Ops;
5021 unsigned idx=0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005022 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5023 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005024 if (idx!=3)
5025 Ops.push_back(*I);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005026 else
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005027 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5028 }
5029 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005030 } else {
5031 // Look for tail call clobbered arguments. Emit a series of
5032 // copyto/copyfrom virtual register nodes to protect them.
5033 SmallVector<SDOperand, 32> Ops;
5034 SDOperand Chain = OpCall.getOperand(0), InFlag;
5035 unsigned idx=0;
5036 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5037 E = OpCall.Val->op_end(); I != E; I++, idx++) {
5038 SDOperand Arg = *I;
5039 if (idx > 4 && (idx % 2)) {
5040 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5041 getArgFlags().isByVal();
5042 MachineFunction &MF = DAG.getMachineFunction();
5043 MachineFrameInfo *MFI = MF.getFrameInfo();
5044 if (!isByVal &&
5045 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005046 MVT VT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005047 unsigned VReg = MF.getRegInfo().
5048 createVirtualRegister(TLI.getRegClassFor(VT));
5049 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5050 InFlag = Chain.getValue(1);
5051 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5052 Chain = Arg.getValue(1);
5053 InFlag = Arg.getValue(2);
5054 }
5055 }
5056 Ops.push_back(Arg);
5057 }
5058 // Link in chain of CopyTo/CopyFromReg.
5059 Ops[0] = Chain;
5060 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005061 }
5062 }
5063 }
5064}
5065
Chris Lattner1c08c712005-01-07 07:47:53 +00005066void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5067 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00005068 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksence224772008-01-07 01:30:38 +00005069 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerddb870b2005-01-13 17:59:43 +00005070
Chris Lattnerbf209482005-10-30 19:42:35 +00005071 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +00005072 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005073 LowerArguments(LLVMBB, SDL);
Chris Lattner1c08c712005-01-07 07:47:53 +00005074
5075 BB = FuncInfo.MBBMap[LLVMBB];
5076 SDL.setCurrentBasicBlock(BB);
5077
Duncan Sandsf4070822007-06-15 19:04:19 +00005078 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands9fac0b52007-06-06 10:05:18 +00005079
Dale Johannesen1532f3d2008-04-02 00:25:04 +00005080 if (MMI && BB->isLandingPad()) {
Duncan Sandsf4070822007-06-15 19:04:19 +00005081 // Add a label to mark the beginning of the landing pad. Deletion of the
5082 // landing pad can thus be detected via the MachineModuleInfo.
5083 unsigned LabelID = MMI->addLandingPad(BB);
Dan Gohman44066042008-07-01 00:05:16 +00005084 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, DAG.getEntryNode(), LabelID));
Duncan Sandsf4070822007-06-15 19:04:19 +00005085
Evan Chenge47c3332007-06-27 18:45:32 +00005086 // Mark exception register as live in.
5087 unsigned Reg = TLI.getExceptionAddressRegister();
5088 if (Reg) BB->addLiveIn(Reg);
5089
5090 // Mark exception selector register as live in.
5091 Reg = TLI.getExceptionSelectorRegister();
5092 if (Reg) BB->addLiveIn(Reg);
5093
Duncan Sandsf4070822007-06-15 19:04:19 +00005094 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5095 // function and list of typeids logically belong to the invoke (or, if you
5096 // like, the basic block containing the invoke), and need to be associated
5097 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005098 // information is provided by an intrinsic (eh.selector) that can be moved
5099 // to unexpected places by the optimizers: if the unwind edge is critical,
5100 // then breaking it can result in the intrinsics being in the successor of
5101 // the landing pad, not the landing pad itself. This results in exceptions
5102 // not being caught because no typeids are associated with the invoke.
5103 // This may not be the only way things can go wrong, but it is the only way
5104 // we try to work around for the moment.
Duncan Sandsf4070822007-06-15 19:04:19 +00005105 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5106
5107 if (Br && Br->isUnconditional()) { // Critical edge?
5108 BasicBlock::iterator I, E;
5109 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005110 if (isSelector(I))
Duncan Sandsf4070822007-06-15 19:04:19 +00005111 break;
5112
5113 if (I == E)
5114 // No catch info found - try to extract some from the successor.
5115 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands9fac0b52007-06-06 10:05:18 +00005116 }
5117 }
5118
Chris Lattner1c08c712005-01-07 07:47:53 +00005119 // Lower all of the non-terminator instructions.
5120 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5121 I != E; ++I)
5122 SDL.visit(*I);
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005123
Chris Lattner1c08c712005-01-07 07:47:53 +00005124 // Ensure that all instructions which are used outside of their defining
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005125 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner1c08c712005-01-07 07:47:53 +00005126 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005127 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner9f24ad72007-02-04 01:35:11 +00005128 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00005129 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005130 SDL.CopyValueToVirtualRegister(I, VMI->second);
Chris Lattner1c08c712005-01-07 07:47:53 +00005131 }
5132
5133 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5134 // ensure constants are generated when needed. Remember the virtual registers
5135 // that need to be added to the Machine PHI nodes as input. We cannot just
5136 // directly add them, because expansion might result in multiple MBB's for one
5137 // BB. As such, the start of the BB might correspond to a different MBB than
5138 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00005139 //
Chris Lattner8c494ab2006-10-27 23:50:33 +00005140 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner1c08c712005-01-07 07:47:53 +00005141
5142 // Emit constants only once even if used by multiple PHI nodes.
5143 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005144
Chris Lattner8c494ab2006-10-27 23:50:33 +00005145 // Vector bool would be better, but vector<bool> is really slow.
5146 std::vector<unsigned char> SuccsHandled;
5147 if (TI->getNumSuccessors())
5148 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5149
Dan Gohman532dc2e2007-07-09 20:59:04 +00005150 // Check successor nodes' PHI nodes that expect a constant to be available
5151 // from this block.
Chris Lattner1c08c712005-01-07 07:47:53 +00005152 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5153 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005154 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner8c494ab2006-10-27 23:50:33 +00005155 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005156
Chris Lattner8c494ab2006-10-27 23:50:33 +00005157 // If this terminator has multiple identical successors (common for
5158 // switches), only handle each succ once.
5159 unsigned SuccMBBNo = SuccMBB->getNumber();
5160 if (SuccsHandled[SuccMBBNo]) continue;
5161 SuccsHandled[SuccMBBNo] = true;
5162
5163 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner1c08c712005-01-07 07:47:53 +00005164 PHINode *PN;
5165
5166 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5167 // nodes and Machine PHI nodes, but the incoming operands have not been
5168 // emitted yet.
5169 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8c494ab2006-10-27 23:50:33 +00005170 (PN = dyn_cast<PHINode>(I)); ++I) {
5171 // Ignore dead phi's.
5172 if (PN->use_empty()) continue;
5173
5174 unsigned Reg;
5175 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner3f7927c2006-11-29 01:12:32 +00005176
Chris Lattner8c494ab2006-10-27 23:50:33 +00005177 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5178 unsigned &RegOut = ConstantsOut[C];
5179 if (RegOut == 0) {
5180 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005181 SDL.CopyValueToVirtualRegister(C, RegOut);
Chris Lattner1c08c712005-01-07 07:47:53 +00005182 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005183 Reg = RegOut;
5184 } else {
5185 Reg = FuncInfo.ValueMap[PHIOp];
5186 if (Reg == 0) {
5187 assert(isa<AllocaInst>(PHIOp) &&
5188 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5189 "Didn't codegen value into a register!??");
5190 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005191 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Chris Lattner7e021512006-03-31 02:12:18 +00005192 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005193 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005194
5195 // Remember that this register needs to added to the machine PHI node as
5196 // the input for this MBB.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005197 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +00005198 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohmanb9f10192007-06-21 14:42:22 +00005199 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Chris Lattner8c494ab2006-10-27 23:50:33 +00005200 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5201 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005202 }
5203 ConstantsOut.clear();
5204
5205 // Lower the terminator after the copies are emitted.
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005206 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00005207
Nate Begemanf15485a2006-03-27 01:32:24 +00005208 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00005209 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00005210 SwitchCases.clear();
5211 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005212 JTCases.clear();
5213 JTCases = SDL.JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005214 BitTestCases.clear();
5215 BitTestCases = SDL.BitTestCases;
5216
Chris Lattnera651cf62005-01-17 19:43:36 +00005217 // Make sure the root of the DAG is up-to-date.
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005218 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005219
5220 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5221 // with correct tailcall attribute so that the target can rely on the tailcall
5222 // attribute indicating whether the call is really eligible for tail call
5223 // optimization.
5224 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Chris Lattner1c08c712005-01-07 07:47:53 +00005225}
5226
Chris Lattneread0d882008-06-17 06:09:18 +00005227void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5228 SmallPtrSet<SDNode*, 128> VisitedNodes;
5229 SmallVector<SDNode*, 128> Worklist;
5230
5231 Worklist.push_back(DAG.getRoot().Val);
5232
5233 APInt Mask;
5234 APInt KnownZero;
5235 APInt KnownOne;
5236
5237 while (!Worklist.empty()) {
5238 SDNode *N = Worklist.back();
5239 Worklist.pop_back();
5240
5241 // If we've already seen this node, ignore it.
5242 if (!VisitedNodes.insert(N))
5243 continue;
5244
5245 // Otherwise, add all chain operands to the worklist.
5246 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5247 if (N->getOperand(i).getValueType() == MVT::Other)
5248 Worklist.push_back(N->getOperand(i).Val);
5249
5250 // If this is a CopyToReg with a vreg dest, process it.
5251 if (N->getOpcode() != ISD::CopyToReg)
5252 continue;
5253
5254 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5255 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5256 continue;
5257
5258 // Ignore non-scalar or non-integer values.
5259 SDOperand Src = N->getOperand(2);
5260 MVT SrcVT = Src.getValueType();
5261 if (!SrcVT.isInteger() || SrcVT.isVector())
5262 continue;
5263
5264 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5265 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5266 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5267
5268 // Only install this information if it tells us something.
5269 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5270 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5271 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5272 if (DestReg >= FLI.LiveOutRegInfo.size())
5273 FLI.LiveOutRegInfo.resize(DestReg+1);
5274 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5275 LOI.NumSignBits = NumSignBits;
5276 LOI.KnownOne = NumSignBits;
5277 LOI.KnownZero = NumSignBits;
5278 }
5279 }
5280}
5281
Nate Begemanf15485a2006-03-27 01:32:24 +00005282void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohman417e11b2007-10-08 15:12:17 +00005283 DOUT << "Lowered selection DAG:\n";
5284 DEBUG(DAG.dump());
5285
Chris Lattneraf21d552005-10-10 16:47:10 +00005286 // Run the DAG combiner in pre-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005287 if (TimePassesIsEnabled) {
5288 NamedRegionTimer T("DAG Combining 1");
5289 DAG.Combine(false, *AA);
5290 } else {
5291 DAG.Combine(false, *AA);
5292 }
Nate Begeman2300f552005-09-07 00:15:36 +00005293
Dan Gohman417e11b2007-10-08 15:12:17 +00005294 DOUT << "Optimized lowered selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005295 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005296
Chris Lattner1c08c712005-01-07 07:47:53 +00005297 // Second step, hack on the DAG until it only uses operations and types that
5298 // the target supports.
Chris Lattner01d029b2007-10-15 06:10:22 +00005299#if 0 // Enable this some day.
5300 DAG.LegalizeTypes();
5301 // Someday even later, enable a dag combine pass here.
5302#endif
Evan Chengebffb662008-07-01 17:59:20 +00005303 if (TimePassesIsEnabled) {
5304 NamedRegionTimer T("DAG Legalization");
5305 DAG.Legalize();
5306 } else {
5307 DAG.Legalize();
5308 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005309
Bill Wendling832171c2006-12-07 20:04:42 +00005310 DOUT << "Legalized selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005311 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005312
Chris Lattneraf21d552005-10-10 16:47:10 +00005313 // Run the DAG combiner in post-legalize mode.
Evan Chengebffb662008-07-01 17:59:20 +00005314 if (TimePassesIsEnabled) {
5315 NamedRegionTimer T("DAG Combining 2");
5316 DAG.Combine(true, *AA);
5317 } else {
5318 DAG.Combine(true, *AA);
5319 }
Nate Begeman2300f552005-09-07 00:15:36 +00005320
Dan Gohman417e11b2007-10-08 15:12:17 +00005321 DOUT << "Optimized legalized selection DAG:\n";
5322 DEBUG(DAG.dump());
5323
Evan Chenga9c20912006-01-21 02:32:06 +00005324 if (ViewISelDAGs) DAG.viewGraph();
Chris Lattneread0d882008-06-17 06:09:18 +00005325
Evan Chengf1a792b2008-07-01 18:15:04 +00005326 if (!FastISel && EnableValueProp)
Chris Lattneread0d882008-06-17 06:09:18 +00005327 ComputeLiveOutVRegInfo(DAG);
Evan Cheng552c4a82006-04-28 02:09:19 +00005328
Chris Lattnera33ef482005-03-30 01:10:47 +00005329 // Third, instruction select all of the operations to machine code, adding the
5330 // code to the MachineBasicBlock.
Evan Chengebffb662008-07-01 17:59:20 +00005331 if (TimePassesIsEnabled) {
5332 NamedRegionTimer T("Instruction Selection");
5333 InstructionSelect(DAG);
5334 } else {
5335 InstructionSelect(DAG);
5336 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005337
5338 // Emit machine code to BB. This can change 'BB' to the last block being
5339 // inserted into.
Evan Chengebffb662008-07-01 17:59:20 +00005340 if (TimePassesIsEnabled) {
5341 NamedRegionTimer T("Instruction Scheduling");
5342 ScheduleAndEmitDAG(DAG);
5343 } else {
5344 ScheduleAndEmitDAG(DAG);
5345 }
Evan Chengdb8d56b2008-06-30 20:45:06 +00005346
5347 // Perform target specific isel post processing.
Evan Chengebffb662008-07-01 17:59:20 +00005348 if (TimePassesIsEnabled) {
5349 NamedRegionTimer T("Instruction Selection Post Processing");
5350 InstructionSelectPostProcessing(DAG);
5351 } else {
5352 InstructionSelectPostProcessing(DAG);
5353 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005354
Bill Wendling832171c2006-12-07 20:04:42 +00005355 DOUT << "Selected machine code:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005356 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005357}
Chris Lattner1c08c712005-01-07 07:47:53 +00005358
Dan Gohman0e5f1302008-07-07 23:02:41 +00005359void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF,
5360 FunctionLoweringInfo &FuncInfo) {
5361 // Define AllNodes here so that memory allocation is reused for
5362 // each basic block.
5363 alist<SDNode, LargestSDNode> AllNodes;
5364
5365 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
5366 SelectBasicBlock(I, MF, FuncInfo, AllNodes);
5367 AllNodes.clear();
5368 }
5369}
5370
Nate Begemanf15485a2006-03-27 01:32:24 +00005371void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005372 FunctionLoweringInfo &FuncInfo,
5373 alist<SDNode, LargestSDNode> &AllNodes) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005374 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5375 {
Chris Lattneread0d882008-06-17 06:09:18 +00005376 SelectionDAG DAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005377 getAnalysisToUpdate<MachineModuleInfo>(),
5378 AllNodes);
Nate Begemanf15485a2006-03-27 01:32:24 +00005379 CurDAG = &DAG;
5380
5381 // First step, lower LLVM code to some DAG. This DAG may use operations and
5382 // types that are not supported by the target.
5383 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5384
5385 // Second step, emit the lowered DAG as machine code.
5386 CodeGenAndEmitDAG(DAG);
5387 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005388
5389 DOUT << "Total amount of phi nodes to update: "
5390 << PHINodesToUpdate.size() << "\n";
5391 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5392 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5393 << ", " << PHINodesToUpdate[i].second << ")\n";);
Nate Begemanf15485a2006-03-27 01:32:24 +00005394
Chris Lattnera33ef482005-03-30 01:10:47 +00005395 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00005396 // PHI nodes in successors.
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005397 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005398 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5399 MachineInstr *PHI = PHINodesToUpdate[i].first;
5400 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5401 "This is not a machine PHI node that we are updating!");
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005402 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5403 false));
5404 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +00005405 }
5406 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00005407 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005408
5409 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5410 // Lower header first, if it wasn't already lowered
5411 if (!BitTestCases[i].Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005412 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005413 getAnalysisToUpdate<MachineModuleInfo>(),
5414 AllNodes);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005415 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005416 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005417 // Set the current basic block to the mbb we wish to insert the code into
5418 BB = BitTestCases[i].Parent;
5419 HSDL.setCurrentBasicBlock(BB);
5420 // Emit the code
5421 HSDL.visitBitTestHeader(BitTestCases[i]);
5422 HSDAG.setRoot(HSDL.getRoot());
5423 CodeGenAndEmitDAG(HSDAG);
5424 }
5425
5426 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattneread0d882008-06-17 06:09:18 +00005427 SelectionDAG BSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005428 getAnalysisToUpdate<MachineModuleInfo>(),
5429 AllNodes);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005430 CurDAG = &BSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005431 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005432 // Set the current basic block to the mbb we wish to insert the code into
5433 BB = BitTestCases[i].Cases[j].ThisBB;
5434 BSDL.setCurrentBasicBlock(BB);
5435 // Emit the code
5436 if (j+1 != ej)
5437 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5438 BitTestCases[i].Reg,
5439 BitTestCases[i].Cases[j]);
5440 else
5441 BSDL.visitBitTestCase(BitTestCases[i].Default,
5442 BitTestCases[i].Reg,
5443 BitTestCases[i].Cases[j]);
5444
5445
5446 BSDAG.setRoot(BSDL.getRoot());
5447 CodeGenAndEmitDAG(BSDAG);
5448 }
5449
5450 // Update PHI Nodes
5451 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5452 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5453 MachineBasicBlock *PHIBB = PHI->getParent();
5454 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5455 "This is not a machine PHI node that we are updating!");
5456 // This is "default" BB. We have two jumps to it. From "header" BB and
5457 // from last "case" BB.
5458 if (PHIBB == BitTestCases[i].Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005459 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5460 false));
5461 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5462 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5463 false));
5464 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5465 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005466 }
5467 // One of "cases" BB.
5468 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5469 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5470 if (cBB->succ_end() !=
5471 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005472 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5473 false));
5474 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005475 }
5476 }
5477 }
5478 }
5479
Nate Begeman9453eea2006-04-23 06:26:20 +00005480 // If the JumpTable record is filled in, then we need to emit a jump table.
5481 // Updating the PHI nodes is tricky in this case, since we need to determine
5482 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005483 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5484 // Lower header first, if it wasn't already lowered
5485 if (!JTCases[i].first.Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005486 SelectionDAG HSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005487 getAnalysisToUpdate<MachineModuleInfo>(),
5488 AllNodes);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005489 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005490 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005491 // Set the current basic block to the mbb we wish to insert the code into
5492 BB = JTCases[i].first.HeaderBB;
5493 HSDL.setCurrentBasicBlock(BB);
5494 // Emit the code
5495 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5496 HSDAG.setRoot(HSDL.getRoot());
5497 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005498 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005499
Chris Lattneread0d882008-06-17 06:09:18 +00005500 SelectionDAG JSDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005501 getAnalysisToUpdate<MachineModuleInfo>(),
5502 AllNodes);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005503 CurDAG = &JSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005504 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Nate Begeman37efe672006-04-22 18:53:45 +00005505 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005506 BB = JTCases[i].second.MBB;
5507 JSDL.setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00005508 // Emit the code
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005509 JSDL.visitJumpTable(JTCases[i].second);
5510 JSDAG.setRoot(JSDL.getRoot());
5511 CodeGenAndEmitDAG(JSDAG);
5512
Nate Begeman37efe672006-04-22 18:53:45 +00005513 // Update PHI Nodes
5514 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5515 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5516 MachineBasicBlock *PHIBB = PHI->getParent();
5517 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5518 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005519 // "default" BB. We can go there only from header BB.
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005520 if (PHIBB == JTCases[i].second.Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005521 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5522 false));
5523 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +00005524 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005525 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +00005526 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005527 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5528 false));
5529 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +00005530 }
5531 }
Nate Begeman37efe672006-04-22 18:53:45 +00005532 }
5533
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005534 // If the switch block involved a branch to one of the actual successors, we
5535 // need to update PHI nodes in that block.
5536 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5537 MachineInstr *PHI = PHINodesToUpdate[i].first;
5538 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5539 "This is not a machine PHI node that we are updating!");
5540 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005541 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5542 false));
5543 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005544 }
5545 }
5546
Nate Begemanf15485a2006-03-27 01:32:24 +00005547 // If we generated any switch lowering information, build and codegen any
5548 // additional DAGs necessary.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005549 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattneread0d882008-06-17 06:09:18 +00005550 SelectionDAG SDAG(TLI, MF, FuncInfo,
Dan Gohman0e5f1302008-07-07 23:02:41 +00005551 getAnalysisToUpdate<MachineModuleInfo>(),
5552 AllNodes);
Nate Begemanf15485a2006-03-27 01:32:24 +00005553 CurDAG = &SDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005554 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005555
Nate Begemanf15485a2006-03-27 01:32:24 +00005556 // Set the current basic block to the mbb we wish to insert the code into
5557 BB = SwitchCases[i].ThisBB;
5558 SDL.setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005559
Nate Begemanf15485a2006-03-27 01:32:24 +00005560 // Emit the code
5561 SDL.visitSwitchCase(SwitchCases[i]);
5562 SDAG.setRoot(SDL.getRoot());
5563 CodeGenAndEmitDAG(SDAG);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005564
5565 // Handle any PHI nodes in successors of this chunk, as if we were coming
5566 // from the original BB before switch expansion. Note that PHI nodes can
5567 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5568 // handle them the right number of times.
Chris Lattner57ab6592006-10-24 17:57:59 +00005569 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005570 for (MachineBasicBlock::iterator Phi = BB->begin();
5571 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5572 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5573 for (unsigned pn = 0; ; ++pn) {
5574 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5575 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005576 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5577 second, false));
5578 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005579 break;
5580 }
5581 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005582 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005583
5584 // Don't process RHS if same block as LHS.
Chris Lattner57ab6592006-10-24 17:57:59 +00005585 if (BB == SwitchCases[i].FalseBB)
5586 SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005587
5588 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner24525952006-10-24 18:07:37 +00005589 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner57ab6592006-10-24 17:57:59 +00005590 SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00005591 }
Chris Lattner57ab6592006-10-24 17:57:59 +00005592 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00005593 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005594}
Evan Chenga9c20912006-01-21 02:32:06 +00005595
Jim Laskey13ec7022006-08-01 14:21:23 +00005596
Evan Chenga9c20912006-01-21 02:32:06 +00005597//===----------------------------------------------------------------------===//
5598/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
5599/// target node in the graph.
5600void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
5601 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00005602
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005603 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00005604
5605 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005606 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00005607 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00005608 }
Jim Laskey13ec7022006-08-01 14:21:23 +00005609
Evan Cheng4576f6d2008-07-01 18:05:03 +00005610 ScheduleDAG *SL = Ctor(this, &DAG, BB, FastISel);
Chris Lattnera3818e62006-01-21 19:12:11 +00005611 BB = SL->Run();
Dan Gohman3e1a7ae2007-08-28 20:32:58 +00005612
5613 if (ViewSUnitDAGs) SL->viewGraph();
5614
Evan Chengcccf1232006-02-04 06:49:00 +00005615 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00005616}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005617
Chris Lattner03fc53c2006-03-06 00:22:00 +00005618
Jim Laskey9ff542f2006-08-01 18:29:48 +00005619HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5620 return new HazardRecognizer();
5621}
5622
Chris Lattner75548062006-10-11 03:58:02 +00005623//===----------------------------------------------------------------------===//
5624// Helper functions used by the generated instruction selector.
5625//===----------------------------------------------------------------------===//
5626// Calls to these methods are generated by tblgen.
5627
5628/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5629/// the dag combiner simplified the 255, we still want to match. RHS is the
5630/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5631/// specified in the .td file (e.g. 255).
5632bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00005633 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005634 const APInt &ActualMask = RHS->getAPIntValue();
5635 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005636
5637 // If the actual mask exactly matches, success!
5638 if (ActualMask == DesiredMask)
5639 return true;
5640
5641 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005642 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005643 return false;
5644
5645 // Otherwise, the DAG Combiner may have proven that the value coming in is
5646 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005647 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00005648 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00005649 return true;
5650
5651 // TODO: check to see if missing bits are just not demanded.
5652
5653 // Otherwise, this pattern doesn't match.
5654 return false;
5655}
5656
5657/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5658/// the dag combiner simplified the 255, we still want to match. RHS is the
5659/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5660/// specified in the .td file (e.g. 255).
5661bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005662 int64_t DesiredMaskS) const {
5663 const APInt &ActualMask = RHS->getAPIntValue();
5664 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005665
5666 // If the actual mask exactly matches, success!
5667 if (ActualMask == DesiredMask)
5668 return true;
5669
5670 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005671 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005672 return false;
5673
5674 // Otherwise, the DAG Combiner may have proven that the value coming in is
5675 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005676 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00005677
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005678 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005679 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00005680
5681 // If all the missing bits in the or are already known to be set, match!
5682 if ((NeededMask & KnownOne) == NeededMask)
5683 return true;
5684
5685 // TODO: check to see if missing bits are just not demanded.
5686
5687 // Otherwise, this pattern doesn't match.
5688 return false;
5689}
5690
Jim Laskey9ff542f2006-08-01 18:29:48 +00005691
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005692/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5693/// by tblgen. Others should not call it.
5694void SelectionDAGISel::
5695SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
5696 std::vector<SDOperand> InOps;
5697 std::swap(InOps, Ops);
5698
5699 Ops.push_back(InOps[0]); // input chain.
5700 Ops.push_back(InOps[1]); // input asm string.
5701
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005702 unsigned i = 2, e = InOps.size();
5703 if (InOps[e-1].getValueType() == MVT::Flag)
5704 --e; // Don't process a flag operand if it is here.
5705
5706 while (i != e) {
5707 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5708 if ((Flags & 7) != 4 /*MEM*/) {
5709 // Just skip over this operand, copying the operands verbatim.
5710 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5711 i += (Flags >> 3) + 1;
5712 } else {
5713 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5714 // Otherwise, this is a memory operand. Ask the target to select it.
5715 std::vector<SDOperand> SelOps;
5716 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling832171c2006-12-07 20:04:42 +00005717 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005718 exit(1);
5719 }
5720
5721 // Add this to the output node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005722 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner36d43962006-12-16 21:14:48 +00005723 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattner4b993b12007-04-09 00:33:58 +00005724 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005725 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5726 i += 2;
5727 }
5728 }
5729
5730 // Add the flag input back if present.
5731 if (e != InOps.size())
5732 Ops.push_back(InOps.back());
5733}
Devang Patel794fd752007-05-01 21:15:47 +00005734
Devang Patel19974732007-05-03 01:11:54 +00005735char SelectionDAGISel::ID = 0;