blob: 0ab5b6237ca4f43a88b6b0ce6acb47c4c493ea70 [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"
Bill Wendling305635a2008-06-27 00:09:40 +000030#include "llvm/CodeGen/MachineDebugInfoDesc.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000031#include "llvm/CodeGen/MachineFunction.h"
32#include "llvm/CodeGen/MachineFrameInfo.h"
33#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000034#include "llvm/CodeGen/MachineJumpTableInfo.h"
35#include "llvm/CodeGen/MachineModuleInfo.h"
36#include "llvm/CodeGen/MachineRegisterInfo.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000037#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000038#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000039#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000040#include "llvm/Target/TargetData.h"
41#include "llvm/Target/TargetFrameInfo.h"
42#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetLowering.h"
44#include "llvm/Target/TargetMachine.h"
Vladimir Prus12472912006-05-23 13:43:15 +000045#include "llvm/Target/TargetOptions.h"
Chris Lattner7c0104b2005-11-09 04:45:33 +000046#include "llvm/Support/MathExtras.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000047#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000048#include "llvm/Support/Compiler.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,
268 MachineBasicBlock *BB) {
269 TargetLowering &TLI = IS->getTargetLowering();
270
271 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
272 return createTDListDAGScheduler(IS, DAG, BB);
273 } else {
274 assert(TLI.getSchedulingPreference() ==
275 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
276 return createBURRListDAGScheduler(IS, DAG, BB);
277 }
278 }
279
280
281 //===--------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000282 /// FunctionLoweringInfo - This contains information that is global to a
283 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000284 class FunctionLoweringInfo {
285 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000286 TargetLowering &TLI;
287 Function &Fn;
288 MachineFunction &MF;
Chris Lattner84bc5422007-12-31 04:13:23 +0000289 MachineRegisterInfo &RegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000290
291 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
292
293 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
294 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
295
296 /// ValueMap - Since we emit code for the function a basic block at a time,
297 /// we must remember which virtual registers hold the values for
298 /// cross-basic-block values.
Chris Lattner9f24ad72007-02-04 01:35:11 +0000299 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000300
301 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
302 /// the entry block. This allows the allocas to be efficiently referenced
303 /// anywhere in the function.
304 std::map<const AllocaInst*, int> StaticAllocaMap;
305
Duncan Sandsf4070822007-06-15 19:04:19 +0000306#ifndef NDEBUG
307 SmallSet<Instruction*, 8> CatchInfoLost;
308 SmallSet<Instruction*, 8> CatchInfoFound;
309#endif
310
Duncan Sands83ec4b62008-06-06 12:08:01 +0000311 unsigned MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000312 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000313 }
Chris Lattner571e4342006-10-27 21:36:01 +0000314
315 /// isExportedInst - Return true if the specified value is an instruction
316 /// exported from its block.
317 bool isExportedInst(const Value *V) {
318 return ValueMap.count(V);
319 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000320
Chris Lattner3c384492006-03-16 19:51:18 +0000321 unsigned CreateRegForValue(const Value *V);
322
Chris Lattner1c08c712005-01-07 07:47:53 +0000323 unsigned InitializeRegForValue(const Value *V) {
324 unsigned &R = ValueMap[V];
325 assert(R == 0 && "Already initialized this value register!");
326 return R = CreateRegForValue(V);
327 }
Chris Lattneread0d882008-06-17 06:09:18 +0000328
329 struct LiveOutInfo {
330 unsigned NumSignBits;
331 APInt KnownOne, KnownZero;
332 LiveOutInfo() : NumSignBits(0) {}
333 };
334
335 /// LiveOutRegInfo - Information about live out vregs, indexed by their
336 /// register number offset by 'FirstVirtualRegister'.
337 std::vector<LiveOutInfo> LiveOutRegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000338 };
339}
340
Duncan Sandscf26d7c2007-07-04 20:52:51 +0000341/// isSelector - Return true if this instruction is a call to the
342/// eh.selector intrinsic.
343static bool isSelector(Instruction *I) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000344 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000345 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
346 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Duncan Sandsf4070822007-06-15 19:04:19 +0000347 return false;
348}
349
Chris Lattner1c08c712005-01-07 07:47:53 +0000350/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000351/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000352/// switch or atomic instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000353static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
354 if (isa<PHINode>(I)) return true;
355 BasicBlock *BB = I->getParent();
356 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000357 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattner571e4342006-10-27 21:36:01 +0000358 // FIXME: Remove switchinst special case.
Nate Begemanf15485a2006-03-27 01:32:24 +0000359 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000360 return true;
361 return false;
362}
363
Chris Lattnerbf209482005-10-30 19:42:35 +0000364/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000365/// entry block, return true. This includes arguments used by switches, since
366/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000367static bool isOnlyUsedInEntryBlock(Argument *A) {
368 BasicBlock *Entry = A->getParent()->begin();
369 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000370 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000371 return false; // Use not in entry block.
372 return true;
373}
374
Chris Lattner1c08c712005-01-07 07:47:53 +0000375FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000376 Function &fn, MachineFunction &mf)
Chris Lattner84bc5422007-12-31 04:13:23 +0000377 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000378
Chris Lattnerbf209482005-10-30 19:42:35 +0000379 // Create a vreg for each argument register that is not dead and is used
380 // outside of the entry block for the function.
381 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
382 AI != E; ++AI)
383 if (!isOnlyUsedInEntryBlock(AI))
384 InitializeRegForValue(AI);
385
Chris Lattner1c08c712005-01-07 07:47:53 +0000386 // Initialize the mapping of values to registers. This is only set up for
387 // instruction values that are used outside of the block that defines
388 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000389 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000390 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
391 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencerb83eb642006-10-20 07:07:24 +0000392 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000393 const Type *Ty = AI->getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +0000394 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000395 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000396 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000397 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000398
Reid Spencerb83eb642006-10-20 07:07:24 +0000399 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000400 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000401 StaticAllocaMap[AI] =
Chris Lattner6266c182007-04-25 04:08:28 +0000402 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000403 }
404
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000405 for (; BB != EB; ++BB)
406 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000407 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
408 if (!isa<AllocaInst>(I) ||
409 !StaticAllocaMap.count(cast<AllocaInst>(I)))
410 InitializeRegForValue(I);
411
412 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
413 // also creates the initial PHI MachineInstrs, though none of the input
414 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000415 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000416 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
417 MBBMap[BB] = MBB;
418 MF.getBasicBlockList().push_back(MBB);
419
420 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
421 // appropriate.
422 PHINode *PN;
Chris Lattner8c494ab2006-10-27 23:50:33 +0000423 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
424 if (PN->use_empty()) continue;
425
Duncan Sands83ec4b62008-06-06 12:08:01 +0000426 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +0000427 unsigned NumRegisters = TLI.getNumRegisters(VT);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000428 unsigned PHIReg = ValueMap[PN];
429 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Evan Chengc0f64ff2006-11-27 23:37:22 +0000430 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
Dan Gohmanb9f10192007-06-21 14:42:22 +0000431 for (unsigned i = 0; i != NumRegisters; ++i)
Evan Chengc0f64ff2006-11-27 23:37:22 +0000432 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000433 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000434 }
435}
436
Chris Lattner3c384492006-03-16 19:51:18 +0000437/// CreateRegForValue - Allocate the appropriate number of virtual registers of
438/// the correctly promoted or expanded types. Assign these registers
439/// consecutive vreg numbers and return the first assigned number.
Dan Gohman10a6b7a2008-04-28 18:19:43 +0000440///
441/// In the case that the given value has struct or array type, this function
442/// will assign registers for each member or element.
443///
Chris Lattner3c384492006-03-16 19:51:18 +0000444unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000445 SmallVector<MVT, 4> ValueVTs;
Chris Lattnerb606dba2008-04-28 06:44:42 +0000446 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Bill Wendling95b39552007-04-24 21:13:23 +0000447
Dan Gohman23ce5022008-04-25 18:27:55 +0000448 unsigned FirstReg = 0;
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000449 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000450 MVT ValueVT = ValueVTs[Value];
451 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohman8c8c5fc2007-06-27 14:34:07 +0000452
Chris Lattnerb606dba2008-04-28 06:44:42 +0000453 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000454 for (unsigned i = 0; i != NumRegs; ++i) {
455 unsigned R = MakeReg(RegisterVT);
456 if (!FirstReg) FirstReg = R;
457 }
458 }
459 return FirstReg;
Chris Lattner3c384492006-03-16 19:51:18 +0000460}
Chris Lattner1c08c712005-01-07 07:47:53 +0000461
462//===----------------------------------------------------------------------===//
463/// SelectionDAGLowering - This is the common target-independent lowering
464/// implementation that is parameterized by a TargetLowering object.
465/// Also, targets can overload any lowering method.
466///
467namespace llvm {
468class SelectionDAGLowering {
469 MachineBasicBlock *CurMBB;
470
Chris Lattner0da331f2007-02-04 01:31:47 +0000471 DenseMap<const Value*, SDOperand> NodeMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000472
Chris Lattnerd3948112005-01-17 22:19:26 +0000473 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
474 /// them up and then emit token factor nodes when possible. This allows us to
475 /// get simple disambiguation between loads without worrying about alias
476 /// analysis.
477 std::vector<SDOperand> PendingLoads;
478
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000479 /// PendingExports - CopyToReg nodes that copy values to virtual registers
480 /// for export to other blocks need to be emitted before any terminator
481 /// instruction, but they have no other ordering requirements. We bunch them
482 /// up and the emit a single tokenfactor for them just before terminator
483 /// instructions.
484 std::vector<SDOperand> PendingExports;
485
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000486 /// Case - A struct to record the Value for a switch case, and the
487 /// case's target basic block.
488 struct Case {
489 Constant* Low;
490 Constant* High;
491 MachineBasicBlock* BB;
492
493 Case() : Low(0), High(0), BB(0) { }
494 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
495 Low(low), High(high), BB(bb) { }
496 uint64_t size() const {
497 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
498 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
499 return (rHigh - rLow + 1ULL);
500 }
501 };
502
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000503 struct CaseBits {
504 uint64_t Mask;
505 MachineBasicBlock* BB;
506 unsigned Bits;
507
508 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
509 Mask(mask), BB(bb), Bits(bits) { }
510 };
511
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000512 typedef std::vector<Case> CaseVector;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000513 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000514 typedef CaseVector::iterator CaseItr;
515 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemanf15485a2006-03-27 01:32:24 +0000516
517 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
518 /// of conditional branches.
519 struct CaseRec {
520 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
521 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
522
523 /// CaseBB - The MBB in which to emit the compare and branch
524 MachineBasicBlock *CaseBB;
525 /// LT, GE - If nonzero, we know the current case value must be less-than or
526 /// greater-than-or-equal-to these Constants.
527 Constant *LT;
528 Constant *GE;
529 /// Range - A pair of iterators representing the range of case values to be
530 /// processed at this point in the binary search tree.
531 CaseRange Range;
532 };
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000533
534 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000535
536 /// The comparison function for sorting the switch case values in the vector.
537 /// WARNING: Case ranges should be disjoint!
Nate Begemanf15485a2006-03-27 01:32:24 +0000538 struct CaseCmp {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000539 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000540 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
541 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
542 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
543 return CI1->getValue().slt(CI2->getValue());
Nate Begemanf15485a2006-03-27 01:32:24 +0000544 }
545 };
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000546
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000547 struct CaseBitsCmp {
548 bool operator () (const CaseBits& C1, const CaseBits& C2) {
549 return C1.Bits > C2.Bits;
550 }
551 };
552
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000553 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemanf15485a2006-03-27 01:32:24 +0000554
Chris Lattner1c08c712005-01-07 07:47:53 +0000555public:
556 // TLI - This is information that describes the available target features we
557 // need for lowering. This indicates when operations are unavailable,
558 // implemented with a libcall, etc.
559 TargetLowering &TLI;
560 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000561 const TargetData *TD;
Dan Gohman5f43f922007-08-27 16:26:13 +0000562 AliasAnalysis &AA;
Chris Lattner1c08c712005-01-07 07:47:53 +0000563
Nate Begemanf15485a2006-03-27 01:32:24 +0000564 /// SwitchCases - Vector of CaseBlock structures used to communicate
565 /// SwitchInst code generation information.
566 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000567 /// JTCases - Vector of JumpTable structures used to communicate
568 /// SwitchInst code generation information.
569 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000570 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemanf15485a2006-03-27 01:32:24 +0000571
Chris Lattner1c08c712005-01-07 07:47:53 +0000572 /// FuncInfo - Information about the function as a whole.
573 ///
574 FunctionLoweringInfo &FuncInfo;
Gordon Henriksence224772008-01-07 01:30:38 +0000575
576 /// GCI - Garbage collection metadata for the function.
577 CollectorMetadata *GCI;
Chris Lattner1c08c712005-01-07 07:47:53 +0000578
579 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman5f43f922007-08-27 16:26:13 +0000580 AliasAnalysis &aa,
Gordon Henriksence224772008-01-07 01:30:38 +0000581 FunctionLoweringInfo &funcinfo,
582 CollectorMetadata *gci)
Dan Gohman5f43f922007-08-27 16:26:13 +0000583 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksence224772008-01-07 01:30:38 +0000584 FuncInfo(funcinfo), GCI(gci) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000585 }
586
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000587 /// getRoot - Return the current virtual root of the Selection DAG,
588 /// flushing any PendingLoad items. This must be done before emitting
589 /// a store or any other node that may need to be ordered after any
590 /// prior load instructions.
Chris Lattnera651cf62005-01-17 19:43:36 +0000591 ///
592 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000593 if (PendingLoads.empty())
594 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000595
Chris Lattnerd3948112005-01-17 22:19:26 +0000596 if (PendingLoads.size() == 1) {
597 SDOperand Root = PendingLoads[0];
598 DAG.setRoot(Root);
599 PendingLoads.clear();
600 return Root;
601 }
602
603 // Otherwise, we have to make a token factor node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000604 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
605 &PendingLoads[0], PendingLoads.size());
Chris Lattnerd3948112005-01-17 22:19:26 +0000606 PendingLoads.clear();
607 DAG.setRoot(Root);
608 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000609 }
610
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000611 /// getControlRoot - Similar to getRoot, but instead of flushing all the
612 /// PendingLoad items, flush all the PendingExports items. It is necessary
613 /// to do this before emitting a terminator instruction.
614 ///
615 SDOperand getControlRoot() {
616 SDOperand Root = DAG.getRoot();
617
618 if (PendingExports.empty())
619 return Root;
620
621 // Turn all of the CopyToReg chains into one factored node.
622 if (Root.getOpcode() != ISD::EntryToken) {
623 unsigned i = 0, e = PendingExports.size();
624 for (; i != e; ++i) {
625 assert(PendingExports[i].Val->getNumOperands() > 1);
626 if (PendingExports[i].Val->getOperand(0) == Root)
627 break; // Don't add the root if we already indirectly depend on it.
628 }
629
630 if (i == e)
631 PendingExports.push_back(Root);
632 }
633
634 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
635 &PendingExports[0],
636 PendingExports.size());
637 PendingExports.clear();
638 DAG.setRoot(Root);
639 return Root;
640 }
641
642 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Chris Lattner571e4342006-10-27 21:36:01 +0000643
Chris Lattner1c08c712005-01-07 07:47:53 +0000644 void visit(Instruction &I) { visit(I.getOpcode(), I); }
645
646 void visit(unsigned Opcode, User &I) {
Chris Lattner1e7aa5c2006-11-10 04:41:34 +0000647 // Note: this doesn't use InstVisitor, because it has to work with
648 // ConstantExpr's in addition to instructions.
Chris Lattner1c08c712005-01-07 07:47:53 +0000649 switch (Opcode) {
650 default: assert(0 && "Unknown instruction type encountered!");
651 abort();
652 // Build the switch statement using the Instruction.def file.
653#define HANDLE_INST(NUM, OPCODE, CLASS) \
654 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
655#include "llvm/Instruction.def"
656 }
657 }
658
659 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
660
Chris Lattner199862b2006-03-16 19:57:50 +0000661 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000662
Chris Lattner0da331f2007-02-04 01:31:47 +0000663 void setValue(const Value *V, SDOperand NewN) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000664 SDOperand &N = NodeMap[V];
665 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner0da331f2007-02-04 01:31:47 +0000666 N = NewN;
Chris Lattner1c08c712005-01-07 07:47:53 +0000667 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000668
Evan Cheng5c807602008-02-26 02:33:44 +0000669 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnere7cf56a2007-04-30 21:11:17 +0000670 std::set<unsigned> &OutputRegs,
671 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000672
Chris Lattner571e4342006-10-27 21:36:01 +0000673 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
674 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
675 unsigned Opc);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000676 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattner571e4342006-10-27 21:36:01 +0000677 void ExportFromCurrentBlock(Value *V);
Duncan Sands6f74b482007-12-19 09:48:52 +0000678 void LowerCallTo(CallSite CS, SDOperand Callee, bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000679 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsdc024672007-11-27 13:23:08 +0000680
Chris Lattner1c08c712005-01-07 07:47:53 +0000681 // Terminator instructions.
682 void visitRet(ReturnInst &I);
683 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000684 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000685 void visitUnreachable(UnreachableInst &I) { /* noop */ }
686
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000687 // Helpers for visitSwitch
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000688 bool handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000689 CaseRecVector& WorkList,
690 Value* SV,
691 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000692 bool handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000693 CaseRecVector& WorkList,
694 Value* SV,
695 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000696 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000697 CaseRecVector& WorkList,
698 Value* SV,
699 MachineBasicBlock* Default);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000700 bool handleBitTestsSwitchCase(CaseRec& CR,
701 CaseRecVector& WorkList,
702 Value* SV,
703 MachineBasicBlock* Default);
Nate Begemanf15485a2006-03-27 01:32:24 +0000704 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000705 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
706 void visitBitTestCase(MachineBasicBlock* NextMBB,
707 unsigned Reg,
708 SelectionDAGISel::BitTestCase &B);
Nate Begeman37efe672006-04-22 18:53:45 +0000709 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000710 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
711 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemanf15485a2006-03-27 01:32:24 +0000712
Chris Lattner1c08c712005-01-07 07:47:53 +0000713 // These all get lowered before this pass.
Jim Laskeyb180aa12007-02-21 22:53:45 +0000714 void visitInvoke(InvokeInst &I);
715 void visitUnwind(UnwindInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000716
Dan Gohman7f321562007-06-25 16:23:39 +0000717 void visitBinary(User &I, unsigned OpCode);
Nate Begemane21ea612005-11-18 07:42:56 +0000718 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000719 void visitAdd(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000720 if (I.getType()->isFPOrFPVector())
721 visitBinary(I, ISD::FADD);
Reid Spencer1628cec2006-10-26 06:15:43 +0000722 else
Dan Gohman7f321562007-06-25 16:23:39 +0000723 visitBinary(I, ISD::ADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000724 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000725 void visitSub(User &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000726 void visitMul(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000727 if (I.getType()->isFPOrFPVector())
728 visitBinary(I, ISD::FMUL);
Reid Spencer1628cec2006-10-26 06:15:43 +0000729 else
Dan Gohman7f321562007-06-25 16:23:39 +0000730 visitBinary(I, ISD::MUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000731 }
Dan Gohman7f321562007-06-25 16:23:39 +0000732 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
733 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
734 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
735 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
736 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
737 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
738 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
739 void visitOr (User &I) { visitBinary(I, ISD::OR); }
740 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer24d6da52007-01-21 00:29:26 +0000741 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencer3822ff52006-11-08 06:47:33 +0000742 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
743 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000744 void visitICmp(User &I);
745 void visitFCmp(User &I);
Nate Begemanb43e9c12008-05-12 19:40:03 +0000746 void visitVICmp(User &I);
747 void visitVFCmp(User &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000748 // Visit the conversion instructions
749 void visitTrunc(User &I);
750 void visitZExt(User &I);
751 void visitSExt(User &I);
752 void visitFPTrunc(User &I);
753 void visitFPExt(User &I);
754 void visitFPToUI(User &I);
755 void visitFPToSI(User &I);
756 void visitUIToFP(User &I);
757 void visitSIToFP(User &I);
758 void visitPtrToInt(User &I);
759 void visitIntToPtr(User &I);
760 void visitBitCast(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000761
Chris Lattner2bbd8102006-03-29 00:11:43 +0000762 void visitExtractElement(User &I);
763 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000764 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000765
Dan Gohman1d685a42008-06-07 02:02:36 +0000766 void visitExtractValue(ExtractValueInst &I);
767 void visitInsertValue(InsertValueInst &I);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000768
Chris Lattner1c08c712005-01-07 07:47:53 +0000769 void visitGetElementPtr(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000770 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000771
772 void visitMalloc(MallocInst &I);
773 void visitFree(FreeInst &I);
774 void visitAlloca(AllocaInst &I);
775 void visitLoad(LoadInst &I);
776 void visitStore(StoreInst &I);
777 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
778 void visitCall(CallInst &I);
Duncan Sandsfd7b3262007-12-17 18:08:19 +0000779 void visitInlineAsm(CallSite CS);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000780 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000781 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000782
Chris Lattner1c08c712005-01-07 07:47:53 +0000783 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000784 void visitVAArg(VAArgInst &I);
785 void visitVAEnd(CallInst &I);
786 void visitVACopy(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000787
Dan Gohmanef5d1942008-03-11 21:11:25 +0000788 void visitGetResult(GetResultInst &I);
Devang Patel40a04212008-02-19 22:15:16 +0000789
Chris Lattner1c08c712005-01-07 07:47:53 +0000790 void visitUserOp1(Instruction &I) {
791 assert(0 && "UserOp1 should not exist at instruction selection time!");
792 abort();
793 }
794 void visitUserOp2(Instruction &I) {
795 assert(0 && "UserOp2 should not exist at instruction selection time!");
796 abort();
797 }
Mon P Wang63307c32008-05-05 19:05:59 +0000798
799private:
800 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
801
Chris Lattner1c08c712005-01-07 07:47:53 +0000802};
803} // end namespace llvm
804
Dan Gohman6183f782007-07-05 20:12:34 +0000805
Duncan Sandsb988bac2008-02-11 20:58:28 +0000806/// getCopyFromParts - Create a value that contains the specified legal parts
807/// combined into the value they represent. If the parts combine to a type
808/// larger then ValueVT then AssertOp can be used to specify whether the extra
809/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattner4468c1f2008-03-09 09:38:46 +0000810/// (ISD::AssertSext).
Dan Gohman6183f782007-07-05 20:12:34 +0000811static SDOperand getCopyFromParts(SelectionDAG &DAG,
812 const SDOperand *Parts,
813 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000814 MVT PartVT,
815 MVT ValueVT,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000816 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000817 assert(NumParts > 0 && "No parts to assemble!");
818 TargetLowering &TLI = DAG.getTargetLoweringInfo();
819 SDOperand Val = Parts[0];
Dan Gohman6183f782007-07-05 20:12:34 +0000820
Duncan Sands014e04a2008-02-12 20:46:31 +0000821 if (NumParts > 1) {
822 // Assemble the value from multiple parts.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000823 if (!ValueVT.isVector()) {
824 unsigned PartBits = PartVT.getSizeInBits();
825 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohman6183f782007-07-05 20:12:34 +0000826
Duncan Sands014e04a2008-02-12 20:46:31 +0000827 // Assemble the power of 2 part.
828 unsigned RoundParts = NumParts & (NumParts - 1) ?
829 1 << Log2_32(NumParts) : NumParts;
830 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000831 MVT RoundVT = RoundBits == ValueBits ?
832 ValueVT : MVT::getIntegerVT(RoundBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000833 SDOperand Lo, Hi;
834
835 if (RoundParts > 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000836 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands014e04a2008-02-12 20:46:31 +0000837 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
838 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
839 PartVT, HalfVT);
Dan Gohman6183f782007-07-05 20:12:34 +0000840 } else {
Duncan Sands014e04a2008-02-12 20:46:31 +0000841 Lo = Parts[0];
842 Hi = Parts[1];
Dan Gohman6183f782007-07-05 20:12:34 +0000843 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000844 if (TLI.isBigEndian())
845 std::swap(Lo, Hi);
846 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
847
848 if (RoundParts < NumParts) {
849 // Assemble the trailing non-power-of-2 part.
850 unsigned OddParts = NumParts - RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000851 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000852 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
853
854 // Combine the round and odd parts.
855 Lo = Val;
856 if (TLI.isBigEndian())
857 std::swap(Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000858 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000859 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
860 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000861 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands014e04a2008-02-12 20:46:31 +0000862 TLI.getShiftAmountTy()));
863 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
864 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
865 }
866 } else {
867 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000868 MVT IntermediateVT, RegisterVT;
Duncan Sands014e04a2008-02-12 20:46:31 +0000869 unsigned NumIntermediates;
870 unsigned NumRegs =
871 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
872 RegisterVT);
Duncan Sands014e04a2008-02-12 20:46:31 +0000873 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +0000874 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands014e04a2008-02-12 20:46:31 +0000875 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
876 assert(RegisterVT == Parts[0].getValueType() &&
877 "Part type doesn't match part!");
878
879 // Assemble the parts into intermediate operands.
880 SmallVector<SDOperand, 8> Ops(NumIntermediates);
881 if (NumIntermediates == NumParts) {
882 // If the register was not expanded, truncate or copy the value,
883 // as appropriate.
884 for (unsigned i = 0; i != NumParts; ++i)
885 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
886 PartVT, IntermediateVT);
887 } else if (NumParts > 0) {
888 // If the intermediate type was expanded, build the intermediate operands
889 // from the parts.
890 assert(NumParts % NumIntermediates == 0 &&
891 "Must expand into a divisible number of parts!");
892 unsigned Factor = NumParts / NumIntermediates;
893 for (unsigned i = 0; i != NumIntermediates; ++i)
894 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
895 PartVT, IntermediateVT);
896 }
897
898 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
899 // operands.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000900 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands014e04a2008-02-12 20:46:31 +0000901 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
902 ValueVT, &Ops[0], NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +0000903 }
Dan Gohman6183f782007-07-05 20:12:34 +0000904 }
905
Duncan Sands014e04a2008-02-12 20:46:31 +0000906 // There is now one part, held in Val. Correct it to match ValueVT.
907 PartVT = Val.getValueType();
Dan Gohman6183f782007-07-05 20:12:34 +0000908
Duncan Sands014e04a2008-02-12 20:46:31 +0000909 if (PartVT == ValueVT)
910 return Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000911
Duncan Sands83ec4b62008-06-06 12:08:01 +0000912 if (PartVT.isVector()) {
913 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands014e04a2008-02-12 20:46:31 +0000914 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000915 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000916
Duncan Sands83ec4b62008-06-06 12:08:01 +0000917 if (ValueVT.isVector()) {
918 assert(ValueVT.getVectorElementType() == PartVT &&
919 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +0000920 "Only trivial scalar-to-vector conversions should get here!");
921 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
922 }
923
Duncan Sands83ec4b62008-06-06 12:08:01 +0000924 if (PartVT.isInteger() &&
925 ValueVT.isInteger()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000926 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000927 // For a truncate, see if we have any information to
928 // indicate whether the truncated bits will always be
929 // zero or sign-extension.
930 if (AssertOp != ISD::DELETED_NODE)
931 Val = DAG.getNode(AssertOp, PartVT, Val,
932 DAG.getValueType(ValueVT));
933 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
934 } else {
935 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
936 }
937 }
938
Duncan Sands83ec4b62008-06-06 12:08:01 +0000939 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000940 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattner4468c1f2008-03-09 09:38:46 +0000941 // FP_ROUND's are always exact here.
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000942 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000943 DAG.getIntPtrConstant(1));
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000944 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
945 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000946
Duncan Sands83ec4b62008-06-06 12:08:01 +0000947 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands014e04a2008-02-12 20:46:31 +0000948 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
949
950 assert(0 && "Unknown mismatch!");
Chris Lattnerd27c9912008-03-30 18:22:13 +0000951 return SDOperand();
Dan Gohman6183f782007-07-05 20:12:34 +0000952}
953
Duncan Sandsb988bac2008-02-11 20:58:28 +0000954/// getCopyToParts - Create a series of nodes that contain the specified value
955/// split into legal parts. If the parts contain more bits than Val, then, for
956/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohman6183f782007-07-05 20:12:34 +0000957static void getCopyToParts(SelectionDAG &DAG,
958 SDOperand Val,
959 SDOperand *Parts,
960 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000961 MVT PartVT,
Duncan Sandsb988bac2008-02-11 20:58:28 +0000962 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohman25ac7e82007-08-10 14:59:38 +0000963 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000964 MVT PtrVT = TLI.getPointerTy();
965 MVT ValueVT = Val.getValueType();
966 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands014e04a2008-02-12 20:46:31 +0000967 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohman6183f782007-07-05 20:12:34 +0000968
Duncan Sands014e04a2008-02-12 20:46:31 +0000969 if (!NumParts)
970 return;
971
Duncan Sands83ec4b62008-06-06 12:08:01 +0000972 if (!ValueVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000973 if (PartVT == ValueVT) {
974 assert(NumParts == 1 && "No-op copy with multiple parts!");
975 Parts[0] = Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000976 return;
977 }
978
Duncan Sands83ec4b62008-06-06 12:08:01 +0000979 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000980 // If the parts cover more bits than the value has, promote the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000981 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000982 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohman6183f782007-07-05 20:12:34 +0000983 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000984 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
985 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000986 Val = DAG.getNode(ExtendKind, ValueVT, Val);
987 } else {
988 assert(0 && "Unknown mismatch!");
989 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000990 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000991 // Different types of the same size.
992 assert(NumParts == 1 && PartVT != ValueVT);
993 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000994 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000995 // If the parts cover less bits than value has, truncate the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000996 if (PartVT.isInteger() && ValueVT.isInteger()) {
997 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000998 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000999 } else {
1000 assert(0 && "Unknown mismatch!");
1001 }
1002 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001003
1004 // The value may have changed - recompute ValueVT.
1005 ValueVT = Val.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001006 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001007 "Failed to tile the value with PartVT!");
1008
1009 if (NumParts == 1) {
1010 assert(PartVT == ValueVT && "Type conversion failed!");
1011 Parts[0] = Val;
1012 return;
1013 }
1014
1015 // Expand the value into multiple parts.
1016 if (NumParts & (NumParts - 1)) {
1017 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001018 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001019 "Do not know what to expand to!");
1020 unsigned RoundParts = 1 << Log2_32(NumParts);
1021 unsigned RoundBits = RoundParts * PartBits;
1022 unsigned OddParts = NumParts - RoundParts;
1023 SDOperand OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
1024 DAG.getConstant(RoundBits,
1025 TLI.getShiftAmountTy()));
1026 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1027 if (TLI.isBigEndian())
1028 // The odd parts were reversed by getCopyToParts - unreverse them.
1029 std::reverse(Parts + RoundParts, Parts + NumParts);
1030 NumParts = RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001031 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001032 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1033 }
1034
1035 // The number of parts is a power of 2. Repeatedly bisect the value using
1036 // EXTRACT_ELEMENT.
Duncan Sands25eb0432008-03-12 20:30:08 +00001037 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001038 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sands25eb0432008-03-12 20:30:08 +00001039 Val);
Duncan Sands014e04a2008-02-12 20:46:31 +00001040 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1041 for (unsigned i = 0; i < NumParts; i += StepSize) {
1042 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001043 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Duncan Sands25eb0432008-03-12 20:30:08 +00001044 SDOperand &Part0 = Parts[i];
1045 SDOperand &Part1 = Parts[i+StepSize/2];
Duncan Sands014e04a2008-02-12 20:46:31 +00001046
Duncan Sands25eb0432008-03-12 20:30:08 +00001047 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1048 DAG.getConstant(1, PtrVT));
1049 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1050 DAG.getConstant(0, PtrVT));
1051
1052 if (ThisBits == PartBits && ThisVT != PartVT) {
1053 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1054 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1055 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001056 }
1057 }
1058
1059 if (TLI.isBigEndian())
1060 std::reverse(Parts, Parts + NumParts);
1061
1062 return;
1063 }
1064
1065 // Vector ValueVT.
1066 if (NumParts == 1) {
1067 if (PartVT != ValueVT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001068 if (PartVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001069 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1070 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001071 assert(ValueVT.getVectorElementType() == PartVT &&
1072 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001073 "Only trivial vector-to-scalar conversions should get here!");
1074 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1075 DAG.getConstant(0, PtrVT));
1076 }
1077 }
1078
Dan Gohman6183f782007-07-05 20:12:34 +00001079 Parts[0] = Val;
1080 return;
1081 }
1082
1083 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001084 MVT IntermediateVT, RegisterVT;
Dan Gohman6183f782007-07-05 20:12:34 +00001085 unsigned NumIntermediates;
1086 unsigned NumRegs =
1087 DAG.getTargetLoweringInfo()
1088 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1089 RegisterVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001090 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohman6183f782007-07-05 20:12:34 +00001091
1092 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +00001093 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohman6183f782007-07-05 20:12:34 +00001094 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1095
1096 // Split the vector into intermediate operands.
1097 SmallVector<SDOperand, 8> Ops(NumIntermediates);
1098 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001099 if (IntermediateVT.isVector())
Dan Gohman6183f782007-07-05 20:12:34 +00001100 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1101 IntermediateVT, Val,
1102 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohman25ac7e82007-08-10 14:59:38 +00001103 PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001104 else
1105 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1106 IntermediateVT, Val,
Dan Gohman25ac7e82007-08-10 14:59:38 +00001107 DAG.getConstant(i, PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001108
1109 // Split the intermediate operands into legal parts.
1110 if (NumParts == NumIntermediates) {
1111 // If the register was not expanded, promote or copy the value,
1112 // as appropriate.
1113 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001114 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001115 } else if (NumParts > 0) {
1116 // If the intermediate type was expanded, split each the value into
1117 // legal parts.
1118 assert(NumParts % NumIntermediates == 0 &&
1119 "Must expand into a divisible number of parts!");
1120 unsigned Factor = NumParts / NumIntermediates;
1121 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001122 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001123 }
1124}
1125
1126
Chris Lattner199862b2006-03-16 19:57:50 +00001127SDOperand SelectionDAGLowering::getValue(const Value *V) {
1128 SDOperand &N = NodeMap[V];
1129 if (N.Val) return N;
1130
Chris Lattner199862b2006-03-16 19:57:50 +00001131 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001132 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001133
1134 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1135 return N = DAG.getConstant(CI->getValue(), VT);
1136
1137 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001138 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001139
1140 if (isa<ConstantPointerNull>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001141 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001142
1143 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1144 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1145
Dan Gohman1d685a42008-06-07 02:02:36 +00001146 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1147 !V->getType()->isAggregateType())
Chris Lattner6833b062008-04-28 07:16:35 +00001148 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001149
1150 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1151 visit(CE->getOpcode(), *CE);
1152 SDOperand N1 = NodeMap[V];
1153 assert(N1.Val && "visit didn't populate the ValueMap!");
1154 return N1;
1155 }
1156
Dan Gohman1d685a42008-06-07 02:02:36 +00001157 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1158 SmallVector<SDOperand, 4> Constants;
1159 SmallVector<MVT, 4> ValueVTs;
1160 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1161 OI != OE; ++OI) {
1162 SDNode *Val = getValue(*OI).Val;
1163 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) {
1164 Constants.push_back(SDOperand(Val, i));
1165 ValueVTs.push_back(Val->getValueType(i));
1166 }
1167 }
1168 return DAG.getNode(ISD::MERGE_VALUES,
1169 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1170 &Constants[0], Constants.size());
1171 }
1172
1173 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1174 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1175 "Unknown array constant!");
1176 unsigned NumElts = ATy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001177 if (NumElts == 0)
1178 return SDOperand(); // empty array
Dan Gohman1d685a42008-06-07 02:02:36 +00001179 MVT EltVT = TLI.getValueType(ATy->getElementType());
1180 SmallVector<SDOperand, 4> Constants(NumElts);
1181 SmallVector<MVT, 4> ValueVTs(NumElts, EltVT);
1182 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1183 if (isa<UndefValue>(C))
1184 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1185 else if (EltVT.isFloatingPoint())
1186 Constants[i] = DAG.getConstantFP(0, EltVT);
1187 else
1188 Constants[i] = DAG.getConstant(0, EltVT);
1189 }
1190 return DAG.getNode(ISD::MERGE_VALUES,
1191 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1192 &Constants[0], Constants.size());
1193 }
1194
1195 if (const StructType *STy = dyn_cast<StructType>(C->getType())) {
1196 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1197 "Unknown struct constant!");
1198 unsigned NumElts = STy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001199 if (NumElts == 0)
1200 return SDOperand(); // empty struct
Dan Gohman1d685a42008-06-07 02:02:36 +00001201 SmallVector<SDOperand, 4> Constants(NumElts);
1202 SmallVector<MVT, 4> ValueVTs(NumElts);
1203 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1204 MVT EltVT = TLI.getValueType(STy->getElementType(i));
1205 ValueVTs[i] = EltVT;
1206 if (isa<UndefValue>(C))
1207 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1208 else if (EltVT.isFloatingPoint())
1209 Constants[i] = DAG.getConstantFP(0, EltVT);
1210 else
1211 Constants[i] = DAG.getConstant(0, EltVT);
1212 }
1213 return DAG.getNode(ISD::MERGE_VALUES,
1214 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1215 &Constants[0], Constants.size());
1216 }
1217
Chris Lattner6833b062008-04-28 07:16:35 +00001218 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001219 unsigned NumElements = VecTy->getNumElements();
Chris Lattnerb606dba2008-04-28 06:44:42 +00001220
Chris Lattner6833b062008-04-28 07:16:35 +00001221 // Now that we know the number and type of the elements, get that number of
1222 // elements into the Ops array based on what kind of constant it is.
1223 SmallVector<SDOperand, 16> Ops;
Chris Lattnerb606dba2008-04-28 06:44:42 +00001224 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1225 for (unsigned i = 0; i != NumElements; ++i)
1226 Ops.push_back(getValue(CP->getOperand(i)));
1227 } else {
Chris Lattner6833b062008-04-28 07:16:35 +00001228 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1229 "Unknown vector constant!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001230 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner6833b062008-04-28 07:16:35 +00001231
Chris Lattnerb606dba2008-04-28 06:44:42 +00001232 SDOperand Op;
Chris Lattner6833b062008-04-28 07:16:35 +00001233 if (isa<UndefValue>(C))
1234 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001235 else if (EltVT.isFloatingPoint())
Chris Lattner6833b062008-04-28 07:16:35 +00001236 Op = DAG.getConstantFP(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001237 else
Chris Lattner6833b062008-04-28 07:16:35 +00001238 Op = DAG.getConstant(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001239 Ops.assign(NumElements, Op);
1240 }
1241
1242 // Create a BUILD_VECTOR node.
1243 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner199862b2006-03-16 19:57:50 +00001244 }
1245
Chris Lattnerb606dba2008-04-28 06:44:42 +00001246 // If this is a static alloca, generate it as the frameindex instead of
1247 // computation.
Chris Lattner199862b2006-03-16 19:57:50 +00001248 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1249 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattnerb606dba2008-04-28 06:44:42 +00001250 FuncInfo.StaticAllocaMap.find(AI);
Chris Lattner199862b2006-03-16 19:57:50 +00001251 if (SI != FuncInfo.StaticAllocaMap.end())
1252 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1253 }
1254
Chris Lattner251db182007-02-25 18:40:32 +00001255 unsigned InReg = FuncInfo.ValueMap[V];
1256 assert(InReg && "Value not in map!");
Chris Lattner199862b2006-03-16 19:57:50 +00001257
Chris Lattner6833b062008-04-28 07:16:35 +00001258 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001259 SDOperand Chain = DAG.getEntryNode();
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001260 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner199862b2006-03-16 19:57:50 +00001261}
1262
1263
Chris Lattner1c08c712005-01-07 07:47:53 +00001264void SelectionDAGLowering::visitRet(ReturnInst &I) {
1265 if (I.getNumOperands() == 0) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001266 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001267 return;
1268 }
Chris Lattnerb606dba2008-04-28 06:44:42 +00001269
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001270 SmallVector<SDOperand, 8> NewValues;
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001271 NewValues.push_back(getControlRoot());
1272 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Nate Begemanee625572006-01-27 21:09:22 +00001273 SDOperand RetOp = getValue(I.getOperand(i));
Duncan Sandsb988bac2008-02-11 20:58:28 +00001274
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001275 SmallVector<MVT, 4> ValueVTs;
1276 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1277 for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1278 MVT VT = ValueVTs[j];
Duncan Sandsb988bac2008-02-11 20:58:28 +00001279
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001280 // FIXME: C calling convention requires the return type to be promoted to
1281 // at least 32-bit. But this is not necessary for non-C calling conventions.
1282 if (VT.isInteger()) {
1283 MVT MinVT = TLI.getRegisterType(MVT::i32);
1284 if (VT.bitsLT(MinVT))
1285 VT = MinVT;
1286 }
Duncan Sandsb988bac2008-02-11 20:58:28 +00001287
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001288 unsigned NumParts = TLI.getNumRegisters(VT);
1289 MVT PartVT = TLI.getRegisterType(VT);
1290 SmallVector<SDOperand, 4> Parts(NumParts);
1291 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1292
1293 const Function *F = I.getParent()->getParent();
1294 if (F->paramHasAttr(0, ParamAttr::SExt))
1295 ExtendKind = ISD::SIGN_EXTEND;
1296 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1297 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00001298
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001299 getCopyToParts(DAG, SDOperand(RetOp.Val, RetOp.ResNo + j),
1300 &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00001301
Dan Gohmanab8ec0a2008-06-20 01:29:26 +00001302 for (unsigned i = 0; i < NumParts; ++i) {
1303 NewValues.push_back(Parts[i]);
1304 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1305 }
Nate Begemanee625572006-01-27 21:09:22 +00001306 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001307 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001308 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1309 &NewValues[0], NewValues.size()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001310}
1311
Chris Lattner571e4342006-10-27 21:36:01 +00001312/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1313/// the current basic block, add it to ValueMap now so that we'll get a
1314/// CopyTo/FromReg.
1315void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1316 // No need to export constants.
1317 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1318
1319 // Already exported?
1320 if (FuncInfo.isExportedInst(V)) return;
1321
1322 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001323 CopyValueToVirtualRegister(V, Reg);
Chris Lattner571e4342006-10-27 21:36:01 +00001324}
1325
Chris Lattner8c494ab2006-10-27 23:50:33 +00001326bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1327 const BasicBlock *FromBB) {
1328 // The operands of the setcc have to be in this block. We don't know
1329 // how to export them from some other block.
1330 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1331 // Can export from current BB.
1332 if (VI->getParent() == FromBB)
1333 return true;
1334
1335 // Is already exported, noop.
1336 return FuncInfo.isExportedInst(V);
1337 }
1338
1339 // If this is an argument, we can export it if the BB is the entry block or
1340 // if it is already exported.
1341 if (isa<Argument>(V)) {
1342 if (FromBB == &FromBB->getParent()->getEntryBlock())
1343 return true;
1344
1345 // Otherwise, can only export this if it is already exported.
1346 return FuncInfo.isExportedInst(V);
1347 }
1348
1349 // Otherwise, constants can always be exported.
1350 return true;
1351}
1352
Chris Lattner6a586c82006-10-29 21:01:20 +00001353static bool InBlock(const Value *V, const BasicBlock *BB) {
1354 if (const Instruction *I = dyn_cast<Instruction>(V))
1355 return I->getParent() == BB;
1356 return true;
1357}
1358
Chris Lattner571e4342006-10-27 21:36:01 +00001359/// FindMergedConditions - If Cond is an expression like
1360void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1361 MachineBasicBlock *TBB,
1362 MachineBasicBlock *FBB,
1363 MachineBasicBlock *CurBB,
1364 unsigned Opc) {
Chris Lattner571e4342006-10-27 21:36:01 +00001365 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001366 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattner571e4342006-10-27 21:36:01 +00001367
Reid Spencere4d87aa2006-12-23 06:05:41 +00001368 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1369 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattner6a586c82006-10-29 21:01:20 +00001370 BOp->getParent() != CurBB->getBasicBlock() ||
1371 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1372 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattner571e4342006-10-27 21:36:01 +00001373 const BasicBlock *BB = CurBB->getBasicBlock();
1374
Reid Spencere4d87aa2006-12-23 06:05:41 +00001375 // If the leaf of the tree is a comparison, merge the condition into
1376 // the caseblock.
1377 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1378 // The operands of the cmp have to be in this block. We don't know
Chris Lattner5a145f02006-10-29 18:23:37 +00001379 // how to export them from some other block. If this is the first block
1380 // of the sequence, no exporting is needed.
1381 (CurBB == CurMBB ||
1382 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1383 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001384 BOp = cast<Instruction>(Cond);
1385 ISD::CondCode Condition;
1386 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1387 switch (IC->getPredicate()) {
1388 default: assert(0 && "Unknown icmp predicate opcode!");
1389 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1390 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1391 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1392 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1393 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1394 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1395 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1396 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1397 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1398 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1399 }
1400 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1401 ISD::CondCode FPC, FOC;
1402 switch (FC->getPredicate()) {
1403 default: assert(0 && "Unknown fcmp predicate opcode!");
1404 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1405 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1406 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1407 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1408 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1409 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1410 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner6bf30ab2008-05-01 07:26:11 +00001411 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1412 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001413 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1414 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1415 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1416 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1417 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1418 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1419 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1420 }
1421 if (FiniteOnlyFPMath())
1422 Condition = FOC;
1423 else
1424 Condition = FPC;
1425 } else {
Chris Lattner0da331f2007-02-04 01:31:47 +00001426 Condition = ISD::SETEQ; // silence warning.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001427 assert(0 && "Unknown compare instruction");
Chris Lattner571e4342006-10-27 21:36:01 +00001428 }
1429
Chris Lattner571e4342006-10-27 21:36:01 +00001430 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001431 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001432 SwitchCases.push_back(CB);
1433 return;
1434 }
1435
1436 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001437 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001438 NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001439 SwitchCases.push_back(CB);
Chris Lattner571e4342006-10-27 21:36:01 +00001440 return;
1441 }
1442
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001443
1444 // Create TmpBB after CurBB.
Chris Lattner571e4342006-10-27 21:36:01 +00001445 MachineFunction::iterator BBI = CurBB;
1446 MachineBasicBlock *TmpBB = new MachineBasicBlock(CurBB->getBasicBlock());
1447 CurBB->getParent()->getBasicBlockList().insert(++BBI, TmpBB);
1448
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001449 if (Opc == Instruction::Or) {
1450 // Codegen X | Y as:
1451 // jmp_if_X TBB
1452 // jmp TmpBB
1453 // TmpBB:
1454 // jmp_if_Y TBB
1455 // jmp FBB
1456 //
Chris Lattner571e4342006-10-27 21:36:01 +00001457
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001458 // Emit the LHS condition.
1459 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1460
1461 // Emit the RHS condition into TmpBB.
1462 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1463 } else {
1464 assert(Opc == Instruction::And && "Unknown merge op!");
1465 // Codegen X & Y as:
1466 // jmp_if_X TmpBB
1467 // jmp FBB
1468 // TmpBB:
1469 // jmp_if_Y TBB
1470 // jmp FBB
1471 //
1472 // This requires creation of TmpBB after CurBB.
1473
1474 // Emit the LHS condition.
1475 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1476
1477 // Emit the RHS condition into TmpBB.
1478 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1479 }
Chris Lattner571e4342006-10-27 21:36:01 +00001480}
1481
Chris Lattnerdf19f272006-10-31 22:37:42 +00001482/// If the set of cases should be emitted as a series of branches, return true.
1483/// If we should emit this as a bunch of and/or'd together conditions, return
1484/// false.
1485static bool
1486ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1487 if (Cases.size() != 2) return true;
1488
Chris Lattner0ccb5002006-10-31 23:06:00 +00001489 // If this is two comparisons of the same values or'd or and'd together, they
1490 // will get folded into a single comparison, so don't emit two blocks.
1491 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1492 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1493 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1494 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1495 return false;
1496 }
1497
Chris Lattnerdf19f272006-10-31 22:37:42 +00001498 return true;
1499}
1500
Chris Lattner1c08c712005-01-07 07:47:53 +00001501void SelectionDAGLowering::visitBr(BranchInst &I) {
1502 // Update machine-CFG edges.
1503 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner1c08c712005-01-07 07:47:53 +00001504
1505 // Figure out which block is immediately after the current one.
1506 MachineBasicBlock *NextBlock = 0;
1507 MachineFunction::iterator BBI = CurMBB;
1508 if (++BBI != CurMBB->getParent()->end())
1509 NextBlock = BBI;
1510
1511 if (I.isUnconditional()) {
Owen Anderson2d389e82008-06-07 00:00:23 +00001512 // Update machine-CFG edges.
1513 CurMBB->addSuccessor(Succ0MBB);
1514
Chris Lattner1c08c712005-01-07 07:47:53 +00001515 // If this is not a fall-through branch, emit the branch.
1516 if (Succ0MBB != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001517 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001518 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner57ab6592006-10-24 17:57:59 +00001519 return;
1520 }
1521
1522 // If this condition is one of the special cases we handle, do special stuff
1523 // now.
1524 Value *CondVal = I.getCondition();
Chris Lattner57ab6592006-10-24 17:57:59 +00001525 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattner571e4342006-10-27 21:36:01 +00001526
1527 // If this is a series of conditions that are or'd or and'd together, emit
1528 // this as a sequence of branches instead of setcc's with and/or operations.
1529 // For example, instead of something like:
1530 // cmp A, B
1531 // C = seteq
1532 // cmp D, E
1533 // F = setle
1534 // or C, F
1535 // jnz foo
1536 // Emit:
1537 // cmp A, B
1538 // je foo
1539 // cmp D, E
1540 // jle foo
1541 //
1542 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1543 if (BOp->hasOneUse() &&
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001544 (BOp->getOpcode() == Instruction::And ||
Chris Lattner571e4342006-10-27 21:36:01 +00001545 BOp->getOpcode() == Instruction::Or)) {
1546 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattner0ccb5002006-10-31 23:06:00 +00001547 // If the compares in later blocks need to use values not currently
1548 // exported from this block, export them now. This block should always
1549 // be the first entry.
1550 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1551
Chris Lattnerdf19f272006-10-31 22:37:42 +00001552 // Allow some cases to be rejected.
1553 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattnerdf19f272006-10-31 22:37:42 +00001554 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1555 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1556 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1557 }
1558
1559 // Emit the branch for this block.
1560 visitSwitchCase(SwitchCases[0]);
1561 SwitchCases.erase(SwitchCases.begin());
1562 return;
Chris Lattner5a145f02006-10-29 18:23:37 +00001563 }
1564
Chris Lattner0ccb5002006-10-31 23:06:00 +00001565 // Okay, we decided not to do this, remove any inserted MBB's and clear
1566 // SwitchCases.
1567 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1568 CurMBB->getParent()->getBasicBlockList().erase(SwitchCases[i].ThisBB);
1569
Chris Lattnerdf19f272006-10-31 22:37:42 +00001570 SwitchCases.clear();
Chris Lattner571e4342006-10-27 21:36:01 +00001571 }
1572 }
Chris Lattner24525952006-10-24 18:07:37 +00001573
1574 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001575 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001576 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner24525952006-10-24 18:07:37 +00001577 // Use visitSwitchCase to actually insert the fast branch sequence for this
1578 // cond branch.
1579 visitSwitchCase(CB);
Chris Lattner1c08c712005-01-07 07:47:53 +00001580}
1581
Nate Begemanf15485a2006-03-27 01:32:24 +00001582/// visitSwitchCase - Emits the necessary code to represent a single node in
1583/// the binary search tree resulting from lowering a switch instruction.
1584void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Chris Lattner57ab6592006-10-24 17:57:59 +00001585 SDOperand Cond;
1586 SDOperand CondLHS = getValue(CB.CmpLHS);
1587
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001588 // Build the setcc now.
1589 if (CB.CmpMHS == NULL) {
1590 // Fold "(X == true)" to X and "(X == false)" to !X to
1591 // handle common cases produced by branch lowering.
1592 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1593 Cond = CondLHS;
1594 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1595 SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1596 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1597 } else
1598 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1599 } else {
1600 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001601
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001602 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1603 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1604
1605 SDOperand CmpOp = getValue(CB.CmpMHS);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001606 MVT VT = CmpOp.getValueType();
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001607
1608 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1609 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1610 } else {
1611 SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1612 Cond = DAG.getSetCC(MVT::i1, SUB,
1613 DAG.getConstant(High-Low, VT), ISD::SETULE);
1614 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001615 }
1616
Owen Anderson2d389e82008-06-07 00:00:23 +00001617 // Update successor info
1618 CurMBB->addSuccessor(CB.TrueBB);
1619 CurMBB->addSuccessor(CB.FalseBB);
1620
Nate Begemanf15485a2006-03-27 01:32:24 +00001621 // Set NextBlock to be the MBB immediately after the current one, if any.
1622 // This is used to avoid emitting unnecessary branches to the next block.
1623 MachineBasicBlock *NextBlock = 0;
1624 MachineFunction::iterator BBI = CurMBB;
1625 if (++BBI != CurMBB->getParent()->end())
1626 NextBlock = BBI;
1627
1628 // If the lhs block is the next block, invert the condition so that we can
1629 // fall through to the lhs instead of the rhs block.
Chris Lattner57ab6592006-10-24 17:57:59 +00001630 if (CB.TrueBB == NextBlock) {
1631 std::swap(CB.TrueBB, CB.FalseBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00001632 SDOperand True = DAG.getConstant(1, Cond.getValueType());
1633 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1634 }
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001635 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001636 DAG.getBasicBlock(CB.TrueBB));
1637 if (CB.FalseBB == NextBlock)
Nate Begemanf15485a2006-03-27 01:32:24 +00001638 DAG.setRoot(BrCond);
1639 else
1640 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001641 DAG.getBasicBlock(CB.FalseBB)));
Nate Begemanf15485a2006-03-27 01:32:24 +00001642}
1643
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001644/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman37efe672006-04-22 18:53:45 +00001645void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman37efe672006-04-22 18:53:45 +00001646 // Emit the code for the jump table
Scott Michelf147a8d2007-04-24 01:24:20 +00001647 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001648 MVT PTy = TLI.getPointerTy();
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001649 SDOperand Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001650 SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1651 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1652 Table, Index));
1653 return;
Nate Begeman37efe672006-04-22 18:53:45 +00001654}
1655
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001656/// visitJumpTableHeader - This function emits necessary code to produce index
1657/// in the JumpTable from switch case.
1658void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1659 SelectionDAGISel::JumpTableHeader &JTH) {
1660 // Subtract the lowest switch case value from the value being switched on
1661 // and conditional branch to default mbb if the result is greater than the
1662 // difference between smallest and largest cases.
1663 SDOperand SwitchOp = getValue(JTH.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001664 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001665 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1666 DAG.getConstant(JTH.First, VT));
1667
1668 // The SDNode we just created, which holds the value being switched on
1669 // minus the the smallest case value, needs to be copied to a virtual
1670 // register so it can be used as an index into the jump table in a
1671 // subsequent basic block. This value may be smaller or larger than the
1672 // target's pointer type, and therefore require extension or truncating.
Duncan Sands8e4eb092008-06-08 20:54:56 +00001673 if (VT.bitsGT(TLI.getPointerTy()))
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001674 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1675 else
1676 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1677
1678 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001679 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001680 JT.Reg = JumpTableReg;
1681
1682 // Emit the range check for the jump table, and branch to the default
1683 // block for the switch statement if the value being switched on exceeds
1684 // the largest case in the switch.
Scott Michel5b8f82e2008-03-10 15:42:14 +00001685 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001686 DAG.getConstant(JTH.Last-JTH.First,VT),
1687 ISD::SETUGT);
1688
1689 // Set NextBlock to be the MBB immediately after the current one, if any.
1690 // This is used to avoid emitting unnecessary branches to the next block.
1691 MachineBasicBlock *NextBlock = 0;
1692 MachineFunction::iterator BBI = CurMBB;
1693 if (++BBI != CurMBB->getParent()->end())
1694 NextBlock = BBI;
1695
1696 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1697 DAG.getBasicBlock(JT.Default));
1698
1699 if (JT.MBB == NextBlock)
1700 DAG.setRoot(BrCond);
1701 else
1702 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001703 DAG.getBasicBlock(JT.MBB)));
1704
1705 return;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001706}
1707
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001708/// visitBitTestHeader - This function emits necessary code to produce value
1709/// suitable for "bit tests"
1710void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1711 // Subtract the minimum value
1712 SDOperand SwitchOp = getValue(B.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001713 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001714 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1715 DAG.getConstant(B.First, VT));
1716
1717 // Check range
Scott Michel5b8f82e2008-03-10 15:42:14 +00001718 SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001719 DAG.getConstant(B.Range, VT),
1720 ISD::SETUGT);
1721
1722 SDOperand ShiftOp;
Duncan Sands8e4eb092008-06-08 20:54:56 +00001723 if (VT.bitsGT(TLI.getShiftAmountTy()))
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001724 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1725 else
1726 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1727
1728 // Make desired shift
1729 SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1730 DAG.getConstant(1, TLI.getPointerTy()),
1731 ShiftOp);
1732
1733 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001734 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001735 B.Reg = SwitchReg;
1736
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001737 // Set NextBlock to be the MBB immediately after the current one, if any.
1738 // This is used to avoid emitting unnecessary branches to the next block.
1739 MachineBasicBlock *NextBlock = 0;
1740 MachineFunction::iterator BBI = CurMBB;
1741 if (++BBI != CurMBB->getParent()->end())
1742 NextBlock = BBI;
1743
1744 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson2d389e82008-06-07 00:00:23 +00001745
1746 CurMBB->addSuccessor(B.Default);
1747 CurMBB->addSuccessor(MBB);
1748
1749 SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1750 DAG.getBasicBlock(B.Default));
1751
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001752 if (MBB == NextBlock)
1753 DAG.setRoot(BrRange);
1754 else
1755 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1756 DAG.getBasicBlock(MBB)));
1757
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001758 return;
1759}
1760
1761/// visitBitTestCase - this function produces one "bit test"
1762void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1763 unsigned Reg,
1764 SelectionDAGISel::BitTestCase &B) {
1765 // Emit bit tests and jumps
Chris Lattneread0d882008-06-17 06:09:18 +00001766 SDOperand SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
1767 TLI.getPointerTy());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001768
Chris Lattneread0d882008-06-17 06:09:18 +00001769 SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
1770 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Scott Michel5b8f82e2008-03-10 15:42:14 +00001771 SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001772 DAG.getConstant(0, TLI.getPointerTy()),
1773 ISD::SETNE);
Owen Anderson2d389e82008-06-07 00:00:23 +00001774
1775 CurMBB->addSuccessor(B.TargetBB);
1776 CurMBB->addSuccessor(NextMBB);
1777
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001778 SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001779 AndCmp, DAG.getBasicBlock(B.TargetBB));
1780
1781 // Set NextBlock to be the MBB immediately after the current one, if any.
1782 // This is used to avoid emitting unnecessary branches to the next block.
1783 MachineBasicBlock *NextBlock = 0;
1784 MachineFunction::iterator BBI = CurMBB;
1785 if (++BBI != CurMBB->getParent()->end())
1786 NextBlock = BBI;
1787
1788 if (NextMBB == NextBlock)
1789 DAG.setRoot(BrAnd);
1790 else
1791 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1792 DAG.getBasicBlock(NextMBB)));
1793
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001794 return;
1795}
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001796
Jim Laskeyb180aa12007-02-21 22:53:45 +00001797void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1798 // Retrieve successors.
1799 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001800 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands9fac0b52007-06-06 10:05:18 +00001801
Duncan Sandsfd7b3262007-12-17 18:08:19 +00001802 if (isa<InlineAsm>(I.getCalledValue()))
1803 visitInlineAsm(&I);
1804 else
Duncan Sands6f74b482007-12-19 09:48:52 +00001805 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Duncan Sands9fac0b52007-06-06 10:05:18 +00001806
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001807 // If the value of the invoke is used outside of its defining block, make it
1808 // available as a virtual register.
1809 if (!I.use_empty()) {
1810 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1811 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001812 CopyValueToVirtualRegister(&I, VMI->second);
Jim Laskey183f47f2007-02-25 21:43:59 +00001813 }
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001814
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001815 // Update successor info
1816 CurMBB->addSuccessor(Return);
1817 CurMBB->addSuccessor(LandingPad);
Owen Anderson2d389e82008-06-07 00:00:23 +00001818
1819 // Drop into normal successor.
1820 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1821 DAG.getBasicBlock(Return)));
Jim Laskeyb180aa12007-02-21 22:53:45 +00001822}
1823
1824void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1825}
1826
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001827/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001828/// small case ranges).
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001829bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001830 CaseRecVector& WorkList,
1831 Value* SV,
1832 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001833 Case& BackCase = *(CR.Range.second-1);
1834
1835 // Size is the number of Cases represented by this range.
1836 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001837 if (Size > 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001838 return false;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001839
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001840 // Get the MachineFunction which holds the current MBB. This is used when
1841 // inserting any additional MBBs necessary to represent the switch.
1842 MachineFunction *CurMF = CurMBB->getParent();
1843
1844 // Figure out which block is immediately after the current one.
1845 MachineBasicBlock *NextBlock = 0;
1846 MachineFunction::iterator BBI = CR.CaseBB;
1847
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001848 if (++BBI != CurMBB->getParent()->end())
1849 NextBlock = BBI;
1850
1851 // TODO: If any two of the cases has the same destination, and if one value
1852 // is the same as the other, but has one bit unset that the other has set,
1853 // use bit manipulation to do two compares at once. For example:
1854 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1855
1856 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001857 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001858 // The last case block won't fall through into 'NextBlock' if we emit the
1859 // branches in this order. See if rearranging a case value would help.
1860 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001861 if (I->BB == NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001862 std::swap(*I, BackCase);
1863 break;
1864 }
1865 }
1866 }
1867
1868 // Create a CaseBlock record representing a conditional branch to
1869 // the Case's target mbb if the value being switched on SV is equal
1870 // to C.
1871 MachineBasicBlock *CurBlock = CR.CaseBB;
1872 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1873 MachineBasicBlock *FallThrough;
1874 if (I != E-1) {
1875 FallThrough = new MachineBasicBlock(CurBlock->getBasicBlock());
1876 CurMF->getBasicBlockList().insert(BBI, FallThrough);
1877 } else {
1878 // If the last case doesn't match, go to the default block.
1879 FallThrough = Default;
1880 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001881
1882 Value *RHS, *LHS, *MHS;
1883 ISD::CondCode CC;
1884 if (I->High == I->Low) {
1885 // This is just small small case range :) containing exactly 1 case
1886 CC = ISD::SETEQ;
1887 LHS = SV; RHS = I->High; MHS = NULL;
1888 } else {
1889 CC = ISD::SETLE;
1890 LHS = I->Low; MHS = SV; RHS = I->High;
1891 }
1892 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1893 I->BB, FallThrough, CurBlock);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001894
1895 // If emitting the first comparison, just call visitSwitchCase to emit the
1896 // code into the current block. Otherwise, push the CaseBlock onto the
1897 // vector to be later processed by SDISel, and insert the node's MBB
1898 // before the next MBB.
1899 if (CurBlock == CurMBB)
1900 visitSwitchCase(CB);
1901 else
1902 SwitchCases.push_back(CB);
1903
1904 CurBlock = FallThrough;
1905 }
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001906
1907 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001908}
1909
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001910static inline bool areJTsAllowed(const TargetLowering &TLI) {
1911 return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1912 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1913}
1914
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001915/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001916bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001917 CaseRecVector& WorkList,
1918 Value* SV,
1919 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001920 Case& FrontCase = *CR.Range.first;
1921 Case& BackCase = *(CR.Range.second-1);
1922
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001923 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1924 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1925
1926 uint64_t TSize = 0;
1927 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1928 I!=E; ++I)
1929 TSize += I->size();
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001930
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001931 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001932 return false;
1933
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001934 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1935 if (Density < 0.4)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001936 return false;
1937
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001938 DOUT << "Lowering jump table\n"
1939 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001940 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001941
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001942 // Get the MachineFunction which holds the current MBB. This is used when
1943 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001944 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001945
1946 // Figure out which block is immediately after the current one.
1947 MachineBasicBlock *NextBlock = 0;
1948 MachineFunction::iterator BBI = CR.CaseBB;
1949
1950 if (++BBI != CurMBB->getParent()->end())
1951 NextBlock = BBI;
1952
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001953 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1954
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001955 // Create a new basic block to hold the code for loading the address
1956 // of the jump table, and jumping to it. Update successor information;
1957 // we will either branch to the default case for the switch, or the jump
1958 // table.
1959 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
1960 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
1961 CR.CaseBB->addSuccessor(Default);
1962 CR.CaseBB->addSuccessor(JumpTableBB);
1963
1964 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001965 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001966 // a case statement, push the case's BB onto the vector, otherwise, push
1967 // the default BB.
1968 std::vector<MachineBasicBlock*> DestBBs;
1969 int64_t TEI = First;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001970 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1971 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1972 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1973
1974 if ((Low <= TEI) && (TEI <= High)) {
1975 DestBBs.push_back(I->BB);
1976 if (TEI==High)
1977 ++I;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001978 } else {
1979 DestBBs.push_back(Default);
1980 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001981 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001982
1983 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001984 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001985 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1986 E = DestBBs.end(); I != E; ++I) {
1987 if (!SuccsHandled[(*I)->getNumber()]) {
1988 SuccsHandled[(*I)->getNumber()] = true;
1989 JumpTableBB->addSuccessor(*I);
1990 }
1991 }
1992
1993 // Create a jump table index for this jump table, or return an existing
1994 // one.
1995 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1996
1997 // Set the jump table information so that we can codegen it as a second
1998 // MachineBasicBlock
Scott Michelf147a8d2007-04-24 01:24:20 +00001999 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002000 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
2001 (CR.CaseBB == CurMBB));
2002 if (CR.CaseBB == CurMBB)
2003 visitJumpTableHeader(JT, JTH);
2004
2005 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002006
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002007 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002008}
2009
2010/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2011/// 2 subtrees.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002012bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002013 CaseRecVector& WorkList,
2014 Value* SV,
2015 MachineBasicBlock* Default) {
2016 // Get the MachineFunction which holds the current MBB. This is used when
2017 // inserting any additional MBBs necessary to represent the switch.
2018 MachineFunction *CurMF = CurMBB->getParent();
2019
2020 // Figure out which block is immediately after the current one.
2021 MachineBasicBlock *NextBlock = 0;
2022 MachineFunction::iterator BBI = CR.CaseBB;
2023
2024 if (++BBI != CurMBB->getParent()->end())
2025 NextBlock = BBI;
2026
2027 Case& FrontCase = *CR.Range.first;
2028 Case& BackCase = *(CR.Range.second-1);
2029 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2030
2031 // Size is the number of Cases represented by this range.
2032 unsigned Size = CR.Range.second - CR.Range.first;
2033
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002034 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2035 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002036 double FMetric = 0;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002037 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002038
2039 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2040 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002041 uint64_t TSize = 0;
2042 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2043 I!=E; ++I)
2044 TSize += I->size();
2045
2046 uint64_t LSize = FrontCase.size();
2047 uint64_t RSize = TSize-LSize;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002048 DOUT << "Selecting best pivot: \n"
2049 << "First: " << First << ", Last: " << Last <<"\n"
2050 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002051 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002052 J!=E; ++I, ++J) {
2053 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2054 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002055 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002056 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2057 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikov54e2b142007-04-09 21:57:03 +00002058 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002059 // Should always split in some non-trivial place
2060 DOUT <<"=>Step\n"
2061 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2062 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2063 << "Metric: " << Metric << "\n";
2064 if (FMetric < Metric) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002065 Pivot = J;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002066 FMetric = Metric;
2067 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002068 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002069
2070 LSize += J->size();
2071 RSize -= J->size();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002072 }
Anton Korobeynikov7294b582007-05-09 20:07:08 +00002073 if (areJTsAllowed(TLI)) {
2074 // If our case is dense we *really* should handle it earlier!
2075 assert((FMetric > 0) && "Should handle dense range earlier!");
2076 } else {
2077 Pivot = CR.Range.first + Size/2;
2078 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002079
2080 CaseRange LHSR(CR.Range.first, Pivot);
2081 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002082 Constant *C = Pivot->Low;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002083 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2084
2085 // We know that we branch to the LHS if the Value being switched on is
2086 // less than the Pivot value, C. We use this to optimize our binary
2087 // tree a bit, by recognizing that if SV is greater than or equal to the
2088 // LHS's Case Value, and that Case Value is exactly one less than the
2089 // Pivot's Value, then we can branch directly to the LHS's Target,
2090 // rather than creating a leaf node for it.
2091 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002092 LHSR.first->High == CR.GE &&
2093 cast<ConstantInt>(C)->getSExtValue() ==
2094 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2095 TrueBB = LHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002096 } else {
2097 TrueBB = new MachineBasicBlock(LLVMBB);
2098 CurMF->getBasicBlockList().insert(BBI, TrueBB);
2099 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2100 }
2101
2102 // Similar to the optimization above, if the Value being switched on is
2103 // known to be less than the Constant CR.LT, and the current Case Value
2104 // is CR.LT - 1, then we can branch directly to the target block for
2105 // the current Case Value, rather than emitting a RHS leaf node for it.
2106 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002107 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2108 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2109 FalseBB = RHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002110 } else {
2111 FalseBB = new MachineBasicBlock(LLVMBB);
2112 CurMF->getBasicBlockList().insert(BBI, FalseBB);
2113 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2114 }
2115
2116 // Create a CaseBlock record representing a conditional branch to
2117 // the LHS node if the value being switched on SV is less than C.
2118 // Otherwise, branch to LHS.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002119 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2120 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002121
2122 if (CR.CaseBB == CurMBB)
2123 visitSwitchCase(CB);
2124 else
2125 SwitchCases.push_back(CB);
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002126
2127 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002128}
2129
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002130/// handleBitTestsSwitchCase - if current case range has few destination and
2131/// range span less, than machine word bitwidth, encode case range into series
2132/// of masks and emit bit tests with these masks.
2133bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2134 CaseRecVector& WorkList,
2135 Value* SV,
Chris Lattner3ff98172007-04-14 02:26:56 +00002136 MachineBasicBlock* Default){
Duncan Sands83ec4b62008-06-06 12:08:01 +00002137 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002138
2139 Case& FrontCase = *CR.Range.first;
2140 Case& BackCase = *(CR.Range.second-1);
2141
2142 // Get the MachineFunction which holds the current MBB. This is used when
2143 // inserting any additional MBBs necessary to represent the switch.
2144 MachineFunction *CurMF = CurMBB->getParent();
2145
2146 unsigned numCmps = 0;
2147 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2148 I!=E; ++I) {
2149 // Single case counts one, case range - two.
2150 if (I->Low == I->High)
2151 numCmps +=1;
2152 else
2153 numCmps +=2;
2154 }
2155
2156 // Count unique destinations
2157 SmallSet<MachineBasicBlock*, 4> Dests;
2158 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2159 Dests.insert(I->BB);
2160 if (Dests.size() > 3)
2161 // Don't bother the code below, if there are too much unique destinations
2162 return false;
2163 }
2164 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2165 << "Total number of comparisons: " << numCmps << "\n";
2166
2167 // Compute span of values.
2168 Constant* minValue = FrontCase.Low;
2169 Constant* maxValue = BackCase.High;
2170 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2171 cast<ConstantInt>(minValue)->getSExtValue();
2172 DOUT << "Compare range: " << range << "\n"
2173 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2174 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2175
Anton Korobeynikovab8fd402007-04-26 20:44:04 +00002176 if (range>=IntPtrBits ||
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002177 (!(Dests.size() == 1 && numCmps >= 3) &&
2178 !(Dests.size() == 2 && numCmps >= 5) &&
2179 !(Dests.size() >= 3 && numCmps >= 6)))
2180 return false;
2181
2182 DOUT << "Emitting bit tests\n";
2183 int64_t lowBound = 0;
2184
2185 // Optimize the case where all the case values fit in a
2186 // word without having to subtract minValue. In this case,
2187 // we can optimize away the subtraction.
2188 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002189 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002190 range = cast<ConstantInt>(maxValue)->getSExtValue();
2191 } else {
2192 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2193 }
2194
2195 CaseBitsVector CasesBits;
2196 unsigned i, count = 0;
2197
2198 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2199 MachineBasicBlock* Dest = I->BB;
2200 for (i = 0; i < count; ++i)
2201 if (Dest == CasesBits[i].BB)
2202 break;
2203
2204 if (i == count) {
2205 assert((count < 3) && "Too much destinations to test!");
2206 CasesBits.push_back(CaseBits(0, Dest, 0));
2207 count++;
2208 }
2209
2210 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2211 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2212
2213 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002214 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002215 CasesBits[i].Bits++;
2216 }
2217
2218 }
2219 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2220
2221 SelectionDAGISel::BitTestInfo BTC;
2222
2223 // Figure out which block is immediately after the current one.
2224 MachineFunction::iterator BBI = CR.CaseBB;
2225 ++BBI;
2226
2227 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2228
2229 DOUT << "Cases:\n";
2230 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2231 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2232 << ", BB: " << CasesBits[i].BB << "\n";
2233
2234 MachineBasicBlock *CaseBB = new MachineBasicBlock(LLVMBB);
2235 CurMF->getBasicBlockList().insert(BBI, CaseBB);
2236 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2237 CaseBB,
2238 CasesBits[i].BB));
2239 }
2240
2241 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohenefc36622007-04-09 14:32:59 +00002242 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002243 CR.CaseBB, Default, BTC);
2244
2245 if (CR.CaseBB == CurMBB)
2246 visitBitTestHeader(BTB);
2247
2248 BitTestCases.push_back(BTB);
2249
2250 return true;
2251}
2252
2253
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002254/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002255unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2256 const SwitchInst& SI) {
2257 unsigned numCmps = 0;
2258
2259 // Start with "simple" cases
2260 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2261 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2262 Cases.push_back(Case(SI.getSuccessorValue(i),
2263 SI.getSuccessorValue(i),
2264 SMBB));
2265 }
Chris Lattnerb3d9cdb2007-11-27 06:14:32 +00002266 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002267
2268 // Merge case into clusters
2269 if (Cases.size()>=2)
David Greenea2a48852007-06-29 03:42:23 +00002270 // Must recompute end() each iteration because it may be
2271 // invalidated by erase if we hold on to it
Chris Lattner27a6c732007-11-24 07:07:01 +00002272 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002273 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2274 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2275 MachineBasicBlock* nextBB = J->BB;
2276 MachineBasicBlock* currentBB = I->BB;
2277
2278 // If the two neighboring cases go to the same destination, merge them
2279 // into a single case.
2280 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2281 I->High = J->High;
2282 J = Cases.erase(J);
2283 } else {
2284 I = J++;
2285 }
2286 }
2287
2288 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2289 if (I->Low != I->High)
2290 // A range counts double, since it requires two compares.
2291 ++numCmps;
2292 }
2293
2294 return numCmps;
2295}
2296
2297void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002298 // Figure out which block is immediately after the current one.
2299 MachineBasicBlock *NextBlock = 0;
2300 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002301
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002302 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002303
Nate Begemanf15485a2006-03-27 01:32:24 +00002304 // If there is only the default destination, branch to it if it is not the
2305 // next basic block. Otherwise, just fall through.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002306 if (SI.getNumOperands() == 2) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002307 // Update machine-CFG edges.
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002308
Nate Begemanf15485a2006-03-27 01:32:24 +00002309 // If this is not a fall-through branch, emit the branch.
Owen Anderson2d389e82008-06-07 00:00:23 +00002310 CurMBB->addSuccessor(Default);
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002311 if (Default != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002312 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002313 DAG.getBasicBlock(Default)));
Owen Anderson2d389e82008-06-07 00:00:23 +00002314
Nate Begemanf15485a2006-03-27 01:32:24 +00002315 return;
2316 }
2317
2318 // If there are any non-default case statements, create a vector of Cases
2319 // representing each one, and sort the vector so that we can efficiently
2320 // create a binary search tree from them.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002321 CaseVector Cases;
2322 unsigned numCmps = Clusterify(Cases, SI);
2323 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2324 << ". Total compares: " << numCmps << "\n";
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002325
Nate Begemanf15485a2006-03-27 01:32:24 +00002326 // Get the Value to be switched on and default basic blocks, which will be
2327 // inserted into CaseBlock records, representing basic blocks in the binary
2328 // search tree.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002329 Value *SV = SI.getOperand(0);
Nate Begeman37efe672006-04-22 18:53:45 +00002330
Nate Begemanf15485a2006-03-27 01:32:24 +00002331 // Push the initial CaseRec onto the worklist
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002332 CaseRecVector WorkList;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002333 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2334
2335 while (!WorkList.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002336 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002337 CaseRec CR = WorkList.back();
2338 WorkList.pop_back();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002339
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002340 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2341 continue;
2342
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002343 // If the range has few cases (two or less) emit a series of specific
2344 // tests.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002345 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2346 continue;
2347
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002348 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002349 // target supports indirect branches, then emit a jump table rather than
2350 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002351 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2352 continue;
2353
2354 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2355 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2356 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemanf15485a2006-03-27 01:32:24 +00002357 }
2358}
2359
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002360
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002361void SelectionDAGLowering::visitSub(User &I) {
2362 // -0.0 - X --> fneg
Reid Spencer24d6da52007-01-21 00:29:26 +00002363 const Type *Ty = I.getType();
Reid Spencer9d6565a2007-02-15 02:26:10 +00002364 if (isa<VectorType>(Ty)) {
Dan Gohman7f321562007-06-25 16:23:39 +00002365 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2366 const VectorType *DestTy = cast<VectorType>(I.getType());
2367 const Type *ElTy = DestTy->getElementType();
Evan Chengc45453f2007-06-29 21:44:35 +00002368 if (ElTy->isFloatingPoint()) {
2369 unsigned VL = DestTy->getNumElements();
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002370 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Evan Chengc45453f2007-06-29 21:44:35 +00002371 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2372 if (CV == CNZ) {
2373 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 }
2380 if (Ty->isFloatingPoint()) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002381 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002382 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002383 SDOperand Op2 = getValue(I.getOperand(1));
2384 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2385 return;
2386 }
Dan Gohman7f321562007-06-25 16:23:39 +00002387 }
2388
2389 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002390}
2391
Dan Gohman7f321562007-06-25 16:23:39 +00002392void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00002393 SDOperand Op1 = getValue(I.getOperand(0));
2394 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer24d6da52007-01-21 00:29:26 +00002395
2396 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer1628cec2006-10-26 06:15:43 +00002397}
2398
Nate Begemane21ea612005-11-18 07:42:56 +00002399void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2400 SDOperand Op1 = getValue(I.getOperand(0));
2401 SDOperand Op2 = getValue(I.getOperand(1));
2402
Duncan Sands8e4eb092008-06-08 20:54:56 +00002403 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002404 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002405 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002406 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
Nate Begemane21ea612005-11-18 07:42:56 +00002407
Chris Lattner1c08c712005-01-07 07:47:53 +00002408 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2409}
2410
Reid Spencer45fb3f32006-11-20 01:22:35 +00002411void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002412 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2413 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2414 predicate = IC->getPredicate();
2415 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2416 predicate = ICmpInst::Predicate(IC->getPredicate());
2417 SDOperand Op1 = getValue(I.getOperand(0));
2418 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer45fb3f32006-11-20 01:22:35 +00002419 ISD::CondCode Opcode;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002420 switch (predicate) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002421 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2422 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2423 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2424 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2425 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2426 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2427 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2428 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2429 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2430 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2431 default:
2432 assert(!"Invalid ICmp predicate value");
2433 Opcode = ISD::SETEQ;
2434 break;
2435 }
2436 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2437}
2438
2439void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002440 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2441 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2442 predicate = FC->getPredicate();
2443 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2444 predicate = FCmpInst::Predicate(FC->getPredicate());
Chris Lattner1c08c712005-01-07 07:47:53 +00002445 SDOperand Op1 = getValue(I.getOperand(0));
2446 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002447 ISD::CondCode Condition, FOC, FPC;
2448 switch (predicate) {
2449 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2450 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2451 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2452 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2453 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2454 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2455 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmancba3b442008-05-01 23:40:44 +00002456 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2457 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002458 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2459 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2460 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2461 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2462 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2463 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2464 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2465 default:
2466 assert(!"Invalid FCmp predicate value");
2467 FOC = FPC = ISD::SETFALSE;
2468 break;
2469 }
2470 if (FiniteOnlyFPMath())
2471 Condition = FOC;
2472 else
2473 Condition = FPC;
2474 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner1c08c712005-01-07 07:47:53 +00002475}
2476
Nate Begemanb43e9c12008-05-12 19:40:03 +00002477void SelectionDAGLowering::visitVICmp(User &I) {
2478 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2479 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2480 predicate = IC->getPredicate();
2481 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2482 predicate = ICmpInst::Predicate(IC->getPredicate());
2483 SDOperand Op1 = getValue(I.getOperand(0));
2484 SDOperand Op2 = getValue(I.getOperand(1));
2485 ISD::CondCode Opcode;
2486 switch (predicate) {
2487 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2488 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2489 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2490 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2491 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2492 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2493 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2494 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2495 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2496 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2497 default:
2498 assert(!"Invalid ICmp predicate value");
2499 Opcode = ISD::SETEQ;
2500 break;
2501 }
2502 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2503}
2504
2505void SelectionDAGLowering::visitVFCmp(User &I) {
2506 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2507 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2508 predicate = FC->getPredicate();
2509 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2510 predicate = FCmpInst::Predicate(FC->getPredicate());
2511 SDOperand Op1 = getValue(I.getOperand(0));
2512 SDOperand Op2 = getValue(I.getOperand(1));
2513 ISD::CondCode Condition, FOC, FPC;
2514 switch (predicate) {
2515 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2516 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2517 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2518 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2519 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2520 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2521 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2522 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2523 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2524 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2525 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2526 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2527 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2528 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2529 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2530 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2531 default:
2532 assert(!"Invalid VFCmp predicate value");
2533 FOC = FPC = ISD::SETFALSE;
2534 break;
2535 }
2536 if (FiniteOnlyFPMath())
2537 Condition = FOC;
2538 else
2539 Condition = FPC;
2540
Duncan Sands83ec4b62008-06-06 12:08:01 +00002541 MVT DestVT = TLI.getValueType(I.getType());
Nate Begemanb43e9c12008-05-12 19:40:03 +00002542
2543 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2544}
2545
Chris Lattner1c08c712005-01-07 07:47:53 +00002546void SelectionDAGLowering::visitSelect(User &I) {
2547 SDOperand Cond = getValue(I.getOperand(0));
2548 SDOperand TrueVal = getValue(I.getOperand(1));
2549 SDOperand FalseVal = getValue(I.getOperand(2));
Dan Gohman7f321562007-06-25 16:23:39 +00002550 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2551 TrueVal, FalseVal));
Chris Lattner1c08c712005-01-07 07:47:53 +00002552}
2553
Reid Spencer3da59db2006-11-27 01:05:10 +00002554
2555void SelectionDAGLowering::visitTrunc(User &I) {
2556 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2557 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002558 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002559 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2560}
2561
2562void SelectionDAGLowering::visitZExt(User &I) {
2563 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2564 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2565 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002566 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002567 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2568}
2569
2570void SelectionDAGLowering::visitSExt(User &I) {
2571 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2572 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2573 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002574 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002575 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2576}
2577
2578void SelectionDAGLowering::visitFPTrunc(User &I) {
2579 // FPTrunc is never a no-op cast, no need to check
2580 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002581 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner0bd48932008-01-17 07:00:52 +00002582 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Reid Spencer3da59db2006-11-27 01:05:10 +00002583}
2584
2585void SelectionDAGLowering::visitFPExt(User &I){
2586 // FPTrunc is never a no-op cast, no need to check
2587 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002588 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002589 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2590}
2591
2592void SelectionDAGLowering::visitFPToUI(User &I) {
2593 // FPToUI is never a no-op cast, no need to check
2594 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002595 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002596 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2597}
2598
2599void SelectionDAGLowering::visitFPToSI(User &I) {
2600 // FPToSI is never a no-op cast, no need to check
2601 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002602 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002603 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2604}
2605
2606void SelectionDAGLowering::visitUIToFP(User &I) {
2607 // UIToFP is never a no-op cast, no need to check
2608 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002609 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002610 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2611}
2612
2613void SelectionDAGLowering::visitSIToFP(User &I){
2614 // UIToFP is never a no-op cast, no need to check
2615 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002616 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002617 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2618}
2619
2620void SelectionDAGLowering::visitPtrToInt(User &I) {
2621 // What to do depends on the size of the integer and the size of the pointer.
2622 // We can either truncate, zero extend, or no-op, accordingly.
Chris Lattner1c08c712005-01-07 07:47:53 +00002623 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002624 MVT SrcVT = N.getValueType();
2625 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002626 SDOperand Result;
Duncan Sands8e4eb092008-06-08 20:54:56 +00002627 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002628 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2629 else
2630 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2631 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2632 setValue(&I, Result);
2633}
Chris Lattner1c08c712005-01-07 07:47:53 +00002634
Reid Spencer3da59db2006-11-27 01:05:10 +00002635void SelectionDAGLowering::visitIntToPtr(User &I) {
2636 // What to do depends on the size of the integer and the size of the pointer.
2637 // We can either truncate, zero extend, or no-op, accordingly.
2638 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002639 MVT SrcVT = N.getValueType();
2640 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sands8e4eb092008-06-08 20:54:56 +00002641 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002642 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2643 else
2644 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2645 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2646}
2647
2648void SelectionDAGLowering::visitBitCast(User &I) {
2649 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002650 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002651
2652 // BitCast assures us that source and destination are the same size so this
2653 // is either a BIT_CONVERT or a no-op.
2654 if (DestVT != N.getValueType())
2655 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2656 else
2657 setValue(&I, N); // noop cast.
Chris Lattner1c08c712005-01-07 07:47:53 +00002658}
2659
Chris Lattner2bbd8102006-03-29 00:11:43 +00002660void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00002661 SDOperand InVec = getValue(I.getOperand(0));
2662 SDOperand InVal = getValue(I.getOperand(1));
2663 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2664 getValue(I.getOperand(2)));
2665
Dan Gohman7f321562007-06-25 16:23:39 +00002666 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2667 TLI.getValueType(I.getType()),
2668 InVec, InVal, InIdx));
Chris Lattnerc7029802006-03-18 01:44:44 +00002669}
2670
Chris Lattner2bbd8102006-03-29 00:11:43 +00002671void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00002672 SDOperand InVec = getValue(I.getOperand(0));
2673 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2674 getValue(I.getOperand(1)));
Dan Gohman7f321562007-06-25 16:23:39 +00002675 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner384504c2006-03-21 20:44:12 +00002676 TLI.getValueType(I.getType()), InVec, InIdx));
2677}
Chris Lattnerc7029802006-03-18 01:44:44 +00002678
Chris Lattner3e104b12006-04-08 04:15:24 +00002679void SelectionDAGLowering::visitShuffleVector(User &I) {
2680 SDOperand V1 = getValue(I.getOperand(0));
2681 SDOperand V2 = getValue(I.getOperand(1));
2682 SDOperand Mask = getValue(I.getOperand(2));
2683
Dan Gohman7f321562007-06-25 16:23:39 +00002684 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2685 TLI.getValueType(I.getType()),
2686 V1, V2, Mask));
Chris Lattner3e104b12006-04-08 04:15:24 +00002687}
2688
Dan Gohman1d685a42008-06-07 02:02:36 +00002689void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2690 const Value *Op0 = I.getOperand(0);
2691 const Value *Op1 = I.getOperand(1);
2692 const Type *AggTy = I.getType();
2693 const Type *ValTy = Op1->getType();
2694 bool IntoUndef = isa<UndefValue>(Op0);
2695 bool FromUndef = isa<UndefValue>(Op1);
2696
2697 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2698 I.idx_begin(), I.idx_end());
2699
2700 SmallVector<MVT, 4> AggValueVTs;
2701 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2702 SmallVector<MVT, 4> ValValueVTs;
2703 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2704
2705 unsigned NumAggValues = AggValueVTs.size();
2706 unsigned NumValValues = ValValueVTs.size();
2707 SmallVector<SDOperand, 4> Values(NumAggValues);
2708
2709 SDOperand Agg = getValue(Op0);
2710 SDOperand Val = getValue(Op1);
2711 unsigned i = 0;
2712 // Copy the beginning value(s) from the original aggregate.
2713 for (; i != LinearIndex; ++i)
2714 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2715 SDOperand(Agg.Val, Agg.ResNo + i);
2716 // Copy values from the inserted value(s).
2717 for (; i != LinearIndex + NumValValues; ++i)
2718 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2719 SDOperand(Val.Val, Val.ResNo + i - LinearIndex);
2720 // Copy remaining value(s) from the original aggregate.
2721 for (; i != NumAggValues; ++i)
2722 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2723 SDOperand(Agg.Val, Agg.ResNo + i);
2724
2725 setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
2726 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2727 &Values[0], NumAggValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002728}
2729
Dan Gohman1d685a42008-06-07 02:02:36 +00002730void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2731 const Value *Op0 = I.getOperand(0);
2732 const Type *AggTy = Op0->getType();
2733 const Type *ValTy = I.getType();
2734 bool OutOfUndef = isa<UndefValue>(Op0);
2735
2736 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2737 I.idx_begin(), I.idx_end());
2738
2739 SmallVector<MVT, 4> ValValueVTs;
2740 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2741
2742 unsigned NumValValues = ValValueVTs.size();
2743 SmallVector<SDOperand, 4> Values(NumValValues);
2744
2745 SDOperand Agg = getValue(Op0);
2746 // Copy out the selected value(s).
2747 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2748 Values[i - LinearIndex] =
Dan Gohmandded0fd2008-06-20 00:54:19 +00002749 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
2750 SDOperand(Agg.Val, Agg.ResNo + i);
Dan Gohman1d685a42008-06-07 02:02:36 +00002751
2752 setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
2753 DAG.getVTList(&ValValueVTs[0], NumValValues),
2754 &Values[0], NumValValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002755}
2756
Chris Lattner3e104b12006-04-08 04:15:24 +00002757
Chris Lattner1c08c712005-01-07 07:47:53 +00002758void SelectionDAGLowering::visitGetElementPtr(User &I) {
2759 SDOperand N = getValue(I.getOperand(0));
2760 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00002761
2762 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2763 OI != E; ++OI) {
2764 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002765 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002766 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner1c08c712005-01-07 07:47:53 +00002767 if (Field) {
2768 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +00002769 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner1c08c712005-01-07 07:47:53 +00002770 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner0bd48932008-01-17 07:00:52 +00002771 DAG.getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00002772 }
2773 Ty = StTy->getElementType(Field);
2774 } else {
2775 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00002776
Chris Lattner7c0104b2005-11-09 04:45:33 +00002777 // If this is a constant subscript, handle it quickly.
2778 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002779 if (CI->getZExtValue() == 0) continue;
Reid Spencer47857812006-12-31 05:55:36 +00002780 uint64_t Offs =
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002781 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00002782 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2783 DAG.getIntPtrConstant(Offs));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002784 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00002785 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00002786
2787 // N = N + Idx * ElementSize;
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002788 uint64_t ElementSize = TD->getABITypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002789 SDOperand IdxN = getValue(Idx);
2790
2791 // If the index is smaller or larger than intptr_t, truncate or extend
2792 // it.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002793 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +00002794 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002795 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Chris Lattner7c0104b2005-11-09 04:45:33 +00002796 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2797
2798 // If this is a multiply by a power of two, turn it into a shl
2799 // immediately. This is a very common case.
2800 if (isPowerOf2_64(ElementSize)) {
2801 unsigned Amt = Log2_64(ElementSize);
2802 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00002803 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002804 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2805 continue;
2806 }
2807
Chris Lattner0bd48932008-01-17 07:00:52 +00002808 SDOperand Scale = DAG.getIntPtrConstant(ElementSize);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002809 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2810 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00002811 }
2812 }
2813 setValue(&I, N);
2814}
2815
2816void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2817 // If this is a fixed sized alloca in the entry block of the function,
2818 // allocate it statically on the stack.
2819 if (FuncInfo.StaticAllocaMap.count(&I))
2820 return; // getValue will auto-populate this.
2821
2822 const Type *Ty = I.getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +00002823 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00002824 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00002825 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner58092e32007-01-20 22:35:55 +00002826 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00002827
2828 SDOperand AllocSize = getValue(I.getArraySize());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002829 MVT IntPtr = TLI.getPointerTy();
Duncan Sands8e4eb092008-06-08 20:54:56 +00002830 if (IntPtr.bitsLT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002831 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002832 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002833 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00002834
Chris Lattner68cd65e2005-01-22 23:04:37 +00002835 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002836 DAG.getIntPtrConstant(TySize));
Chris Lattner1c08c712005-01-07 07:47:53 +00002837
Evan Cheng45157792007-08-16 23:46:29 +00002838 // Handle alignment. If the requested alignment is less than or equal to
2839 // the stack alignment, ignore it. If the size is greater than or equal to
2840 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner1c08c712005-01-07 07:47:53 +00002841 unsigned StackAlign =
2842 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng45157792007-08-16 23:46:29 +00002843 if (Align <= StackAlign)
Chris Lattner1c08c712005-01-07 07:47:53 +00002844 Align = 0;
Evan Cheng45157792007-08-16 23:46:29 +00002845
2846 // Round the size of the allocation up to the stack alignment size
2847 // by add SA-1 to the size.
2848 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002849 DAG.getIntPtrConstant(StackAlign-1));
Evan Cheng45157792007-08-16 23:46:29 +00002850 // Mask out the low bits for alignment purposes.
2851 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002852 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner1c08c712005-01-07 07:47:53 +00002853
Chris Lattner0bd48932008-01-17 07:00:52 +00002854 SDOperand Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands83ec4b62008-06-06 12:08:01 +00002855 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002856 MVT::Other);
2857 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner0da331f2007-02-04 01:31:47 +00002858 setValue(&I, DSA);
2859 DAG.setRoot(DSA.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002860
2861 // Inform the Frame Information that we have just allocated a variable-sized
2862 // object.
2863 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2864}
2865
Chris Lattner1c08c712005-01-07 07:47:53 +00002866void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002867 const Value *SV = I.getOperand(0);
2868 SDOperand Ptr = getValue(SV);
2869
2870 const Type *Ty = I.getType();
2871 bool isVolatile = I.isVolatile();
2872 unsigned Alignment = I.getAlignment();
2873
2874 SmallVector<MVT, 4> ValueVTs;
2875 SmallVector<uint64_t, 4> Offsets;
2876 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2877 unsigned NumValues = ValueVTs.size();
2878 if (NumValues == 0)
2879 return;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002880
Chris Lattnerd3948112005-01-17 22:19:26 +00002881 SDOperand Root;
2882 if (I.isVolatile())
2883 Root = getRoot();
2884 else {
2885 // Do not serialize non-volatile loads against each other.
2886 Root = DAG.getRoot();
2887 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002888
Dan Gohman1d685a42008-06-07 02:02:36 +00002889 SmallVector<SDOperand, 4> Values(NumValues);
2890 SmallVector<SDOperand, 4> Chains(NumValues);
2891 MVT PtrVT = Ptr.getValueType();
2892 for (unsigned i = 0; i != NumValues; ++i) {
2893 SDOperand L = DAG.getLoad(ValueVTs[i], Root,
2894 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2895 DAG.getConstant(Offsets[i], PtrVT)),
2896 SV, Offsets[i],
2897 isVolatile, Alignment);
2898 Values[i] = L;
2899 Chains[i] = L.getValue(1);
2900 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002901
Dan Gohman1d685a42008-06-07 02:02:36 +00002902 SDOperand Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2903 &Chains[0], NumValues);
2904 if (isVolatile)
2905 DAG.setRoot(Chain);
2906 else
2907 PendingLoads.push_back(Chain);
2908
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002909 setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
2910 DAG.getVTList(&ValueVTs[0], NumValues),
2911 &Values[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002912}
2913
2914
2915void SelectionDAGLowering::visitStore(StoreInst &I) {
2916 Value *SrcV = I.getOperand(0);
2917 SDOperand Src = getValue(SrcV);
Dan Gohman1d685a42008-06-07 02:02:36 +00002918 Value *PtrV = I.getOperand(1);
2919 SDOperand Ptr = getValue(PtrV);
2920
2921 SmallVector<MVT, 4> ValueVTs;
2922 SmallVector<uint64_t, 4> Offsets;
2923 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2924 unsigned NumValues = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002925 if (NumValues == 0)
2926 return;
Dan Gohman1d685a42008-06-07 02:02:36 +00002927
2928 SDOperand Root = getRoot();
2929 SmallVector<SDOperand, 4> Chains(NumValues);
2930 MVT PtrVT = Ptr.getValueType();
2931 bool isVolatile = I.isVolatile();
2932 unsigned Alignment = I.getAlignment();
2933 for (unsigned i = 0; i != NumValues; ++i)
2934 Chains[i] = DAG.getStore(Root, SDOperand(Src.Val, Src.ResNo + i),
2935 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2936 DAG.getConstant(Offsets[i], PtrVT)),
2937 PtrV, Offsets[i],
2938 isVolatile, Alignment);
2939
2940 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002941}
2942
Chris Lattner0eade312006-03-24 02:22:33 +00002943/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2944/// node.
2945void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2946 unsigned Intrinsic) {
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002947 bool HasChain = !I.doesNotAccessMemory();
2948 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2949
Chris Lattner0eade312006-03-24 02:22:33 +00002950 // Build the operand list.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002951 SmallVector<SDOperand, 8> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00002952 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2953 if (OnlyLoad) {
2954 // We don't need to serialize loads against other loads.
2955 Ops.push_back(DAG.getRoot());
2956 } else {
2957 Ops.push_back(getRoot());
2958 }
2959 }
Chris Lattner0eade312006-03-24 02:22:33 +00002960
2961 // Add the intrinsic ID as an integer operand.
2962 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2963
2964 // Add all operands of the call to the operand list.
2965 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2966 SDOperand Op = getValue(I.getOperand(i));
Chris Lattner0eade312006-03-24 02:22:33 +00002967 assert(TLI.isTypeLegal(Op.getValueType()) &&
2968 "Intrinsic uses a non-legal type?");
2969 Ops.push_back(Op);
2970 }
2971
Duncan Sands83ec4b62008-06-06 12:08:01 +00002972 std::vector<MVT> VTs;
Chris Lattner0eade312006-03-24 02:22:33 +00002973 if (I.getType() != Type::VoidTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002974 MVT VT = TLI.getValueType(I.getType());
2975 if (VT.isVector()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002976 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002977 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Chris Lattner0eade312006-03-24 02:22:33 +00002978
Duncan Sands83ec4b62008-06-06 12:08:01 +00002979 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Chris Lattner0eade312006-03-24 02:22:33 +00002980 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2981 }
2982
2983 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2984 VTs.push_back(VT);
2985 }
2986 if (HasChain)
2987 VTs.push_back(MVT::Other);
2988
Duncan Sands83ec4b62008-06-06 12:08:01 +00002989 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002990
Chris Lattner0eade312006-03-24 02:22:33 +00002991 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00002992 SDOperand Result;
2993 if (!HasChain)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002994 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2995 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002996 else if (I.getType() != Type::VoidTy)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002997 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2998 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002999 else
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003000 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
3001 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003002
Chris Lattnere58a7802006-04-02 03:41:14 +00003003 if (HasChain) {
3004 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
3005 if (OnlyLoad)
3006 PendingLoads.push_back(Chain);
3007 else
3008 DAG.setRoot(Chain);
3009 }
Chris Lattner0eade312006-03-24 02:22:33 +00003010 if (I.getType() != Type::VoidTy) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003011 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003012 MVT VT = TLI.getValueType(PTy);
Dan Gohman7f321562007-06-25 16:23:39 +00003013 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattner0eade312006-03-24 02:22:33 +00003014 }
3015 setValue(&I, Result);
3016 }
3017}
3018
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003019/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003020static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003021 V = V->stripPointerCasts();
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003022 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003023 assert ((GV || isa<ConstantPointerNull>(V)) &&
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003024 "TypeInfo must be a global variable or NULL");
3025 return GV;
3026}
3027
Duncan Sandsf4070822007-06-15 19:04:19 +00003028/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003029/// call, and add them to the specified machine basic block.
Duncan Sandsf4070822007-06-15 19:04:19 +00003030static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3031 MachineBasicBlock *MBB) {
3032 // Inform the MachineModuleInfo of the personality for this landing pad.
3033 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3034 assert(CE->getOpcode() == Instruction::BitCast &&
3035 isa<Function>(CE->getOperand(0)) &&
3036 "Personality should be a function");
3037 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3038
3039 // Gather all the type infos for this landing pad and pass them along to
3040 // MachineModuleInfo.
3041 std::vector<GlobalVariable *> TyInfo;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003042 unsigned N = I.getNumOperands();
3043
3044 for (unsigned i = N - 1; i > 2; --i) {
3045 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3046 unsigned FilterLength = CI->getZExtValue();
Duncan Sands6590b042007-08-27 15:47:50 +00003047 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003048 assert (FirstCatch <= N && "Invalid filter length");
3049
3050 if (FirstCatch < N) {
3051 TyInfo.reserve(N - FirstCatch);
3052 for (unsigned j = FirstCatch; j < N; ++j)
3053 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3054 MMI->addCatchTypeInfo(MBB, TyInfo);
3055 TyInfo.clear();
3056 }
3057
Duncan Sands6590b042007-08-27 15:47:50 +00003058 if (!FilterLength) {
3059 // Cleanup.
3060 MMI->addCleanup(MBB);
3061 } else {
3062 // Filter.
3063 TyInfo.reserve(FilterLength - 1);
3064 for (unsigned j = i + 1; j < FirstCatch; ++j)
3065 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3066 MMI->addFilterTypeInfo(MBB, TyInfo);
3067 TyInfo.clear();
3068 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003069
3070 N = i;
3071 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003072 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003073
3074 if (N > 3) {
3075 TyInfo.reserve(N - 3);
3076 for (unsigned j = 3; j < N; ++j)
3077 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sandsf4070822007-06-15 19:04:19 +00003078 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003079 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003080}
3081
Mon P Wang63307c32008-05-05 19:05:59 +00003082
3083/// Inlined utility function to implement binary input atomic intrinsics for
3084// visitIntrinsicCall: I is a call instruction
3085// Op is the associated NodeType for I
3086const char *
3087SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
3088 SDOperand Root = getRoot();
Mon P Wang63307c32008-05-05 19:05:59 +00003089 SDOperand L = DAG.getAtomic(Op, Root,
3090 getValue(I.getOperand(1)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003091 getValue(I.getOperand(2)),
Mon P Wang28873102008-06-25 08:15:39 +00003092 I.getOperand(1));
Mon P Wang63307c32008-05-05 19:05:59 +00003093 setValue(&I, L);
3094 DAG.setRoot(L.getValue(1));
3095 return 0;
3096}
3097
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003098/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3099/// we want to emit this as a call to a named external function, return the name
3100/// otherwise lower it and return null.
3101const char *
3102SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3103 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00003104 default:
3105 // By default, turn this into a target intrinsic node.
3106 visitTargetIntrinsic(I, Intrinsic);
3107 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003108 case Intrinsic::vastart: visitVAStart(I); return 0;
3109 case Intrinsic::vaend: visitVAEnd(I); return 0;
3110 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemanbcc5f362007-01-29 22:58:52 +00003111 case Intrinsic::returnaddress:
3112 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3113 getValue(I.getOperand(1))));
3114 return 0;
3115 case Intrinsic::frameaddress:
3116 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3117 getValue(I.getOperand(1))));
3118 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003119 case Intrinsic::setjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003120 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003121 break;
3122 case Intrinsic::longjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003123 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003124 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00003125 case Intrinsic::memcpy_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003126 case Intrinsic::memcpy_i64: {
3127 SDOperand Op1 = getValue(I.getOperand(1));
3128 SDOperand Op2 = getValue(I.getOperand(2));
3129 SDOperand Op3 = getValue(I.getOperand(3));
3130 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3131 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3132 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003133 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003134 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003135 case Intrinsic::memset_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003136 case Intrinsic::memset_i64: {
3137 SDOperand Op1 = getValue(I.getOperand(1));
3138 SDOperand Op2 = getValue(I.getOperand(2));
3139 SDOperand Op3 = getValue(I.getOperand(3));
3140 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3141 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3142 I.getOperand(1), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003143 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003144 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003145 case Intrinsic::memmove_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003146 case Intrinsic::memmove_i64: {
3147 SDOperand Op1 = getValue(I.getOperand(1));
3148 SDOperand Op2 = getValue(I.getOperand(2));
3149 SDOperand Op3 = getValue(I.getOperand(3));
3150 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3151
3152 // If the source and destination are known to not be aliases, we can
3153 // lower memmove as memcpy.
3154 uint64_t Size = -1ULL;
3155 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3156 Size = C->getValue();
3157 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3158 AliasAnalysis::NoAlias) {
3159 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3160 I.getOperand(1), 0, I.getOperand(2), 0));
3161 return 0;
3162 }
3163
3164 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3165 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003166 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003167 }
Chris Lattner86cb6432005-12-13 17:40:33 +00003168 case Intrinsic::dbg_stoppoint: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003169 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003170 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003171 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003172 SDOperand Ops[5];
Chris Lattner36ce6912005-11-29 06:21:05 +00003173
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003174 Ops[0] = getRoot();
3175 Ops[1] = getValue(SPI.getLineValue());
3176 Ops[2] = getValue(SPI.getColumnValue());
Chris Lattner36ce6912005-11-29 06:21:05 +00003177
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003178 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00003179 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00003180 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
3181
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003182 Ops[3] = DAG.getString(CompileUnit->getFileName());
3183 Ops[4] = DAG.getString(CompileUnit->getDirectory());
Jim Laskeyce72b172006-02-11 01:01:30 +00003184
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003185 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops, 5));
Chris Lattner86cb6432005-12-13 17:40:33 +00003186 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003187
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003188 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00003189 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003190 case Intrinsic::dbg_region_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003191 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003192 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003193 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3194 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Jim Laskey1ee29252007-01-26 14:34:52 +00003195 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003196 DAG.getConstant(LabelID, MVT::i32),
3197 DAG.getConstant(0, MVT::i32)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003198 }
3199
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003200 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003201 }
3202 case Intrinsic::dbg_region_end: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003203 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003204 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003205 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3206 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Evan Chengbb81d972008-01-31 09:59:15 +00003207 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
3208 DAG.getConstant(LabelID, MVT::i32),
3209 DAG.getConstant(0, MVT::i32)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003210 }
3211
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003212 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003213 }
3214 case Intrinsic::dbg_func_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003215 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003216 if (!MMI) return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003217 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003218 Value *SP = FSI.getSubprogram();
3219 if (SP && MMI->Verify(SP)) {
3220 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3221 // what (most?) gdb expects.
3222 DebugInfoDesc *DD = MMI->getDescFor(SP);
3223 assert(DD && "Not a debug information descriptor");
3224 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3225 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
3226 unsigned SrcFile = MMI->RecordSource(CompileUnit->getDirectory(),
3227 CompileUnit->getFileName());
3228 // Record the source line but does create a label. It will be emitted
3229 // at asm emission time.
3230 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Jim Laskey43970fe2006-03-23 18:06:46 +00003231 }
3232
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003233 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003234 }
3235 case Intrinsic::dbg_declare: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003236 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003237 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Chenga844bde2008-02-02 04:07:54 +00003238 Value *Variable = DI.getVariable();
3239 if (MMI && Variable && MMI->Verify(Variable))
3240 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3241 getValue(DI.getAddress()), getValue(Variable)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003242 return 0;
3243 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003244
Jim Laskeyb180aa12007-02-21 22:53:45 +00003245 case Intrinsic::eh_exception: {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003246 if (!CurMBB->isLandingPad()) {
3247 // FIXME: Mark exception register as live in. Hack for PR1508.
3248 unsigned Reg = TLI.getExceptionAddressRegister();
3249 if (Reg) CurMBB->addLiveIn(Reg);
Jim Laskey735b6f82007-02-22 15:38:06 +00003250 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003251 // Insert the EXCEPTIONADDR instruction.
3252 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3253 SDOperand Ops[1];
3254 Ops[0] = DAG.getRoot();
3255 SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
3256 setValue(&I, Op);
3257 DAG.setRoot(Op.getValue(1));
Jim Laskeyb180aa12007-02-21 22:53:45 +00003258 return 0;
3259 }
3260
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003261 case Intrinsic::eh_selector_i32:
3262 case Intrinsic::eh_selector_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003263 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003264 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003265 MVT::i32 : MVT::i64);
3266
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003267 if (MMI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00003268 if (CurMBB->isLandingPad())
3269 addCatchInfo(I, MMI, CurMBB);
Evan Chenge47c3332007-06-27 18:45:32 +00003270 else {
Duncan Sandsf4070822007-06-15 19:04:19 +00003271#ifndef NDEBUG
Duncan Sandsf4070822007-06-15 19:04:19 +00003272 FuncInfo.CatchInfoLost.insert(&I);
3273#endif
Duncan Sands90291952007-07-06 09:18:59 +00003274 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3275 unsigned Reg = TLI.getExceptionSelectorRegister();
3276 if (Reg) CurMBB->addLiveIn(Reg);
Evan Chenge47c3332007-06-27 18:45:32 +00003277 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003278
3279 // Insert the EHSELECTION instruction.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003280 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Jim Laskey735b6f82007-02-22 15:38:06 +00003281 SDOperand Ops[2];
3282 Ops[0] = getValue(I.getOperand(1));
3283 Ops[1] = getRoot();
3284 SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
3285 setValue(&I, Op);
3286 DAG.setRoot(Op.getValue(1));
Jim Laskey7a1de982007-02-24 09:45:44 +00003287 } else {
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003288 setValue(&I, DAG.getConstant(0, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003289 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003290
3291 return 0;
3292 }
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003293
3294 case Intrinsic::eh_typeid_for_i32:
3295 case Intrinsic::eh_typeid_for_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003296 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003297 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003298 MVT::i32 : MVT::i64);
Jim Laskeyb180aa12007-02-21 22:53:45 +00003299
Jim Laskey735b6f82007-02-22 15:38:06 +00003300 if (MMI) {
3301 // Find the type id for the given typeinfo.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003302 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands3b346362007-05-04 17:12:26 +00003303
Jim Laskey735b6f82007-02-22 15:38:06 +00003304 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003305 setValue(&I, DAG.getConstant(TypeID, VT));
Jim Laskey7a1de982007-02-24 09:45:44 +00003306 } else {
Duncan Sandsf664e412007-07-06 14:46:23 +00003307 // Return something different to eh_selector.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003308 setValue(&I, DAG.getConstant(1, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003309 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003310
3311 return 0;
3312 }
3313
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003314 case Intrinsic::eh_return: {
3315 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3316
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003317 if (MMI) {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003318 MMI->setCallsEHReturn(true);
3319 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3320 MVT::Other,
Dan Gohman86e1ebf2008-03-27 19:56:19 +00003321 getControlRoot(),
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003322 getValue(I.getOperand(1)),
3323 getValue(I.getOperand(2))));
3324 } else {
3325 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3326 }
3327
3328 return 0;
3329 }
3330
3331 case Intrinsic::eh_unwind_init: {
3332 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3333 MMI->setCallsUnwindInit(true);
3334 }
3335
3336 return 0;
3337 }
3338
3339 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003340 MVT VT = getValue(I.getOperand(1)).getValueType();
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003341 SDOperand CfaArg;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003342 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003343 CfaArg = DAG.getNode(ISD::TRUNCATE,
3344 TLI.getPointerTy(), getValue(I.getOperand(1)));
3345 else
3346 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3347 TLI.getPointerTy(), getValue(I.getOperand(1)));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003348
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003349 SDOperand Offset = DAG.getNode(ISD::ADD,
3350 TLI.getPointerTy(),
3351 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3352 TLI.getPointerTy()),
3353 CfaArg);
3354 setValue(&I, DAG.getNode(ISD::ADD,
3355 TLI.getPointerTy(),
3356 DAG.getNode(ISD::FRAMEADDR,
3357 TLI.getPointerTy(),
3358 DAG.getConstant(0,
3359 TLI.getPointerTy())),
3360 Offset));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003361 return 0;
3362 }
3363
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003364 case Intrinsic::sqrt:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003365 setValue(&I, DAG.getNode(ISD::FSQRT,
3366 getValue(I.getOperand(1)).getValueType(),
3367 getValue(I.getOperand(1))));
3368 return 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003369 case Intrinsic::powi:
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003370 setValue(&I, DAG.getNode(ISD::FPOWI,
3371 getValue(I.getOperand(1)).getValueType(),
3372 getValue(I.getOperand(1)),
3373 getValue(I.getOperand(2))));
3374 return 0;
Dan Gohmanac9385a2007-10-12 00:01:22 +00003375 case Intrinsic::sin:
3376 setValue(&I, DAG.getNode(ISD::FSIN,
3377 getValue(I.getOperand(1)).getValueType(),
3378 getValue(I.getOperand(1))));
3379 return 0;
3380 case Intrinsic::cos:
3381 setValue(&I, DAG.getNode(ISD::FCOS,
3382 getValue(I.getOperand(1)).getValueType(),
3383 getValue(I.getOperand(1))));
3384 return 0;
3385 case Intrinsic::pow:
3386 setValue(&I, DAG.getNode(ISD::FPOW,
3387 getValue(I.getOperand(1)).getValueType(),
3388 getValue(I.getOperand(1)),
3389 getValue(I.getOperand(2))));
3390 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003391 case Intrinsic::pcmarker: {
3392 SDOperand Tmp = getValue(I.getOperand(1));
3393 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3394 return 0;
3395 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003396 case Intrinsic::readcyclecounter: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003397 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003398 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
3399 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3400 &Op, 1);
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003401 setValue(&I, Tmp);
3402 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003403 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003404 }
Chris Lattnerc6eb6d72007-04-10 03:20:39 +00003405 case Intrinsic::part_select: {
Reid Spencer3f108cb2007-04-05 01:20:18 +00003406 // Currently not implemented: just abort
Reid Spencerf75b8742007-04-12 02:48:46 +00003407 assert(0 && "part_select intrinsic not implemented");
3408 abort();
3409 }
3410 case Intrinsic::part_set: {
3411 // Currently not implemented: just abort
3412 assert(0 && "part_set intrinsic not implemented");
Reid Spencer3f108cb2007-04-05 01:20:18 +00003413 abort();
Reid Spenceraddd11d2007-04-04 23:48:25 +00003414 }
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003415 case Intrinsic::bswap:
Nate Begemand88fc032006-01-14 03:14:10 +00003416 setValue(&I, DAG.getNode(ISD::BSWAP,
3417 getValue(I.getOperand(1)).getValueType(),
3418 getValue(I.getOperand(1))));
3419 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003420 case Intrinsic::cttz: {
3421 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003422 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003423 SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003424 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003425 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003426 }
3427 case Intrinsic::ctlz: {
3428 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003429 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003430 SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003431 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003432 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003433 }
3434 case Intrinsic::ctpop: {
3435 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003436 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003437 SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003438 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003439 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003440 }
Chris Lattner140d53c2006-01-13 02:50:02 +00003441 case Intrinsic::stacksave: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003442 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003443 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
3444 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattner140d53c2006-01-13 02:50:02 +00003445 setValue(&I, Tmp);
3446 DAG.setRoot(Tmp.getValue(1));
3447 return 0;
3448 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00003449 case Intrinsic::stackrestore: {
3450 SDOperand Tmp = getValue(I.getOperand(1));
3451 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00003452 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00003453 }
Tanya Lattner24e5aad2007-06-15 22:26:58 +00003454 case Intrinsic::var_annotation:
3455 // Discard annotate attributes
3456 return 0;
Duncan Sands36397f52007-07-27 12:58:54 +00003457
Duncan Sands36397f52007-07-27 12:58:54 +00003458 case Intrinsic::init_trampoline: {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003459 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands36397f52007-07-27 12:58:54 +00003460
3461 SDOperand Ops[6];
3462 Ops[0] = getRoot();
3463 Ops[1] = getValue(I.getOperand(1));
3464 Ops[2] = getValue(I.getOperand(2));
3465 Ops[3] = getValue(I.getOperand(3));
3466 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3467 Ops[5] = DAG.getSrcValue(F);
3468
Duncan Sandsf7331b32007-09-11 14:10:23 +00003469 SDOperand Tmp = DAG.getNode(ISD::TRAMPOLINE,
3470 DAG.getNodeValueTypes(TLI.getPointerTy(),
3471 MVT::Other), 2,
3472 Ops, 6);
3473
3474 setValue(&I, Tmp);
3475 DAG.setRoot(Tmp.getValue(1));
Duncan Sands36397f52007-07-27 12:58:54 +00003476 return 0;
3477 }
Gordon Henriksence224772008-01-07 01:30:38 +00003478
3479 case Intrinsic::gcroot:
3480 if (GCI) {
3481 Value *Alloca = I.getOperand(1);
3482 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3483
3484 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3485 GCI->addStackRoot(FI->getIndex(), TypeMap);
3486 }
3487 return 0;
3488
3489 case Intrinsic::gcread:
3490 case Intrinsic::gcwrite:
3491 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3492 return 0;
3493
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003494 case Intrinsic::flt_rounds: {
Dan Gohman1a024862008-01-31 00:41:03 +00003495 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003496 return 0;
3497 }
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003498
3499 case Intrinsic::trap: {
3500 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3501 return 0;
3502 }
Evan Cheng27b7db52008-03-08 00:58:38 +00003503 case Intrinsic::prefetch: {
3504 SDOperand Ops[4];
3505 Ops[0] = getRoot();
3506 Ops[1] = getValue(I.getOperand(1));
3507 Ops[2] = getValue(I.getOperand(2));
3508 Ops[3] = getValue(I.getOperand(3));
3509 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3510 return 0;
3511 }
3512
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003513 case Intrinsic::memory_barrier: {
3514 SDOperand Ops[6];
3515 Ops[0] = getRoot();
3516 for (int x = 1; x < 6; ++x)
3517 Ops[x] = getValue(I.getOperand(x));
3518
3519 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3520 return 0;
3521 }
Mon P Wang28873102008-06-25 08:15:39 +00003522 case Intrinsic::atomic_cmp_swap: {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003523 SDOperand Root = getRoot();
Mon P Wang28873102008-06-25 08:15:39 +00003524 SDOperand L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003525 getValue(I.getOperand(1)),
3526 getValue(I.getOperand(2)),
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003527 getValue(I.getOperand(3)),
Mon P Wang28873102008-06-25 08:15:39 +00003528 I.getOperand(1));
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003529 setValue(&I, L);
3530 DAG.setRoot(L.getValue(1));
3531 return 0;
3532 }
Mon P Wang28873102008-06-25 08:15:39 +00003533 case Intrinsic::atomic_load_add:
3534 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3535 case Intrinsic::atomic_load_sub:
3536 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Mon P Wang63307c32008-05-05 19:05:59 +00003537 case Intrinsic::atomic_load_and:
3538 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3539 case Intrinsic::atomic_load_or:
3540 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3541 case Intrinsic::atomic_load_xor:
3542 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003543 case Intrinsic::atomic_load_nand:
3544 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang63307c32008-05-05 19:05:59 +00003545 case Intrinsic::atomic_load_min:
3546 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3547 case Intrinsic::atomic_load_max:
3548 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3549 case Intrinsic::atomic_load_umin:
3550 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3551 case Intrinsic::atomic_load_umax:
3552 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3553 case Intrinsic::atomic_swap:
3554 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003555 }
3556}
3557
3558
Duncan Sands6f74b482007-12-19 09:48:52 +00003559void SelectionDAGLowering::LowerCallTo(CallSite CS, SDOperand Callee,
Jim Laskey1da20a72007-02-23 21:45:01 +00003560 bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003561 MachineBasicBlock *LandingPad) {
Duncan Sands6f74b482007-12-19 09:48:52 +00003562 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Jim Laskey735b6f82007-02-22 15:38:06 +00003563 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003564 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3565 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sands6f74b482007-12-19 09:48:52 +00003566
Jim Laskey735b6f82007-02-22 15:38:06 +00003567 TargetLowering::ArgListTy Args;
3568 TargetLowering::ArgListEntry Entry;
Duncan Sands6f74b482007-12-19 09:48:52 +00003569 Args.reserve(CS.arg_size());
3570 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3571 i != e; ++i) {
3572 SDOperand ArgNode = getValue(*i);
3573 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Duncan Sands4fee7032007-05-07 20:49:28 +00003574
Duncan Sands6f74b482007-12-19 09:48:52 +00003575 unsigned attrInd = i - CS.arg_begin() + 1;
3576 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3577 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3578 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3579 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3580 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3581 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen08e78b12008-02-22 17:49:45 +00003582 Entry.Alignment = CS.getParamAlignment(attrInd);
Jim Laskey735b6f82007-02-22 15:38:06 +00003583 Args.push_back(Entry);
3584 }
3585
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003586 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003587 // Insert a label before the invoke call to mark the try range. This can be
3588 // used to detect deletion of the invoke via the MachineModuleInfo.
3589 BeginLabel = MMI->NextLabelID();
Dale Johannesena4091d32008-04-04 23:48:31 +00003590 // Both PendingLoads and PendingExports must be flushed here;
3591 // this call might not return.
3592 (void)getRoot();
3593 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getControlRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003594 DAG.getConstant(BeginLabel, MVT::i32),
3595 DAG.getConstant(1, MVT::i32)));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003596 }
Duncan Sands6f74b482007-12-19 09:48:52 +00003597
Jim Laskey735b6f82007-02-22 15:38:06 +00003598 std::pair<SDOperand,SDOperand> Result =
Duncan Sands6f74b482007-12-19 09:48:52 +00003599 TLI.LowerCallTo(getRoot(), CS.getType(),
3600 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sands00fee652008-02-14 17:28:50 +00003601 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sands6f74b482007-12-19 09:48:52 +00003602 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Jim Laskey735b6f82007-02-22 15:38:06 +00003603 Callee, Args, DAG);
Duncan Sands6f74b482007-12-19 09:48:52 +00003604 if (CS.getType() != Type::VoidTy)
3605 setValue(CS.getInstruction(), Result.first);
Jim Laskey735b6f82007-02-22 15:38:06 +00003606 DAG.setRoot(Result.second);
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003607
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003608 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003609 // Insert a label at the end of the invoke call to mark the try range. This
3610 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3611 EndLabel = MMI->NextLabelID();
3612 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003613 DAG.getConstant(EndLabel, MVT::i32),
3614 DAG.getConstant(1, MVT::i32)));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003615
Duncan Sands6f74b482007-12-19 09:48:52 +00003616 // Inform MachineModuleInfo of range.
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003617 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3618 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003619}
3620
3621
Chris Lattner1c08c712005-01-07 07:47:53 +00003622void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00003623 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003624 if (Function *F = I.getCalledFunction()) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003625 if (F->isDeclaration()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003626 if (unsigned IID = F->getIntrinsicID()) {
3627 RenameFn = visitIntrinsicCall(I, IID);
3628 if (!RenameFn)
3629 return;
Chris Lattner87b51bc2007-09-10 21:15:22 +00003630 }
3631 }
3632
3633 // Check for well-known libc/libm calls. If the function is internal, it
3634 // can't be a library call.
3635 unsigned NameLen = F->getNameLen();
3636 if (!F->hasInternalLinkage() && NameLen) {
3637 const char *NameStr = F->getNameStart();
3638 if (NameStr[0] == 'c' &&
3639 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3640 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3641 if (I.getNumOperands() == 3 && // Basic sanity checks.
3642 I.getOperand(1)->getType()->isFloatingPoint() &&
3643 I.getType() == I.getOperand(1)->getType() &&
3644 I.getType() == I.getOperand(2)->getType()) {
3645 SDOperand LHS = getValue(I.getOperand(1));
3646 SDOperand RHS = getValue(I.getOperand(2));
3647 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3648 LHS, RHS));
3649 return;
3650 }
3651 } else if (NameStr[0] == 'f' &&
3652 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003653 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3654 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003655 if (I.getNumOperands() == 2 && // Basic sanity checks.
3656 I.getOperand(1)->getType()->isFloatingPoint() &&
3657 I.getType() == I.getOperand(1)->getType()) {
3658 SDOperand Tmp = getValue(I.getOperand(1));
3659 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3660 return;
3661 }
3662 } else if (NameStr[0] == 's' &&
3663 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003664 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3665 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003666 if (I.getNumOperands() == 2 && // Basic sanity checks.
3667 I.getOperand(1)->getType()->isFloatingPoint() &&
3668 I.getType() == I.getOperand(1)->getType()) {
3669 SDOperand Tmp = getValue(I.getOperand(1));
3670 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3671 return;
3672 }
3673 } else if (NameStr[0] == 'c' &&
3674 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003675 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3676 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003677 if (I.getNumOperands() == 2 && // Basic sanity checks.
3678 I.getOperand(1)->getType()->isFloatingPoint() &&
3679 I.getType() == I.getOperand(1)->getType()) {
3680 SDOperand Tmp = getValue(I.getOperand(1));
3681 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3682 return;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003683 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00003684 }
Chris Lattner87b51bc2007-09-10 21:15:22 +00003685 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00003686 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00003687 visitInlineAsm(&I);
Chris Lattnerce7518c2006-01-26 22:24:51 +00003688 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003689 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003690
Chris Lattner64e14b12005-01-08 22:48:57 +00003691 SDOperand Callee;
3692 if (!RenameFn)
3693 Callee = getValue(I.getOperand(0));
3694 else
3695 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003696
Duncan Sands6f74b482007-12-19 09:48:52 +00003697 LowerCallTo(&I, Callee, I.isTailCall());
Chris Lattner1c08c712005-01-07 07:47:53 +00003698}
3699
Jim Laskey735b6f82007-02-22 15:38:06 +00003700
Dan Gohmanef5d1942008-03-11 21:11:25 +00003701void SelectionDAGLowering::visitGetResult(GetResultInst &I) {
Dan Gohman67780f12008-04-23 20:25:16 +00003702 if (isa<UndefValue>(I.getOperand(0))) {
Dan Gohman3dc34f62008-04-23 20:21:29 +00003703 SDOperand Undef = DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()));
3704 setValue(&I, Undef);
Chris Lattner6833b062008-04-28 07:16:35 +00003705 return;
Dan Gohman3dc34f62008-04-23 20:21:29 +00003706 }
Chris Lattner6833b062008-04-28 07:16:35 +00003707
3708 // To add support for individual return values with aggregate types,
3709 // we'd need a way to take a getresult index and determine which
3710 // values of the Call SDNode are associated with it.
3711 assert(TLI.getValueType(I.getType(), true) != MVT::Other &&
3712 "Individual return values must not be aggregates!");
3713
3714 SDOperand Call = getValue(I.getOperand(0));
3715 setValue(&I, SDOperand(Call.Val, I.getIndex()));
Dan Gohmanef5d1942008-03-11 21:11:25 +00003716}
3717
3718
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003719/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3720/// this value and returns the result as a ValueVT value. This uses
3721/// Chain/Flag as the input and updates them for the output Chain/Flag.
3722/// If the Flag pointer is NULL, no flag is used.
Chris Lattneread0d882008-06-17 06:09:18 +00003723SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner6833b062008-04-28 07:16:35 +00003724 SDOperand &Chain,
3725 SDOperand *Flag) const {
Dan Gohman23ce5022008-04-25 18:27:55 +00003726 // Assemble the legal parts into the final values.
3727 SmallVector<SDOperand, 4> Values(ValueVTs.size());
Chris Lattner6833b062008-04-28 07:16:35 +00003728 SmallVector<SDOperand, 8> Parts;
3729 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman23ce5022008-04-25 18:27:55 +00003730 // Copy the legal parts from the registers.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003731 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003732 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003733 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003734
Chris Lattner6833b062008-04-28 07:16:35 +00003735 Parts.resize(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003736 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003737 SDOperand P;
3738 if (Flag == 0)
3739 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3740 else {
3741 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman23ce5022008-04-25 18:27:55 +00003742 *Flag = P.getValue(2);
Chris Lattner6833b062008-04-28 07:16:35 +00003743 }
3744 Chain = P.getValue(1);
Chris Lattneread0d882008-06-17 06:09:18 +00003745
3746 // If the source register was virtual and if we know something about it,
3747 // add an assert node.
3748 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3749 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3750 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3751 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3752 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3753 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3754
3755 unsigned RegSize = RegisterVT.getSizeInBits();
3756 unsigned NumSignBits = LOI.NumSignBits;
3757 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3758
3759 // FIXME: We capture more information than the dag can represent. For
3760 // now, just use the tightest assertzext/assertsext possible.
3761 bool isSExt = true;
3762 MVT FromVT(MVT::Other);
3763 if (NumSignBits == RegSize)
3764 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3765 else if (NumZeroBits >= RegSize-1)
3766 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3767 else if (NumSignBits > RegSize-8)
3768 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3769 else if (NumZeroBits >= RegSize-9)
3770 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3771 else if (NumSignBits > RegSize-16)
3772 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3773 else if (NumZeroBits >= RegSize-17)
3774 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3775 else if (NumSignBits > RegSize-32)
3776 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3777 else if (NumZeroBits >= RegSize-33)
3778 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3779
3780 if (FromVT != MVT::Other) {
3781 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3782 RegisterVT, P, DAG.getValueType(FromVT));
3783
3784 }
3785 }
3786 }
3787
Dan Gohman23ce5022008-04-25 18:27:55 +00003788 Parts[Part+i] = P;
3789 }
Chris Lattner5df99b32007-03-25 05:00:54 +00003790
Dan Gohman23ce5022008-04-25 18:27:55 +00003791 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3792 ValueVT);
3793 Part += NumRegs;
3794 }
Chris Lattner6833b062008-04-28 07:16:35 +00003795
3796 if (ValueVTs.size() == 1)
3797 return Values[0];
3798
Dan Gohman23ce5022008-04-25 18:27:55 +00003799 return DAG.getNode(ISD::MERGE_VALUES,
3800 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3801 &Values[0], ValueVTs.size());
Chris Lattner864635a2006-02-22 22:37:12 +00003802}
3803
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003804/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3805/// specified value into the registers specified by this object. This uses
3806/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003807/// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003808void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003809 SDOperand &Chain, SDOperand *Flag) const {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003810 // Get the list of the values's legal parts.
Dan Gohman23ce5022008-04-25 18:27:55 +00003811 unsigned NumRegs = Regs.size();
3812 SmallVector<SDOperand, 8> Parts(NumRegs);
Chris Lattner6833b062008-04-28 07:16:35 +00003813 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003814 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003815 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003816 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003817
3818 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3819 &Parts[Part], NumParts, RegisterVT);
3820 Part += NumParts;
3821 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003822
3823 // Copy the parts into the registers.
Dan Gohman23ce5022008-04-25 18:27:55 +00003824 SmallVector<SDOperand, 8> Chains(NumRegs);
3825 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003826 SDOperand Part;
3827 if (Flag == 0)
3828 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3829 else {
3830 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003831 *Flag = Part.getValue(1);
Chris Lattner6833b062008-04-28 07:16:35 +00003832 }
3833 Chains[i] = Part.getValue(0);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003834 }
Chris Lattner6833b062008-04-28 07:16:35 +00003835
Evan Cheng33bf38a2008-04-28 22:07:13 +00003836 if (NumRegs == 1 || Flag)
3837 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3838 // flagged to it. That is the CopyToReg nodes and the user are considered
3839 // a single scheduling unit. If we create a TokenFactor and return it as
3840 // chain, then the TokenFactor is both a predecessor (operand) of the
3841 // user as well as a successor (the TF operands are flagged to the user).
3842 // c1, f1 = CopyToReg
3843 // c2, f2 = CopyToReg
3844 // c3 = TokenFactor c1, c2
3845 // ...
3846 // = op c3, ..., f2
3847 Chain = Chains[NumRegs-1];
Chris Lattner6833b062008-04-28 07:16:35 +00003848 else
3849 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003850}
Chris Lattner864635a2006-02-22 22:37:12 +00003851
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003852/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3853/// operand list. This adds the code marker and includes the number of
3854/// values added into it.
3855void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00003856 std::vector<SDOperand> &Ops) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003857 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner4b993b12007-04-09 00:33:58 +00003858 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner6833b062008-04-28 07:16:35 +00003859 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3860 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003861 MVT RegisterVT = RegVTs[Value];
Chris Lattner6833b062008-04-28 07:16:35 +00003862 for (unsigned i = 0; i != NumRegs; ++i)
3863 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman23ce5022008-04-25 18:27:55 +00003864 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003865}
Chris Lattner864635a2006-02-22 22:37:12 +00003866
3867/// isAllocatableRegister - If the specified register is safe to allocate,
3868/// i.e. it isn't a stack pointer or some other special register, return the
3869/// register class for the register. Otherwise, return null.
3870static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003871isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman6f0d0242008-02-10 18:45:23 +00003872 const TargetLowering &TLI,
3873 const TargetRegisterInfo *TRI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003874 MVT FoundVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003875 const TargetRegisterClass *FoundRC = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +00003876 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3877 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003878 MVT ThisVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003879
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003880 const TargetRegisterClass *RC = *RCI;
3881 // If none of the the value types for this register class are valid, we
3882 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003883 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3884 I != E; ++I) {
3885 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003886 // If we have already found this register in a different register class,
3887 // choose the one with the largest VT specified. For example, on
3888 // PowerPC, we favor f64 register classes over f32.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003889 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003890 ThisVT = *I;
3891 break;
3892 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003893 }
3894 }
3895
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003896 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003897
Chris Lattner864635a2006-02-22 22:37:12 +00003898 // NOTE: This isn't ideal. In particular, this might allocate the
3899 // frame pointer in functions that need it (due to them not being taken
3900 // out of allocation, because a variable sized allocation hasn't been seen
3901 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003902 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3903 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003904 if (*I == Reg) {
3905 // We found a matching register class. Keep looking at others in case
3906 // we find one with larger registers that this physreg is also in.
3907 FoundRC = RC;
3908 FoundVT = ThisVT;
3909 break;
3910 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00003911 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003912 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00003913}
3914
Chris Lattner4e4b5762006-02-01 18:59:47 +00003915
Chris Lattner0c583402007-04-28 20:49:53 +00003916namespace {
3917/// AsmOperandInfo - This contains information for each constraint that we are
3918/// lowering.
Evan Cheng5c807602008-02-26 02:33:44 +00003919struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3920 /// CallOperand - If this is the result output operand or a clobber
3921 /// this is null, otherwise it is the incoming operand to the CallInst.
3922 /// This gets modified as the asm is processed.
Chris Lattner0c583402007-04-28 20:49:53 +00003923 SDOperand CallOperand;
Evan Cheng5c807602008-02-26 02:33:44 +00003924
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003925 /// AssignedRegs - If this is a register or register class operand, this
3926 /// contains the set of register corresponding to the operand.
3927 RegsForValue AssignedRegs;
3928
Dan Gohman23ce5022008-04-25 18:27:55 +00003929 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Cheng5c807602008-02-26 02:33:44 +00003930 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Chris Lattner0c583402007-04-28 20:49:53 +00003931 }
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003932
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003933 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3934 /// busy in OutputRegs/InputRegs.
3935 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3936 std::set<unsigned> &OutputRegs,
Chris Lattner7cbeb242008-02-21 04:55:52 +00003937 std::set<unsigned> &InputRegs,
3938 const TargetRegisterInfo &TRI) const {
3939 if (isOutReg) {
3940 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3941 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3942 }
3943 if (isInReg) {
3944 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3945 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3946 }
3947 }
3948
3949private:
3950 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3951 /// specified set.
3952 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3953 const TargetRegisterInfo &TRI) {
3954 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3955 Regs.insert(Reg);
3956 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3957 for (; *Aliases; ++Aliases)
3958 Regs.insert(*Aliases);
3959 }
Chris Lattner0c583402007-04-28 20:49:53 +00003960};
3961} // end anon namespace.
Chris Lattner864635a2006-02-22 22:37:12 +00003962
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003963
Chris Lattner0fe71e92008-02-21 19:43:13 +00003964/// GetRegistersForValue - Assign registers (virtual or physical) for the
3965/// specified operand. We prefer to assign virtual registers, to allow the
3966/// register allocator handle the assignment process. However, if the asm uses
3967/// features that we can't model on machineinstrs, we have SDISel do the
3968/// allocation. This produces generally horrible, but correct, code.
3969///
3970/// OpInfo describes the operand.
3971/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3972/// or any explicitly clobbered registers.
3973/// Input and OutputRegs are the set of already allocated physical registers.
3974///
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003975void SelectionDAGLowering::
Evan Cheng5c807602008-02-26 02:33:44 +00003976GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnerbf996f12007-04-30 17:29:31 +00003977 std::set<unsigned> &OutputRegs,
3978 std::set<unsigned> &InputRegs) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003979 // Compute whether this value requires an input register, an output register,
3980 // or both.
3981 bool isOutReg = false;
3982 bool isInReg = false;
3983 switch (OpInfo.Type) {
3984 case InlineAsm::isOutput:
3985 isOutReg = true;
3986
3987 // If this is an early-clobber output, or if there is an input
3988 // constraint that matches this, we need to reserve the input register
3989 // so no other inputs allocate to it.
3990 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3991 break;
3992 case InlineAsm::isInput:
3993 isInReg = true;
3994 isOutReg = false;
3995 break;
3996 case InlineAsm::isClobber:
3997 isOutReg = true;
3998 isInReg = true;
3999 break;
4000 }
4001
4002
4003 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerb606dba2008-04-28 06:44:42 +00004004 SmallVector<unsigned, 4> Regs;
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004005
4006 // If this is a constraint for a single physreg, or a constraint for a
4007 // register class, find it.
4008 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4009 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4010 OpInfo.ConstraintVT);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004011
4012 unsigned NumRegs = 1;
4013 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohmanb9f10192007-06-21 14:42:22 +00004014 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004015 MVT RegVT;
4016 MVT ValueVT = OpInfo.ConstraintVT;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004017
Chris Lattnerbf996f12007-04-30 17:29:31 +00004018
4019 // If this is a constraint for a specific physical register, like {r17},
4020 // assign it now.
4021 if (PhysReg.first) {
4022 if (OpInfo.ConstraintVT == MVT::Other)
4023 ValueVT = *PhysReg.second->vt_begin();
4024
4025 // Get the actual register value type. This is important, because the user
4026 // may have asked for (e.g.) the AX register in i32 type. We need to
4027 // remember that AX is actually i16 to get the right extension.
4028 RegVT = *PhysReg.second->vt_begin();
4029
4030 // This is a explicit reference to a physical register.
4031 Regs.push_back(PhysReg.first);
4032
4033 // If this is an expanded reference, add the rest of the regs to Regs.
4034 if (NumRegs != 1) {
4035 TargetRegisterClass::iterator I = PhysReg.second->begin();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004036 for (; *I != PhysReg.first; ++I)
Evan Cheng50871242008-05-14 20:07:51 +00004037 assert(I != PhysReg.second->end() && "Didn't find reg!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004038
4039 // Already added the first reg.
4040 --NumRegs; ++I;
4041 for (; NumRegs; --NumRegs, ++I) {
Evan Cheng50871242008-05-14 20:07:51 +00004042 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004043 Regs.push_back(*I);
4044 }
4045 }
Dan Gohman23ce5022008-04-25 18:27:55 +00004046 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004047 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4048 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004049 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004050 }
4051
4052 // Otherwise, if this was a reference to an LLVM register class, create vregs
4053 // for this reference.
4054 std::vector<unsigned> RegClassRegs;
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004055 const TargetRegisterClass *RC = PhysReg.second;
4056 if (RC) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004057 // If this is an early clobber or tied register, our regalloc doesn't know
4058 // how to maintain the constraint. If it isn't, go ahead and create vreg
4059 // and let the regalloc do the right thing.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004060 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4061 // If there is some other early clobber and this is an input register,
4062 // then we are forced to pre-allocate the input reg so it doesn't
4063 // conflict with the earlyclobber.
4064 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004065 RegVT = *PhysReg.second->vt_begin();
4066
4067 if (OpInfo.ConstraintVT == MVT::Other)
4068 ValueVT = RegVT;
4069
4070 // Create the appropriate number of virtual registers.
Chris Lattner84bc5422007-12-31 04:13:23 +00004071 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004072 for (; NumRegs; --NumRegs)
Chris Lattner84bc5422007-12-31 04:13:23 +00004073 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Chris Lattnerbf996f12007-04-30 17:29:31 +00004074
Dan Gohman23ce5022008-04-25 18:27:55 +00004075 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004076 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004077 }
4078
4079 // Otherwise, we can't allocate it. Let the code below figure out how to
4080 // maintain these constraints.
4081 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4082
4083 } else {
4084 // This is a reference to a register class that doesn't directly correspond
4085 // to an LLVM register class. Allocate NumRegs consecutive, available,
4086 // registers from the class.
4087 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4088 OpInfo.ConstraintVT);
4089 }
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004090
Dan Gohman6f0d0242008-02-10 18:45:23 +00004091 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004092 unsigned NumAllocated = 0;
4093 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4094 unsigned Reg = RegClassRegs[i];
4095 // See if this register is available.
4096 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4097 (isInReg && InputRegs.count(Reg))) { // Already used.
4098 // Make sure we find consecutive registers.
4099 NumAllocated = 0;
4100 continue;
4101 }
4102
4103 // Check to see if this register is allocatable (i.e. don't give out the
4104 // stack pointer).
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004105 if (RC == 0) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004106 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004107 if (!RC) { // Couldn't allocate this register.
4108 // Reset NumAllocated to make sure we return consecutive registers.
4109 NumAllocated = 0;
4110 continue;
4111 }
Chris Lattnerbf996f12007-04-30 17:29:31 +00004112 }
4113
4114 // Okay, this register is good, we can use it.
4115 ++NumAllocated;
4116
4117 // If we allocated enough consecutive registers, succeed.
4118 if (NumAllocated == NumRegs) {
4119 unsigned RegStart = (i-NumAllocated)+1;
4120 unsigned RegEnd = i+1;
4121 // Mark all of the allocated registers used.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004122 for (unsigned i = RegStart; i != RegEnd; ++i)
4123 Regs.push_back(RegClassRegs[i]);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004124
Dan Gohman23ce5022008-04-25 18:27:55 +00004125 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004126 OpInfo.ConstraintVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004127 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004128 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004129 }
4130 }
4131
4132 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattnerbf996f12007-04-30 17:29:31 +00004133}
4134
4135
Chris Lattnerce7518c2006-01-26 22:24:51 +00004136/// visitInlineAsm - Handle a call to an InlineAsm object.
4137///
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004138void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4139 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004140
Chris Lattner0c583402007-04-28 20:49:53 +00004141 /// ConstraintOperands - Information about all of the constraints.
Evan Cheng5c807602008-02-26 02:33:44 +00004142 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004143
4144 SDOperand Chain = getRoot();
4145 SDOperand Flag;
4146
Chris Lattner4e4b5762006-02-01 18:59:47 +00004147 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004148
Chris Lattner0c583402007-04-28 20:49:53 +00004149 // Do a prepass over the constraints, canonicalizing them, and building up the
4150 // ConstraintOperands list.
4151 std::vector<InlineAsm::ConstraintInfo>
4152 ConstraintInfos = IA->ParseConstraints();
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004153
4154 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4155 // constraint. If so, we can't let the register allocator allocate any input
4156 // registers, because it will not know to avoid the earlyclobbered output reg.
4157 bool SawEarlyClobber = false;
4158
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004159 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattneracf8b012008-04-27 23:44:28 +00004160 unsigned ResNo = 0; // ResNo - The result number of the next output.
Chris Lattner0c583402007-04-28 20:49:53 +00004161 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004162 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4163 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Chris Lattner0c583402007-04-28 20:49:53 +00004164
Duncan Sands83ec4b62008-06-06 12:08:01 +00004165 MVT OpVT = MVT::Other;
Chris Lattner0c583402007-04-28 20:49:53 +00004166
4167 // Compute the value type for each operand.
4168 switch (OpInfo.Type) {
Chris Lattner1efa40f2006-02-22 00:56:39 +00004169 case InlineAsm::isOutput:
Chris Lattneracf8b012008-04-27 23:44:28 +00004170 // Indirect outputs just consume an argument.
4171 if (OpInfo.isIndirect) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004172 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattneracf8b012008-04-27 23:44:28 +00004173 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004174 }
Chris Lattneracf8b012008-04-27 23:44:28 +00004175 // The return value of the call is this value. As such, there is no
4176 // corresponding argument.
4177 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4178 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4179 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4180 } else {
4181 assert(ResNo == 0 && "Asm only has one result!");
4182 OpVT = TLI.getValueType(CS.getType());
4183 }
4184 ++ResNo;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004185 break;
4186 case InlineAsm::isInput:
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004187 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner1efa40f2006-02-22 00:56:39 +00004188 break;
4189 case InlineAsm::isClobber:
Chris Lattner0c583402007-04-28 20:49:53 +00004190 // Nothing to do.
Chris Lattner1efa40f2006-02-22 00:56:39 +00004191 break;
4192 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004193
Chris Lattner0c583402007-04-28 20:49:53 +00004194 // If this is an input or an indirect output, process the call argument.
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004195 // BasicBlocks are labels, currently appearing only in asm's.
Chris Lattner0c583402007-04-28 20:49:53 +00004196 if (OpInfo.CallOperandVal) {
Chris Lattner507ffd22008-04-27 00:16:18 +00004197 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4198 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004199 else {
4200 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4201 const Type *OpTy = OpInfo.CallOperandVal->getType();
4202 // If this is an indirect operand, the operand is a pointer to the
4203 // accessed type.
4204 if (OpInfo.isIndirect)
4205 OpTy = cast<PointerType>(OpTy)->getElementType();
4206
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004207 // If OpTy is not a single value, it may be a struct/union that we
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004208 // can tile with integers.
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004209 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004210 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4211 switch (BitSize) {
4212 default: break;
4213 case 1:
4214 case 8:
4215 case 16:
4216 case 32:
4217 case 64:
4218 OpTy = IntegerType::get(BitSize);
4219 break;
4220 }
Chris Lattner6995cf62007-04-29 18:58:03 +00004221 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004222
4223 OpVT = TLI.getValueType(OpTy, true);
Chris Lattner0c583402007-04-28 20:49:53 +00004224 }
4225 }
4226
4227 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a600be2007-04-28 21:01:43 +00004228
Chris Lattner3ff90dc2007-04-30 17:16:27 +00004229 // Compute the constraint code and ConstraintType to use.
Chris Lattner5a096902008-04-27 00:37:18 +00004230 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Chris Lattner0c583402007-04-28 20:49:53 +00004231
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004232 // Keep track of whether we see an earlyclobber.
4233 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004234
Chris Lattner0fe71e92008-02-21 19:43:13 +00004235 // If we see a clobber of a register, it is an early clobber.
Chris Lattner69e6a8d2008-02-21 20:54:31 +00004236 if (!SawEarlyClobber &&
4237 OpInfo.Type == InlineAsm::isClobber &&
4238 OpInfo.ConstraintType == TargetLowering::C_Register) {
4239 // Note that we want to ignore things that we don't trick here, like
4240 // dirflag, fpsr, flags, etc.
4241 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4242 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4243 OpInfo.ConstraintVT);
4244 if (PhysReg.first || PhysReg.second) {
4245 // This is a register we know of.
4246 SawEarlyClobber = true;
4247 }
4248 }
Chris Lattner0fe71e92008-02-21 19:43:13 +00004249
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004250 // If this is a memory input, and if the operand is not indirect, do what we
4251 // need to to provide an address for the memory input.
4252 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4253 !OpInfo.isIndirect) {
4254 assert(OpInfo.Type == InlineAsm::isInput &&
4255 "Can only indirectify direct input operands!");
4256
4257 // Memory operands really want the address of the value. If we don't have
4258 // an indirect input, put it in the constpool if we can, otherwise spill
4259 // it to a stack slot.
4260
4261 // If the operand is a float, integer, or vector constant, spill to a
4262 // constant pool entry to get its address.
4263 Value *OpVal = OpInfo.CallOperandVal;
4264 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4265 isa<ConstantVector>(OpVal)) {
4266 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4267 TLI.getPointerTy());
4268 } else {
4269 // Otherwise, create a stack slot and emit a store to it before the
4270 // asm.
4271 const Type *Ty = OpVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +00004272 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004273 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4274 MachineFunction &MF = DAG.getMachineFunction();
4275 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
4276 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4277 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4278 OpInfo.CallOperand = StackSlot;
4279 }
4280
4281 // There is no longer a Value* corresponding to this operand.
4282 OpInfo.CallOperandVal = 0;
4283 // It is now an indirect operand.
4284 OpInfo.isIndirect = true;
4285 }
4286
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004287 // If this constraint is for a specific register, allocate it before
4288 // anything else.
4289 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4290 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattner0c583402007-04-28 20:49:53 +00004291 }
Chris Lattner0c583402007-04-28 20:49:53 +00004292 ConstraintInfos.clear();
4293
4294
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004295 // Second pass - Loop over all of the operands, assigning virtual or physregs
4296 // to registerclass operands.
4297 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004298 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004299
4300 // C_Register operands have already been allocated, Other/Memory don't need
4301 // to be.
4302 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4303 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4304 }
4305
Chris Lattner0c583402007-04-28 20:49:53 +00004306 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
4307 std::vector<SDOperand> AsmNodeOperands;
4308 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
4309 AsmNodeOperands.push_back(
4310 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4311
Chris Lattner2cc2f662006-02-01 01:28:23 +00004312
Chris Lattner0f0b7d42006-02-21 23:12:12 +00004313 // Loop over all of the inputs, copying the operand values into the
4314 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00004315 RegsForValue RetValRegs;
Chris Lattner41f62592008-04-29 04:29:54 +00004316
Chris Lattner0c583402007-04-28 20:49:53 +00004317 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4318 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4319
4320 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004321 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner1efa40f2006-02-22 00:56:39 +00004322
Chris Lattner0c583402007-04-28 20:49:53 +00004323 switch (OpInfo.Type) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00004324 case InlineAsm::isOutput: {
Chris Lattnerc83994e2007-04-28 21:03:16 +00004325 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4326 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerf2f3cd52007-04-28 06:08:13 +00004327 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004328 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner22873462006-02-27 23:45:39 +00004329
Chris Lattner22873462006-02-27 23:45:39 +00004330 // Add information to the INLINEASM node to know about this output.
4331 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004332 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4333 TLI.getPointerTy()));
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004334 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner22873462006-02-27 23:45:39 +00004335 break;
4336 }
4337
Chris Lattner2a600be2007-04-28 21:01:43 +00004338 // Otherwise, this is a register or register class output.
Chris Lattner22873462006-02-27 23:45:39 +00004339
Chris Lattner864635a2006-02-22 22:37:12 +00004340 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00004341 // we can use.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004342 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sandsa47c6c32008-06-17 03:24:13 +00004343 cerr << "Couldn't allocate output reg for constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004344 << OpInfo.ConstraintCode << "'!\n";
Chris Lattnerd03f1582006-10-31 07:33:13 +00004345 exit(1);
4346 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004347
Chris Lattner41f62592008-04-29 04:29:54 +00004348 // If this is an indirect operand, store through the pointer after the
4349 // asm.
4350 if (OpInfo.isIndirect) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004351 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattner0c583402007-04-28 20:49:53 +00004352 OpInfo.CallOperandVal));
Chris Lattner41f62592008-04-29 04:29:54 +00004353 } else {
4354 // This is the result value of the call.
4355 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4356 // Concatenate this output onto the outputs list.
4357 RetValRegs.append(OpInfo.AssignedRegs);
Chris Lattner2cc2f662006-02-01 01:28:23 +00004358 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004359
4360 // Add information to the INLINEASM node to know that this register is
4361 // set.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004362 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4363 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004364 break;
4365 }
4366 case InlineAsm::isInput: {
Chris Lattner0c583402007-04-28 20:49:53 +00004367 SDOperand InOperandVal = OpInfo.CallOperand;
Chris Lattner3d81fee2006-02-04 02:16:44 +00004368
Chris Lattner0c583402007-04-28 20:49:53 +00004369 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner2223aea2006-02-02 00:25:23 +00004370 // If this is required to match an output register we have already set,
4371 // just use its register.
Chris Lattner0c583402007-04-28 20:49:53 +00004372 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00004373
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004374 // Scan until we find the definition we already emitted of this operand.
4375 // When we find it, create a RegsForValue operand.
4376 unsigned CurOp = 2; // The first operand.
4377 for (; OperandNo; --OperandNo) {
4378 // Advance to the next operand.
4379 unsigned NumOps =
4380 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00004381 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4382 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004383 "Skipped past definitions?");
4384 CurOp += (NumOps>>3)+1;
4385 }
4386
4387 unsigned NumOps =
4388 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattner527fae12007-02-01 01:21:12 +00004389 if ((NumOps & 7) == 2 /*REGDEF*/) {
4390 // Add NumOps>>3 registers to MatchedRegs.
4391 RegsForValue MatchedRegs;
Dan Gohman23ce5022008-04-25 18:27:55 +00004392 MatchedRegs.TLI = &TLI;
Dan Gohman1fa850b2008-05-02 00:03:54 +00004393 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4394 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Chris Lattner527fae12007-02-01 01:21:12 +00004395 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4396 unsigned Reg =
4397 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4398 MatchedRegs.Regs.push_back(Reg);
4399 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004400
Chris Lattner527fae12007-02-01 01:21:12 +00004401 // Use the produced MatchedRegs object to
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004402 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner527fae12007-02-01 01:21:12 +00004403 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4404 break;
4405 } else {
4406 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattnerf9853bc2008-02-21 05:27:19 +00004407 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4408 // Add information to the INLINEASM node to know about this input.
4409 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4410 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4411 TLI.getPointerTy()));
4412 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4413 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004414 }
Chris Lattner2223aea2006-02-02 00:25:23 +00004415 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004416
Chris Lattner2a600be2007-04-28 21:01:43 +00004417 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
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 other inputs yet!");
4420
Chris Lattner48884cd2007-08-25 00:47:38 +00004421 std::vector<SDOperand> Ops;
4422 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4423 Ops, DAG);
4424 if (Ops.empty()) {
Bill Wendling832171c2006-12-07 20:04:42 +00004425 cerr << "Invalid operand for inline asm constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004426 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner53069fb2006-10-31 19:41:18 +00004427 exit(1);
4428 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004429
4430 // Add information to the INLINEASM node to know about this input.
Chris Lattner48884cd2007-08-25 00:47:38 +00004431 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004432 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4433 TLI.getPointerTy()));
Chris Lattner48884cd2007-08-25 00:47:38 +00004434 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004435 break;
Chris Lattner2a600be2007-04-28 21:01:43 +00004436 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004437 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner44b2c502007-04-28 06:42:38 +00004438 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4439 "Memory operands expect pointer values");
4440
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004441 // Add information to the INLINEASM node to know about this input.
4442 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004443 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4444 TLI.getPointerTy()));
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004445 AsmNodeOperands.push_back(InOperandVal);
4446 break;
4447 }
4448
Chris Lattner2a600be2007-04-28 21:01:43 +00004449 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4450 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4451 "Unknown constraint type!");
Chris Lattner0c583402007-04-28 20:49:53 +00004452 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004453 "Don't know how to handle indirect register inputs yet!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004454
4455 // Copy the input into the appropriate registers.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004456 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4457 "Couldn't allocate input reg!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004458
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004459 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004460
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004461 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4462 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004463 break;
4464 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004465 case InlineAsm::isClobber: {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004466 // Add the clobbered value to the operand list, so that the register
4467 // allocator is aware that the physreg got clobbered.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004468 if (!OpInfo.AssignedRegs.Regs.empty())
4469 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4470 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004471 break;
4472 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004473 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004474 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004475
4476 // Finish up input operands.
4477 AsmNodeOperands[0] = Chain;
4478 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4479
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004480 Chain = DAG.getNode(ISD::INLINEASM,
4481 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004482 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004483 Flag = Chain.getValue(1);
4484
Chris Lattner6656dd12006-01-31 02:03:41 +00004485 // If this asm returns a register value, copy the result from that register
4486 // and set it as the value of the call.
Chris Lattner3a508c92007-04-12 06:00:20 +00004487 if (!RetValRegs.Regs.empty()) {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004488 SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner3fb29682008-04-29 04:48:56 +00004489
4490 // If any of the results of the inline asm is a vector, it may have the
4491 // wrong width/num elts. This can happen for register classes that can
4492 // contain multiple different value types. The preg or vreg allocated may
4493 // not have the same VT as was expected. Convert it to the right type with
Dan Gohman7f321562007-06-25 16:23:39 +00004494 // bit_convert.
Chris Lattner3fb29682008-04-29 04:48:56 +00004495 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4496 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004497 if (Val.Val->getValueType(i).isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004498 Val = DAG.getNode(ISD::BIT_CONVERT,
4499 TLI.getValueType(ResSTy->getElementType(i)), Val);
4500 }
4501 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004502 if (Val.getValueType().isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004503 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4504 Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004505 }
Chris Lattner3fb29682008-04-29 04:48:56 +00004506
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004507 setValue(CS.getInstruction(), Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004508 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004509
Chris Lattner6656dd12006-01-31 02:03:41 +00004510 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
4511
4512 // Process indirect outputs, first output all of the flagged copies out of
4513 // physregs.
4514 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00004515 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00004516 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004517 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner864635a2006-02-22 22:37:12 +00004518 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00004519 }
4520
4521 // Emit the non-flagged stores from the physregs.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004522 SmallVector<SDOperand, 8> OutChains;
Chris Lattner6656dd12006-01-31 02:03:41 +00004523 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattner0c583402007-04-28 20:49:53 +00004524 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner6656dd12006-01-31 02:03:41 +00004525 getValue(StoresToEmit[i].second),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004526 StoresToEmit[i].second, 0));
Chris Lattner6656dd12006-01-31 02:03:41 +00004527 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004528 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4529 &OutChains[0], OutChains.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004530 DAG.setRoot(Chain);
4531}
4532
4533
Chris Lattner1c08c712005-01-07 07:47:53 +00004534void SelectionDAGLowering::visitMalloc(MallocInst &I) {
4535 SDOperand Src = getValue(I.getOperand(0));
4536
Duncan Sands83ec4b62008-06-06 12:08:01 +00004537 MVT IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00004538
Duncan Sands8e4eb092008-06-08 20:54:56 +00004539 if (IntPtr.bitsLT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004540 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004541 else if (IntPtr.bitsGT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004542 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00004543
4544 // Scale the source by the type size.
Duncan Sands514ab342007-11-01 20:53:16 +00004545 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00004546 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner0bd48932008-01-17 07:00:52 +00004547 Src, DAG.getIntPtrConstant(ElementSize));
Chris Lattner1c08c712005-01-07 07:47:53 +00004548
Reid Spencer47857812006-12-31 05:55:36 +00004549 TargetLowering::ArgListTy Args;
4550 TargetLowering::ArgListEntry Entry;
4551 Entry.Node = Src;
4552 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004553 Args.push_back(Entry);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004554
4555 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004556 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4557 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004558 setValue(&I, Result.first); // Pointers always fit in registers
4559 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004560}
4561
4562void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencer47857812006-12-31 05:55:36 +00004563 TargetLowering::ArgListTy Args;
4564 TargetLowering::ArgListEntry Entry;
4565 Entry.Node = getValue(I.getOperand(0));
4566 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004567 Args.push_back(Entry);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004568 MVT IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00004569 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004570 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4571 CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00004572 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4573 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004574}
4575
Evan Chengff9b3732008-01-30 18:18:23 +00004576// EmitInstrWithCustomInserter - This method should be implemented by targets
4577// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +00004578// instructions are special in various ways, which require special support to
4579// insert. The specified MachineInstr is created but not inserted into any
4580// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +00004581MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Chris Lattner025c39b2005-08-26 20:54:47 +00004582 MachineBasicBlock *MBB) {
Bill Wendling832171c2006-12-07 20:04:42 +00004583 cerr << "If a target marks an instruction with "
4584 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chengff9b3732008-01-30 18:18:23 +00004585 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Chris Lattner025c39b2005-08-26 20:54:47 +00004586 abort();
4587 return 0;
4588}
4589
Chris Lattner39ae3622005-01-09 00:00:49 +00004590void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004591 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4592 getValue(I.getOperand(1)),
4593 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00004594}
4595
4596void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004597 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
4598 getValue(I.getOperand(0)),
4599 DAG.getSrcValue(I.getOperand(0)));
4600 setValue(&I, V);
4601 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00004602}
4603
4604void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004605 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4606 getValue(I.getOperand(1)),
4607 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004608}
4609
4610void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004611 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4612 getValue(I.getOperand(1)),
4613 getValue(I.getOperand(2)),
4614 DAG.getSrcValue(I.getOperand(1)),
4615 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004616}
4617
Chris Lattnerfdfded52006-04-12 16:20:43 +00004618/// TargetLowering::LowerArguments - This is the default LowerArguments
4619/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004620/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4621/// integrated into SDISel.
Chris Lattnerfdfded52006-04-12 16:20:43 +00004622std::vector<SDOperand>
4623TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
4624 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
4625 std::vector<SDOperand> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004626 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00004627 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4628 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4629
4630 // Add one result value for each formal argument.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004631 std::vector<MVT> RetVals;
Anton Korobeynikov6aa279d2007-01-28 18:01:49 +00004632 unsigned j = 1;
Anton Korobeynikovac2b2cf2007-01-28 16:04:40 +00004633 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4634 I != E; ++I, ++j) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004635 SmallVector<MVT, 4> ValueVTs;
4636 ComputeValueVTs(*this, I->getType(), ValueVTs);
4637 for (unsigned Value = 0, NumValues = ValueVTs.size();
4638 Value != NumValues; ++Value) {
4639 MVT VT = ValueVTs[Value];
4640 const Type *ArgTy = VT.getTypeForMVT();
4641 ISD::ArgFlagsTy Flags;
4642 unsigned OriginalAlignment =
4643 getTargetData()->getABITypeAlignment(ArgTy);
Lauro Ramos Venancio7aa47b62007-02-13 13:50:08 +00004644
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004645 if (F.paramHasAttr(j, ParamAttr::ZExt))
4646 Flags.setZExt();
4647 if (F.paramHasAttr(j, ParamAttr::SExt))
4648 Flags.setSExt();
4649 if (F.paramHasAttr(j, ParamAttr::InReg))
4650 Flags.setInReg();
4651 if (F.paramHasAttr(j, ParamAttr::StructRet))
4652 Flags.setSRet();
4653 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4654 Flags.setByVal();
4655 const PointerType *Ty = cast<PointerType>(I->getType());
4656 const Type *ElementTy = Ty->getElementType();
4657 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4658 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4659 // For ByVal, alignment should be passed from FE. BE will guess if
4660 // this info is not there but there are cases it cannot get right.
4661 if (F.getParamAlignment(j))
4662 FrameAlign = F.getParamAlignment(j);
4663 Flags.setByValAlign(FrameAlign);
4664 Flags.setByValSize(FrameSize);
4665 }
4666 if (F.paramHasAttr(j, ParamAttr::Nest))
4667 Flags.setNest();
4668 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004669
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004670 MVT RegisterVT = getRegisterType(VT);
4671 unsigned NumRegs = getNumRegisters(VT);
4672 for (unsigned i = 0; i != NumRegs; ++i) {
4673 RetVals.push_back(RegisterVT);
4674 ISD::ArgFlagsTy MyFlags = Flags;
4675 if (NumRegs > 1 && i == 0)
4676 MyFlags.setSplit();
4677 // if it isn't first piece, alignment must be 1
4678 else if (i > 0)
4679 MyFlags.setOrigAlign(1);
4680 Ops.push_back(DAG.getArgFlags(MyFlags));
4681 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004682 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004683 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00004684
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004685 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00004686
4687 // Create the node.
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004688 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004689 DAG.getVTList(&RetVals[0], RetVals.size()),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004690 &Ops[0], Ops.size()).Val;
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004691
4692 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4693 // allows exposing the loads that may be part of the argument access to the
4694 // first DAGCombiner pass.
4695 SDOperand TmpRes = LowerOperation(SDOperand(Result, 0), DAG);
4696
4697 // The number of results should match up, except that the lowered one may have
4698 // an extra flag result.
4699 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4700 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4701 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4702 && "Lowering produced unexpected number of results!");
4703 Result = TmpRes.Val;
4704
Dan Gohman27a70be2007-07-02 16:18:06 +00004705 unsigned NumArgRegs = Result->getNumValues() - 1;
4706 DAG.setRoot(SDOperand(Result, NumArgRegs));
Chris Lattnerfdfded52006-04-12 16:20:43 +00004707
4708 // Set up the return result vector.
4709 Ops.clear();
4710 unsigned i = 0;
Reid Spencer47857812006-12-31 05:55:36 +00004711 unsigned Idx = 1;
4712 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4713 ++I, ++Idx) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004714 SmallVector<MVT, 4> ValueVTs;
4715 ComputeValueVTs(*this, I->getType(), ValueVTs);
4716 for (unsigned Value = 0, NumValues = ValueVTs.size();
4717 Value != NumValues; ++Value) {
4718 MVT VT = ValueVTs[Value];
4719 MVT PartVT = getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004720
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004721 unsigned NumParts = getNumRegisters(VT);
4722 SmallVector<SDOperand, 4> Parts(NumParts);
4723 for (unsigned j = 0; j != NumParts; ++j)
4724 Parts[j] = SDOperand(Result, i++);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004725
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004726 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4727 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4728 AssertOp = ISD::AssertSext;
4729 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4730 AssertOp = ISD::AssertZext;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004731
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004732 Ops.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4733 AssertOp));
4734 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004735 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004736 assert(i == NumArgRegs && "Argument register count mismatch!");
Chris Lattnerfdfded52006-04-12 16:20:43 +00004737 return Ops;
4738}
4739
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004740
4741/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4742/// implementation, which just inserts an ISD::CALL node, which is later custom
4743/// lowered by the target to something concrete. FIXME: When all targets are
4744/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
4745std::pair<SDOperand, SDOperand>
Duncan Sands00fee652008-02-14 17:28:50 +00004746TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
4747 bool RetSExt, bool RetZExt, bool isVarArg,
4748 unsigned CallingConv, bool isTailCall,
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004749 SDOperand Callee,
4750 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattnerbe384162006-08-16 22:57:46 +00004751 SmallVector<SDOperand, 32> Ops;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004752 Ops.push_back(Chain); // Op#0 - Chain
4753 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4754 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4755 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4756 Ops.push_back(Callee);
4757
4758 // Handle all of the outgoing arguments.
4759 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004760 SmallVector<MVT, 4> ValueVTs;
4761 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4762 for (unsigned Value = 0, NumValues = ValueVTs.size();
4763 Value != NumValues; ++Value) {
4764 MVT VT = ValueVTs[Value];
4765 const Type *ArgTy = VT.getTypeForMVT();
4766 SDOperand Op = SDOperand(Args[i].Node.Val, Args[i].Node.ResNo + Value);
4767 ISD::ArgFlagsTy Flags;
4768 unsigned OriginalAlignment =
4769 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sands276dcbd2008-03-21 09:14:45 +00004770
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004771 if (Args[i].isZExt)
4772 Flags.setZExt();
4773 if (Args[i].isSExt)
4774 Flags.setSExt();
4775 if (Args[i].isInReg)
4776 Flags.setInReg();
4777 if (Args[i].isSRet)
4778 Flags.setSRet();
4779 if (Args[i].isByVal) {
4780 Flags.setByVal();
4781 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4782 const Type *ElementTy = Ty->getElementType();
4783 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4784 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4785 // For ByVal, alignment should come from FE. BE will guess if this
4786 // info is not there but there are cases it cannot get right.
4787 if (Args[i].Alignment)
4788 FrameAlign = Args[i].Alignment;
4789 Flags.setByValAlign(FrameAlign);
4790 Flags.setByValSize(FrameSize);
4791 }
4792 if (Args[i].isNest)
4793 Flags.setNest();
4794 Flags.setOrigAlign(OriginalAlignment);
Dan Gohman27a70be2007-07-02 16:18:06 +00004795
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004796 MVT PartVT = getRegisterType(VT);
4797 unsigned NumParts = getNumRegisters(VT);
4798 SmallVector<SDOperand, 4> Parts(NumParts);
4799 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004800
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004801 if (Args[i].isSExt)
4802 ExtendKind = ISD::SIGN_EXTEND;
4803 else if (Args[i].isZExt)
4804 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004805
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004806 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004807
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004808 for (unsigned i = 0; i != NumParts; ++i) {
4809 // if it isn't first piece, alignment must be 1
4810 ISD::ArgFlagsTy MyFlags = Flags;
4811 if (NumParts > 1 && i == 0)
4812 MyFlags.setSplit();
4813 else if (i != 0)
4814 MyFlags.setOrigAlign(1);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004815
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004816 Ops.push_back(Parts[i]);
4817 Ops.push_back(DAG.getArgFlags(MyFlags));
4818 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004819 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004820 }
4821
Dan Gohmanef5d1942008-03-11 21:11:25 +00004822 // Figure out the result value types. We start by making a list of
Dan Gohman23ce5022008-04-25 18:27:55 +00004823 // the potentially illegal return value types.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004824 SmallVector<MVT, 4> LoweredRetTys;
4825 SmallVector<MVT, 4> RetTys;
Dan Gohman23ce5022008-04-25 18:27:55 +00004826 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004827
Dan Gohman23ce5022008-04-25 18:27:55 +00004828 // Then we translate that to a list of legal types.
4829 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004830 MVT VT = RetTys[I];
4831 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004832 unsigned NumRegs = getNumRegisters(VT);
4833 for (unsigned i = 0; i != NumRegs; ++i)
4834 LoweredRetTys.push_back(RegisterVT);
4835 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004836
Dan Gohmanef5d1942008-03-11 21:11:25 +00004837 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004838
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004839 // Create the CALL node.
Chris Lattnerbe384162006-08-16 22:57:46 +00004840 SDOperand Res = DAG.getNode(ISD::CALL,
Dan Gohmanef5d1942008-03-11 21:11:25 +00004841 DAG.getVTList(&LoweredRetTys[0],
4842 LoweredRetTys.size()),
Chris Lattnerbe384162006-08-16 22:57:46 +00004843 &Ops[0], Ops.size());
Dan Gohmanef5d1942008-03-11 21:11:25 +00004844 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004845
4846 // Gather up the call result into a single value.
4847 if (RetTy != Type::VoidTy) {
Duncan Sands00fee652008-02-14 17:28:50 +00004848 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4849
4850 if (RetSExt)
4851 AssertOp = ISD::AssertSext;
4852 else if (RetZExt)
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004853 AssertOp = ISD::AssertZext;
Duncan Sands00fee652008-02-14 17:28:50 +00004854
Dan Gohmanef5d1942008-03-11 21:11:25 +00004855 SmallVector<SDOperand, 4> ReturnValues;
4856 unsigned RegNo = 0;
Dan Gohman23ce5022008-04-25 18:27:55 +00004857 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004858 MVT VT = RetTys[I];
4859 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004860 unsigned NumRegs = getNumRegisters(VT);
4861 unsigned RegNoEnd = NumRegs + RegNo;
4862 SmallVector<SDOperand, 4> Results;
4863 for (; RegNo != RegNoEnd; ++RegNo)
4864 Results.push_back(Res.getValue(RegNo));
4865 SDOperand ReturnValue =
4866 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4867 AssertOp);
4868 ReturnValues.push_back(ReturnValue);
4869 }
4870 Res = ReturnValues.size() == 1 ? ReturnValues.front() :
4871 DAG.getNode(ISD::MERGE_VALUES,
4872 DAG.getVTList(&RetTys[0], RetTys.size()),
4873 &ReturnValues[0], ReturnValues.size());
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004874 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004875
4876 return std::make_pair(Res, Chain);
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004877}
4878
Chris Lattner50381b62005-05-14 05:50:48 +00004879SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00004880 assert(0 && "LowerOperation not implemented for this target!");
4881 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00004882 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00004883}
4884
Nate Begeman0aed7842006-01-28 03:14:31 +00004885SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
4886 SelectionDAG &DAG) {
4887 assert(0 && "CustomPromoteOperation not implemented for this target!");
4888 abort();
4889 return SDOperand();
4890}
4891
Chris Lattner7041ee32005-01-11 05:56:49 +00004892//===----------------------------------------------------------------------===//
4893// SelectionDAGISel code
4894//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00004895
Duncan Sands83ec4b62008-06-06 12:08:01 +00004896unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +00004897 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +00004898}
4899
Chris Lattner495a0b52005-08-17 06:37:43 +00004900void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004901 AU.addRequired<AliasAnalysis>();
Gordon Henriksence224772008-01-07 01:30:38 +00004902 AU.addRequired<CollectorModuleMetadata>();
Chris Lattnerc8d288f2007-03-31 04:18:03 +00004903 AU.setPreservesAll();
Chris Lattner495a0b52005-08-17 06:37:43 +00004904}
Chris Lattner1c08c712005-01-07 07:47:53 +00004905
Chris Lattner1c08c712005-01-07 07:47:53 +00004906bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman5f43f922007-08-27 16:26:13 +00004907 // Get alias analysis for load/store combining.
4908 AA = &getAnalysis<AliasAnalysis>();
4909
Chris Lattner1c08c712005-01-07 07:47:53 +00004910 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksence224772008-01-07 01:30:38 +00004911 if (MF.getFunction()->hasCollector())
4912 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4913 else
4914 GCI = 0;
Chris Lattner84bc5422007-12-31 04:13:23 +00004915 RegInfo = &MF.getRegInfo();
Bill Wendling832171c2006-12-07 20:04:42 +00004916 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00004917
4918 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4919
Dale Johannesen1532f3d2008-04-02 00:25:04 +00004920 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4921 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4922 // Mark landing pad.
4923 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +00004924
4925 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +00004926 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00004927
Evan Chengad2070c2007-02-10 02:43:39 +00004928 // Add function live-ins to entry block live-in set.
4929 BasicBlock *EntryBB = &Fn.getEntryBlock();
4930 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner84bc5422007-12-31 04:13:23 +00004931 if (!RegInfo->livein_empty())
4932 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4933 E = RegInfo->livein_end(); I != E; ++I)
Evan Chengad2070c2007-02-10 02:43:39 +00004934 BB->addLiveIn(I->first);
4935
Duncan Sandsf4070822007-06-15 19:04:19 +00004936#ifndef NDEBUG
4937 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4938 "Not all catch info was assigned to a landing pad!");
4939#endif
4940
Chris Lattner1c08c712005-01-07 07:47:53 +00004941 return true;
4942}
4943
Chris Lattner6833b062008-04-28 07:16:35 +00004944void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Chris Lattner571e4342006-10-27 21:36:01 +00004945 SDOperand Op = getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00004946 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004947 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00004948 "Copy from a reg to the same reg!");
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004949 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004950
Dan Gohman23ce5022008-04-25 18:27:55 +00004951 RegsForValue RFV(TLI, Reg, V->getType());
4952 SDOperand Chain = DAG.getEntryNode();
4953 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4954 PendingExports.push_back(Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00004955}
4956
Chris Lattner068a81e2005-01-17 17:15:02 +00004957void SelectionDAGISel::
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004958LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Chris Lattner068a81e2005-01-17 17:15:02 +00004959 // If this is the entry block, emit arguments.
Evan Cheng15699fc2007-02-10 01:08:18 +00004960 Function &F = *LLVMBB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00004961 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00004962 SDOperand OldRoot = SDL.DAG.getRoot();
4963 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner068a81e2005-01-17 17:15:02 +00004964
Chris Lattnerbf209482005-10-30 19:42:35 +00004965 unsigned a = 0;
4966 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004967 AI != E; ++AI) {
4968 SmallVector<MVT, 4> ValueVTs;
4969 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4970 unsigned NumValues = ValueVTs.size();
Chris Lattnerbf209482005-10-30 19:42:35 +00004971 if (!AI->use_empty()) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004972 SmallVector<MVT, 4> LegalValueVTs(NumValues);
4973 for (unsigned VI = 0; VI != NumValues; ++VI)
4974 LegalValueVTs[VI] = Args[a + VI].getValueType();
4975 SDL.setValue(AI, SDL.DAG.getNode(ISD::MERGE_VALUES,
4976 SDL.DAG.getVTList(&LegalValueVTs[0],
4977 NumValues),
4978 &Args[a], NumValues));
Chris Lattnerbf209482005-10-30 19:42:35 +00004979 // If this argument is live outside of the entry block, insert a copy from
4980 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner251db182007-02-25 18:40:32 +00004981 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4982 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004983 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattnerbf209482005-10-30 19:42:35 +00004984 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00004985 }
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004986 a += NumValues;
4987 }
Chris Lattnerbf209482005-10-30 19:42:35 +00004988
Chris Lattnerbf209482005-10-30 19:42:35 +00004989 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00004990 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00004991 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00004992}
4993
Duncan Sandsf4070822007-06-15 19:04:19 +00004994static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4995 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004996 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00004997 if (isSelector(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004998 // Apply the catch info to DestBB.
4999 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
5000#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +00005001 if (!FLI.MBBMap[SrcBB]->isLandingPad())
5002 FLI.CatchInfoFound.insert(I);
Duncan Sandsf4070822007-06-15 19:04:19 +00005003#endif
5004 }
5005}
5006
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005007/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
5008/// whether object offset >= 0.
5009static bool
5010IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDOperand Op) {
5011 if (!isa<FrameIndexSDNode>(Op)) return false;
5012
5013 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
5014 int FrameIdx = FrameIdxNode->getIndex();
5015 return MFI->isFixedObjectIndex(FrameIdx) &&
5016 MFI->getObjectOffset(FrameIdx) >= 0;
5017}
5018
5019/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
5020/// possibly be overwritten when lowering the outgoing arguments in a tail
5021/// call. Currently the implementation of this call is very conservative and
5022/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
5023/// virtual registers would be overwritten by direct lowering.
5024static bool IsPossiblyOverwrittenArgumentOfTailCall(SDOperand Op,
5025 MachineFrameInfo * MFI) {
5026 RegisterSDNode * OpReg = NULL;
5027 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
5028 (Op.getOpcode()== ISD::CopyFromReg &&
5029 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
5030 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
5031 (Op.getOpcode() == ISD::LOAD &&
5032 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
5033 (Op.getOpcode() == ISD::MERGE_VALUES &&
5034 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5035 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5036 getOperand(1))))
5037 return true;
5038 return false;
5039}
5040
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005041/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005042/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005043static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5044 TargetLowering& TLI) {
5045 SDNode * Ret = NULL;
5046 SDOperand Terminator = DAG.getRoot();
5047
5048 // Find RET node.
5049 if (Terminator.getOpcode() == ISD::RET) {
5050 Ret = Terminator.Val;
5051 }
5052
5053 // Fix tail call attribute of CALL nodes.
5054 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
5055 BI = prior(DAG.allnodes_end()); BI != BE; --BI) {
5056 if (BI->getOpcode() == ISD::CALL) {
5057 SDOperand OpRet(Ret, 0);
5058 SDOperand OpCall(static_cast<SDNode*>(BI), 0);
5059 bool isMarkedTailCall =
5060 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5061 // If CALL node has tail call attribute set to true and the call is not
5062 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005063 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005064 // must correctly identify tail call optimizable calls.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005065 if (!isMarkedTailCall) continue;
5066 if (Ret==NULL ||
5067 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5068 // Not eligible. Mark CALL node as non tail call.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005069 SmallVector<SDOperand, 32> Ops;
5070 unsigned idx=0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005071 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5072 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005073 if (idx!=3)
5074 Ops.push_back(*I);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005075 else
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005076 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5077 }
5078 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005079 } else {
5080 // Look for tail call clobbered arguments. Emit a series of
5081 // copyto/copyfrom virtual register nodes to protect them.
5082 SmallVector<SDOperand, 32> Ops;
5083 SDOperand Chain = OpCall.getOperand(0), InFlag;
5084 unsigned idx=0;
5085 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5086 E = OpCall.Val->op_end(); I != E; I++, idx++) {
5087 SDOperand Arg = *I;
5088 if (idx > 4 && (idx % 2)) {
5089 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5090 getArgFlags().isByVal();
5091 MachineFunction &MF = DAG.getMachineFunction();
5092 MachineFrameInfo *MFI = MF.getFrameInfo();
5093 if (!isByVal &&
5094 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005095 MVT VT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005096 unsigned VReg = MF.getRegInfo().
5097 createVirtualRegister(TLI.getRegClassFor(VT));
5098 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5099 InFlag = Chain.getValue(1);
5100 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5101 Chain = Arg.getValue(1);
5102 InFlag = Arg.getValue(2);
5103 }
5104 }
5105 Ops.push_back(Arg);
5106 }
5107 // Link in chain of CopyTo/CopyFromReg.
5108 Ops[0] = Chain;
5109 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005110 }
5111 }
5112 }
5113}
5114
Chris Lattner1c08c712005-01-07 07:47:53 +00005115void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5116 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00005117 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksence224772008-01-07 01:30:38 +00005118 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerddb870b2005-01-13 17:59:43 +00005119
Chris Lattnerbf209482005-10-30 19:42:35 +00005120 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +00005121 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005122 LowerArguments(LLVMBB, SDL);
Chris Lattner1c08c712005-01-07 07:47:53 +00005123
5124 BB = FuncInfo.MBBMap[LLVMBB];
5125 SDL.setCurrentBasicBlock(BB);
5126
Duncan Sandsf4070822007-06-15 19:04:19 +00005127 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands9fac0b52007-06-06 10:05:18 +00005128
Dale Johannesen1532f3d2008-04-02 00:25:04 +00005129 if (MMI && BB->isLandingPad()) {
Duncan Sandsf4070822007-06-15 19:04:19 +00005130 // Add a label to mark the beginning of the landing pad. Deletion of the
5131 // landing pad can thus be detected via the MachineModuleInfo.
5132 unsigned LabelID = MMI->addLandingPad(BB);
5133 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, DAG.getEntryNode(),
Evan Chengbb81d972008-01-31 09:59:15 +00005134 DAG.getConstant(LabelID, MVT::i32),
5135 DAG.getConstant(1, MVT::i32)));
Duncan Sandsf4070822007-06-15 19:04:19 +00005136
Evan Chenge47c3332007-06-27 18:45:32 +00005137 // Mark exception register as live in.
5138 unsigned Reg = TLI.getExceptionAddressRegister();
5139 if (Reg) BB->addLiveIn(Reg);
5140
5141 // Mark exception selector register as live in.
5142 Reg = TLI.getExceptionSelectorRegister();
5143 if (Reg) BB->addLiveIn(Reg);
5144
Duncan Sandsf4070822007-06-15 19:04:19 +00005145 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5146 // function and list of typeids logically belong to the invoke (or, if you
5147 // like, the basic block containing the invoke), and need to be associated
5148 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005149 // information is provided by an intrinsic (eh.selector) that can be moved
5150 // to unexpected places by the optimizers: if the unwind edge is critical,
5151 // then breaking it can result in the intrinsics being in the successor of
5152 // the landing pad, not the landing pad itself. This results in exceptions
5153 // not being caught because no typeids are associated with the invoke.
5154 // This may not be the only way things can go wrong, but it is the only way
5155 // we try to work around for the moment.
Duncan Sandsf4070822007-06-15 19:04:19 +00005156 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5157
5158 if (Br && Br->isUnconditional()) { // Critical edge?
5159 BasicBlock::iterator I, E;
5160 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005161 if (isSelector(I))
Duncan Sandsf4070822007-06-15 19:04:19 +00005162 break;
5163
5164 if (I == E)
5165 // No catch info found - try to extract some from the successor.
5166 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands9fac0b52007-06-06 10:05:18 +00005167 }
5168 }
5169
Chris Lattner1c08c712005-01-07 07:47:53 +00005170 // Lower all of the non-terminator instructions.
5171 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5172 I != E; ++I)
5173 SDL.visit(*I);
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005174
Chris Lattner1c08c712005-01-07 07:47:53 +00005175 // Ensure that all instructions which are used outside of their defining
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005176 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner1c08c712005-01-07 07:47:53 +00005177 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005178 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner9f24ad72007-02-04 01:35:11 +00005179 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00005180 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005181 SDL.CopyValueToVirtualRegister(I, VMI->second);
Chris Lattner1c08c712005-01-07 07:47:53 +00005182 }
5183
5184 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5185 // ensure constants are generated when needed. Remember the virtual registers
5186 // that need to be added to the Machine PHI nodes as input. We cannot just
5187 // directly add them, because expansion might result in multiple MBB's for one
5188 // BB. As such, the start of the BB might correspond to a different MBB than
5189 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00005190 //
Chris Lattner8c494ab2006-10-27 23:50:33 +00005191 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner1c08c712005-01-07 07:47:53 +00005192
5193 // Emit constants only once even if used by multiple PHI nodes.
5194 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005195
Chris Lattner8c494ab2006-10-27 23:50:33 +00005196 // Vector bool would be better, but vector<bool> is really slow.
5197 std::vector<unsigned char> SuccsHandled;
5198 if (TI->getNumSuccessors())
5199 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5200
Dan Gohman532dc2e2007-07-09 20:59:04 +00005201 // Check successor nodes' PHI nodes that expect a constant to be available
5202 // from this block.
Chris Lattner1c08c712005-01-07 07:47:53 +00005203 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5204 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005205 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner8c494ab2006-10-27 23:50:33 +00005206 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005207
Chris Lattner8c494ab2006-10-27 23:50:33 +00005208 // If this terminator has multiple identical successors (common for
5209 // switches), only handle each succ once.
5210 unsigned SuccMBBNo = SuccMBB->getNumber();
5211 if (SuccsHandled[SuccMBBNo]) continue;
5212 SuccsHandled[SuccMBBNo] = true;
5213
5214 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner1c08c712005-01-07 07:47:53 +00005215 PHINode *PN;
5216
5217 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5218 // nodes and Machine PHI nodes, but the incoming operands have not been
5219 // emitted yet.
5220 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8c494ab2006-10-27 23:50:33 +00005221 (PN = dyn_cast<PHINode>(I)); ++I) {
5222 // Ignore dead phi's.
5223 if (PN->use_empty()) continue;
5224
5225 unsigned Reg;
5226 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner3f7927c2006-11-29 01:12:32 +00005227
Chris Lattner8c494ab2006-10-27 23:50:33 +00005228 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5229 unsigned &RegOut = ConstantsOut[C];
5230 if (RegOut == 0) {
5231 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005232 SDL.CopyValueToVirtualRegister(C, RegOut);
Chris Lattner1c08c712005-01-07 07:47:53 +00005233 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005234 Reg = RegOut;
5235 } else {
5236 Reg = FuncInfo.ValueMap[PHIOp];
5237 if (Reg == 0) {
5238 assert(isa<AllocaInst>(PHIOp) &&
5239 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5240 "Didn't codegen value into a register!??");
5241 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005242 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Chris Lattner7e021512006-03-31 02:12:18 +00005243 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005244 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005245
5246 // Remember that this register needs to added to the machine PHI node as
5247 // the input for this MBB.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005248 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +00005249 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohmanb9f10192007-06-21 14:42:22 +00005250 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Chris Lattner8c494ab2006-10-27 23:50:33 +00005251 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5252 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005253 }
5254 ConstantsOut.clear();
5255
5256 // Lower the terminator after the copies are emitted.
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005257 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00005258
Nate Begemanf15485a2006-03-27 01:32:24 +00005259 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00005260 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00005261 SwitchCases.clear();
5262 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005263 JTCases.clear();
5264 JTCases = SDL.JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005265 BitTestCases.clear();
5266 BitTestCases = SDL.BitTestCases;
5267
Chris Lattnera651cf62005-01-17 19:43:36 +00005268 // Make sure the root of the DAG is up-to-date.
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005269 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005270
5271 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5272 // with correct tailcall attribute so that the target can rely on the tailcall
5273 // attribute indicating whether the call is really eligible for tail call
5274 // optimization.
5275 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Chris Lattner1c08c712005-01-07 07:47:53 +00005276}
5277
Chris Lattneread0d882008-06-17 06:09:18 +00005278void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5279 SmallPtrSet<SDNode*, 128> VisitedNodes;
5280 SmallVector<SDNode*, 128> Worklist;
5281
5282 Worklist.push_back(DAG.getRoot().Val);
5283
5284 APInt Mask;
5285 APInt KnownZero;
5286 APInt KnownOne;
5287
5288 while (!Worklist.empty()) {
5289 SDNode *N = Worklist.back();
5290 Worklist.pop_back();
5291
5292 // If we've already seen this node, ignore it.
5293 if (!VisitedNodes.insert(N))
5294 continue;
5295
5296 // Otherwise, add all chain operands to the worklist.
5297 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5298 if (N->getOperand(i).getValueType() == MVT::Other)
5299 Worklist.push_back(N->getOperand(i).Val);
5300
5301 // If this is a CopyToReg with a vreg dest, process it.
5302 if (N->getOpcode() != ISD::CopyToReg)
5303 continue;
5304
5305 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5306 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5307 continue;
5308
5309 // Ignore non-scalar or non-integer values.
5310 SDOperand Src = N->getOperand(2);
5311 MVT SrcVT = Src.getValueType();
5312 if (!SrcVT.isInteger() || SrcVT.isVector())
5313 continue;
5314
5315 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5316 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5317 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5318
5319 // Only install this information if it tells us something.
5320 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5321 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5322 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5323 if (DestReg >= FLI.LiveOutRegInfo.size())
5324 FLI.LiveOutRegInfo.resize(DestReg+1);
5325 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5326 LOI.NumSignBits = NumSignBits;
5327 LOI.KnownOne = NumSignBits;
5328 LOI.KnownZero = NumSignBits;
5329 }
5330 }
5331}
5332
Nate Begemanf15485a2006-03-27 01:32:24 +00005333void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohman417e11b2007-10-08 15:12:17 +00005334 DOUT << "Lowered selection DAG:\n";
5335 DEBUG(DAG.dump());
5336
Chris Lattneraf21d552005-10-10 16:47:10 +00005337 // Run the DAG combiner in pre-legalize mode.
Dan Gohman5f43f922007-08-27 16:26:13 +00005338 DAG.Combine(false, *AA);
Nate Begeman2300f552005-09-07 00:15:36 +00005339
Dan Gohman417e11b2007-10-08 15:12:17 +00005340 DOUT << "Optimized lowered selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005341 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005342
Chris Lattner1c08c712005-01-07 07:47:53 +00005343 // Second step, hack on the DAG until it only uses operations and types that
5344 // the target supports.
Chris Lattner01d029b2007-10-15 06:10:22 +00005345#if 0 // Enable this some day.
5346 DAG.LegalizeTypes();
5347 // Someday even later, enable a dag combine pass here.
5348#endif
Chris Lattnerac9dc082005-01-23 04:36:26 +00005349 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00005350
Bill Wendling832171c2006-12-07 20:04:42 +00005351 DOUT << "Legalized selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005352 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005353
Chris Lattneraf21d552005-10-10 16:47:10 +00005354 // Run the DAG combiner in post-legalize mode.
Dan Gohman5f43f922007-08-27 16:26:13 +00005355 DAG.Combine(true, *AA);
Nate Begeman2300f552005-09-07 00:15:36 +00005356
Dan Gohman417e11b2007-10-08 15:12:17 +00005357 DOUT << "Optimized legalized selection DAG:\n";
5358 DEBUG(DAG.dump());
5359
Evan Chenga9c20912006-01-21 02:32:06 +00005360 if (ViewISelDAGs) DAG.viewGraph();
Chris Lattneread0d882008-06-17 06:09:18 +00005361
5362 if (EnableValueProp) // FIXME: Only do this if !fast.
5363 ComputeLiveOutVRegInfo(DAG);
Evan Cheng552c4a82006-04-28 02:09:19 +00005364
Chris Lattnera33ef482005-03-30 01:10:47 +00005365 // Third, instruction select all of the operations to machine code, adding the
5366 // code to the MachineBasicBlock.
Chris Lattner1c08c712005-01-07 07:47:53 +00005367 InstructionSelectBasicBlock(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00005368
Bill Wendling832171c2006-12-07 20:04:42 +00005369 DOUT << "Selected machine code:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005370 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005371}
Chris Lattner1c08c712005-01-07 07:47:53 +00005372
Nate Begemanf15485a2006-03-27 01:32:24 +00005373void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5374 FunctionLoweringInfo &FuncInfo) {
5375 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5376 {
Chris Lattneread0d882008-06-17 06:09:18 +00005377 SelectionDAG DAG(TLI, MF, FuncInfo,
5378 getAnalysisToUpdate<MachineModuleInfo>());
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,
5413 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005414 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005415 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005416 // Set the current basic block to the mbb we wish to insert the code into
5417 BB = BitTestCases[i].Parent;
5418 HSDL.setCurrentBasicBlock(BB);
5419 // Emit the code
5420 HSDL.visitBitTestHeader(BitTestCases[i]);
5421 HSDAG.setRoot(HSDL.getRoot());
5422 CodeGenAndEmitDAG(HSDAG);
5423 }
5424
5425 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattneread0d882008-06-17 06:09:18 +00005426 SelectionDAG BSDAG(TLI, MF, FuncInfo,
5427 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005428 CurDAG = &BSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005429 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005430 // Set the current basic block to the mbb we wish to insert the code into
5431 BB = BitTestCases[i].Cases[j].ThisBB;
5432 BSDL.setCurrentBasicBlock(BB);
5433 // Emit the code
5434 if (j+1 != ej)
5435 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5436 BitTestCases[i].Reg,
5437 BitTestCases[i].Cases[j]);
5438 else
5439 BSDL.visitBitTestCase(BitTestCases[i].Default,
5440 BitTestCases[i].Reg,
5441 BitTestCases[i].Cases[j]);
5442
5443
5444 BSDAG.setRoot(BSDL.getRoot());
5445 CodeGenAndEmitDAG(BSDAG);
5446 }
5447
5448 // Update PHI Nodes
5449 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5450 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5451 MachineBasicBlock *PHIBB = PHI->getParent();
5452 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5453 "This is not a machine PHI node that we are updating!");
5454 // This is "default" BB. We have two jumps to it. From "header" BB and
5455 // from last "case" BB.
5456 if (PHIBB == BitTestCases[i].Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005457 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5458 false));
5459 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5460 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5461 false));
5462 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5463 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005464 }
5465 // One of "cases" BB.
5466 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5467 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5468 if (cBB->succ_end() !=
5469 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005470 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5471 false));
5472 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005473 }
5474 }
5475 }
5476 }
5477
Nate Begeman9453eea2006-04-23 06:26:20 +00005478 // If the JumpTable record is filled in, then we need to emit a jump table.
5479 // Updating the PHI nodes is tricky in this case, since we need to determine
5480 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005481 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5482 // Lower header first, if it wasn't already lowered
5483 if (!JTCases[i].first.Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005484 SelectionDAG HSDAG(TLI, MF, FuncInfo,
5485 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005486 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005487 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005488 // Set the current basic block to the mbb we wish to insert the code into
5489 BB = JTCases[i].first.HeaderBB;
5490 HSDL.setCurrentBasicBlock(BB);
5491 // Emit the code
5492 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5493 HSDAG.setRoot(HSDL.getRoot());
5494 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005495 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005496
Chris Lattneread0d882008-06-17 06:09:18 +00005497 SelectionDAG JSDAG(TLI, MF, FuncInfo,
5498 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005499 CurDAG = &JSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005500 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Nate Begeman37efe672006-04-22 18:53:45 +00005501 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005502 BB = JTCases[i].second.MBB;
5503 JSDL.setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00005504 // Emit the code
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005505 JSDL.visitJumpTable(JTCases[i].second);
5506 JSDAG.setRoot(JSDL.getRoot());
5507 CodeGenAndEmitDAG(JSDAG);
5508
Nate Begeman37efe672006-04-22 18:53:45 +00005509 // Update PHI Nodes
5510 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5511 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5512 MachineBasicBlock *PHIBB = PHI->getParent();
5513 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5514 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005515 // "default" BB. We can go there only from header BB.
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005516 if (PHIBB == JTCases[i].second.Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005517 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5518 false));
5519 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +00005520 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005521 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +00005522 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005523 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5524 false));
5525 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +00005526 }
5527 }
Nate Begeman37efe672006-04-22 18:53:45 +00005528 }
5529
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005530 // If the switch block involved a branch to one of the actual successors, we
5531 // need to update PHI nodes in that block.
5532 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5533 MachineInstr *PHI = PHINodesToUpdate[i].first;
5534 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5535 "This is not a machine PHI node that we are updating!");
5536 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005537 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5538 false));
5539 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005540 }
5541 }
5542
Nate Begemanf15485a2006-03-27 01:32:24 +00005543 // If we generated any switch lowering information, build and codegen any
5544 // additional DAGs necessary.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005545 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattneread0d882008-06-17 06:09:18 +00005546 SelectionDAG SDAG(TLI, MF, FuncInfo,
5547 getAnalysisToUpdate<MachineModuleInfo>());
Nate Begemanf15485a2006-03-27 01:32:24 +00005548 CurDAG = &SDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005549 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005550
Nate Begemanf15485a2006-03-27 01:32:24 +00005551 // Set the current basic block to the mbb we wish to insert the code into
5552 BB = SwitchCases[i].ThisBB;
5553 SDL.setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005554
Nate Begemanf15485a2006-03-27 01:32:24 +00005555 // Emit the code
5556 SDL.visitSwitchCase(SwitchCases[i]);
5557 SDAG.setRoot(SDL.getRoot());
5558 CodeGenAndEmitDAG(SDAG);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005559
5560 // Handle any PHI nodes in successors of this chunk, as if we were coming
5561 // from the original BB before switch expansion. Note that PHI nodes can
5562 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5563 // handle them the right number of times.
Chris Lattner57ab6592006-10-24 17:57:59 +00005564 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005565 for (MachineBasicBlock::iterator Phi = BB->begin();
5566 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5567 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5568 for (unsigned pn = 0; ; ++pn) {
5569 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5570 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005571 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5572 second, false));
5573 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005574 break;
5575 }
5576 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005577 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005578
5579 // Don't process RHS if same block as LHS.
Chris Lattner57ab6592006-10-24 17:57:59 +00005580 if (BB == SwitchCases[i].FalseBB)
5581 SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005582
5583 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner24525952006-10-24 18:07:37 +00005584 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner57ab6592006-10-24 17:57:59 +00005585 SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00005586 }
Chris Lattner57ab6592006-10-24 17:57:59 +00005587 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00005588 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005589}
Evan Chenga9c20912006-01-21 02:32:06 +00005590
Jim Laskey13ec7022006-08-01 14:21:23 +00005591
Evan Chenga9c20912006-01-21 02:32:06 +00005592//===----------------------------------------------------------------------===//
5593/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
5594/// target node in the graph.
5595void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
5596 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00005597
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005598 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00005599
5600 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005601 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00005602 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00005603 }
Jim Laskey13ec7022006-08-01 14:21:23 +00005604
Jim Laskey9ff542f2006-08-01 18:29:48 +00005605 ScheduleDAG *SL = Ctor(this, &DAG, BB);
Chris Lattnera3818e62006-01-21 19:12:11 +00005606 BB = SL->Run();
Dan Gohman3e1a7ae2007-08-28 20:32:58 +00005607
5608 if (ViewSUnitDAGs) SL->viewGraph();
5609
Evan Chengcccf1232006-02-04 06:49:00 +00005610 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00005611}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005612
Chris Lattner03fc53c2006-03-06 00:22:00 +00005613
Jim Laskey9ff542f2006-08-01 18:29:48 +00005614HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5615 return new HazardRecognizer();
5616}
5617
Chris Lattner75548062006-10-11 03:58:02 +00005618//===----------------------------------------------------------------------===//
5619// Helper functions used by the generated instruction selector.
5620//===----------------------------------------------------------------------===//
5621// Calls to these methods are generated by tblgen.
5622
5623/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5624/// the dag combiner simplified the 255, we still want to match. RHS is the
5625/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5626/// specified in the .td file (e.g. 255).
5627bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00005628 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005629 const APInt &ActualMask = RHS->getAPIntValue();
5630 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005631
5632 // If the actual mask exactly matches, success!
5633 if (ActualMask == DesiredMask)
5634 return true;
5635
5636 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005637 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005638 return false;
5639
5640 // Otherwise, the DAG Combiner may have proven that the value coming in is
5641 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005642 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00005643 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00005644 return true;
5645
5646 // TODO: check to see if missing bits are just not demanded.
5647
5648 // Otherwise, this pattern doesn't match.
5649 return false;
5650}
5651
5652/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5653/// the dag combiner simplified the 255, we still want to match. RHS is the
5654/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5655/// specified in the .td file (e.g. 255).
5656bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005657 int64_t DesiredMaskS) const {
5658 const APInt &ActualMask = RHS->getAPIntValue();
5659 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005660
5661 // If the actual mask exactly matches, success!
5662 if (ActualMask == DesiredMask)
5663 return true;
5664
5665 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005666 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005667 return false;
5668
5669 // Otherwise, the DAG Combiner may have proven that the value coming in is
5670 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005671 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00005672
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005673 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005674 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00005675
5676 // If all the missing bits in the or are already known to be set, match!
5677 if ((NeededMask & KnownOne) == NeededMask)
5678 return true;
5679
5680 // TODO: check to see if missing bits are just not demanded.
5681
5682 // Otherwise, this pattern doesn't match.
5683 return false;
5684}
5685
Jim Laskey9ff542f2006-08-01 18:29:48 +00005686
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005687/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5688/// by tblgen. Others should not call it.
5689void SelectionDAGISel::
5690SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
5691 std::vector<SDOperand> InOps;
5692 std::swap(InOps, Ops);
5693
5694 Ops.push_back(InOps[0]); // input chain.
5695 Ops.push_back(InOps[1]); // input asm string.
5696
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005697 unsigned i = 2, e = InOps.size();
5698 if (InOps[e-1].getValueType() == MVT::Flag)
5699 --e; // Don't process a flag operand if it is here.
5700
5701 while (i != e) {
5702 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5703 if ((Flags & 7) != 4 /*MEM*/) {
5704 // Just skip over this operand, copying the operands verbatim.
5705 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5706 i += (Flags >> 3) + 1;
5707 } else {
5708 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5709 // Otherwise, this is a memory operand. Ask the target to select it.
5710 std::vector<SDOperand> SelOps;
5711 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling832171c2006-12-07 20:04:42 +00005712 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005713 exit(1);
5714 }
5715
5716 // Add this to the output node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005717 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner36d43962006-12-16 21:14:48 +00005718 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattner4b993b12007-04-09 00:33:58 +00005719 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005720 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5721 i += 2;
5722 }
5723 }
5724
5725 // Add the flag input back if present.
5726 if (e != InOps.size())
5727 Ops.push_back(InOps.back());
5728}
Devang Patel794fd752007-05-01 21:15:47 +00005729
Devang Patel19974732007-05-03 01:11:54 +00005730char SelectionDAGISel::ID = 0;