blob: e55552ffa953567fa7919dfe5dff189a9fd0ac39 [file] [log] [blame]
Chris Lattner1c08c712005-01-07 07:47:53 +00001//===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel class -------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner1c08c712005-01-07 07:47:53 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner1c08c712005-01-07 07:47:53 +00008//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAGISel class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
Anton Korobeynikov5502bf62007-04-04 21:14:49 +000015#include "llvm/ADT/BitVector.h"
Jim Laskeyc7c3f112006-10-16 20:52:31 +000016#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000017#include "llvm/CodeGen/SelectionDAGISel.h"
Evan Chenga9c20912006-01-21 02:32:06 +000018#include "llvm/CodeGen/ScheduleDAG.h"
Anton Korobeynikov5502bf62007-04-04 21:14:49 +000019#include "llvm/Constants.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000020#include "llvm/CallingConv.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000021#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
Chris Lattner36ce6912005-11-29 06:21:05 +000023#include "llvm/GlobalVariable.h"
Chris Lattnerce7518c2006-01-26 22:24:51 +000024#include "llvm/InlineAsm.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000025#include "llvm/Instructions.h"
26#include "llvm/Intrinsics.h"
Jim Laskey43970fe2006-03-23 18:06:46 +000027#include "llvm/IntrinsicInst.h"
Reid Spencer5694b6e2007-04-09 06:17:21 +000028#include "llvm/ParameterAttributes.h"
Gordon Henriksence224772008-01-07 01:30:38 +000029#include "llvm/CodeGen/Collector.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000030#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineFrameInfo.h"
32#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineJumpTableInfo.h"
34#include "llvm/CodeGen/MachineModuleInfo.h"
35#include "llvm/CodeGen/MachineRegisterInfo.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000036#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000037#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000038#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000039#include "llvm/Target/TargetData.h"
40#include "llvm/Target/TargetFrameInfo.h"
41#include "llvm/Target/TargetInstrInfo.h"
42#include "llvm/Target/TargetLowering.h"
43#include "llvm/Target/TargetMachine.h"
Vladimir Prus12472912006-05-23 13:43:15 +000044#include "llvm/Target/TargetOptions.h"
Chris Lattner7c0104b2005-11-09 04:45:33 +000045#include "llvm/Support/MathExtras.h"
Chris Lattner1c08c712005-01-07 07:47:53 +000046#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000047#include "llvm/Support/Compiler.h"
Jeff Cohen7e881032006-02-24 02:52:40 +000048#include <algorithm>
Chris Lattner1c08c712005-01-07 07:47:53 +000049using namespace llvm;
50
Chris Lattneread0d882008-06-17 06:09:18 +000051static cl::opt<bool>
52EnableValueProp("enable-value-prop", cl::Hidden, cl::init(false));
53
54
Chris Lattnerda8abb02005-09-01 18:44:10 +000055#ifndef NDEBUG
Chris Lattner7944d9d2005-01-12 03:41:21 +000056static cl::opt<bool>
Evan Chenga9c20912006-01-21 02:32:06 +000057ViewISelDAGs("view-isel-dags", cl::Hidden,
58 cl::desc("Pop up a window to show isel dags as they are selected"));
59static cl::opt<bool>
60ViewSchedDAGs("view-sched-dags", cl::Hidden,
61 cl::desc("Pop up a window to show sched dags as they are processed"));
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000062static cl::opt<bool>
63ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
Chris Lattner5bab7852008-01-25 17:24:52 +000064 cl::desc("Pop up a window to show SUnit dags after they are processed"));
Chris Lattner7944d9d2005-01-12 03:41:21 +000065#else
Dan Gohman3e1a7ae2007-08-28 20:32:58 +000066static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0, ViewSUnitDAGs = 0;
Chris Lattner7944d9d2005-01-12 03:41:21 +000067#endif
68
Jim Laskeyeb577ba2006-08-02 12:30:23 +000069//===---------------------------------------------------------------------===//
70///
71/// RegisterScheduler class - Track the registration of instruction schedulers.
72///
73//===---------------------------------------------------------------------===//
74MachinePassRegistry RegisterScheduler::Registry;
75
76//===---------------------------------------------------------------------===//
77///
78/// ISHeuristic command line option for instruction schedulers.
79///
80//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +000081static cl::opt<RegisterScheduler::FunctionPassCtor, false,
82 RegisterPassParser<RegisterScheduler> >
83ISHeuristic("pre-RA-sched",
84 cl::init(&createDefaultScheduler),
85 cl::desc("Instruction schedulers available (before register"
86 " allocation):"));
Jim Laskey13ec7022006-08-01 14:21:23 +000087
Dan Gohman844731a2008-05-13 00:00:25 +000088static RegisterScheduler
89defaultListDAGScheduler("default", " Best scheduler for the target",
90 createDefaultScheduler);
Evan Cheng4ef10862006-01-23 07:01:07 +000091
Evan Cheng5c807602008-02-26 02:33:44 +000092namespace { struct SDISelAsmOperandInfo; }
Chris Lattnerbf996f12007-04-30 17:29:31 +000093
Dan Gohman1d685a42008-06-07 02:02:36 +000094/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
95/// insertvalue or extractvalue indices that identify a member, return
96/// the linearized index of the start of the member.
97///
98static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
99 const unsigned *Indices,
100 const unsigned *IndicesEnd,
101 unsigned CurIndex = 0) {
102 // Base case: We're done.
103 if (Indices == IndicesEnd)
104 return CurIndex;
105
106 // Otherwise we need to recurse. A non-negative value is used to
107 // indicate the final result value; a negative value carries the
108 // complemented position to continue the search.
109 CurIndex = ~CurIndex;
110
Chris Lattnerf899fce2008-04-27 23:48:12 +0000111 // Given a struct type, recursively traverse the elements.
112 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
113 for (StructType::element_iterator EI = STy->element_begin(),
Dan Gohman1d685a42008-06-07 02:02:36 +0000114 EE = STy->element_end();
115 EI != EE; ++EI) {
116 CurIndex = ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd,
117 ~CurIndex);
118 if ((int)CurIndex >= 0)
119 return CurIndex;
120 }
121 }
122 // Given an array type, recursively traverse the elements.
123 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
124 const Type *EltTy = ATy->getElementType();
125 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
126 CurIndex = ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd,
127 ~CurIndex);
128 if ((int)CurIndex >= 0)
129 return CurIndex;
130 }
131 }
132 // We haven't found the type we're looking for, so keep searching.
133 return CurIndex;
134}
135
136/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
137/// MVTs that represent all the individual underlying
138/// non-aggregate types that comprise it.
139///
140/// If Offsets is non-null, it points to a vector to be filled in
141/// with the in-memory offsets of each of the individual values.
142///
143static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
144 SmallVectorImpl<MVT> &ValueVTs,
145 SmallVectorImpl<uint64_t> *Offsets = 0,
146 uint64_t StartingOffset = 0) {
147 // Given a struct type, recursively traverse the elements.
148 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
149 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
150 for (StructType::element_iterator EB = STy->element_begin(),
151 EI = EB,
152 EE = STy->element_end();
153 EI != EE; ++EI)
154 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
155 StartingOffset + SL->getElementOffset(EI - EB));
Chris Lattnerf899fce2008-04-27 23:48:12 +0000156 return;
Dan Gohman23ce5022008-04-25 18:27:55 +0000157 }
Chris Lattnerf899fce2008-04-27 23:48:12 +0000158 // Given an array type, recursively traverse the elements.
159 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
160 const Type *EltTy = ATy->getElementType();
Dan Gohman1d685a42008-06-07 02:02:36 +0000161 uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000162 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
Dan Gohman1d685a42008-06-07 02:02:36 +0000163 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
164 StartingOffset + i * EltSize);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000165 return;
166 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000167 // Base case: we can get an MVT for this LLVM IR type.
Chris Lattnerf899fce2008-04-27 23:48:12 +0000168 ValueVTs.push_back(TLI.getValueType(Ty));
Dan Gohman1d685a42008-06-07 02:02:36 +0000169 if (Offsets)
170 Offsets->push_back(StartingOffset);
Chris Lattnerf899fce2008-04-27 23:48:12 +0000171}
Dan Gohman23ce5022008-04-25 18:27:55 +0000172
Chris Lattnerf899fce2008-04-27 23:48:12 +0000173namespace {
Dan Gohman0fe00902008-04-28 18:10:39 +0000174 /// RegsForValue - This struct represents the registers (physical or virtual)
175 /// that a particular set of values is assigned, and the type information about
176 /// the value. The most common situation is to represent one value at a time,
177 /// but struct or array values are handled element-wise as multiple values.
178 /// The splitting of aggregates is performed recursively, so that we never
179 /// have aggregate-typed registers. The values at this point do not necessarily
180 /// have legal types, so each value may require one or more registers of some
181 /// legal type.
182 ///
Chris Lattner95255282006-06-28 23:17:24 +0000183 struct VISIBILITY_HIDDEN RegsForValue {
Dan Gohman23ce5022008-04-25 18:27:55 +0000184 /// TLI - The TargetLowering object.
Dan Gohman0fe00902008-04-28 18:10:39 +0000185 ///
Dan Gohman23ce5022008-04-25 18:27:55 +0000186 const TargetLowering *TLI;
187
Dan Gohman0fe00902008-04-28 18:10:39 +0000188 /// ValueVTs - The value types of the values, which may not be legal, and
189 /// may need be promoted or synthesized from one or more registers.
190 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000191 SmallVector<MVT, 4> ValueVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000192
Dan Gohman0fe00902008-04-28 18:10:39 +0000193 /// RegVTs - The value types of the registers. This is the same size as
194 /// ValueVTs and it records, for each value, what the type of the assigned
195 /// register or registers are. (Individual values are never synthesized
196 /// from more than one type of register.)
197 ///
198 /// With virtual registers, the contents of RegVTs is redundant with TLI's
199 /// getRegisterType member function, however when with physical registers
200 /// it is necessary to have a separate record of the types.
Chris Lattner864635a2006-02-22 22:37:12 +0000201 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000202 SmallVector<MVT, 4> RegVTs;
Chris Lattner864635a2006-02-22 22:37:12 +0000203
Dan Gohman0fe00902008-04-28 18:10:39 +0000204 /// Regs - This list holds the registers assigned to the values.
205 /// Each legal or promoted value requires one register, and each
206 /// expanded value requires multiple registers.
207 ///
208 SmallVector<unsigned, 4> Regs;
Chris Lattner864635a2006-02-22 22:37:12 +0000209
Dan Gohman23ce5022008-04-25 18:27:55 +0000210 RegsForValue() : TLI(0) {}
Chris Lattner864635a2006-02-22 22:37:12 +0000211
Dan Gohman23ce5022008-04-25 18:27:55 +0000212 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000213 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000214 MVT regvt, MVT valuevt)
Dan Gohman0fe00902008-04-28 18:10:39 +0000215 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000216 RegsForValue(const TargetLowering &tli,
Chris Lattnerb606dba2008-04-28 06:44:42 +0000217 const SmallVector<unsigned, 4> &regs,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000218 const SmallVector<MVT, 4> &regvts,
219 const SmallVector<MVT, 4> &valuevts)
Dan Gohman0fe00902008-04-28 18:10:39 +0000220 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
Dan Gohman23ce5022008-04-25 18:27:55 +0000221 RegsForValue(const TargetLowering &tli,
222 unsigned Reg, const Type *Ty) : TLI(&tli) {
223 ComputeValueVTs(tli, Ty, ValueVTs);
224
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000225 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000226 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +0000227 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000228 MVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000229 for (unsigned i = 0; i != NumRegs; ++i)
230 Regs.push_back(Reg + i);
231 RegVTs.push_back(RegisterVT);
232 Reg += NumRegs;
233 }
Chris Lattner864635a2006-02-22 22:37:12 +0000234 }
235
Chris Lattner41f62592008-04-29 04:29:54 +0000236 /// append - Add the specified values to this one.
237 void append(const RegsForValue &RHS) {
238 TLI = RHS.TLI;
239 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
240 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
241 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
242 }
243
244
Chris Lattner864635a2006-02-22 22:37:12 +0000245 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Dan Gohman23ce5022008-04-25 18:27:55 +0000246 /// this value and returns the result as a ValueVTs value. This uses
Chris Lattner864635a2006-02-22 22:37:12 +0000247 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000248 /// If the Flag pointer is NULL, no flag is used.
Chris Lattner864635a2006-02-22 22:37:12 +0000249 SDOperand getCopyFromRegs(SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000250 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000251
252 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
253 /// specified value into the registers specified by this object. This uses
254 /// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000255 /// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000256 void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +0000257 SDOperand &Chain, SDOperand *Flag) const;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000258
259 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
260 /// operand list. This adds the code marker and includes the number of
261 /// values added into it.
262 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +0000263 std::vector<SDOperand> &Ops) const;
Chris Lattner864635a2006-02-22 22:37:12 +0000264 };
265}
Evan Cheng4ef10862006-01-23 07:01:07 +0000266
Chris Lattner1c08c712005-01-07 07:47:53 +0000267namespace llvm {
268 //===--------------------------------------------------------------------===//
Jim Laskey9373beb2006-08-01 19:14:14 +0000269 /// createDefaultScheduler - This creates an instruction scheduler appropriate
270 /// for the target.
271 ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
272 SelectionDAG *DAG,
273 MachineBasicBlock *BB) {
274 TargetLowering &TLI = IS->getTargetLowering();
275
276 if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
277 return createTDListDAGScheduler(IS, DAG, BB);
278 } else {
279 assert(TLI.getSchedulingPreference() ==
280 TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
281 return createBURRListDAGScheduler(IS, DAG, BB);
282 }
283 }
284
285
286 //===--------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +0000287 /// FunctionLoweringInfo - This contains information that is global to a
288 /// function that is used when lowering a region of the function.
Chris Lattnerf26bc8e2005-01-08 19:52:31 +0000289 class FunctionLoweringInfo {
290 public:
Chris Lattner1c08c712005-01-07 07:47:53 +0000291 TargetLowering &TLI;
292 Function &Fn;
293 MachineFunction &MF;
Chris Lattner84bc5422007-12-31 04:13:23 +0000294 MachineRegisterInfo &RegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000295
296 FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
297
298 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
299 std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
300
301 /// ValueMap - Since we emit code for the function a basic block at a time,
302 /// we must remember which virtual registers hold the values for
303 /// cross-basic-block values.
Chris Lattner9f24ad72007-02-04 01:35:11 +0000304 DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000305
306 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
307 /// the entry block. This allows the allocas to be efficiently referenced
308 /// anywhere in the function.
309 std::map<const AllocaInst*, int> StaticAllocaMap;
310
Duncan Sandsf4070822007-06-15 19:04:19 +0000311#ifndef NDEBUG
312 SmallSet<Instruction*, 8> CatchInfoLost;
313 SmallSet<Instruction*, 8> CatchInfoFound;
314#endif
315
Duncan Sands83ec4b62008-06-06 12:08:01 +0000316 unsigned MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000317 return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +0000318 }
Chris Lattner571e4342006-10-27 21:36:01 +0000319
320 /// isExportedInst - Return true if the specified value is an instruction
321 /// exported from its block.
322 bool isExportedInst(const Value *V) {
323 return ValueMap.count(V);
324 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000325
Chris Lattner3c384492006-03-16 19:51:18 +0000326 unsigned CreateRegForValue(const Value *V);
327
Chris Lattner1c08c712005-01-07 07:47:53 +0000328 unsigned InitializeRegForValue(const Value *V) {
329 unsigned &R = ValueMap[V];
330 assert(R == 0 && "Already initialized this value register!");
331 return R = CreateRegForValue(V);
332 }
Chris Lattneread0d882008-06-17 06:09:18 +0000333
334 struct LiveOutInfo {
335 unsigned NumSignBits;
336 APInt KnownOne, KnownZero;
337 LiveOutInfo() : NumSignBits(0) {}
338 };
339
340 /// LiveOutRegInfo - Information about live out vregs, indexed by their
341 /// register number offset by 'FirstVirtualRegister'.
342 std::vector<LiveOutInfo> LiveOutRegInfo;
Chris Lattner1c08c712005-01-07 07:47:53 +0000343 };
344}
345
Duncan Sandscf26d7c2007-07-04 20:52:51 +0000346/// isSelector - Return true if this instruction is a call to the
347/// eh.selector intrinsic.
348static bool isSelector(Instruction *I) {
Duncan Sandsf4070822007-06-15 19:04:19 +0000349 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000350 return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
351 II->getIntrinsicID() == Intrinsic::eh_selector_i64);
Duncan Sandsf4070822007-06-15 19:04:19 +0000352 return false;
353}
354
Chris Lattner1c08c712005-01-07 07:47:53 +0000355/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Nate Begemanf15485a2006-03-27 01:32:24 +0000356/// PHI nodes or outside of the basic block that defines it, or used by a
Andrew Lenharthab0b9492008-02-21 06:45:13 +0000357/// switch or atomic instruction, which may expand to multiple basic blocks.
Chris Lattner1c08c712005-01-07 07:47:53 +0000358static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
359 if (isa<PHINode>(I)) return true;
360 BasicBlock *BB = I->getParent();
361 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000362 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
Chris Lattner571e4342006-10-27 21:36:01 +0000363 // FIXME: Remove switchinst special case.
Nate Begemanf15485a2006-03-27 01:32:24 +0000364 isa<SwitchInst>(*UI))
Chris Lattner1c08c712005-01-07 07:47:53 +0000365 return true;
366 return false;
367}
368
Chris Lattnerbf209482005-10-30 19:42:35 +0000369/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
Nate Begemanf15485a2006-03-27 01:32:24 +0000370/// entry block, return true. This includes arguments used by switches, since
371/// the switch may expand into multiple basic blocks.
Chris Lattnerbf209482005-10-30 19:42:35 +0000372static bool isOnlyUsedInEntryBlock(Argument *A) {
373 BasicBlock *Entry = A->getParent()->begin();
374 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
Nate Begemanf15485a2006-03-27 01:32:24 +0000375 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
Chris Lattnerbf209482005-10-30 19:42:35 +0000376 return false; // Use not in entry block.
377 return true;
378}
379
Chris Lattner1c08c712005-01-07 07:47:53 +0000380FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000381 Function &fn, MachineFunction &mf)
Chris Lattner84bc5422007-12-31 04:13:23 +0000382 : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000383
Chris Lattnerbf209482005-10-30 19:42:35 +0000384 // Create a vreg for each argument register that is not dead and is used
385 // outside of the entry block for the function.
386 for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
387 AI != E; ++AI)
388 if (!isOnlyUsedInEntryBlock(AI))
389 InitializeRegForValue(AI);
390
Chris Lattner1c08c712005-01-07 07:47:53 +0000391 // Initialize the mapping of values to registers. This is only set up for
392 // instruction values that are used outside of the block that defines
393 // them.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000394 Function::iterator BB = Fn.begin(), EB = Fn.end();
Chris Lattner1c08c712005-01-07 07:47:53 +0000395 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
396 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Reid Spencerb83eb642006-10-20 07:07:24 +0000397 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000398 const Type *Ty = AI->getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +0000399 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Nate Begemanae232e72005-11-06 09:00:38 +0000400 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +0000401 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Nate Begemanae232e72005-11-06 09:00:38 +0000402 AI->getAlignment());
Chris Lattnera8217e32005-05-13 23:14:17 +0000403
Reid Spencerb83eb642006-10-20 07:07:24 +0000404 TySize *= CUI->getZExtValue(); // Get total allocated size.
Chris Lattnerd222f6a2005-10-18 22:14:06 +0000405 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
Chris Lattner1c08c712005-01-07 07:47:53 +0000406 StaticAllocaMap[AI] =
Chris Lattner6266c182007-04-25 04:08:28 +0000407 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner1c08c712005-01-07 07:47:53 +0000408 }
409
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000410 for (; BB != EB; ++BB)
411 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +0000412 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
413 if (!isa<AllocaInst>(I) ||
414 !StaticAllocaMap.count(cast<AllocaInst>(I)))
415 InitializeRegForValue(I);
416
417 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
418 // also creates the initial PHI MachineInstrs, though none of the input
419 // operands are populated.
Jeff Cohen2aeaf4e2005-10-01 03:57:14 +0000420 for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000421 MachineBasicBlock *MBB = new MachineBasicBlock(BB);
422 MBBMap[BB] = MBB;
423 MF.getBasicBlockList().push_back(MBB);
424
425 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
426 // appropriate.
427 PHINode *PN;
Chris Lattner8c494ab2006-10-27 23:50:33 +0000428 for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
429 if (PN->use_empty()) continue;
430
Duncan Sands83ec4b62008-06-06 12:08:01 +0000431 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +0000432 unsigned NumRegisters = TLI.getNumRegisters(VT);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000433 unsigned PHIReg = ValueMap[PN];
434 assert(PHIReg && "PHI node does not have an assigned virtual register!");
Evan Chengc0f64ff2006-11-27 23:37:22 +0000435 const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
Dan Gohmanb9f10192007-06-21 14:42:22 +0000436 for (unsigned i = 0; i != NumRegisters; ++i)
Evan Chengc0f64ff2006-11-27 23:37:22 +0000437 BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000438 }
Chris Lattner1c08c712005-01-07 07:47:53 +0000439 }
440}
441
Chris Lattner3c384492006-03-16 19:51:18 +0000442/// CreateRegForValue - Allocate the appropriate number of virtual registers of
443/// the correctly promoted or expanded types. Assign these registers
444/// consecutive vreg numbers and return the first assigned number.
Dan Gohman10a6b7a2008-04-28 18:19:43 +0000445///
446/// In the case that the given value has struct or array type, this function
447/// will assign registers for each member or element.
448///
Chris Lattner3c384492006-03-16 19:51:18 +0000449unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000450 SmallVector<MVT, 4> ValueVTs;
Chris Lattnerb606dba2008-04-28 06:44:42 +0000451 ComputeValueVTs(TLI, V->getType(), ValueVTs);
Bill Wendling95b39552007-04-24 21:13:23 +0000452
Dan Gohman23ce5022008-04-25 18:27:55 +0000453 unsigned FirstReg = 0;
Dan Gohmanb20d4f82008-04-28 17:42:03 +0000454 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000455 MVT ValueVT = ValueVTs[Value];
456 MVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohman8c8c5fc2007-06-27 14:34:07 +0000457
Chris Lattnerb606dba2008-04-28 06:44:42 +0000458 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
Dan Gohman23ce5022008-04-25 18:27:55 +0000459 for (unsigned i = 0; i != NumRegs; ++i) {
460 unsigned R = MakeReg(RegisterVT);
461 if (!FirstReg) FirstReg = R;
462 }
463 }
464 return FirstReg;
Chris Lattner3c384492006-03-16 19:51:18 +0000465}
Chris Lattner1c08c712005-01-07 07:47:53 +0000466
467//===----------------------------------------------------------------------===//
468/// SelectionDAGLowering - This is the common target-independent lowering
469/// implementation that is parameterized by a TargetLowering object.
470/// Also, targets can overload any lowering method.
471///
472namespace llvm {
473class SelectionDAGLowering {
474 MachineBasicBlock *CurMBB;
475
Chris Lattner0da331f2007-02-04 01:31:47 +0000476 DenseMap<const Value*, SDOperand> NodeMap;
Chris Lattner1c08c712005-01-07 07:47:53 +0000477
Chris Lattnerd3948112005-01-17 22:19:26 +0000478 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
479 /// them up and then emit token factor nodes when possible. This allows us to
480 /// get simple disambiguation between loads without worrying about alias
481 /// analysis.
482 std::vector<SDOperand> PendingLoads;
483
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000484 /// PendingExports - CopyToReg nodes that copy values to virtual registers
485 /// for export to other blocks need to be emitted before any terminator
486 /// instruction, but they have no other ordering requirements. We bunch them
487 /// up and the emit a single tokenfactor for them just before terminator
488 /// instructions.
489 std::vector<SDOperand> PendingExports;
490
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000491 /// Case - A struct to record the Value for a switch case, and the
492 /// case's target basic block.
493 struct Case {
494 Constant* Low;
495 Constant* High;
496 MachineBasicBlock* BB;
497
498 Case() : Low(0), High(0), BB(0) { }
499 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
500 Low(low), High(high), BB(bb) { }
501 uint64_t size() const {
502 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
503 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
504 return (rHigh - rLow + 1ULL);
505 }
506 };
507
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000508 struct CaseBits {
509 uint64_t Mask;
510 MachineBasicBlock* BB;
511 unsigned Bits;
512
513 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
514 Mask(mask), BB(bb), Bits(bits) { }
515 };
516
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000517 typedef std::vector<Case> CaseVector;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000518 typedef std::vector<CaseBits> CaseBitsVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000519 typedef CaseVector::iterator CaseItr;
520 typedef std::pair<CaseItr, CaseItr> CaseRange;
Nate Begemanf15485a2006-03-27 01:32:24 +0000521
522 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
523 /// of conditional branches.
524 struct CaseRec {
525 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
526 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
527
528 /// CaseBB - The MBB in which to emit the compare and branch
529 MachineBasicBlock *CaseBB;
530 /// LT, GE - If nonzero, we know the current case value must be less-than or
531 /// greater-than-or-equal-to these Constants.
532 Constant *LT;
533 Constant *GE;
534 /// Range - A pair of iterators representing the range of case values to be
535 /// processed at this point in the binary search tree.
536 CaseRange Range;
537 };
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000538
539 typedef std::vector<CaseRec> CaseRecVector;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000540
541 /// The comparison function for sorting the switch case values in the vector.
542 /// WARNING: Case ranges should be disjoint!
Nate Begemanf15485a2006-03-27 01:32:24 +0000543 struct CaseCmp {
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000544 bool operator () (const Case& C1, const Case& C2) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000545 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
546 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
547 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
548 return CI1->getValue().slt(CI2->getValue());
Nate Begemanf15485a2006-03-27 01:32:24 +0000549 }
550 };
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000551
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000552 struct CaseBitsCmp {
553 bool operator () (const CaseBits& C1, const CaseBits& C2) {
554 return C1.Bits > C2.Bits;
555 }
556 };
557
Anton Korobeynikov5502bf62007-04-04 21:14:49 +0000558 unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
Nate Begemanf15485a2006-03-27 01:32:24 +0000559
Chris Lattner1c08c712005-01-07 07:47:53 +0000560public:
561 // TLI - This is information that describes the available target features we
562 // need for lowering. This indicates when operations are unavailable,
563 // implemented with a libcall, etc.
564 TargetLowering &TLI;
565 SelectionDAG &DAG;
Owen Andersona69571c2006-05-03 01:29:57 +0000566 const TargetData *TD;
Dan Gohman5f43f922007-08-27 16:26:13 +0000567 AliasAnalysis &AA;
Chris Lattner1c08c712005-01-07 07:47:53 +0000568
Nate Begemanf15485a2006-03-27 01:32:24 +0000569 /// SwitchCases - Vector of CaseBlock structures used to communicate
570 /// SwitchInst code generation information.
571 std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000572 /// JTCases - Vector of JumpTable structures used to communicate
573 /// SwitchInst code generation information.
574 std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000575 std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
Nate Begemanf15485a2006-03-27 01:32:24 +0000576
Chris Lattner1c08c712005-01-07 07:47:53 +0000577 /// FuncInfo - Information about the function as a whole.
578 ///
579 FunctionLoweringInfo &FuncInfo;
Gordon Henriksence224772008-01-07 01:30:38 +0000580
581 /// GCI - Garbage collection metadata for the function.
582 CollectorMetadata *GCI;
Chris Lattner1c08c712005-01-07 07:47:53 +0000583
584 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Dan Gohman5f43f922007-08-27 16:26:13 +0000585 AliasAnalysis &aa,
Gordon Henriksence224772008-01-07 01:30:38 +0000586 FunctionLoweringInfo &funcinfo,
587 CollectorMetadata *gci)
Dan Gohman5f43f922007-08-27 16:26:13 +0000588 : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
Gordon Henriksence224772008-01-07 01:30:38 +0000589 FuncInfo(funcinfo), GCI(gci) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000590 }
591
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000592 /// getRoot - Return the current virtual root of the Selection DAG,
593 /// flushing any PendingLoad items. This must be done before emitting
594 /// a store or any other node that may need to be ordered after any
595 /// prior load instructions.
Chris Lattnera651cf62005-01-17 19:43:36 +0000596 ///
597 SDOperand getRoot() {
Chris Lattnerd3948112005-01-17 22:19:26 +0000598 if (PendingLoads.empty())
599 return DAG.getRoot();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000600
Chris Lattnerd3948112005-01-17 22:19:26 +0000601 if (PendingLoads.size() == 1) {
602 SDOperand Root = PendingLoads[0];
603 DAG.setRoot(Root);
604 PendingLoads.clear();
605 return Root;
606 }
607
608 // Otherwise, we have to make a token factor node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000609 SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
610 &PendingLoads[0], PendingLoads.size());
Chris Lattnerd3948112005-01-17 22:19:26 +0000611 PendingLoads.clear();
612 DAG.setRoot(Root);
613 return Root;
Chris Lattnera651cf62005-01-17 19:43:36 +0000614 }
615
Dan Gohman86e1ebf2008-03-27 19:56:19 +0000616 /// getControlRoot - Similar to getRoot, but instead of flushing all the
617 /// PendingLoad items, flush all the PendingExports items. It is necessary
618 /// to do this before emitting a terminator instruction.
619 ///
620 SDOperand getControlRoot() {
621 SDOperand Root = DAG.getRoot();
622
623 if (PendingExports.empty())
624 return Root;
625
626 // Turn all of the CopyToReg chains into one factored node.
627 if (Root.getOpcode() != ISD::EntryToken) {
628 unsigned i = 0, e = PendingExports.size();
629 for (; i != e; ++i) {
630 assert(PendingExports[i].Val->getNumOperands() > 1);
631 if (PendingExports[i].Val->getOperand(0) == Root)
632 break; // Don't add the root if we already indirectly depend on it.
633 }
634
635 if (i == e)
636 PendingExports.push_back(Root);
637 }
638
639 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
640 &PendingExports[0],
641 PendingExports.size());
642 PendingExports.clear();
643 DAG.setRoot(Root);
644 return Root;
645 }
646
647 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
Chris Lattner571e4342006-10-27 21:36:01 +0000648
Chris Lattner1c08c712005-01-07 07:47:53 +0000649 void visit(Instruction &I) { visit(I.getOpcode(), I); }
650
651 void visit(unsigned Opcode, User &I) {
Chris Lattner1e7aa5c2006-11-10 04:41:34 +0000652 // Note: this doesn't use InstVisitor, because it has to work with
653 // ConstantExpr's in addition to instructions.
Chris Lattner1c08c712005-01-07 07:47:53 +0000654 switch (Opcode) {
655 default: assert(0 && "Unknown instruction type encountered!");
656 abort();
657 // Build the switch statement using the Instruction.def file.
658#define HANDLE_INST(NUM, OPCODE, CLASS) \
659 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
660#include "llvm/Instruction.def"
661 }
662 }
663
664 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
665
Chris Lattner199862b2006-03-16 19:57:50 +0000666 SDOperand getValue(const Value *V);
Chris Lattner1c08c712005-01-07 07:47:53 +0000667
Chris Lattner0da331f2007-02-04 01:31:47 +0000668 void setValue(const Value *V, SDOperand NewN) {
Chris Lattner1c08c712005-01-07 07:47:53 +0000669 SDOperand &N = NodeMap[V];
670 assert(N.Val == 0 && "Already set a value for this node!");
Chris Lattner0da331f2007-02-04 01:31:47 +0000671 N = NewN;
Chris Lattner1c08c712005-01-07 07:47:53 +0000672 }
Chris Lattner4e4b5762006-02-01 18:59:47 +0000673
Evan Cheng5c807602008-02-26 02:33:44 +0000674 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnere7cf56a2007-04-30 21:11:17 +0000675 std::set<unsigned> &OutputRegs,
676 std::set<unsigned> &InputRegs);
Nate Begemanf15485a2006-03-27 01:32:24 +0000677
Chris Lattner571e4342006-10-27 21:36:01 +0000678 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
679 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
680 unsigned Opc);
Chris Lattner8c494ab2006-10-27 23:50:33 +0000681 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Chris Lattner571e4342006-10-27 21:36:01 +0000682 void ExportFromCurrentBlock(Value *V);
Duncan Sands6f74b482007-12-19 09:48:52 +0000683 void LowerCallTo(CallSite CS, SDOperand Callee, bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +0000684 MachineBasicBlock *LandingPad = NULL);
Duncan Sandsdc024672007-11-27 13:23:08 +0000685
Chris Lattner1c08c712005-01-07 07:47:53 +0000686 // Terminator instructions.
687 void visitRet(ReturnInst &I);
688 void visitBr(BranchInst &I);
Nate Begemanf15485a2006-03-27 01:32:24 +0000689 void visitSwitch(SwitchInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000690 void visitUnreachable(UnreachableInst &I) { /* noop */ }
691
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000692 // Helpers for visitSwitch
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000693 bool handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000694 CaseRecVector& WorkList,
695 Value* SV,
696 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000697 bool handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000698 CaseRecVector& WorkList,
699 Value* SV,
700 MachineBasicBlock* Default);
Anton Korobeynikovdd433212007-03-27 12:05:48 +0000701 bool handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +0000702 CaseRecVector& WorkList,
703 Value* SV,
704 MachineBasicBlock* Default);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000705 bool handleBitTestsSwitchCase(CaseRec& CR,
706 CaseRecVector& WorkList,
707 Value* SV,
708 MachineBasicBlock* Default);
Nate Begemanf15485a2006-03-27 01:32:24 +0000709 void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
Anton Korobeynikov4198c582007-04-09 12:31:58 +0000710 void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
711 void visitBitTestCase(MachineBasicBlock* NextMBB,
712 unsigned Reg,
713 SelectionDAGISel::BitTestCase &B);
Nate Begeman37efe672006-04-22 18:53:45 +0000714 void visitJumpTable(SelectionDAGISel::JumpTable &JT);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +0000715 void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
716 SelectionDAGISel::JumpTableHeader &JTH);
Nate Begemanf15485a2006-03-27 01:32:24 +0000717
Chris Lattner1c08c712005-01-07 07:47:53 +0000718 // These all get lowered before this pass.
Jim Laskeyb180aa12007-02-21 22:53:45 +0000719 void visitInvoke(InvokeInst &I);
720 void visitUnwind(UnwindInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000721
Dan Gohman7f321562007-06-25 16:23:39 +0000722 void visitBinary(User &I, unsigned OpCode);
Nate Begemane21ea612005-11-18 07:42:56 +0000723 void visitShift(User &I, unsigned Opcode);
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000724 void visitAdd(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000725 if (I.getType()->isFPOrFPVector())
726 visitBinary(I, ISD::FADD);
Reid Spencer1628cec2006-10-26 06:15:43 +0000727 else
Dan Gohman7f321562007-06-25 16:23:39 +0000728 visitBinary(I, ISD::ADD);
Chris Lattner01b3d732005-09-28 22:28:18 +0000729 }
Chris Lattnerb9fccc42005-04-02 05:04:50 +0000730 void visitSub(User &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000731 void visitMul(User &I) {
Dan Gohman7f321562007-06-25 16:23:39 +0000732 if (I.getType()->isFPOrFPVector())
733 visitBinary(I, ISD::FMUL);
Reid Spencer1628cec2006-10-26 06:15:43 +0000734 else
Dan Gohman7f321562007-06-25 16:23:39 +0000735 visitBinary(I, ISD::MUL);
Chris Lattner01b3d732005-09-28 22:28:18 +0000736 }
Dan Gohman7f321562007-06-25 16:23:39 +0000737 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
738 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
739 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
740 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
741 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
742 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
743 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
744 void visitOr (User &I) { visitBinary(I, ISD::OR); }
745 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
Reid Spencer24d6da52007-01-21 00:29:26 +0000746 void visitShl (User &I) { visitShift(I, ISD::SHL); }
Reid Spencer3822ff52006-11-08 06:47:33 +0000747 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
748 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
Reid Spencer45fb3f32006-11-20 01:22:35 +0000749 void visitICmp(User &I);
750 void visitFCmp(User &I);
Nate Begemanb43e9c12008-05-12 19:40:03 +0000751 void visitVICmp(User &I);
752 void visitVFCmp(User &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000753 // Visit the conversion instructions
754 void visitTrunc(User &I);
755 void visitZExt(User &I);
756 void visitSExt(User &I);
757 void visitFPTrunc(User &I);
758 void visitFPExt(User &I);
759 void visitFPToUI(User &I);
760 void visitFPToSI(User &I);
761 void visitUIToFP(User &I);
762 void visitSIToFP(User &I);
763 void visitPtrToInt(User &I);
764 void visitIntToPtr(User &I);
765 void visitBitCast(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000766
Chris Lattner2bbd8102006-03-29 00:11:43 +0000767 void visitExtractElement(User &I);
768 void visitInsertElement(User &I);
Chris Lattner3e104b12006-04-08 04:15:24 +0000769 void visitShuffleVector(User &I);
Chris Lattnerc7029802006-03-18 01:44:44 +0000770
Dan Gohman1d685a42008-06-07 02:02:36 +0000771 void visitExtractValue(ExtractValueInst &I);
772 void visitInsertValue(InsertValueInst &I);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000773
Chris Lattner1c08c712005-01-07 07:47:53 +0000774 void visitGetElementPtr(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000775 void visitSelect(User &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000776
777 void visitMalloc(MallocInst &I);
778 void visitFree(FreeInst &I);
779 void visitAlloca(AllocaInst &I);
780 void visitLoad(LoadInst &I);
781 void visitStore(StoreInst &I);
782 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
783 void visitCall(CallInst &I);
Duncan Sandsfd7b3262007-12-17 18:08:19 +0000784 void visitInlineAsm(CallSite CS);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +0000785 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Chris Lattner0eade312006-03-24 02:22:33 +0000786 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
Chris Lattner1c08c712005-01-07 07:47:53 +0000787
Chris Lattner1c08c712005-01-07 07:47:53 +0000788 void visitVAStart(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000789 void visitVAArg(VAArgInst &I);
790 void visitVAEnd(CallInst &I);
791 void visitVACopy(CallInst &I);
Chris Lattner1c08c712005-01-07 07:47:53 +0000792
Dan Gohmanef5d1942008-03-11 21:11:25 +0000793 void visitGetResult(GetResultInst &I);
Devang Patel40a04212008-02-19 22:15:16 +0000794
Chris Lattner1c08c712005-01-07 07:47:53 +0000795 void visitUserOp1(Instruction &I) {
796 assert(0 && "UserOp1 should not exist at instruction selection time!");
797 abort();
798 }
799 void visitUserOp2(Instruction &I) {
800 assert(0 && "UserOp2 should not exist at instruction selection time!");
801 abort();
802 }
Mon P Wang63307c32008-05-05 19:05:59 +0000803
804private:
805 inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
806
Chris Lattner1c08c712005-01-07 07:47:53 +0000807};
808} // end namespace llvm
809
Dan Gohman6183f782007-07-05 20:12:34 +0000810
Duncan Sandsb988bac2008-02-11 20:58:28 +0000811/// getCopyFromParts - Create a value that contains the specified legal parts
812/// combined into the value they represent. If the parts combine to a type
813/// larger then ValueVT then AssertOp can be used to specify whether the extra
814/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
Chris Lattner4468c1f2008-03-09 09:38:46 +0000815/// (ISD::AssertSext).
Dan Gohman6183f782007-07-05 20:12:34 +0000816static SDOperand getCopyFromParts(SelectionDAG &DAG,
817 const SDOperand *Parts,
818 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000819 MVT PartVT,
820 MVT ValueVT,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000821 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000822 assert(NumParts > 0 && "No parts to assemble!");
823 TargetLowering &TLI = DAG.getTargetLoweringInfo();
824 SDOperand Val = Parts[0];
Dan Gohman6183f782007-07-05 20:12:34 +0000825
Duncan Sands014e04a2008-02-12 20:46:31 +0000826 if (NumParts > 1) {
827 // Assemble the value from multiple parts.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000828 if (!ValueVT.isVector()) {
829 unsigned PartBits = PartVT.getSizeInBits();
830 unsigned ValueBits = ValueVT.getSizeInBits();
Dan Gohman6183f782007-07-05 20:12:34 +0000831
Duncan Sands014e04a2008-02-12 20:46:31 +0000832 // Assemble the power of 2 part.
833 unsigned RoundParts = NumParts & (NumParts - 1) ?
834 1 << Log2_32(NumParts) : NumParts;
835 unsigned RoundBits = PartBits * RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000836 MVT RoundVT = RoundBits == ValueBits ?
837 ValueVT : MVT::getIntegerVT(RoundBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000838 SDOperand Lo, Hi;
839
840 if (RoundParts > 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000841 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sands014e04a2008-02-12 20:46:31 +0000842 Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
843 Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
844 PartVT, HalfVT);
Dan Gohman6183f782007-07-05 20:12:34 +0000845 } else {
Duncan Sands014e04a2008-02-12 20:46:31 +0000846 Lo = Parts[0];
847 Hi = Parts[1];
Dan Gohman6183f782007-07-05 20:12:34 +0000848 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000849 if (TLI.isBigEndian())
850 std::swap(Lo, Hi);
851 Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
852
853 if (RoundParts < NumParts) {
854 // Assemble the trailing non-power-of-2 part.
855 unsigned OddParts = NumParts - RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000856 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000857 Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
858
859 // Combine the round and odd parts.
860 Lo = Val;
861 if (TLI.isBigEndian())
862 std::swap(Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000863 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000864 Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
865 Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000866 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands014e04a2008-02-12 20:46:31 +0000867 TLI.getShiftAmountTy()));
868 Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
869 Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
870 }
871 } else {
872 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000873 MVT IntermediateVT, RegisterVT;
Duncan Sands014e04a2008-02-12 20:46:31 +0000874 unsigned NumIntermediates;
875 unsigned NumRegs =
876 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
877 RegisterVT);
Duncan Sands014e04a2008-02-12 20:46:31 +0000878 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +0000879 NumParts = NumRegs; // Silence a compiler warning.
Duncan Sands014e04a2008-02-12 20:46:31 +0000880 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
881 assert(RegisterVT == Parts[0].getValueType() &&
882 "Part type doesn't match part!");
883
884 // Assemble the parts into intermediate operands.
885 SmallVector<SDOperand, 8> Ops(NumIntermediates);
886 if (NumIntermediates == NumParts) {
887 // If the register was not expanded, truncate or copy the value,
888 // as appropriate.
889 for (unsigned i = 0; i != NumParts; ++i)
890 Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
891 PartVT, IntermediateVT);
892 } else if (NumParts > 0) {
893 // If the intermediate type was expanded, build the intermediate operands
894 // from the parts.
895 assert(NumParts % NumIntermediates == 0 &&
896 "Must expand into a divisible number of parts!");
897 unsigned Factor = NumParts / NumIntermediates;
898 for (unsigned i = 0; i != NumIntermediates; ++i)
899 Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
900 PartVT, IntermediateVT);
901 }
902
903 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
904 // operands.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000905 Val = DAG.getNode(IntermediateVT.isVector() ?
Duncan Sands014e04a2008-02-12 20:46:31 +0000906 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
907 ValueVT, &Ops[0], NumIntermediates);
Dan Gohman6183f782007-07-05 20:12:34 +0000908 }
Dan Gohman6183f782007-07-05 20:12:34 +0000909 }
910
Duncan Sands014e04a2008-02-12 20:46:31 +0000911 // There is now one part, held in Val. Correct it to match ValueVT.
912 PartVT = Val.getValueType();
Dan Gohman6183f782007-07-05 20:12:34 +0000913
Duncan Sands014e04a2008-02-12 20:46:31 +0000914 if (PartVT == ValueVT)
915 return Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000916
Duncan Sands83ec4b62008-06-06 12:08:01 +0000917 if (PartVT.isVector()) {
918 assert(ValueVT.isVector() && "Unknown vector conversion!");
Duncan Sands014e04a2008-02-12 20:46:31 +0000919 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +0000920 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000921
Duncan Sands83ec4b62008-06-06 12:08:01 +0000922 if (ValueVT.isVector()) {
923 assert(ValueVT.getVectorElementType() == PartVT &&
924 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +0000925 "Only trivial scalar-to-vector conversions should get here!");
926 return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
927 }
928
Duncan Sands83ec4b62008-06-06 12:08:01 +0000929 if (PartVT.isInteger() &&
930 ValueVT.isInteger()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000931 if (ValueVT.bitsLT(PartVT)) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000932 // For a truncate, see if we have any information to
933 // indicate whether the truncated bits will always be
934 // zero or sign-extension.
935 if (AssertOp != ISD::DELETED_NODE)
936 Val = DAG.getNode(AssertOp, PartVT, Val,
937 DAG.getValueType(ValueVT));
938 return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
939 } else {
940 return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
941 }
942 }
943
Duncan Sands83ec4b62008-06-06 12:08:01 +0000944 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +0000945 if (ValueVT.bitsLT(Val.getValueType()))
Chris Lattner4468c1f2008-03-09 09:38:46 +0000946 // FP_ROUND's are always exact here.
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000947 return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
Chris Lattner4468c1f2008-03-09 09:38:46 +0000948 DAG.getIntPtrConstant(1));
Chris Lattnerd43d85c2008-03-09 07:47:22 +0000949 return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
950 }
Duncan Sands014e04a2008-02-12 20:46:31 +0000951
Duncan Sands83ec4b62008-06-06 12:08:01 +0000952 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Duncan Sands014e04a2008-02-12 20:46:31 +0000953 return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
954
955 assert(0 && "Unknown mismatch!");
Chris Lattnerd27c9912008-03-30 18:22:13 +0000956 return SDOperand();
Dan Gohman6183f782007-07-05 20:12:34 +0000957}
958
Duncan Sandsb988bac2008-02-11 20:58:28 +0000959/// getCopyToParts - Create a series of nodes that contain the specified value
960/// split into legal parts. If the parts contain more bits than Val, then, for
961/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dan Gohman6183f782007-07-05 20:12:34 +0000962static void getCopyToParts(SelectionDAG &DAG,
963 SDOperand Val,
964 SDOperand *Parts,
965 unsigned NumParts,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000966 MVT PartVT,
Duncan Sandsb988bac2008-02-11 20:58:28 +0000967 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohman25ac7e82007-08-10 14:59:38 +0000968 TargetLowering &TLI = DAG.getTargetLoweringInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000969 MVT PtrVT = TLI.getPointerTy();
970 MVT ValueVT = Val.getValueType();
971 unsigned PartBits = PartVT.getSizeInBits();
Duncan Sands014e04a2008-02-12 20:46:31 +0000972 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
Dan Gohman6183f782007-07-05 20:12:34 +0000973
Duncan Sands014e04a2008-02-12 20:46:31 +0000974 if (!NumParts)
975 return;
976
Duncan Sands83ec4b62008-06-06 12:08:01 +0000977 if (!ValueVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000978 if (PartVT == ValueVT) {
979 assert(NumParts == 1 && "No-op copy with multiple parts!");
980 Parts[0] = Val;
Dan Gohman6183f782007-07-05 20:12:34 +0000981 return;
982 }
983
Duncan Sands83ec4b62008-06-06 12:08:01 +0000984 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000985 // If the parts cover more bits than the value has, promote the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000986 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000987 assert(NumParts == 1 && "Do not know what to promote to!");
Dan Gohman6183f782007-07-05 20:12:34 +0000988 Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000989 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
990 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +0000991 Val = DAG.getNode(ExtendKind, ValueVT, Val);
992 } else {
993 assert(0 && "Unknown mismatch!");
994 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000995 } else if (PartBits == ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +0000996 // Different types of the same size.
997 assert(NumParts == 1 && PartVT != ValueVT);
998 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000999 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001000 // If the parts cover less bits than value has, truncate the value.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001001 if (PartVT.isInteger() && ValueVT.isInteger()) {
1002 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001003 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
Dan Gohman6183f782007-07-05 20:12:34 +00001004 } else {
1005 assert(0 && "Unknown mismatch!");
1006 }
1007 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001008
1009 // The value may have changed - recompute ValueVT.
1010 ValueVT = Val.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001011 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001012 "Failed to tile the value with PartVT!");
1013
1014 if (NumParts == 1) {
1015 assert(PartVT == ValueVT && "Type conversion failed!");
1016 Parts[0] = Val;
1017 return;
1018 }
1019
1020 // Expand the value into multiple parts.
1021 if (NumParts & (NumParts - 1)) {
1022 // The number of parts is not a power of 2. Split off and copy the tail.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001023 assert(PartVT.isInteger() && ValueVT.isInteger() &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001024 "Do not know what to expand to!");
1025 unsigned RoundParts = 1 << Log2_32(NumParts);
1026 unsigned RoundBits = RoundParts * PartBits;
1027 unsigned OddParts = NumParts - RoundParts;
1028 SDOperand OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
1029 DAG.getConstant(RoundBits,
1030 TLI.getShiftAmountTy()));
1031 getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1032 if (TLI.isBigEndian())
1033 // The odd parts were reversed by getCopyToParts - unreverse them.
1034 std::reverse(Parts + RoundParts, Parts + NumParts);
1035 NumParts = RoundParts;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001036 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Duncan Sands014e04a2008-02-12 20:46:31 +00001037 Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1038 }
1039
1040 // The number of parts is a power of 2. Repeatedly bisect the value using
1041 // EXTRACT_ELEMENT.
Duncan Sands25eb0432008-03-12 20:30:08 +00001042 Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001043 MVT::getIntegerVT(ValueVT.getSizeInBits()),
Duncan Sands25eb0432008-03-12 20:30:08 +00001044 Val);
Duncan Sands014e04a2008-02-12 20:46:31 +00001045 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1046 for (unsigned i = 0; i < NumParts; i += StepSize) {
1047 unsigned ThisBits = StepSize * PartBits / 2;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001048 MVT ThisVT = MVT::getIntegerVT (ThisBits);
Duncan Sands25eb0432008-03-12 20:30:08 +00001049 SDOperand &Part0 = Parts[i];
1050 SDOperand &Part1 = Parts[i+StepSize/2];
Duncan Sands014e04a2008-02-12 20:46:31 +00001051
Duncan Sands25eb0432008-03-12 20:30:08 +00001052 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1053 DAG.getConstant(1, PtrVT));
1054 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1055 DAG.getConstant(0, PtrVT));
1056
1057 if (ThisBits == PartBits && ThisVT != PartVT) {
1058 Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1059 Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1060 }
Duncan Sands014e04a2008-02-12 20:46:31 +00001061 }
1062 }
1063
1064 if (TLI.isBigEndian())
1065 std::reverse(Parts, Parts + NumParts);
1066
1067 return;
1068 }
1069
1070 // Vector ValueVT.
1071 if (NumParts == 1) {
1072 if (PartVT != ValueVT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001073 if (PartVT.isVector()) {
Duncan Sands014e04a2008-02-12 20:46:31 +00001074 Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1075 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001076 assert(ValueVT.getVectorElementType() == PartVT &&
1077 ValueVT.getVectorNumElements() == 1 &&
Duncan Sands014e04a2008-02-12 20:46:31 +00001078 "Only trivial vector-to-scalar conversions should get here!");
1079 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1080 DAG.getConstant(0, PtrVT));
1081 }
1082 }
1083
Dan Gohman6183f782007-07-05 20:12:34 +00001084 Parts[0] = Val;
1085 return;
1086 }
1087
1088 // Handle a multi-element vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001089 MVT IntermediateVT, RegisterVT;
Dan Gohman6183f782007-07-05 20:12:34 +00001090 unsigned NumIntermediates;
1091 unsigned NumRegs =
1092 DAG.getTargetLoweringInfo()
1093 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1094 RegisterVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001095 unsigned NumElements = ValueVT.getVectorNumElements();
Dan Gohman6183f782007-07-05 20:12:34 +00001096
1097 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
Evan Cheng35213342008-05-14 20:29:30 +00001098 NumParts = NumRegs; // Silence a compiler warning.
Dan Gohman6183f782007-07-05 20:12:34 +00001099 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1100
1101 // Split the vector into intermediate operands.
1102 SmallVector<SDOperand, 8> Ops(NumIntermediates);
1103 for (unsigned i = 0; i != NumIntermediates; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001104 if (IntermediateVT.isVector())
Dan Gohman6183f782007-07-05 20:12:34 +00001105 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1106 IntermediateVT, Val,
1107 DAG.getConstant(i * (NumElements / NumIntermediates),
Dan Gohman25ac7e82007-08-10 14:59:38 +00001108 PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001109 else
1110 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1111 IntermediateVT, Val,
Dan Gohman25ac7e82007-08-10 14:59:38 +00001112 DAG.getConstant(i, PtrVT));
Dan Gohman6183f782007-07-05 20:12:34 +00001113
1114 // Split the intermediate operands into legal parts.
1115 if (NumParts == NumIntermediates) {
1116 // If the register was not expanded, promote or copy the value,
1117 // as appropriate.
1118 for (unsigned i = 0; i != NumParts; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001119 getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001120 } else if (NumParts > 0) {
1121 // If the intermediate type was expanded, split each the value into
1122 // legal parts.
1123 assert(NumParts % NumIntermediates == 0 &&
1124 "Must expand into a divisible number of parts!");
1125 unsigned Factor = NumParts / NumIntermediates;
1126 for (unsigned i = 0; i != NumIntermediates; ++i)
Dan Gohman532dc2e2007-07-09 20:59:04 +00001127 getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohman6183f782007-07-05 20:12:34 +00001128 }
1129}
1130
1131
Chris Lattner199862b2006-03-16 19:57:50 +00001132SDOperand SelectionDAGLowering::getValue(const Value *V) {
1133 SDOperand &N = NodeMap[V];
1134 if (N.Val) return N;
1135
Chris Lattner199862b2006-03-16 19:57:50 +00001136 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001137 MVT VT = TLI.getValueType(V->getType(), true);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001138
1139 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1140 return N = DAG.getConstant(CI->getValue(), VT);
1141
1142 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001143 return N = DAG.getGlobalAddress(GV, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001144
1145 if (isa<ConstantPointerNull>(C))
Chris Lattner199862b2006-03-16 19:57:50 +00001146 return N = DAG.getConstant(0, TLI.getPointerTy());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001147
1148 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1149 return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1150
Dan Gohman1d685a42008-06-07 02:02:36 +00001151 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1152 !V->getType()->isAggregateType())
Chris Lattner6833b062008-04-28 07:16:35 +00001153 return N = DAG.getNode(ISD::UNDEF, VT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001154
1155 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1156 visit(CE->getOpcode(), *CE);
1157 SDOperand N1 = NodeMap[V];
1158 assert(N1.Val && "visit didn't populate the ValueMap!");
1159 return N1;
1160 }
1161
Dan Gohman1d685a42008-06-07 02:02:36 +00001162 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1163 SmallVector<SDOperand, 4> Constants;
1164 SmallVector<MVT, 4> ValueVTs;
1165 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1166 OI != OE; ++OI) {
1167 SDNode *Val = getValue(*OI).Val;
1168 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) {
1169 Constants.push_back(SDOperand(Val, i));
1170 ValueVTs.push_back(Val->getValueType(i));
1171 }
1172 }
1173 return DAG.getNode(ISD::MERGE_VALUES,
1174 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1175 &Constants[0], Constants.size());
1176 }
1177
1178 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1179 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1180 "Unknown array constant!");
1181 unsigned NumElts = ATy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001182 if (NumElts == 0)
1183 return SDOperand(); // empty array
Dan Gohman1d685a42008-06-07 02:02:36 +00001184 MVT EltVT = TLI.getValueType(ATy->getElementType());
1185 SmallVector<SDOperand, 4> Constants(NumElts);
1186 SmallVector<MVT, 4> ValueVTs(NumElts, EltVT);
1187 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1188 if (isa<UndefValue>(C))
1189 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1190 else if (EltVT.isFloatingPoint())
1191 Constants[i] = DAG.getConstantFP(0, EltVT);
1192 else
1193 Constants[i] = DAG.getConstant(0, EltVT);
1194 }
1195 return DAG.getNode(ISD::MERGE_VALUES,
1196 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1197 &Constants[0], Constants.size());
1198 }
1199
1200 if (const StructType *STy = dyn_cast<StructType>(C->getType())) {
1201 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1202 "Unknown struct constant!");
1203 unsigned NumElts = STy->getNumElements();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00001204 if (NumElts == 0)
1205 return SDOperand(); // empty struct
Dan Gohman1d685a42008-06-07 02:02:36 +00001206 SmallVector<SDOperand, 4> Constants(NumElts);
1207 SmallVector<MVT, 4> ValueVTs(NumElts);
1208 for (unsigned i = 0, e = NumElts; i != e; ++i) {
1209 MVT EltVT = TLI.getValueType(STy->getElementType(i));
1210 ValueVTs[i] = EltVT;
1211 if (isa<UndefValue>(C))
1212 Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1213 else if (EltVT.isFloatingPoint())
1214 Constants[i] = DAG.getConstantFP(0, EltVT);
1215 else
1216 Constants[i] = DAG.getConstant(0, EltVT);
1217 }
1218 return DAG.getNode(ISD::MERGE_VALUES,
1219 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
1220 &Constants[0], Constants.size());
1221 }
1222
Chris Lattner6833b062008-04-28 07:16:35 +00001223 const VectorType *VecTy = cast<VectorType>(V->getType());
Chris Lattnerb606dba2008-04-28 06:44:42 +00001224 unsigned NumElements = VecTy->getNumElements();
Chris Lattnerb606dba2008-04-28 06:44:42 +00001225
Chris Lattner6833b062008-04-28 07:16:35 +00001226 // Now that we know the number and type of the elements, get that number of
1227 // elements into the Ops array based on what kind of constant it is.
1228 SmallVector<SDOperand, 16> Ops;
Chris Lattnerb606dba2008-04-28 06:44:42 +00001229 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1230 for (unsigned i = 0; i != NumElements; ++i)
1231 Ops.push_back(getValue(CP->getOperand(i)));
1232 } else {
Chris Lattner6833b062008-04-28 07:16:35 +00001233 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1234 "Unknown vector constant!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001235 MVT EltVT = TLI.getValueType(VecTy->getElementType());
Chris Lattner6833b062008-04-28 07:16:35 +00001236
Chris Lattnerb606dba2008-04-28 06:44:42 +00001237 SDOperand Op;
Chris Lattner6833b062008-04-28 07:16:35 +00001238 if (isa<UndefValue>(C))
1239 Op = DAG.getNode(ISD::UNDEF, EltVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001240 else if (EltVT.isFloatingPoint())
Chris Lattner6833b062008-04-28 07:16:35 +00001241 Op = DAG.getConstantFP(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001242 else
Chris Lattner6833b062008-04-28 07:16:35 +00001243 Op = DAG.getConstant(0, EltVT);
Chris Lattnerb606dba2008-04-28 06:44:42 +00001244 Ops.assign(NumElements, Op);
1245 }
1246
1247 // Create a BUILD_VECTOR node.
1248 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner199862b2006-03-16 19:57:50 +00001249 }
1250
Chris Lattnerb606dba2008-04-28 06:44:42 +00001251 // If this is a static alloca, generate it as the frameindex instead of
1252 // computation.
Chris Lattner199862b2006-03-16 19:57:50 +00001253 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1254 std::map<const AllocaInst*, int>::iterator SI =
Chris Lattnerb606dba2008-04-28 06:44:42 +00001255 FuncInfo.StaticAllocaMap.find(AI);
Chris Lattner199862b2006-03-16 19:57:50 +00001256 if (SI != FuncInfo.StaticAllocaMap.end())
1257 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1258 }
1259
Chris Lattner251db182007-02-25 18:40:32 +00001260 unsigned InReg = FuncInfo.ValueMap[V];
1261 assert(InReg && "Value not in map!");
Chris Lattner199862b2006-03-16 19:57:50 +00001262
Chris Lattner6833b062008-04-28 07:16:35 +00001263 RegsForValue RFV(TLI, InReg, V->getType());
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001264 SDOperand Chain = DAG.getEntryNode();
Dan Gohmanb6f5b002007-06-28 23:29:44 +00001265 return RFV.getCopyFromRegs(DAG, Chain, NULL);
Chris Lattner199862b2006-03-16 19:57:50 +00001266}
1267
1268
Chris Lattner1c08c712005-01-07 07:47:53 +00001269void SelectionDAGLowering::visitRet(ReturnInst &I) {
1270 if (I.getNumOperands() == 0) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001271 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001272 return;
1273 }
Chris Lattnerb606dba2008-04-28 06:44:42 +00001274
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001275 SmallVector<SDOperand, 8> NewValues;
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001276 NewValues.push_back(getControlRoot());
1277 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Nate Begemanee625572006-01-27 21:09:22 +00001278 SDOperand RetOp = getValue(I.getOperand(i));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001279 MVT VT = RetOp.getValueType();
Duncan Sandsb988bac2008-02-11 20:58:28 +00001280
Evan Cheng8e7d0562006-05-26 23:09:09 +00001281 // FIXME: C calling convention requires the return type to be promoted to
1282 // at least 32-bit. But this is not necessary for non-C calling conventions.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001283 if (VT.isInteger()) {
1284 MVT MinVT = TLI.getRegisterType(MVT::i32);
Duncan Sands8e4eb092008-06-08 20:54:56 +00001285 if (VT.bitsLT(MinVT))
Duncan Sandsb988bac2008-02-11 20:58:28 +00001286 VT = MinVT;
1287 }
1288
1289 unsigned NumParts = TLI.getNumRegisters(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001290 MVT PartVT = TLI.getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00001291 SmallVector<SDOperand, 4> Parts(NumParts);
1292 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1293
1294 const Function *F = I.getParent()->getParent();
1295 if (F->paramHasAttr(0, ParamAttr::SExt))
1296 ExtendKind = ISD::SIGN_EXTEND;
1297 else if (F->paramHasAttr(0, ParamAttr::ZExt))
1298 ExtendKind = ISD::ZERO_EXTEND;
1299
1300 getCopyToParts(DAG, RetOp, &Parts[0], NumParts, PartVT, ExtendKind);
1301
1302 for (unsigned i = 0; i < NumParts; ++i) {
1303 NewValues.push_back(Parts[i]);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001304 NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
Nate Begemanee625572006-01-27 21:09:22 +00001305 }
Chris Lattner1c08c712005-01-07 07:47:53 +00001306 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001307 DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1308 &NewValues[0], NewValues.size()));
Chris Lattner1c08c712005-01-07 07:47:53 +00001309}
1310
Chris Lattner571e4342006-10-27 21:36:01 +00001311/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1312/// the current basic block, add it to ValueMap now so that we'll get a
1313/// CopyTo/FromReg.
1314void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1315 // No need to export constants.
1316 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1317
1318 // Already exported?
1319 if (FuncInfo.isExportedInst(V)) return;
1320
1321 unsigned Reg = FuncInfo.InitializeRegForValue(V);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001322 CopyValueToVirtualRegister(V, Reg);
Chris Lattner571e4342006-10-27 21:36:01 +00001323}
1324
Chris Lattner8c494ab2006-10-27 23:50:33 +00001325bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1326 const BasicBlock *FromBB) {
1327 // The operands of the setcc have to be in this block. We don't know
1328 // how to export them from some other block.
1329 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1330 // Can export from current BB.
1331 if (VI->getParent() == FromBB)
1332 return true;
1333
1334 // Is already exported, noop.
1335 return FuncInfo.isExportedInst(V);
1336 }
1337
1338 // If this is an argument, we can export it if the BB is the entry block or
1339 // if it is already exported.
1340 if (isa<Argument>(V)) {
1341 if (FromBB == &FromBB->getParent()->getEntryBlock())
1342 return true;
1343
1344 // Otherwise, can only export this if it is already exported.
1345 return FuncInfo.isExportedInst(V);
1346 }
1347
1348 // Otherwise, constants can always be exported.
1349 return true;
1350}
1351
Chris Lattner6a586c82006-10-29 21:01:20 +00001352static bool InBlock(const Value *V, const BasicBlock *BB) {
1353 if (const Instruction *I = dyn_cast<Instruction>(V))
1354 return I->getParent() == BB;
1355 return true;
1356}
1357
Chris Lattner571e4342006-10-27 21:36:01 +00001358/// FindMergedConditions - If Cond is an expression like
1359void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1360 MachineBasicBlock *TBB,
1361 MachineBasicBlock *FBB,
1362 MachineBasicBlock *CurBB,
1363 unsigned Opc) {
Chris Lattner571e4342006-10-27 21:36:01 +00001364 // If this node is not part of the or/and tree, emit it as a branch.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001365 Instruction *BOp = dyn_cast<Instruction>(Cond);
Chris Lattner571e4342006-10-27 21:36:01 +00001366
Reid Spencere4d87aa2006-12-23 06:05:41 +00001367 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1368 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
Chris Lattner6a586c82006-10-29 21:01:20 +00001369 BOp->getParent() != CurBB->getBasicBlock() ||
1370 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1371 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
Chris Lattner571e4342006-10-27 21:36:01 +00001372 const BasicBlock *BB = CurBB->getBasicBlock();
1373
Reid Spencere4d87aa2006-12-23 06:05:41 +00001374 // If the leaf of the tree is a comparison, merge the condition into
1375 // the caseblock.
1376 if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1377 // The operands of the cmp have to be in this block. We don't know
Chris Lattner5a145f02006-10-29 18:23:37 +00001378 // how to export them from some other block. If this is the first block
1379 // of the sequence, no exporting is needed.
1380 (CurBB == CurMBB ||
1381 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1382 isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001383 BOp = cast<Instruction>(Cond);
1384 ISD::CondCode Condition;
1385 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1386 switch (IC->getPredicate()) {
1387 default: assert(0 && "Unknown icmp predicate opcode!");
1388 case ICmpInst::ICMP_EQ: Condition = ISD::SETEQ; break;
1389 case ICmpInst::ICMP_NE: Condition = ISD::SETNE; break;
1390 case ICmpInst::ICMP_SLE: Condition = ISD::SETLE; break;
1391 case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1392 case ICmpInst::ICMP_SGE: Condition = ISD::SETGE; break;
1393 case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1394 case ICmpInst::ICMP_SLT: Condition = ISD::SETLT; break;
1395 case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1396 case ICmpInst::ICMP_SGT: Condition = ISD::SETGT; break;
1397 case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1398 }
1399 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1400 ISD::CondCode FPC, FOC;
1401 switch (FC->getPredicate()) {
1402 default: assert(0 && "Unknown fcmp predicate opcode!");
1403 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1404 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1405 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1406 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1407 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1408 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1409 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Chris Lattner6bf30ab2008-05-01 07:26:11 +00001410 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1411 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001412 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1413 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1414 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1415 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1416 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1417 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1418 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1419 }
1420 if (FiniteOnlyFPMath())
1421 Condition = FOC;
1422 else
1423 Condition = FPC;
1424 } else {
Chris Lattner0da331f2007-02-04 01:31:47 +00001425 Condition = ISD::SETEQ; // silence warning.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001426 assert(0 && "Unknown compare instruction");
Chris Lattner571e4342006-10-27 21:36:01 +00001427 }
1428
Chris Lattner571e4342006-10-27 21:36:01 +00001429 SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001430 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001431 SwitchCases.push_back(CB);
1432 return;
1433 }
1434
1435 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001436 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001437 NULL, TBB, FBB, CurBB);
Chris Lattner571e4342006-10-27 21:36:01 +00001438 SwitchCases.push_back(CB);
Chris Lattner571e4342006-10-27 21:36:01 +00001439 return;
1440 }
1441
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001442
1443 // Create TmpBB after CurBB.
Chris Lattner571e4342006-10-27 21:36:01 +00001444 MachineFunction::iterator BBI = CurBB;
1445 MachineBasicBlock *TmpBB = new MachineBasicBlock(CurBB->getBasicBlock());
1446 CurBB->getParent()->getBasicBlockList().insert(++BBI, TmpBB);
1447
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001448 if (Opc == Instruction::Or) {
1449 // Codegen X | Y as:
1450 // jmp_if_X TBB
1451 // jmp TmpBB
1452 // TmpBB:
1453 // jmp_if_Y TBB
1454 // jmp FBB
1455 //
Chris Lattner571e4342006-10-27 21:36:01 +00001456
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001457 // Emit the LHS condition.
1458 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1459
1460 // Emit the RHS condition into TmpBB.
1461 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1462 } else {
1463 assert(Opc == Instruction::And && "Unknown merge op!");
1464 // Codegen X & Y as:
1465 // jmp_if_X TmpBB
1466 // jmp FBB
1467 // TmpBB:
1468 // jmp_if_Y TBB
1469 // jmp FBB
1470 //
1471 // This requires creation of TmpBB after CurBB.
1472
1473 // Emit the LHS condition.
1474 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1475
1476 // Emit the RHS condition into TmpBB.
1477 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1478 }
Chris Lattner571e4342006-10-27 21:36:01 +00001479}
1480
Chris Lattnerdf19f272006-10-31 22:37:42 +00001481/// If the set of cases should be emitted as a series of branches, return true.
1482/// If we should emit this as a bunch of and/or'd together conditions, return
1483/// false.
1484static bool
1485ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1486 if (Cases.size() != 2) return true;
1487
Chris Lattner0ccb5002006-10-31 23:06:00 +00001488 // If this is two comparisons of the same values or'd or and'd together, they
1489 // will get folded into a single comparison, so don't emit two blocks.
1490 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1491 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1492 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1493 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1494 return false;
1495 }
1496
Chris Lattnerdf19f272006-10-31 22:37:42 +00001497 return true;
1498}
1499
Chris Lattner1c08c712005-01-07 07:47:53 +00001500void SelectionDAGLowering::visitBr(BranchInst &I) {
1501 // Update machine-CFG edges.
1502 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
Chris Lattner1c08c712005-01-07 07:47:53 +00001503
1504 // Figure out which block is immediately after the current one.
1505 MachineBasicBlock *NextBlock = 0;
1506 MachineFunction::iterator BBI = CurMBB;
1507 if (++BBI != CurMBB->getParent()->end())
1508 NextBlock = BBI;
1509
1510 if (I.isUnconditional()) {
Owen Anderson2d389e82008-06-07 00:00:23 +00001511 // Update machine-CFG edges.
1512 CurMBB->addSuccessor(Succ0MBB);
1513
Chris Lattner1c08c712005-01-07 07:47:53 +00001514 // If this is not a fall-through branch, emit the branch.
1515 if (Succ0MBB != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001516 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Misha Brukmandedf2bd2005-04-22 04:01:18 +00001517 DAG.getBasicBlock(Succ0MBB)));
Chris Lattner57ab6592006-10-24 17:57:59 +00001518 return;
1519 }
1520
1521 // If this condition is one of the special cases we handle, do special stuff
1522 // now.
1523 Value *CondVal = I.getCondition();
Chris Lattner57ab6592006-10-24 17:57:59 +00001524 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
Chris Lattner571e4342006-10-27 21:36:01 +00001525
1526 // If this is a series of conditions that are or'd or and'd together, emit
1527 // this as a sequence of branches instead of setcc's with and/or operations.
1528 // For example, instead of something like:
1529 // cmp A, B
1530 // C = seteq
1531 // cmp D, E
1532 // F = setle
1533 // or C, F
1534 // jnz foo
1535 // Emit:
1536 // cmp A, B
1537 // je foo
1538 // cmp D, E
1539 // jle foo
1540 //
1541 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1542 if (BOp->hasOneUse() &&
Chris Lattnerd2f9ee92006-10-27 21:54:23 +00001543 (BOp->getOpcode() == Instruction::And ||
Chris Lattner571e4342006-10-27 21:36:01 +00001544 BOp->getOpcode() == Instruction::Or)) {
1545 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
Chris Lattner0ccb5002006-10-31 23:06:00 +00001546 // If the compares in later blocks need to use values not currently
1547 // exported from this block, export them now. This block should always
1548 // be the first entry.
1549 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1550
Chris Lattnerdf19f272006-10-31 22:37:42 +00001551 // Allow some cases to be rejected.
1552 if (ShouldEmitAsBranches(SwitchCases)) {
Chris Lattnerdf19f272006-10-31 22:37:42 +00001553 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1554 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1555 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1556 }
1557
1558 // Emit the branch for this block.
1559 visitSwitchCase(SwitchCases[0]);
1560 SwitchCases.erase(SwitchCases.begin());
1561 return;
Chris Lattner5a145f02006-10-29 18:23:37 +00001562 }
1563
Chris Lattner0ccb5002006-10-31 23:06:00 +00001564 // Okay, we decided not to do this, remove any inserted MBB's and clear
1565 // SwitchCases.
1566 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1567 CurMBB->getParent()->getBasicBlockList().erase(SwitchCases[i].ThisBB);
1568
Chris Lattnerdf19f272006-10-31 22:37:42 +00001569 SwitchCases.clear();
Chris Lattner571e4342006-10-27 21:36:01 +00001570 }
1571 }
Chris Lattner24525952006-10-24 18:07:37 +00001572
1573 // Create a CaseBlock record representing this branch.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001574 SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001575 NULL, Succ0MBB, Succ1MBB, CurMBB);
Chris Lattner24525952006-10-24 18:07:37 +00001576 // Use visitSwitchCase to actually insert the fast branch sequence for this
1577 // cond branch.
1578 visitSwitchCase(CB);
Chris Lattner1c08c712005-01-07 07:47:53 +00001579}
1580
Nate Begemanf15485a2006-03-27 01:32:24 +00001581/// visitSwitchCase - Emits the necessary code to represent a single node in
1582/// the binary search tree resulting from lowering a switch instruction.
1583void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
Chris Lattner57ab6592006-10-24 17:57:59 +00001584 SDOperand Cond;
1585 SDOperand CondLHS = getValue(CB.CmpLHS);
1586
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001587 // Build the setcc now.
1588 if (CB.CmpMHS == NULL) {
1589 // Fold "(X == true)" to X and "(X == false)" to !X to
1590 // handle common cases produced by branch lowering.
1591 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1592 Cond = CondLHS;
1593 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1594 SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1595 Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1596 } else
1597 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1598 } else {
1599 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001600
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001601 uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1602 uint64_t High = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1603
1604 SDOperand CmpOp = getValue(CB.CmpMHS);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001605 MVT VT = CmpOp.getValueType();
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001606
1607 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1608 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1609 } else {
1610 SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1611 Cond = DAG.getSetCC(MVT::i1, SUB,
1612 DAG.getConstant(High-Low, VT), ISD::SETULE);
1613 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001614 }
1615
Owen Anderson2d389e82008-06-07 00:00:23 +00001616 // Update successor info
1617 CurMBB->addSuccessor(CB.TrueBB);
1618 CurMBB->addSuccessor(CB.FalseBB);
1619
Nate Begemanf15485a2006-03-27 01:32:24 +00001620 // Set NextBlock to be the MBB immediately after the current one, if any.
1621 // This is used to avoid emitting unnecessary branches to the next block.
1622 MachineBasicBlock *NextBlock = 0;
1623 MachineFunction::iterator BBI = CurMBB;
1624 if (++BBI != CurMBB->getParent()->end())
1625 NextBlock = BBI;
1626
1627 // If the lhs block is the next block, invert the condition so that we can
1628 // fall through to the lhs instead of the rhs block.
Chris Lattner57ab6592006-10-24 17:57:59 +00001629 if (CB.TrueBB == NextBlock) {
1630 std::swap(CB.TrueBB, CB.FalseBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00001631 SDOperand True = DAG.getConstant(1, Cond.getValueType());
1632 Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1633 }
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001634 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001635 DAG.getBasicBlock(CB.TrueBB));
1636 if (CB.FalseBB == NextBlock)
Nate Begemanf15485a2006-03-27 01:32:24 +00001637 DAG.setRoot(BrCond);
1638 else
1639 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Chris Lattner57ab6592006-10-24 17:57:59 +00001640 DAG.getBasicBlock(CB.FalseBB)));
Nate Begemanf15485a2006-03-27 01:32:24 +00001641}
1642
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001643/// visitJumpTable - Emit JumpTable node in the current MBB
Nate Begeman37efe672006-04-22 18:53:45 +00001644void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
Nate Begeman37efe672006-04-22 18:53:45 +00001645 // Emit the code for the jump table
Scott Michelf147a8d2007-04-24 01:24:20 +00001646 assert(JT.Reg != -1U && "Should lower JT Header first!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00001647 MVT PTy = TLI.getPointerTy();
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001648 SDOperand Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001649 SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1650 DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1651 Table, Index));
1652 return;
Nate Begeman37efe672006-04-22 18:53:45 +00001653}
1654
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001655/// visitJumpTableHeader - This function emits necessary code to produce index
1656/// in the JumpTable from switch case.
1657void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1658 SelectionDAGISel::JumpTableHeader &JTH) {
1659 // Subtract the lowest switch case value from the value being switched on
1660 // and conditional branch to default mbb if the result is greater than the
1661 // difference between smallest and largest cases.
1662 SDOperand SwitchOp = getValue(JTH.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001663 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001664 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1665 DAG.getConstant(JTH.First, VT));
1666
1667 // The SDNode we just created, which holds the value being switched on
1668 // minus the the smallest case value, needs to be copied to a virtual
1669 // register so it can be used as an index into the jump table in a
1670 // subsequent basic block. This value may be smaller or larger than the
1671 // target's pointer type, and therefore require extension or truncating.
Duncan Sands8e4eb092008-06-08 20:54:56 +00001672 if (VT.bitsGT(TLI.getPointerTy()))
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001673 SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1674 else
1675 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1676
1677 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001678 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001679 JT.Reg = JumpTableReg;
1680
1681 // Emit the range check for the jump table, and branch to the default
1682 // block for the switch statement if the value being switched on exceeds
1683 // the largest case in the switch.
Scott Michel5b8f82e2008-03-10 15:42:14 +00001684 SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001685 DAG.getConstant(JTH.Last-JTH.First,VT),
1686 ISD::SETUGT);
1687
1688 // Set NextBlock to be the MBB immediately after the current one, if any.
1689 // This is used to avoid emitting unnecessary branches to the next block.
1690 MachineBasicBlock *NextBlock = 0;
1691 MachineFunction::iterator BBI = CurMBB;
1692 if (++BBI != CurMBB->getParent()->end())
1693 NextBlock = BBI;
1694
1695 SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1696 DAG.getBasicBlock(JT.Default));
1697
1698 if (JT.MBB == NextBlock)
1699 DAG.setRoot(BrCond);
1700 else
1701 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001702 DAG.getBasicBlock(JT.MBB)));
1703
1704 return;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001705}
1706
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001707/// visitBitTestHeader - This function emits necessary code to produce value
1708/// suitable for "bit tests"
1709void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1710 // Subtract the minimum value
1711 SDOperand SwitchOp = getValue(B.SValue);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001712 MVT VT = SwitchOp.getValueType();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001713 SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1714 DAG.getConstant(B.First, VT));
1715
1716 // Check range
Scott Michel5b8f82e2008-03-10 15:42:14 +00001717 SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001718 DAG.getConstant(B.Range, VT),
1719 ISD::SETUGT);
1720
1721 SDOperand ShiftOp;
Duncan Sands8e4eb092008-06-08 20:54:56 +00001722 if (VT.bitsGT(TLI.getShiftAmountTy()))
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001723 ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1724 else
1725 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1726
1727 // Make desired shift
1728 SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1729 DAG.getConstant(1, TLI.getPointerTy()),
1730 ShiftOp);
1731
1732 unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001733 SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001734 B.Reg = SwitchReg;
1735
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001736 // Set NextBlock to be the MBB immediately after the current one, if any.
1737 // This is used to avoid emitting unnecessary branches to the next block.
1738 MachineBasicBlock *NextBlock = 0;
1739 MachineFunction::iterator BBI = CurMBB;
1740 if (++BBI != CurMBB->getParent()->end())
1741 NextBlock = BBI;
1742
1743 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
Owen Anderson2d389e82008-06-07 00:00:23 +00001744
1745 CurMBB->addSuccessor(B.Default);
1746 CurMBB->addSuccessor(MBB);
1747
1748 SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1749 DAG.getBasicBlock(B.Default));
1750
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001751 if (MBB == NextBlock)
1752 DAG.setRoot(BrRange);
1753 else
1754 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1755 DAG.getBasicBlock(MBB)));
1756
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001757 return;
1758}
1759
1760/// visitBitTestCase - this function produces one "bit test"
1761void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1762 unsigned Reg,
1763 SelectionDAGISel::BitTestCase &B) {
1764 // Emit bit tests and jumps
Chris Lattneread0d882008-06-17 06:09:18 +00001765 SDOperand SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg,
1766 TLI.getPointerTy());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001767
Chris Lattneread0d882008-06-17 06:09:18 +00001768 SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
1769 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Scott Michel5b8f82e2008-03-10 15:42:14 +00001770 SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001771 DAG.getConstant(0, TLI.getPointerTy()),
1772 ISD::SETNE);
Owen Anderson2d389e82008-06-07 00:00:23 +00001773
1774 CurMBB->addSuccessor(B.TargetBB);
1775 CurMBB->addSuccessor(NextMBB);
1776
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001777 SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001778 AndCmp, DAG.getBasicBlock(B.TargetBB));
1779
1780 // Set NextBlock to be the MBB immediately after the current one, if any.
1781 // This is used to avoid emitting unnecessary branches to the next block.
1782 MachineBasicBlock *NextBlock = 0;
1783 MachineFunction::iterator BBI = CurMBB;
1784 if (++BBI != CurMBB->getParent()->end())
1785 NextBlock = BBI;
1786
1787 if (NextMBB == NextBlock)
1788 DAG.setRoot(BrAnd);
1789 else
1790 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1791 DAG.getBasicBlock(NextMBB)));
1792
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001793 return;
1794}
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00001795
Jim Laskeyb180aa12007-02-21 22:53:45 +00001796void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1797 // Retrieve successors.
1798 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001799 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
Duncan Sands9fac0b52007-06-06 10:05:18 +00001800
Duncan Sandsfd7b3262007-12-17 18:08:19 +00001801 if (isa<InlineAsm>(I.getCalledValue()))
1802 visitInlineAsm(&I);
1803 else
Duncan Sands6f74b482007-12-19 09:48:52 +00001804 LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
Duncan Sands9fac0b52007-06-06 10:05:18 +00001805
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001806 // If the value of the invoke is used outside of its defining block, make it
1807 // available as a virtual register.
1808 if (!I.use_empty()) {
1809 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1810 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00001811 CopyValueToVirtualRegister(&I, VMI->second);
Jim Laskey183f47f2007-02-25 21:43:59 +00001812 }
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001813
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00001814 // Update successor info
1815 CurMBB->addSuccessor(Return);
1816 CurMBB->addSuccessor(LandingPad);
Owen Anderson2d389e82008-06-07 00:00:23 +00001817
1818 // Drop into normal successor.
1819 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1820 DAG.getBasicBlock(Return)));
Jim Laskeyb180aa12007-02-21 22:53:45 +00001821}
1822
1823void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1824}
1825
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001826/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001827/// small case ranges).
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001828bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001829 CaseRecVector& WorkList,
1830 Value* SV,
1831 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001832 Case& BackCase = *(CR.Range.second-1);
1833
1834 // Size is the number of Cases represented by this range.
1835 unsigned Size = CR.Range.second - CR.Range.first;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001836 if (Size > 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001837 return false;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001838
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001839 // Get the MachineFunction which holds the current MBB. This is used when
1840 // inserting any additional MBBs necessary to represent the switch.
1841 MachineFunction *CurMF = CurMBB->getParent();
1842
1843 // Figure out which block is immediately after the current one.
1844 MachineBasicBlock *NextBlock = 0;
1845 MachineFunction::iterator BBI = CR.CaseBB;
1846
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001847 if (++BBI != CurMBB->getParent()->end())
1848 NextBlock = BBI;
1849
1850 // TODO: If any two of the cases has the same destination, and if one value
1851 // is the same as the other, but has one bit unset that the other has set,
1852 // use bit manipulation to do two compares at once. For example:
1853 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1854
1855 // Rearrange the case blocks so that the last one falls through if possible.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001856 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001857 // The last case block won't fall through into 'NextBlock' if we emit the
1858 // branches in this order. See if rearranging a case value would help.
1859 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001860 if (I->BB == NextBlock) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001861 std::swap(*I, BackCase);
1862 break;
1863 }
1864 }
1865 }
1866
1867 // Create a CaseBlock record representing a conditional branch to
1868 // the Case's target mbb if the value being switched on SV is equal
1869 // to C.
1870 MachineBasicBlock *CurBlock = CR.CaseBB;
1871 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1872 MachineBasicBlock *FallThrough;
1873 if (I != E-1) {
1874 FallThrough = new MachineBasicBlock(CurBlock->getBasicBlock());
1875 CurMF->getBasicBlockList().insert(BBI, FallThrough);
1876 } else {
1877 // If the last case doesn't match, go to the default block.
1878 FallThrough = Default;
1879 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001880
1881 Value *RHS, *LHS, *MHS;
1882 ISD::CondCode CC;
1883 if (I->High == I->Low) {
1884 // This is just small small case range :) containing exactly 1 case
1885 CC = ISD::SETEQ;
1886 LHS = SV; RHS = I->High; MHS = NULL;
1887 } else {
1888 CC = ISD::SETLE;
1889 LHS = I->Low; MHS = SV; RHS = I->High;
1890 }
1891 SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1892 I->BB, FallThrough, CurBlock);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001893
1894 // If emitting the first comparison, just call visitSwitchCase to emit the
1895 // code into the current block. Otherwise, push the CaseBlock onto the
1896 // vector to be later processed by SDISel, and insert the node's MBB
1897 // before the next MBB.
1898 if (CurBlock == CurMBB)
1899 visitSwitchCase(CB);
1900 else
1901 SwitchCases.push_back(CB);
1902
1903 CurBlock = FallThrough;
1904 }
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001905
1906 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001907}
1908
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001909static inline bool areJTsAllowed(const TargetLowering &TLI) {
1910 return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1911 TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1912}
1913
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001914/// handleJTSwitchCase - Emit jumptable for current switch case range
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001915bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001916 CaseRecVector& WorkList,
1917 Value* SV,
1918 MachineBasicBlock* Default) {
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001919 Case& FrontCase = *CR.Range.first;
1920 Case& BackCase = *(CR.Range.second-1);
1921
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001922 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1923 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
1924
1925 uint64_t TSize = 0;
1926 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1927 I!=E; ++I)
1928 TSize += I->size();
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001929
Anton Korobeynikov7294b582007-05-09 20:07:08 +00001930 if (!areJTsAllowed(TLI) || TSize <= 3)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001931 return false;
1932
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001933 double Density = (double)TSize / (double)((Last - First) + 1ULL);
1934 if (Density < 0.4)
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001935 return false;
1936
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001937 DOUT << "Lowering jump table\n"
1938 << "First entry: " << First << ". Last entry: " << Last << "\n"
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001939 << "Size: " << TSize << ". Density: " << Density << "\n\n";
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001940
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001941 // Get the MachineFunction which holds the current MBB. This is used when
1942 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00001943 MachineFunction *CurMF = CurMBB->getParent();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001944
1945 // Figure out which block is immediately after the current one.
1946 MachineBasicBlock *NextBlock = 0;
1947 MachineFunction::iterator BBI = CR.CaseBB;
1948
1949 if (++BBI != CurMBB->getParent()->end())
1950 NextBlock = BBI;
1951
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001952 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1953
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001954 // Create a new basic block to hold the code for loading the address
1955 // of the jump table, and jumping to it. Update successor information;
1956 // we will either branch to the default case for the switch, or the jump
1957 // table.
1958 MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
1959 CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
1960 CR.CaseBB->addSuccessor(Default);
1961 CR.CaseBB->addSuccessor(JumpTableBB);
1962
1963 // Build a vector of destination BBs, corresponding to each target
Anton Korobeynikov4198c582007-04-09 12:31:58 +00001964 // of the jump table. If the value of the jump table slot corresponds to
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001965 // a case statement, push the case's BB onto the vector, otherwise, push
1966 // the default BB.
1967 std::vector<MachineBasicBlock*> DestBBs;
1968 int64_t TEI = First;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001969 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1970 int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1971 int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1972
1973 if ((Low <= TEI) && (TEI <= High)) {
1974 DestBBs.push_back(I->BB);
1975 if (TEI==High)
1976 ++I;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001977 } else {
1978 DestBBs.push_back(Default);
1979 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001980 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001981
1982 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00001983 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001984 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
1985 E = DestBBs.end(); I != E; ++I) {
1986 if (!SuccsHandled[(*I)->getNumber()]) {
1987 SuccsHandled[(*I)->getNumber()] = true;
1988 JumpTableBB->addSuccessor(*I);
1989 }
1990 }
1991
1992 // Create a jump table index for this jump table, or return an existing
1993 // one.
1994 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1995
1996 // Set the jump table information so that we can codegen it as a second
1997 // MachineBasicBlock
Scott Michelf147a8d2007-04-24 01:24:20 +00001998 SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00001999 SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
2000 (CR.CaseBB == CurMBB));
2001 if (CR.CaseBB == CurMBB)
2002 visitJumpTableHeader(JT, JTH);
2003
2004 JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002005
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002006 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002007}
2008
2009/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2010/// 2 subtrees.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002011bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002012 CaseRecVector& WorkList,
2013 Value* SV,
2014 MachineBasicBlock* Default) {
2015 // Get the MachineFunction which holds the current MBB. This is used when
2016 // inserting any additional MBBs necessary to represent the switch.
2017 MachineFunction *CurMF = CurMBB->getParent();
2018
2019 // Figure out which block is immediately after the current one.
2020 MachineBasicBlock *NextBlock = 0;
2021 MachineFunction::iterator BBI = CR.CaseBB;
2022
2023 if (++BBI != CurMBB->getParent()->end())
2024 NextBlock = BBI;
2025
2026 Case& FrontCase = *CR.Range.first;
2027 Case& BackCase = *(CR.Range.second-1);
2028 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2029
2030 // Size is the number of Cases represented by this range.
2031 unsigned Size = CR.Range.second - CR.Range.first;
2032
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002033 int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2034 int64_t Last = cast<ConstantInt>(BackCase.High)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002035 double FMetric = 0;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002036 CaseItr Pivot = CR.Range.first + Size/2;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002037
2038 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2039 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002040 uint64_t TSize = 0;
2041 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2042 I!=E; ++I)
2043 TSize += I->size();
2044
2045 uint64_t LSize = FrontCase.size();
2046 uint64_t RSize = TSize-LSize;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002047 DOUT << "Selecting best pivot: \n"
2048 << "First: " << First << ", Last: " << Last <<"\n"
2049 << "LSize: " << LSize << ", RSize: " << RSize << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002050 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002051 J!=E; ++I, ++J) {
2052 int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2053 int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002054 assert((RBegin-LEnd>=1) && "Invalid case distance");
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002055 double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2056 double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
Anton Korobeynikov54e2b142007-04-09 21:57:03 +00002057 double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002058 // Should always split in some non-trivial place
2059 DOUT <<"=>Step\n"
2060 << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2061 << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2062 << "Metric: " << Metric << "\n";
2063 if (FMetric < Metric) {
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002064 Pivot = J;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002065 FMetric = Metric;
2066 DOUT << "Current metric set to: " << FMetric << "\n";
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002067 }
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002068
2069 LSize += J->size();
2070 RSize -= J->size();
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002071 }
Anton Korobeynikov7294b582007-05-09 20:07:08 +00002072 if (areJTsAllowed(TLI)) {
2073 // If our case is dense we *really* should handle it earlier!
2074 assert((FMetric > 0) && "Should handle dense range earlier!");
2075 } else {
2076 Pivot = CR.Range.first + Size/2;
2077 }
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002078
2079 CaseRange LHSR(CR.Range.first, Pivot);
2080 CaseRange RHSR(Pivot, CR.Range.second);
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002081 Constant *C = Pivot->Low;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002082 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2083
2084 // We know that we branch to the LHS if the Value being switched on is
2085 // less than the Pivot value, C. We use this to optimize our binary
2086 // tree a bit, by recognizing that if SV is greater than or equal to the
2087 // LHS's Case Value, and that Case Value is exactly one less than the
2088 // Pivot's Value, then we can branch directly to the LHS's Target,
2089 // rather than creating a leaf node for it.
2090 if ((LHSR.second - LHSR.first) == 1 &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002091 LHSR.first->High == CR.GE &&
2092 cast<ConstantInt>(C)->getSExtValue() ==
2093 (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2094 TrueBB = LHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002095 } else {
2096 TrueBB = new MachineBasicBlock(LLVMBB);
2097 CurMF->getBasicBlockList().insert(BBI, TrueBB);
2098 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2099 }
2100
2101 // Similar to the optimization above, if the Value being switched on is
2102 // known to be less than the Constant CR.LT, and the current Case Value
2103 // is CR.LT - 1, then we can branch directly to the target block for
2104 // the current Case Value, rather than emitting a RHS leaf node for it.
2105 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002106 cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2107 (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2108 FalseBB = RHSR.first->BB;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002109 } else {
2110 FalseBB = new MachineBasicBlock(LLVMBB);
2111 CurMF->getBasicBlockList().insert(BBI, FalseBB);
2112 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2113 }
2114
2115 // Create a CaseBlock record representing a conditional branch to
2116 // the LHS node if the value being switched on SV is less than C.
2117 // Otherwise, branch to LHS.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002118 SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2119 TrueBB, FalseBB, CR.CaseBB);
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002120
2121 if (CR.CaseBB == CurMBB)
2122 visitSwitchCase(CB);
2123 else
2124 SwitchCases.push_back(CB);
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002125
2126 return true;
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002127}
2128
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002129/// handleBitTestsSwitchCase - if current case range has few destination and
2130/// range span less, than machine word bitwidth, encode case range into series
2131/// of masks and emit bit tests with these masks.
2132bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2133 CaseRecVector& WorkList,
2134 Value* SV,
Chris Lattner3ff98172007-04-14 02:26:56 +00002135 MachineBasicBlock* Default){
Duncan Sands83ec4b62008-06-06 12:08:01 +00002136 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002137
2138 Case& FrontCase = *CR.Range.first;
2139 Case& BackCase = *(CR.Range.second-1);
2140
2141 // Get the MachineFunction which holds the current MBB. This is used when
2142 // inserting any additional MBBs necessary to represent the switch.
2143 MachineFunction *CurMF = CurMBB->getParent();
2144
2145 unsigned numCmps = 0;
2146 for (CaseItr I = CR.Range.first, E = CR.Range.second;
2147 I!=E; ++I) {
2148 // Single case counts one, case range - two.
2149 if (I->Low == I->High)
2150 numCmps +=1;
2151 else
2152 numCmps +=2;
2153 }
2154
2155 // Count unique destinations
2156 SmallSet<MachineBasicBlock*, 4> Dests;
2157 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2158 Dests.insert(I->BB);
2159 if (Dests.size() > 3)
2160 // Don't bother the code below, if there are too much unique destinations
2161 return false;
2162 }
2163 DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2164 << "Total number of comparisons: " << numCmps << "\n";
2165
2166 // Compute span of values.
2167 Constant* minValue = FrontCase.Low;
2168 Constant* maxValue = BackCase.High;
2169 uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2170 cast<ConstantInt>(minValue)->getSExtValue();
2171 DOUT << "Compare range: " << range << "\n"
2172 << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2173 << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2174
Anton Korobeynikovab8fd402007-04-26 20:44:04 +00002175 if (range>=IntPtrBits ||
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002176 (!(Dests.size() == 1 && numCmps >= 3) &&
2177 !(Dests.size() == 2 && numCmps >= 5) &&
2178 !(Dests.size() >= 3 && numCmps >= 6)))
2179 return false;
2180
2181 DOUT << "Emitting bit tests\n";
2182 int64_t lowBound = 0;
2183
2184 // Optimize the case where all the case values fit in a
2185 // word without having to subtract minValue. In this case,
2186 // we can optimize away the subtraction.
2187 if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002188 cast<ConstantInt>(maxValue)->getSExtValue() < IntPtrBits) {
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002189 range = cast<ConstantInt>(maxValue)->getSExtValue();
2190 } else {
2191 lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2192 }
2193
2194 CaseBitsVector CasesBits;
2195 unsigned i, count = 0;
2196
2197 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2198 MachineBasicBlock* Dest = I->BB;
2199 for (i = 0; i < count; ++i)
2200 if (Dest == CasesBits[i].BB)
2201 break;
2202
2203 if (i == count) {
2204 assert((count < 3) && "Too much destinations to test!");
2205 CasesBits.push_back(CaseBits(0, Dest, 0));
2206 count++;
2207 }
2208
2209 uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2210 uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2211
2212 for (uint64_t j = lo; j <= hi; j++) {
Anton Korobeynikove01017b2007-04-14 13:25:55 +00002213 CasesBits[i].Mask |= 1ULL << j;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002214 CasesBits[i].Bits++;
2215 }
2216
2217 }
2218 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2219
2220 SelectionDAGISel::BitTestInfo BTC;
2221
2222 // Figure out which block is immediately after the current one.
2223 MachineFunction::iterator BBI = CR.CaseBB;
2224 ++BBI;
2225
2226 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2227
2228 DOUT << "Cases:\n";
2229 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2230 DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2231 << ", BB: " << CasesBits[i].BB << "\n";
2232
2233 MachineBasicBlock *CaseBB = new MachineBasicBlock(LLVMBB);
2234 CurMF->getBasicBlockList().insert(BBI, CaseBB);
2235 BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2236 CaseBB,
2237 CasesBits[i].BB));
2238 }
2239
2240 SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
Jeff Cohenefc36622007-04-09 14:32:59 +00002241 -1U, (CR.CaseBB == CurMBB),
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002242 CR.CaseBB, Default, BTC);
2243
2244 if (CR.CaseBB == CurMBB)
2245 visitBitTestHeader(BTB);
2246
2247 BitTestCases.push_back(BTB);
2248
2249 return true;
2250}
2251
2252
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002253/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002254unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2255 const SwitchInst& SI) {
2256 unsigned numCmps = 0;
2257
2258 // Start with "simple" cases
2259 for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2260 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2261 Cases.push_back(Case(SI.getSuccessorValue(i),
2262 SI.getSuccessorValue(i),
2263 SMBB));
2264 }
Chris Lattnerb3d9cdb2007-11-27 06:14:32 +00002265 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002266
2267 // Merge case into clusters
2268 if (Cases.size()>=2)
David Greenea2a48852007-06-29 03:42:23 +00002269 // Must recompute end() each iteration because it may be
2270 // invalidated by erase if we hold on to it
Chris Lattner27a6c732007-11-24 07:07:01 +00002271 for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002272 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2273 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2274 MachineBasicBlock* nextBB = J->BB;
2275 MachineBasicBlock* currentBB = I->BB;
2276
2277 // If the two neighboring cases go to the same destination, merge them
2278 // into a single case.
2279 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2280 I->High = J->High;
2281 J = Cases.erase(J);
2282 } else {
2283 I = J++;
2284 }
2285 }
2286
2287 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2288 if (I->Low != I->High)
2289 // A range counts double, since it requires two compares.
2290 ++numCmps;
2291 }
2292
2293 return numCmps;
2294}
2295
2296void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002297 // Figure out which block is immediately after the current one.
2298 MachineBasicBlock *NextBlock = 0;
2299 MachineFunction::iterator BBI = CurMBB;
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002300
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002301 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002302
Nate Begemanf15485a2006-03-27 01:32:24 +00002303 // If there is only the default destination, branch to it if it is not the
2304 // next basic block. Otherwise, just fall through.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002305 if (SI.getNumOperands() == 2) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002306 // Update machine-CFG edges.
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002307
Nate Begemanf15485a2006-03-27 01:32:24 +00002308 // If this is not a fall-through branch, emit the branch.
Owen Anderson2d389e82008-06-07 00:00:23 +00002309 CurMBB->addSuccessor(Default);
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002310 if (Default != NextBlock)
Dan Gohman86e1ebf2008-03-27 19:56:19 +00002311 DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
Chris Lattnerd2c1d222006-10-22 21:36:53 +00002312 DAG.getBasicBlock(Default)));
Owen Anderson2d389e82008-06-07 00:00:23 +00002313
Nate Begemanf15485a2006-03-27 01:32:24 +00002314 return;
2315 }
2316
2317 // If there are any non-default case statements, create a vector of Cases
2318 // representing each one, and sort the vector so that we can efficiently
2319 // create a binary search tree from them.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002320 CaseVector Cases;
2321 unsigned numCmps = Clusterify(Cases, SI);
2322 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2323 << ". Total compares: " << numCmps << "\n";
Bill Wendlingc70ddad2006-10-19 21:46:38 +00002324
Nate Begemanf15485a2006-03-27 01:32:24 +00002325 // Get the Value to be switched on and default basic blocks, which will be
2326 // inserted into CaseBlock records, representing basic blocks in the binary
2327 // search tree.
Anton Korobeynikov5502bf62007-04-04 21:14:49 +00002328 Value *SV = SI.getOperand(0);
Nate Begeman37efe672006-04-22 18:53:45 +00002329
Nate Begemanf15485a2006-03-27 01:32:24 +00002330 // Push the initial CaseRec onto the worklist
Anton Korobeynikovb17b08d2007-03-27 11:29:11 +00002331 CaseRecVector WorkList;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002332 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2333
2334 while (!WorkList.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00002335 // Grab a record representing a case range to process off the worklist
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002336 CaseRec CR = WorkList.back();
2337 WorkList.pop_back();
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002338
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002339 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2340 continue;
2341
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002342 // If the range has few cases (two or less) emit a series of specific
2343 // tests.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002344 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2345 continue;
2346
Anton Korobeynikov4198c582007-04-09 12:31:58 +00002347 // If the switch has more than 5 blocks, and at least 40% dense, and the
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002348 // target supports indirect branches, then emit a jump table rather than
2349 // lowering the switch to a binary tree of conditional branches.
Anton Korobeynikovdd433212007-03-27 12:05:48 +00002350 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2351 continue;
2352
2353 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2354 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2355 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
Nate Begemanf15485a2006-03-27 01:32:24 +00002356 }
2357}
2358
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00002359
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002360void SelectionDAGLowering::visitSub(User &I) {
2361 // -0.0 - X --> fneg
Reid Spencer24d6da52007-01-21 00:29:26 +00002362 const Type *Ty = I.getType();
Reid Spencer9d6565a2007-02-15 02:26:10 +00002363 if (isa<VectorType>(Ty)) {
Dan Gohman7f321562007-06-25 16:23:39 +00002364 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2365 const VectorType *DestTy = cast<VectorType>(I.getType());
2366 const Type *ElTy = DestTy->getElementType();
Evan Chengc45453f2007-06-29 21:44:35 +00002367 if (ElTy->isFloatingPoint()) {
2368 unsigned VL = DestTy->getNumElements();
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002369 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Evan Chengc45453f2007-06-29 21:44:35 +00002370 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2371 if (CV == CNZ) {
2372 SDOperand Op2 = getValue(I.getOperand(1));
2373 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2374 return;
2375 }
Dan Gohman7f321562007-06-25 16:23:39 +00002376 }
2377 }
2378 }
2379 if (Ty->isFloatingPoint()) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002380 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002381 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Chris Lattner01b3d732005-09-28 22:28:18 +00002382 SDOperand Op2 = getValue(I.getOperand(1));
2383 setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2384 return;
2385 }
Dan Gohman7f321562007-06-25 16:23:39 +00002386 }
2387
2388 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
Chris Lattnerb9fccc42005-04-02 05:04:50 +00002389}
2390
Dan Gohman7f321562007-06-25 16:23:39 +00002391void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
Chris Lattner1c08c712005-01-07 07:47:53 +00002392 SDOperand Op1 = getValue(I.getOperand(0));
2393 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer24d6da52007-01-21 00:29:26 +00002394
2395 setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
Reid Spencer1628cec2006-10-26 06:15:43 +00002396}
2397
Nate Begemane21ea612005-11-18 07:42:56 +00002398void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2399 SDOperand Op1 = getValue(I.getOperand(0));
2400 SDOperand Op2 = getValue(I.getOperand(1));
2401
Duncan Sands8e4eb092008-06-08 20:54:56 +00002402 if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002403 Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002404 else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
Reid Spencer832254e2007-02-02 02:16:23 +00002405 Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
Nate Begemane21ea612005-11-18 07:42:56 +00002406
Chris Lattner1c08c712005-01-07 07:47:53 +00002407 setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2408}
2409
Reid Spencer45fb3f32006-11-20 01:22:35 +00002410void SelectionDAGLowering::visitICmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002411 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2412 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2413 predicate = IC->getPredicate();
2414 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2415 predicate = ICmpInst::Predicate(IC->getPredicate());
2416 SDOperand Op1 = getValue(I.getOperand(0));
2417 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencer45fb3f32006-11-20 01:22:35 +00002418 ISD::CondCode Opcode;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002419 switch (predicate) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002420 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2421 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2422 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2423 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2424 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2425 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2426 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2427 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2428 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2429 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2430 default:
2431 assert(!"Invalid ICmp predicate value");
2432 Opcode = ISD::SETEQ;
2433 break;
2434 }
2435 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2436}
2437
2438void SelectionDAGLowering::visitFCmp(User &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002439 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2440 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2441 predicate = FC->getPredicate();
2442 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2443 predicate = FCmpInst::Predicate(FC->getPredicate());
Chris Lattner1c08c712005-01-07 07:47:53 +00002444 SDOperand Op1 = getValue(I.getOperand(0));
2445 SDOperand Op2 = getValue(I.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002446 ISD::CondCode Condition, FOC, FPC;
2447 switch (predicate) {
2448 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2449 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2450 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2451 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2452 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2453 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2454 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
Dan Gohmancba3b442008-05-01 23:40:44 +00002455 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2456 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00002457 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2458 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2459 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2460 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2461 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2462 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2463 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2464 default:
2465 assert(!"Invalid FCmp predicate value");
2466 FOC = FPC = ISD::SETFALSE;
2467 break;
2468 }
2469 if (FiniteOnlyFPMath())
2470 Condition = FOC;
2471 else
2472 Condition = FPC;
2473 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
Chris Lattner1c08c712005-01-07 07:47:53 +00002474}
2475
Nate Begemanb43e9c12008-05-12 19:40:03 +00002476void SelectionDAGLowering::visitVICmp(User &I) {
2477 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2478 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2479 predicate = IC->getPredicate();
2480 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2481 predicate = ICmpInst::Predicate(IC->getPredicate());
2482 SDOperand Op1 = getValue(I.getOperand(0));
2483 SDOperand Op2 = getValue(I.getOperand(1));
2484 ISD::CondCode Opcode;
2485 switch (predicate) {
2486 case ICmpInst::ICMP_EQ : Opcode = ISD::SETEQ; break;
2487 case ICmpInst::ICMP_NE : Opcode = ISD::SETNE; break;
2488 case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2489 case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2490 case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2491 case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2492 case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2493 case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2494 case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2495 case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2496 default:
2497 assert(!"Invalid ICmp predicate value");
2498 Opcode = ISD::SETEQ;
2499 break;
2500 }
2501 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2502}
2503
2504void SelectionDAGLowering::visitVFCmp(User &I) {
2505 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2506 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2507 predicate = FC->getPredicate();
2508 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2509 predicate = FCmpInst::Predicate(FC->getPredicate());
2510 SDOperand Op1 = getValue(I.getOperand(0));
2511 SDOperand Op2 = getValue(I.getOperand(1));
2512 ISD::CondCode Condition, FOC, FPC;
2513 switch (predicate) {
2514 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2515 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2516 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2517 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2518 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2519 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2520 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2521 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
2522 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
2523 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2524 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2525 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2526 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2527 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2528 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2529 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
2530 default:
2531 assert(!"Invalid VFCmp predicate value");
2532 FOC = FPC = ISD::SETFALSE;
2533 break;
2534 }
2535 if (FiniteOnlyFPMath())
2536 Condition = FOC;
2537 else
2538 Condition = FPC;
2539
Duncan Sands83ec4b62008-06-06 12:08:01 +00002540 MVT DestVT = TLI.getValueType(I.getType());
Nate Begemanb43e9c12008-05-12 19:40:03 +00002541
2542 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2543}
2544
Chris Lattner1c08c712005-01-07 07:47:53 +00002545void SelectionDAGLowering::visitSelect(User &I) {
2546 SDOperand Cond = getValue(I.getOperand(0));
2547 SDOperand TrueVal = getValue(I.getOperand(1));
2548 SDOperand FalseVal = getValue(I.getOperand(2));
Dan Gohman7f321562007-06-25 16:23:39 +00002549 setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2550 TrueVal, FalseVal));
Chris Lattner1c08c712005-01-07 07:47:53 +00002551}
2552
Reid Spencer3da59db2006-11-27 01:05:10 +00002553
2554void SelectionDAGLowering::visitTrunc(User &I) {
2555 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2556 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002557 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002558 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2559}
2560
2561void SelectionDAGLowering::visitZExt(User &I) {
2562 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2563 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2564 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002565 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002566 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2567}
2568
2569void SelectionDAGLowering::visitSExt(User &I) {
2570 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2571 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2572 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002573 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002574 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2575}
2576
2577void SelectionDAGLowering::visitFPTrunc(User &I) {
2578 // FPTrunc is never a no-op cast, no need to check
2579 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002580 MVT DestVT = TLI.getValueType(I.getType());
Chris Lattner0bd48932008-01-17 07:00:52 +00002581 setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
Reid Spencer3da59db2006-11-27 01:05:10 +00002582}
2583
2584void SelectionDAGLowering::visitFPExt(User &I){
2585 // FPTrunc is never a no-op cast, no need to check
2586 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002587 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002588 setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2589}
2590
2591void SelectionDAGLowering::visitFPToUI(User &I) {
2592 // FPToUI is never a no-op cast, no need to check
2593 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002594 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002595 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2596}
2597
2598void SelectionDAGLowering::visitFPToSI(User &I) {
2599 // FPToSI is never a no-op cast, no need to check
2600 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002601 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002602 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2603}
2604
2605void SelectionDAGLowering::visitUIToFP(User &I) {
2606 // UIToFP is never a no-op cast, no need to check
2607 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002608 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002609 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2610}
2611
2612void SelectionDAGLowering::visitSIToFP(User &I){
2613 // UIToFP is never a no-op cast, no need to check
2614 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002615 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002616 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2617}
2618
2619void SelectionDAGLowering::visitPtrToInt(User &I) {
2620 // What to do depends on the size of the integer and the size of the pointer.
2621 // We can either truncate, zero extend, or no-op, accordingly.
Chris Lattner1c08c712005-01-07 07:47:53 +00002622 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002623 MVT SrcVT = N.getValueType();
2624 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002625 SDOperand Result;
Duncan Sands8e4eb092008-06-08 20:54:56 +00002626 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002627 Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2628 else
2629 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2630 Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2631 setValue(&I, Result);
2632}
Chris Lattner1c08c712005-01-07 07:47:53 +00002633
Reid Spencer3da59db2006-11-27 01:05:10 +00002634void SelectionDAGLowering::visitIntToPtr(User &I) {
2635 // What to do depends on the size of the integer and the size of the pointer.
2636 // We can either truncate, zero extend, or no-op, accordingly.
2637 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002638 MVT SrcVT = N.getValueType();
2639 MVT DestVT = TLI.getValueType(I.getType());
Duncan Sands8e4eb092008-06-08 20:54:56 +00002640 if (DestVT.bitsLT(SrcVT))
Reid Spencer3da59db2006-11-27 01:05:10 +00002641 setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2642 else
2643 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2644 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2645}
2646
2647void SelectionDAGLowering::visitBitCast(User &I) {
2648 SDOperand N = getValue(I.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00002649 MVT DestVT = TLI.getValueType(I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00002650
2651 // BitCast assures us that source and destination are the same size so this
2652 // is either a BIT_CONVERT or a no-op.
2653 if (DestVT != N.getValueType())
2654 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2655 else
2656 setValue(&I, N); // noop cast.
Chris Lattner1c08c712005-01-07 07:47:53 +00002657}
2658
Chris Lattner2bbd8102006-03-29 00:11:43 +00002659void SelectionDAGLowering::visitInsertElement(User &I) {
Chris Lattnerc7029802006-03-18 01:44:44 +00002660 SDOperand InVec = getValue(I.getOperand(0));
2661 SDOperand InVal = getValue(I.getOperand(1));
2662 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2663 getValue(I.getOperand(2)));
2664
Dan Gohman7f321562007-06-25 16:23:39 +00002665 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2666 TLI.getValueType(I.getType()),
2667 InVec, InVal, InIdx));
Chris Lattnerc7029802006-03-18 01:44:44 +00002668}
2669
Chris Lattner2bbd8102006-03-29 00:11:43 +00002670void SelectionDAGLowering::visitExtractElement(User &I) {
Chris Lattner384504c2006-03-21 20:44:12 +00002671 SDOperand InVec = getValue(I.getOperand(0));
2672 SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2673 getValue(I.getOperand(1)));
Dan Gohman7f321562007-06-25 16:23:39 +00002674 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
Chris Lattner384504c2006-03-21 20:44:12 +00002675 TLI.getValueType(I.getType()), InVec, InIdx));
2676}
Chris Lattnerc7029802006-03-18 01:44:44 +00002677
Chris Lattner3e104b12006-04-08 04:15:24 +00002678void SelectionDAGLowering::visitShuffleVector(User &I) {
2679 SDOperand V1 = getValue(I.getOperand(0));
2680 SDOperand V2 = getValue(I.getOperand(1));
2681 SDOperand Mask = getValue(I.getOperand(2));
2682
Dan Gohman7f321562007-06-25 16:23:39 +00002683 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2684 TLI.getValueType(I.getType()),
2685 V1, V2, Mask));
Chris Lattner3e104b12006-04-08 04:15:24 +00002686}
2687
Dan Gohman1d685a42008-06-07 02:02:36 +00002688void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2689 const Value *Op0 = I.getOperand(0);
2690 const Value *Op1 = I.getOperand(1);
2691 const Type *AggTy = I.getType();
2692 const Type *ValTy = Op1->getType();
2693 bool IntoUndef = isa<UndefValue>(Op0);
2694 bool FromUndef = isa<UndefValue>(Op1);
2695
2696 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2697 I.idx_begin(), I.idx_end());
2698
2699 SmallVector<MVT, 4> AggValueVTs;
2700 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2701 SmallVector<MVT, 4> ValValueVTs;
2702 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2703
2704 unsigned NumAggValues = AggValueVTs.size();
2705 unsigned NumValValues = ValValueVTs.size();
2706 SmallVector<SDOperand, 4> Values(NumAggValues);
2707
2708 SDOperand Agg = getValue(Op0);
2709 SDOperand Val = getValue(Op1);
2710 unsigned i = 0;
2711 // Copy the beginning value(s) from the original aggregate.
2712 for (; i != LinearIndex; ++i)
2713 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2714 SDOperand(Agg.Val, Agg.ResNo + i);
2715 // Copy values from the inserted value(s).
2716 for (; i != LinearIndex + NumValValues; ++i)
2717 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2718 SDOperand(Val.Val, Val.ResNo + i - LinearIndex);
2719 // Copy remaining value(s) from the original aggregate.
2720 for (; i != NumAggValues; ++i)
2721 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2722 SDOperand(Agg.Val, Agg.ResNo + i);
2723
2724 setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
2725 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2726 &Values[0], NumAggValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002727}
2728
Dan Gohman1d685a42008-06-07 02:02:36 +00002729void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2730 const Value *Op0 = I.getOperand(0);
2731 const Type *AggTy = Op0->getType();
2732 const Type *ValTy = I.getType();
2733 bool OutOfUndef = isa<UndefValue>(Op0);
2734
2735 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2736 I.idx_begin(), I.idx_end());
2737
2738 SmallVector<MVT, 4> ValValueVTs;
2739 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2740
2741 unsigned NumValValues = ValValueVTs.size();
2742 SmallVector<SDOperand, 4> Values(NumValValues);
2743
2744 SDOperand Agg = getValue(Op0);
2745 // Copy out the selected value(s).
2746 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2747 Values[i - LinearIndex] =
2748 OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(i)) :
2749 SDOperand(Agg.Val, Agg.ResNo + i - LinearIndex);
2750
2751 setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
2752 DAG.getVTList(&ValValueVTs[0], NumValValues),
2753 &Values[0], NumValValues));
Dan Gohman041e2eb2008-05-15 19:50:34 +00002754}
2755
Chris Lattner3e104b12006-04-08 04:15:24 +00002756
Chris Lattner1c08c712005-01-07 07:47:53 +00002757void SelectionDAGLowering::visitGetElementPtr(User &I) {
2758 SDOperand N = getValue(I.getOperand(0));
2759 const Type *Ty = I.getOperand(0)->getType();
Chris Lattner1c08c712005-01-07 07:47:53 +00002760
2761 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2762 OI != E; ++OI) {
2763 Value *Idx = *OI;
Chris Lattnerc88d8e92005-12-05 07:10:48 +00002764 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002765 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
Chris Lattner1c08c712005-01-07 07:47:53 +00002766 if (Field) {
2767 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +00002768 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Chris Lattner1c08c712005-01-07 07:47:53 +00002769 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
Chris Lattner0bd48932008-01-17 07:00:52 +00002770 DAG.getIntPtrConstant(Offset));
Chris Lattner1c08c712005-01-07 07:47:53 +00002771 }
2772 Ty = StTy->getElementType(Field);
2773 } else {
2774 Ty = cast<SequentialType>(Ty)->getElementType();
Chris Lattner7cc47772005-01-07 21:56:57 +00002775
Chris Lattner7c0104b2005-11-09 04:45:33 +00002776 // If this is a constant subscript, handle it quickly.
2777 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002778 if (CI->getZExtValue() == 0) continue;
Reid Spencer47857812006-12-31 05:55:36 +00002779 uint64_t Offs =
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002780 TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00002781 N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2782 DAG.getIntPtrConstant(Offs));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002783 continue;
Chris Lattner1c08c712005-01-07 07:47:53 +00002784 }
Chris Lattner7c0104b2005-11-09 04:45:33 +00002785
2786 // N = N + Idx * ElementSize;
Dale Johannesena7ac2bd2007-10-01 23:08:35 +00002787 uint64_t ElementSize = TD->getABITypeSize(Ty);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002788 SDOperand IdxN = getValue(Idx);
2789
2790 // If the index is smaller or larger than intptr_t, truncate or extend
2791 // it.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002792 if (IdxN.getValueType().bitsLT(N.getValueType())) {
Reid Spencer47857812006-12-31 05:55:36 +00002793 IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002794 } else if (IdxN.getValueType().bitsGT(N.getValueType()))
Chris Lattner7c0104b2005-11-09 04:45:33 +00002795 IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2796
2797 // If this is a multiply by a power of two, turn it into a shl
2798 // immediately. This is a very common case.
2799 if (isPowerOf2_64(ElementSize)) {
2800 unsigned Amt = Log2_64(ElementSize);
2801 IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
Chris Lattner6b2d6962005-11-09 16:50:40 +00002802 DAG.getConstant(Amt, TLI.getShiftAmountTy()));
Chris Lattner7c0104b2005-11-09 04:45:33 +00002803 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2804 continue;
2805 }
2806
Chris Lattner0bd48932008-01-17 07:00:52 +00002807 SDOperand Scale = DAG.getIntPtrConstant(ElementSize);
Chris Lattner7c0104b2005-11-09 04:45:33 +00002808 IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2809 N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
Chris Lattner1c08c712005-01-07 07:47:53 +00002810 }
2811 }
2812 setValue(&I, N);
2813}
2814
2815void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2816 // If this is a fixed sized alloca in the entry block of the function,
2817 // allocate it statically on the stack.
2818 if (FuncInfo.StaticAllocaMap.count(&I))
2819 return; // getValue will auto-populate this.
2820
2821 const Type *Ty = I.getAllocatedType();
Duncan Sands514ab342007-11-01 20:53:16 +00002822 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00002823 unsigned Align =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00002824 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
Chris Lattner58092e32007-01-20 22:35:55 +00002825 I.getAlignment());
Chris Lattner1c08c712005-01-07 07:47:53 +00002826
2827 SDOperand AllocSize = getValue(I.getArraySize());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002828 MVT IntPtr = TLI.getPointerTy();
Duncan Sands8e4eb092008-06-08 20:54:56 +00002829 if (IntPtr.bitsLT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002830 AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002831 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00002832 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
Chris Lattner1c08c712005-01-07 07:47:53 +00002833
Chris Lattner68cd65e2005-01-22 23:04:37 +00002834 AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002835 DAG.getIntPtrConstant(TySize));
Chris Lattner1c08c712005-01-07 07:47:53 +00002836
Evan Cheng45157792007-08-16 23:46:29 +00002837 // Handle alignment. If the requested alignment is less than or equal to
2838 // the stack alignment, ignore it. If the size is greater than or equal to
2839 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
Chris Lattner1c08c712005-01-07 07:47:53 +00002840 unsigned StackAlign =
2841 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
Evan Cheng45157792007-08-16 23:46:29 +00002842 if (Align <= StackAlign)
Chris Lattner1c08c712005-01-07 07:47:53 +00002843 Align = 0;
Evan Cheng45157792007-08-16 23:46:29 +00002844
2845 // Round the size of the allocation up to the stack alignment size
2846 // by add SA-1 to the size.
2847 AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002848 DAG.getIntPtrConstant(StackAlign-1));
Evan Cheng45157792007-08-16 23:46:29 +00002849 // Mask out the low bits for alignment purposes.
2850 AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
Chris Lattner0bd48932008-01-17 07:00:52 +00002851 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
Chris Lattner1c08c712005-01-07 07:47:53 +00002852
Chris Lattner0bd48932008-01-17 07:00:52 +00002853 SDOperand Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Duncan Sands83ec4b62008-06-06 12:08:01 +00002854 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002855 MVT::Other);
2856 SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
Chris Lattner0da331f2007-02-04 01:31:47 +00002857 setValue(&I, DSA);
2858 DAG.setRoot(DSA.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00002859
2860 // Inform the Frame Information that we have just allocated a variable-sized
2861 // object.
2862 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2863}
2864
Chris Lattner1c08c712005-01-07 07:47:53 +00002865void SelectionDAGLowering::visitLoad(LoadInst &I) {
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002866 const Value *SV = I.getOperand(0);
2867 SDOperand Ptr = getValue(SV);
2868
2869 const Type *Ty = I.getType();
2870 bool isVolatile = I.isVolatile();
2871 unsigned Alignment = I.getAlignment();
2872
2873 SmallVector<MVT, 4> ValueVTs;
2874 SmallVector<uint64_t, 4> Offsets;
2875 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2876 unsigned NumValues = ValueVTs.size();
2877 if (NumValues == 0)
2878 return;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002879
Chris Lattnerd3948112005-01-17 22:19:26 +00002880 SDOperand Root;
2881 if (I.isVolatile())
2882 Root = getRoot();
2883 else {
2884 // Do not serialize non-volatile loads against each other.
2885 Root = DAG.getRoot();
2886 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002887
Dan Gohman1d685a42008-06-07 02:02:36 +00002888 SmallVector<SDOperand, 4> Values(NumValues);
2889 SmallVector<SDOperand, 4> Chains(NumValues);
2890 MVT PtrVT = Ptr.getValueType();
2891 for (unsigned i = 0; i != NumValues; ++i) {
2892 SDOperand L = DAG.getLoad(ValueVTs[i], Root,
2893 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2894 DAG.getConstant(Offsets[i], PtrVT)),
2895 SV, Offsets[i],
2896 isVolatile, Alignment);
2897 Values[i] = L;
2898 Chains[i] = L.getValue(1);
2899 }
Chris Lattner28b5b1c2006-03-15 22:19:46 +00002900
Dan Gohman1d685a42008-06-07 02:02:36 +00002901 SDOperand Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2902 &Chains[0], NumValues);
2903 if (isVolatile)
2904 DAG.setRoot(Chain);
2905 else
2906 PendingLoads.push_back(Chain);
2907
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002908 setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
2909 DAG.getVTList(&ValueVTs[0], NumValues),
2910 &Values[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002911}
2912
2913
2914void SelectionDAGLowering::visitStore(StoreInst &I) {
2915 Value *SrcV = I.getOperand(0);
2916 SDOperand Src = getValue(SrcV);
Dan Gohman1d685a42008-06-07 02:02:36 +00002917 Value *PtrV = I.getOperand(1);
2918 SDOperand Ptr = getValue(PtrV);
2919
2920 SmallVector<MVT, 4> ValueVTs;
2921 SmallVector<uint64_t, 4> Offsets;
2922 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2923 unsigned NumValues = ValueVTs.size();
Dan Gohman8a6ccb52008-06-09 15:21:47 +00002924 if (NumValues == 0)
2925 return;
Dan Gohman1d685a42008-06-07 02:02:36 +00002926
2927 SDOperand Root = getRoot();
2928 SmallVector<SDOperand, 4> Chains(NumValues);
2929 MVT PtrVT = Ptr.getValueType();
2930 bool isVolatile = I.isVolatile();
2931 unsigned Alignment = I.getAlignment();
2932 for (unsigned i = 0; i != NumValues; ++i)
2933 Chains[i] = DAG.getStore(Root, SDOperand(Src.Val, Src.ResNo + i),
2934 DAG.getNode(ISD::ADD, PtrVT, Ptr,
2935 DAG.getConstant(Offsets[i], PtrVT)),
2936 PtrV, Offsets[i],
2937 isVolatile, Alignment);
2938
2939 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
Chris Lattner1c08c712005-01-07 07:47:53 +00002940}
2941
Chris Lattner0eade312006-03-24 02:22:33 +00002942/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2943/// node.
2944void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
2945 unsigned Intrinsic) {
Duncan Sandsa3355ff2007-12-03 20:06:50 +00002946 bool HasChain = !I.doesNotAccessMemory();
2947 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2948
Chris Lattner0eade312006-03-24 02:22:33 +00002949 // Build the operand list.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002950 SmallVector<SDOperand, 8> Ops;
Chris Lattnere58a7802006-04-02 03:41:14 +00002951 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2952 if (OnlyLoad) {
2953 // We don't need to serialize loads against other loads.
2954 Ops.push_back(DAG.getRoot());
2955 } else {
2956 Ops.push_back(getRoot());
2957 }
2958 }
Chris Lattner0eade312006-03-24 02:22:33 +00002959
2960 // Add the intrinsic ID as an integer operand.
2961 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2962
2963 // Add all operands of the call to the operand list.
2964 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2965 SDOperand Op = getValue(I.getOperand(i));
Chris Lattner0eade312006-03-24 02:22:33 +00002966 assert(TLI.isTypeLegal(Op.getValueType()) &&
2967 "Intrinsic uses a non-legal type?");
2968 Ops.push_back(Op);
2969 }
2970
Duncan Sands83ec4b62008-06-06 12:08:01 +00002971 std::vector<MVT> VTs;
Chris Lattner0eade312006-03-24 02:22:33 +00002972 if (I.getType() != Type::VoidTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002973 MVT VT = TLI.getValueType(I.getType());
2974 if (VT.isVector()) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00002975 const VectorType *DestTy = cast<VectorType>(I.getType());
Duncan Sands83ec4b62008-06-06 12:08:01 +00002976 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Chris Lattner0eade312006-03-24 02:22:33 +00002977
Duncan Sands83ec4b62008-06-06 12:08:01 +00002978 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
Chris Lattner0eade312006-03-24 02:22:33 +00002979 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2980 }
2981
2982 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2983 VTs.push_back(VT);
2984 }
2985 if (HasChain)
2986 VTs.push_back(MVT::Other);
2987
Duncan Sands83ec4b62008-06-06 12:08:01 +00002988 const MVT *VTList = DAG.getNodeValueTypes(VTs);
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002989
Chris Lattner0eade312006-03-24 02:22:33 +00002990 // Create the node.
Chris Lattner48b61a72006-03-28 00:40:33 +00002991 SDOperand Result;
2992 if (!HasChain)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002993 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2994 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002995 else if (I.getType() != Type::VoidTy)
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002996 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2997 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00002998 else
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00002999 Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
3000 &Ops[0], Ops.size());
Chris Lattner48b61a72006-03-28 00:40:33 +00003001
Chris Lattnere58a7802006-04-02 03:41:14 +00003002 if (HasChain) {
3003 SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
3004 if (OnlyLoad)
3005 PendingLoads.push_back(Chain);
3006 else
3007 DAG.setRoot(Chain);
3008 }
Chris Lattner0eade312006-03-24 02:22:33 +00003009 if (I.getType() != Type::VoidTy) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003010 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003011 MVT VT = TLI.getValueType(PTy);
Dan Gohman7f321562007-06-25 16:23:39 +00003012 Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
Chris Lattner0eade312006-03-24 02:22:33 +00003013 }
3014 setValue(&I, Result);
3015 }
3016}
3017
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003018/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003019static GlobalVariable *ExtractTypeInfo (Value *V) {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003020 V = V->stripPointerCasts();
Duncan Sandsb4fd45e2007-07-06 09:10:03 +00003021 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003022 assert ((GV || isa<ConstantPointerNull>(V)) &&
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003023 "TypeInfo must be a global variable or NULL");
3024 return GV;
3025}
3026
Duncan Sandsf4070822007-06-15 19:04:19 +00003027/// addCatchInfo - Extract the personality and type infos from an eh.selector
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003028/// call, and add them to the specified machine basic block.
Duncan Sandsf4070822007-06-15 19:04:19 +00003029static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3030 MachineBasicBlock *MBB) {
3031 // Inform the MachineModuleInfo of the personality for this landing pad.
3032 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3033 assert(CE->getOpcode() == Instruction::BitCast &&
3034 isa<Function>(CE->getOperand(0)) &&
3035 "Personality should be a function");
3036 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3037
3038 // Gather all the type infos for this landing pad and pass them along to
3039 // MachineModuleInfo.
3040 std::vector<GlobalVariable *> TyInfo;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003041 unsigned N = I.getNumOperands();
3042
3043 for (unsigned i = N - 1; i > 2; --i) {
3044 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3045 unsigned FilterLength = CI->getZExtValue();
Duncan Sands6590b042007-08-27 15:47:50 +00003046 unsigned FirstCatch = i + FilterLength + !FilterLength;
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003047 assert (FirstCatch <= N && "Invalid filter length");
3048
3049 if (FirstCatch < N) {
3050 TyInfo.reserve(N - FirstCatch);
3051 for (unsigned j = FirstCatch; j < N; ++j)
3052 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3053 MMI->addCatchTypeInfo(MBB, TyInfo);
3054 TyInfo.clear();
3055 }
3056
Duncan Sands6590b042007-08-27 15:47:50 +00003057 if (!FilterLength) {
3058 // Cleanup.
3059 MMI->addCleanup(MBB);
3060 } else {
3061 // Filter.
3062 TyInfo.reserve(FilterLength - 1);
3063 for (unsigned j = i + 1; j < FirstCatch; ++j)
3064 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3065 MMI->addFilterTypeInfo(MBB, TyInfo);
3066 TyInfo.clear();
3067 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003068
3069 N = i;
3070 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003071 }
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003072
3073 if (N > 3) {
3074 TyInfo.reserve(N - 3);
3075 for (unsigned j = 3; j < N; ++j)
3076 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
Duncan Sandsf4070822007-06-15 19:04:19 +00003077 MMI->addCatchTypeInfo(MBB, TyInfo);
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003078 }
Duncan Sandsf4070822007-06-15 19:04:19 +00003079}
3080
Mon P Wang63307c32008-05-05 19:05:59 +00003081
3082/// Inlined utility function to implement binary input atomic intrinsics for
3083// visitIntrinsicCall: I is a call instruction
3084// Op is the associated NodeType for I
3085const char *
3086SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
3087 SDOperand Root = getRoot();
3088 SDOperand O2 = getValue(I.getOperand(2));
3089 SDOperand L = DAG.getAtomic(Op, Root,
3090 getValue(I.getOperand(1)),
3091 O2, O2.getValueType());
3092 setValue(&I, L);
3093 DAG.setRoot(L.getValue(1));
3094 return 0;
3095}
3096
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003097/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3098/// we want to emit this as a call to a named external function, return the name
3099/// otherwise lower it and return null.
3100const char *
3101SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3102 switch (Intrinsic) {
Chris Lattner0eade312006-03-24 02:22:33 +00003103 default:
3104 // By default, turn this into a target intrinsic node.
3105 visitTargetIntrinsic(I, Intrinsic);
3106 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003107 case Intrinsic::vastart: visitVAStart(I); return 0;
3108 case Intrinsic::vaend: visitVAEnd(I); return 0;
3109 case Intrinsic::vacopy: visitVACopy(I); return 0;
Nate Begemanbcc5f362007-01-29 22:58:52 +00003110 case Intrinsic::returnaddress:
3111 setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3112 getValue(I.getOperand(1))));
3113 return 0;
3114 case Intrinsic::frameaddress:
3115 setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3116 getValue(I.getOperand(1))));
3117 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003118 case Intrinsic::setjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003119 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003120 break;
3121 case Intrinsic::longjmp:
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00003122 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003123 break;
Chris Lattner03dd4652006-03-03 00:00:25 +00003124 case Intrinsic::memcpy_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003125 case Intrinsic::memcpy_i64: {
3126 SDOperand Op1 = getValue(I.getOperand(1));
3127 SDOperand Op2 = getValue(I.getOperand(2));
3128 SDOperand Op3 = getValue(I.getOperand(3));
3129 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3130 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3131 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003132 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003133 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003134 case Intrinsic::memset_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003135 case Intrinsic::memset_i64: {
3136 SDOperand Op1 = getValue(I.getOperand(1));
3137 SDOperand Op2 = getValue(I.getOperand(2));
3138 SDOperand Op3 = getValue(I.getOperand(3));
3139 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3140 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3141 I.getOperand(1), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003142 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003143 }
Chris Lattner03dd4652006-03-03 00:00:25 +00003144 case Intrinsic::memmove_i32:
Dan Gohman707e0182008-04-12 04:36:06 +00003145 case Intrinsic::memmove_i64: {
3146 SDOperand Op1 = getValue(I.getOperand(1));
3147 SDOperand Op2 = getValue(I.getOperand(2));
3148 SDOperand Op3 = getValue(I.getOperand(3));
3149 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3150
3151 // If the source and destination are known to not be aliases, we can
3152 // lower memmove as memcpy.
3153 uint64_t Size = -1ULL;
3154 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3155 Size = C->getValue();
3156 if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3157 AliasAnalysis::NoAlias) {
3158 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3159 I.getOperand(1), 0, I.getOperand(2), 0));
3160 return 0;
3161 }
3162
3163 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3164 I.getOperand(1), 0, I.getOperand(2), 0));
Chris Lattner03dd4652006-03-03 00:00:25 +00003165 return 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003166 }
Chris Lattner86cb6432005-12-13 17:40:33 +00003167 case Intrinsic::dbg_stoppoint: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003168 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003169 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003170 if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003171 SDOperand Ops[5];
Chris Lattner36ce6912005-11-29 06:21:05 +00003172
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003173 Ops[0] = getRoot();
3174 Ops[1] = getValue(SPI.getLineValue());
3175 Ops[2] = getValue(SPI.getColumnValue());
Chris Lattner36ce6912005-11-29 06:21:05 +00003176
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003177 DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
Jim Laskeyce72b172006-02-11 01:01:30 +00003178 assert(DD && "Not a debug information descriptor");
Jim Laskey43970fe2006-03-23 18:06:46 +00003179 CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
3180
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003181 Ops[3] = DAG.getString(CompileUnit->getFileName());
3182 Ops[4] = DAG.getString(CompileUnit->getDirectory());
Jim Laskeyce72b172006-02-11 01:01:30 +00003183
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003184 DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops, 5));
Chris Lattner86cb6432005-12-13 17:40:33 +00003185 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003186
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003187 return 0;
Chris Lattner36ce6912005-11-29 06:21:05 +00003188 }
Jim Laskey43970fe2006-03-23 18:06:46 +00003189 case Intrinsic::dbg_region_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003190 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003191 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003192 if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3193 unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
Jim Laskey1ee29252007-01-26 14:34:52 +00003194 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003195 DAG.getConstant(LabelID, MVT::i32),
3196 DAG.getConstant(0, MVT::i32)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003197 }
3198
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003199 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003200 }
3201 case Intrinsic::dbg_region_end: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003202 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003203 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003204 if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3205 unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
Evan Chengbb81d972008-01-31 09:59:15 +00003206 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
3207 DAG.getConstant(LabelID, MVT::i32),
3208 DAG.getConstant(0, MVT::i32)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003209 }
3210
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003211 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003212 }
3213 case Intrinsic::dbg_func_start: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003214 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003215 if (!MMI) return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003216 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00003217 Value *SP = FSI.getSubprogram();
3218 if (SP && MMI->Verify(SP)) {
3219 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3220 // what (most?) gdb expects.
3221 DebugInfoDesc *DD = MMI->getDescFor(SP);
3222 assert(DD && "Not a debug information descriptor");
3223 SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3224 const CompileUnitDesc *CompileUnit = Subprogram->getFile();
3225 unsigned SrcFile = MMI->RecordSource(CompileUnit->getDirectory(),
3226 CompileUnit->getFileName());
3227 // Record the source line but does create a label. It will be emitted
3228 // at asm emission time.
3229 MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
Jim Laskey43970fe2006-03-23 18:06:46 +00003230 }
3231
Chris Lattnerb1a5a5c2005-11-16 07:22:30 +00003232 return 0;
Jim Laskey43970fe2006-03-23 18:06:46 +00003233 }
3234 case Intrinsic::dbg_declare: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00003235 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey43970fe2006-03-23 18:06:46 +00003236 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
Evan Chenga844bde2008-02-02 04:07:54 +00003237 Value *Variable = DI.getVariable();
3238 if (MMI && Variable && MMI->Verify(Variable))
3239 DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3240 getValue(DI.getAddress()), getValue(Variable)));
Jim Laskey43970fe2006-03-23 18:06:46 +00003241 return 0;
3242 }
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003243
Jim Laskeyb180aa12007-02-21 22:53:45 +00003244 case Intrinsic::eh_exception: {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003245 if (!CurMBB->isLandingPad()) {
3246 // FIXME: Mark exception register as live in. Hack for PR1508.
3247 unsigned Reg = TLI.getExceptionAddressRegister();
3248 if (Reg) CurMBB->addLiveIn(Reg);
Jim Laskey735b6f82007-02-22 15:38:06 +00003249 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003250 // Insert the EXCEPTIONADDR instruction.
3251 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3252 SDOperand Ops[1];
3253 Ops[0] = DAG.getRoot();
3254 SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
3255 setValue(&I, Op);
3256 DAG.setRoot(Op.getValue(1));
Jim Laskeyb180aa12007-02-21 22:53:45 +00003257 return 0;
3258 }
3259
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003260 case Intrinsic::eh_selector_i32:
3261 case Intrinsic::eh_selector_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003262 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003263 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003264 MVT::i32 : MVT::i64);
3265
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003266 if (MMI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00003267 if (CurMBB->isLandingPad())
3268 addCatchInfo(I, MMI, CurMBB);
Evan Chenge47c3332007-06-27 18:45:32 +00003269 else {
Duncan Sandsf4070822007-06-15 19:04:19 +00003270#ifndef NDEBUG
Duncan Sandsf4070822007-06-15 19:04:19 +00003271 FuncInfo.CatchInfoLost.insert(&I);
3272#endif
Duncan Sands90291952007-07-06 09:18:59 +00003273 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3274 unsigned Reg = TLI.getExceptionSelectorRegister();
3275 if (Reg) CurMBB->addLiveIn(Reg);
Evan Chenge47c3332007-06-27 18:45:32 +00003276 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003277
3278 // Insert the EHSELECTION instruction.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003279 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Jim Laskey735b6f82007-02-22 15:38:06 +00003280 SDOperand Ops[2];
3281 Ops[0] = getValue(I.getOperand(1));
3282 Ops[1] = getRoot();
3283 SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
3284 setValue(&I, Op);
3285 DAG.setRoot(Op.getValue(1));
Jim Laskey7a1de982007-02-24 09:45:44 +00003286 } else {
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003287 setValue(&I, DAG.getConstant(0, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003288 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003289
3290 return 0;
3291 }
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003292
3293 case Intrinsic::eh_typeid_for_i32:
3294 case Intrinsic::eh_typeid_for_i64: {
Jim Laskeyb180aa12007-02-21 22:53:45 +00003295 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003296 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003297 MVT::i32 : MVT::i64);
Jim Laskeyb180aa12007-02-21 22:53:45 +00003298
Jim Laskey735b6f82007-02-22 15:38:06 +00003299 if (MMI) {
3300 // Find the type id for the given typeinfo.
Duncan Sandscf26d7c2007-07-04 20:52:51 +00003301 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
Duncan Sands3b346362007-05-04 17:12:26 +00003302
Jim Laskey735b6f82007-02-22 15:38:06 +00003303 unsigned TypeID = MMI->getTypeIDFor(GV);
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003304 setValue(&I, DAG.getConstant(TypeID, VT));
Jim Laskey7a1de982007-02-24 09:45:44 +00003305 } else {
Duncan Sandsf664e412007-07-06 14:46:23 +00003306 // Return something different to eh_selector.
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +00003307 setValue(&I, DAG.getConstant(1, VT));
Jim Laskey735b6f82007-02-22 15:38:06 +00003308 }
Jim Laskeyb180aa12007-02-21 22:53:45 +00003309
3310 return 0;
3311 }
3312
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003313 case Intrinsic::eh_return: {
3314 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3315
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003316 if (MMI) {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003317 MMI->setCallsEHReturn(true);
3318 DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3319 MVT::Other,
Dan Gohman86e1ebf2008-03-27 19:56:19 +00003320 getControlRoot(),
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003321 getValue(I.getOperand(1)),
3322 getValue(I.getOperand(2))));
3323 } else {
3324 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3325 }
3326
3327 return 0;
3328 }
3329
3330 case Intrinsic::eh_unwind_init: {
3331 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3332 MMI->setCallsUnwindInit(true);
3333 }
3334
3335 return 0;
3336 }
3337
3338 case Intrinsic::eh_dwarf_cfa: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003339 MVT VT = getValue(I.getOperand(1)).getValueType();
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003340 SDOperand CfaArg;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003341 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003342 CfaArg = DAG.getNode(ISD::TRUNCATE,
3343 TLI.getPointerTy(), getValue(I.getOperand(1)));
3344 else
3345 CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3346 TLI.getPointerTy(), getValue(I.getOperand(1)));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003347
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003348 SDOperand Offset = DAG.getNode(ISD::ADD,
3349 TLI.getPointerTy(),
3350 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3351 TLI.getPointerTy()),
3352 CfaArg);
3353 setValue(&I, DAG.getNode(ISD::ADD,
3354 TLI.getPointerTy(),
3355 DAG.getNode(ISD::FRAMEADDR,
3356 TLI.getPointerTy(),
3357 DAG.getConstant(0,
3358 TLI.getPointerTy())),
3359 Offset));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003360 return 0;
3361 }
3362
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003363 case Intrinsic::sqrt:
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003364 setValue(&I, DAG.getNode(ISD::FSQRT,
3365 getValue(I.getOperand(1)).getValueType(),
3366 getValue(I.getOperand(1))));
3367 return 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00003368 case Intrinsic::powi:
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003369 setValue(&I, DAG.getNode(ISD::FPOWI,
3370 getValue(I.getOperand(1)).getValueType(),
3371 getValue(I.getOperand(1)),
3372 getValue(I.getOperand(2))));
3373 return 0;
Dan Gohmanac9385a2007-10-12 00:01:22 +00003374 case Intrinsic::sin:
3375 setValue(&I, DAG.getNode(ISD::FSIN,
3376 getValue(I.getOperand(1)).getValueType(),
3377 getValue(I.getOperand(1))));
3378 return 0;
3379 case Intrinsic::cos:
3380 setValue(&I, DAG.getNode(ISD::FCOS,
3381 getValue(I.getOperand(1)).getValueType(),
3382 getValue(I.getOperand(1))));
3383 return 0;
3384 case Intrinsic::pow:
3385 setValue(&I, DAG.getNode(ISD::FPOW,
3386 getValue(I.getOperand(1)).getValueType(),
3387 getValue(I.getOperand(1)),
3388 getValue(I.getOperand(2))));
3389 return 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003390 case Intrinsic::pcmarker: {
3391 SDOperand Tmp = getValue(I.getOperand(1));
3392 DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3393 return 0;
3394 }
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003395 case Intrinsic::readcyclecounter: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003396 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003397 SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
3398 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3399 &Op, 1);
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003400 setValue(&I, Tmp);
3401 DAG.setRoot(Tmp.getValue(1));
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003402 return 0;
Andrew Lenharth8b91c772005-11-11 22:48:54 +00003403 }
Chris Lattnerc6eb6d72007-04-10 03:20:39 +00003404 case Intrinsic::part_select: {
Reid Spencer3f108cb2007-04-05 01:20:18 +00003405 // Currently not implemented: just abort
Reid Spencerf75b8742007-04-12 02:48:46 +00003406 assert(0 && "part_select intrinsic not implemented");
3407 abort();
3408 }
3409 case Intrinsic::part_set: {
3410 // Currently not implemented: just abort
3411 assert(0 && "part_set intrinsic not implemented");
Reid Spencer3f108cb2007-04-05 01:20:18 +00003412 abort();
Reid Spenceraddd11d2007-04-04 23:48:25 +00003413 }
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003414 case Intrinsic::bswap:
Nate Begemand88fc032006-01-14 03:14:10 +00003415 setValue(&I, DAG.getNode(ISD::BSWAP,
3416 getValue(I.getOperand(1)).getValueType(),
3417 getValue(I.getOperand(1))));
3418 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003419 case Intrinsic::cttz: {
3420 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003421 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003422 SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003423 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003424 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003425 }
3426 case Intrinsic::ctlz: {
3427 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003428 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003429 SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003430 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003431 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003432 }
3433 case Intrinsic::ctpop: {
3434 SDOperand Arg = getValue(I.getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003435 MVT Ty = Arg.getValueType();
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003436 SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003437 setValue(&I, result);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003438 return 0;
Reid Spencera4f9c4d2007-04-01 07:34:11 +00003439 }
Chris Lattner140d53c2006-01-13 02:50:02 +00003440 case Intrinsic::stacksave: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003441 SDOperand Op = getRoot();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003442 SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
3443 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
Chris Lattner140d53c2006-01-13 02:50:02 +00003444 setValue(&I, Tmp);
3445 DAG.setRoot(Tmp.getValue(1));
3446 return 0;
3447 }
Chris Lattner39a17dd2006-01-23 05:22:07 +00003448 case Intrinsic::stackrestore: {
3449 SDOperand Tmp = getValue(I.getOperand(1));
3450 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
Chris Lattner140d53c2006-01-13 02:50:02 +00003451 return 0;
Chris Lattner39a17dd2006-01-23 05:22:07 +00003452 }
Tanya Lattner24e5aad2007-06-15 22:26:58 +00003453 case Intrinsic::var_annotation:
3454 // Discard annotate attributes
3455 return 0;
Duncan Sands36397f52007-07-27 12:58:54 +00003456
Duncan Sands36397f52007-07-27 12:58:54 +00003457 case Intrinsic::init_trampoline: {
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00003458 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
Duncan Sands36397f52007-07-27 12:58:54 +00003459
3460 SDOperand Ops[6];
3461 Ops[0] = getRoot();
3462 Ops[1] = getValue(I.getOperand(1));
3463 Ops[2] = getValue(I.getOperand(2));
3464 Ops[3] = getValue(I.getOperand(3));
3465 Ops[4] = DAG.getSrcValue(I.getOperand(1));
3466 Ops[5] = DAG.getSrcValue(F);
3467
Duncan Sandsf7331b32007-09-11 14:10:23 +00003468 SDOperand Tmp = DAG.getNode(ISD::TRAMPOLINE,
3469 DAG.getNodeValueTypes(TLI.getPointerTy(),
3470 MVT::Other), 2,
3471 Ops, 6);
3472
3473 setValue(&I, Tmp);
3474 DAG.setRoot(Tmp.getValue(1));
Duncan Sands36397f52007-07-27 12:58:54 +00003475 return 0;
3476 }
Gordon Henriksence224772008-01-07 01:30:38 +00003477
3478 case Intrinsic::gcroot:
3479 if (GCI) {
3480 Value *Alloca = I.getOperand(1);
3481 Constant *TypeMap = cast<Constant>(I.getOperand(2));
3482
3483 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3484 GCI->addStackRoot(FI->getIndex(), TypeMap);
3485 }
3486 return 0;
3487
3488 case Intrinsic::gcread:
3489 case Intrinsic::gcwrite:
3490 assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3491 return 0;
3492
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003493 case Intrinsic::flt_rounds: {
Dan Gohman1a024862008-01-31 00:41:03 +00003494 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003495 return 0;
3496 }
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003497
3498 case Intrinsic::trap: {
3499 DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3500 return 0;
3501 }
Evan Cheng27b7db52008-03-08 00:58:38 +00003502 case Intrinsic::prefetch: {
3503 SDOperand Ops[4];
3504 Ops[0] = getRoot();
3505 Ops[1] = getValue(I.getOperand(1));
3506 Ops[2] = getValue(I.getOperand(2));
3507 Ops[3] = getValue(I.getOperand(3));
3508 DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3509 return 0;
3510 }
3511
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003512 case Intrinsic::memory_barrier: {
3513 SDOperand Ops[6];
3514 Ops[0] = getRoot();
3515 for (int x = 1; x < 6; ++x)
3516 Ops[x] = getValue(I.getOperand(x));
3517
3518 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3519 return 0;
3520 }
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003521 case Intrinsic::atomic_lcs: {
3522 SDOperand Root = getRoot();
3523 SDOperand O3 = getValue(I.getOperand(3));
3524 SDOperand L = DAG.getAtomic(ISD::ATOMIC_LCS, Root,
3525 getValue(I.getOperand(1)),
3526 getValue(I.getOperand(2)),
3527 O3, O3.getValueType());
3528 setValue(&I, L);
3529 DAG.setRoot(L.getValue(1));
3530 return 0;
3531 }
Mon P Wang63307c32008-05-05 19:05:59 +00003532 case Intrinsic::atomic_las:
3533 return implVisitBinaryAtomic(I, ISD::ATOMIC_LAS);
3534 case Intrinsic::atomic_lss:
3535 return implVisitBinaryAtomic(I, ISD::ATOMIC_LSS);
3536 case Intrinsic::atomic_load_and:
3537 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3538 case Intrinsic::atomic_load_or:
3539 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3540 case Intrinsic::atomic_load_xor:
3541 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003542 case Intrinsic::atomic_load_nand:
3543 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Mon P Wang63307c32008-05-05 19:05:59 +00003544 case Intrinsic::atomic_load_min:
3545 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3546 case Intrinsic::atomic_load_max:
3547 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3548 case Intrinsic::atomic_load_umin:
3549 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3550 case Intrinsic::atomic_load_umax:
3551 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
3552 case Intrinsic::atomic_swap:
3553 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003554 }
3555}
3556
3557
Duncan Sands6f74b482007-12-19 09:48:52 +00003558void SelectionDAGLowering::LowerCallTo(CallSite CS, SDOperand Callee,
Jim Laskey1da20a72007-02-23 21:45:01 +00003559 bool IsTailCall,
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003560 MachineBasicBlock *LandingPad) {
Duncan Sands6f74b482007-12-19 09:48:52 +00003561 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
Jim Laskey735b6f82007-02-22 15:38:06 +00003562 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003563 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3564 unsigned BeginLabel = 0, EndLabel = 0;
Duncan Sands6f74b482007-12-19 09:48:52 +00003565
Jim Laskey735b6f82007-02-22 15:38:06 +00003566 TargetLowering::ArgListTy Args;
3567 TargetLowering::ArgListEntry Entry;
Duncan Sands6f74b482007-12-19 09:48:52 +00003568 Args.reserve(CS.arg_size());
3569 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3570 i != e; ++i) {
3571 SDOperand ArgNode = getValue(*i);
3572 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
Duncan Sands4fee7032007-05-07 20:49:28 +00003573
Duncan Sands6f74b482007-12-19 09:48:52 +00003574 unsigned attrInd = i - CS.arg_begin() + 1;
3575 Entry.isSExt = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3576 Entry.isZExt = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3577 Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3578 Entry.isSRet = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3579 Entry.isNest = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3580 Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
Dale Johannesen08e78b12008-02-22 17:49:45 +00003581 Entry.Alignment = CS.getParamAlignment(attrInd);
Jim Laskey735b6f82007-02-22 15:38:06 +00003582 Args.push_back(Entry);
3583 }
3584
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003585 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003586 // Insert a label before the invoke call to mark the try range. This can be
3587 // used to detect deletion of the invoke via the MachineModuleInfo.
3588 BeginLabel = MMI->NextLabelID();
Dale Johannesena4091d32008-04-04 23:48:31 +00003589 // Both PendingLoads and PendingExports must be flushed here;
3590 // this call might not return.
3591 (void)getRoot();
3592 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getControlRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003593 DAG.getConstant(BeginLabel, MVT::i32),
3594 DAG.getConstant(1, MVT::i32)));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003595 }
Duncan Sands6f74b482007-12-19 09:48:52 +00003596
Jim Laskey735b6f82007-02-22 15:38:06 +00003597 std::pair<SDOperand,SDOperand> Result =
Duncan Sands6f74b482007-12-19 09:48:52 +00003598 TLI.LowerCallTo(getRoot(), CS.getType(),
3599 CS.paramHasAttr(0, ParamAttr::SExt),
Duncan Sands00fee652008-02-14 17:28:50 +00003600 CS.paramHasAttr(0, ParamAttr::ZExt),
Duncan Sands6f74b482007-12-19 09:48:52 +00003601 FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
Jim Laskey735b6f82007-02-22 15:38:06 +00003602 Callee, Args, DAG);
Duncan Sands6f74b482007-12-19 09:48:52 +00003603 if (CS.getType() != Type::VoidTy)
3604 setValue(CS.getInstruction(), Result.first);
Jim Laskey735b6f82007-02-22 15:38:06 +00003605 DAG.setRoot(Result.second);
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003606
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003607 if (LandingPad && MMI) {
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003608 // Insert a label at the end of the invoke call to mark the try range. This
3609 // can be used to detect deletion of the invoke via the MachineModuleInfo.
3610 EndLabel = MMI->NextLabelID();
3611 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
Evan Chengbb81d972008-01-31 09:59:15 +00003612 DAG.getConstant(EndLabel, MVT::i32),
3613 DAG.getConstant(1, MVT::i32)));
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003614
Duncan Sands6f74b482007-12-19 09:48:52 +00003615 // Inform MachineModuleInfo of range.
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003616 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3617 }
Jim Laskey735b6f82007-02-22 15:38:06 +00003618}
3619
3620
Chris Lattner1c08c712005-01-07 07:47:53 +00003621void SelectionDAGLowering::visitCall(CallInst &I) {
Chris Lattner64e14b12005-01-08 22:48:57 +00003622 const char *RenameFn = 0;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003623 if (Function *F = I.getCalledFunction()) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003624 if (F->isDeclaration()) {
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003625 if (unsigned IID = F->getIntrinsicID()) {
3626 RenameFn = visitIntrinsicCall(I, IID);
3627 if (!RenameFn)
3628 return;
Chris Lattner87b51bc2007-09-10 21:15:22 +00003629 }
3630 }
3631
3632 // Check for well-known libc/libm calls. If the function is internal, it
3633 // can't be a library call.
3634 unsigned NameLen = F->getNameLen();
3635 if (!F->hasInternalLinkage() && NameLen) {
3636 const char *NameStr = F->getNameStart();
3637 if (NameStr[0] == 'c' &&
3638 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3639 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3640 if (I.getNumOperands() == 3 && // Basic sanity checks.
3641 I.getOperand(1)->getType()->isFloatingPoint() &&
3642 I.getType() == I.getOperand(1)->getType() &&
3643 I.getType() == I.getOperand(2)->getType()) {
3644 SDOperand LHS = getValue(I.getOperand(1));
3645 SDOperand RHS = getValue(I.getOperand(2));
3646 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3647 LHS, RHS));
3648 return;
3649 }
3650 } else if (NameStr[0] == 'f' &&
3651 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003652 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3653 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003654 if (I.getNumOperands() == 2 && // Basic sanity checks.
3655 I.getOperand(1)->getType()->isFloatingPoint() &&
3656 I.getType() == I.getOperand(1)->getType()) {
3657 SDOperand Tmp = getValue(I.getOperand(1));
3658 setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3659 return;
3660 }
3661 } else if (NameStr[0] == 's' &&
3662 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003663 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3664 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003665 if (I.getNumOperands() == 2 && // Basic sanity checks.
3666 I.getOperand(1)->getType()->isFloatingPoint() &&
3667 I.getType() == I.getOperand(1)->getType()) {
3668 SDOperand Tmp = getValue(I.getOperand(1));
3669 setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3670 return;
3671 }
3672 } else if (NameStr[0] == 'c' &&
3673 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
Dale Johannesen2f429012007-09-26 21:10:55 +00003674 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3675 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
Chris Lattner87b51bc2007-09-10 21:15:22 +00003676 if (I.getNumOperands() == 2 && // Basic sanity checks.
3677 I.getOperand(1)->getType()->isFloatingPoint() &&
3678 I.getType() == I.getOperand(1)->getType()) {
3679 SDOperand Tmp = getValue(I.getOperand(1));
3680 setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3681 return;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003682 }
Chris Lattner1ca85d52005-05-14 13:56:55 +00003683 }
Chris Lattner87b51bc2007-09-10 21:15:22 +00003684 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00003685 } else if (isa<InlineAsm>(I.getOperand(0))) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00003686 visitInlineAsm(&I);
Chris Lattnerce7518c2006-01-26 22:24:51 +00003687 return;
Chris Lattnerc9ea6fd2005-11-09 19:44:01 +00003688 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003689
Chris Lattner64e14b12005-01-08 22:48:57 +00003690 SDOperand Callee;
3691 if (!RenameFn)
3692 Callee = getValue(I.getOperand(0));
3693 else
3694 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Anton Korobeynikov070280e2007-05-23 11:08:31 +00003695
Duncan Sands6f74b482007-12-19 09:48:52 +00003696 LowerCallTo(&I, Callee, I.isTailCall());
Chris Lattner1c08c712005-01-07 07:47:53 +00003697}
3698
Jim Laskey735b6f82007-02-22 15:38:06 +00003699
Dan Gohmanef5d1942008-03-11 21:11:25 +00003700void SelectionDAGLowering::visitGetResult(GetResultInst &I) {
Dan Gohman67780f12008-04-23 20:25:16 +00003701 if (isa<UndefValue>(I.getOperand(0))) {
Dan Gohman3dc34f62008-04-23 20:21:29 +00003702 SDOperand Undef = DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()));
3703 setValue(&I, Undef);
Chris Lattner6833b062008-04-28 07:16:35 +00003704 return;
Dan Gohman3dc34f62008-04-23 20:21:29 +00003705 }
Chris Lattner6833b062008-04-28 07:16:35 +00003706
3707 // To add support for individual return values with aggregate types,
3708 // we'd need a way to take a getresult index and determine which
3709 // values of the Call SDNode are associated with it.
3710 assert(TLI.getValueType(I.getType(), true) != MVT::Other &&
3711 "Individual return values must not be aggregates!");
3712
3713 SDOperand Call = getValue(I.getOperand(0));
3714 setValue(&I, SDOperand(Call.Val, I.getIndex()));
Dan Gohmanef5d1942008-03-11 21:11:25 +00003715}
3716
3717
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003718/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3719/// this value and returns the result as a ValueVT value. This uses
3720/// Chain/Flag as the input and updates them for the output Chain/Flag.
3721/// If the Flag pointer is NULL, no flag is used.
Chris Lattneread0d882008-06-17 06:09:18 +00003722SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
Chris Lattner6833b062008-04-28 07:16:35 +00003723 SDOperand &Chain,
3724 SDOperand *Flag) const {
Dan Gohman23ce5022008-04-25 18:27:55 +00003725 // Assemble the legal parts into the final values.
3726 SmallVector<SDOperand, 4> Values(ValueVTs.size());
Chris Lattner6833b062008-04-28 07:16:35 +00003727 SmallVector<SDOperand, 8> Parts;
3728 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Dan Gohman23ce5022008-04-25 18:27:55 +00003729 // Copy the legal parts from the registers.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003730 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003731 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003732 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003733
Chris Lattner6833b062008-04-28 07:16:35 +00003734 Parts.resize(NumRegs);
Dan Gohman23ce5022008-04-25 18:27:55 +00003735 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003736 SDOperand P;
3737 if (Flag == 0)
3738 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3739 else {
3740 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
Dan Gohman23ce5022008-04-25 18:27:55 +00003741 *Flag = P.getValue(2);
Chris Lattner6833b062008-04-28 07:16:35 +00003742 }
3743 Chain = P.getValue(1);
Chris Lattneread0d882008-06-17 06:09:18 +00003744
3745 // If the source register was virtual and if we know something about it,
3746 // add an assert node.
3747 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3748 RegisterVT.isInteger() && !RegisterVT.isVector()) {
3749 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3750 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3751 if (FLI.LiveOutRegInfo.size() > SlotNo) {
3752 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3753
3754 unsigned RegSize = RegisterVT.getSizeInBits();
3755 unsigned NumSignBits = LOI.NumSignBits;
3756 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3757
3758 // FIXME: We capture more information than the dag can represent. For
3759 // now, just use the tightest assertzext/assertsext possible.
3760 bool isSExt = true;
3761 MVT FromVT(MVT::Other);
3762 if (NumSignBits == RegSize)
3763 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
3764 else if (NumZeroBits >= RegSize-1)
3765 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
3766 else if (NumSignBits > RegSize-8)
3767 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
3768 else if (NumZeroBits >= RegSize-9)
3769 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
3770 else if (NumSignBits > RegSize-16)
3771 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
3772 else if (NumZeroBits >= RegSize-17)
3773 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
3774 else if (NumSignBits > RegSize-32)
3775 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
3776 else if (NumZeroBits >= RegSize-33)
3777 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
3778
3779 if (FromVT != MVT::Other) {
3780 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3781 RegisterVT, P, DAG.getValueType(FromVT));
3782
3783 }
3784 }
3785 }
3786
Dan Gohman23ce5022008-04-25 18:27:55 +00003787 Parts[Part+i] = P;
3788 }
Chris Lattner5df99b32007-03-25 05:00:54 +00003789
Dan Gohman23ce5022008-04-25 18:27:55 +00003790 Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3791 ValueVT);
3792 Part += NumRegs;
3793 }
Chris Lattner6833b062008-04-28 07:16:35 +00003794
3795 if (ValueVTs.size() == 1)
3796 return Values[0];
3797
Dan Gohman23ce5022008-04-25 18:27:55 +00003798 return DAG.getNode(ISD::MERGE_VALUES,
3799 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3800 &Values[0], ValueVTs.size());
Chris Lattner864635a2006-02-22 22:37:12 +00003801}
3802
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003803/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3804/// specified value into the registers specified by this object. This uses
3805/// Chain/Flag as the input and updates them for the output Chain/Flag.
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003806/// If the Flag pointer is NULL, no flag is used.
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003807void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003808 SDOperand &Chain, SDOperand *Flag) const {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003809 // Get the list of the values's legal parts.
Dan Gohman23ce5022008-04-25 18:27:55 +00003810 unsigned NumRegs = Regs.size();
3811 SmallVector<SDOperand, 8> Parts(NumRegs);
Chris Lattner6833b062008-04-28 07:16:35 +00003812 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003813 MVT ValueVT = ValueVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003814 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003815 MVT RegisterVT = RegVTs[Value];
Dan Gohman23ce5022008-04-25 18:27:55 +00003816
3817 getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3818 &Parts[Part], NumParts, RegisterVT);
3819 Part += NumParts;
3820 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003821
3822 // Copy the parts into the registers.
Dan Gohman23ce5022008-04-25 18:27:55 +00003823 SmallVector<SDOperand, 8> Chains(NumRegs);
3824 for (unsigned i = 0; i != NumRegs; ++i) {
Chris Lattner6833b062008-04-28 07:16:35 +00003825 SDOperand Part;
3826 if (Flag == 0)
3827 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3828 else {
3829 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00003830 *Flag = Part.getValue(1);
Chris Lattner6833b062008-04-28 07:16:35 +00003831 }
3832 Chains[i] = Part.getValue(0);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003833 }
Chris Lattner6833b062008-04-28 07:16:35 +00003834
Evan Cheng33bf38a2008-04-28 22:07:13 +00003835 if (NumRegs == 1 || Flag)
3836 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
3837 // flagged to it. That is the CopyToReg nodes and the user are considered
3838 // a single scheduling unit. If we create a TokenFactor and return it as
3839 // chain, then the TokenFactor is both a predecessor (operand) of the
3840 // user as well as a successor (the TF operands are flagged to the user).
3841 // c1, f1 = CopyToReg
3842 // c2, f2 = CopyToReg
3843 // c3 = TokenFactor c1, c2
3844 // ...
3845 // = op c3, ..., f2
3846 Chain = Chains[NumRegs-1];
Chris Lattner6833b062008-04-28 07:16:35 +00003847 else
3848 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003849}
Chris Lattner864635a2006-02-22 22:37:12 +00003850
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003851/// AddInlineAsmOperands - Add this value to the specified inlineasm node
3852/// operand list. This adds the code marker and includes the number of
3853/// values added into it.
3854void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
Chris Lattner9f6637d2006-02-23 20:06:57 +00003855 std::vector<SDOperand> &Ops) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003856 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner4b993b12007-04-09 00:33:58 +00003857 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
Chris Lattner6833b062008-04-28 07:16:35 +00003858 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3859 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003860 MVT RegisterVT = RegVTs[Value];
Chris Lattner6833b062008-04-28 07:16:35 +00003861 for (unsigned i = 0; i != NumRegs; ++i)
3862 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Dan Gohman23ce5022008-04-25 18:27:55 +00003863 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00003864}
Chris Lattner864635a2006-02-22 22:37:12 +00003865
3866/// isAllocatableRegister - If the specified register is safe to allocate,
3867/// i.e. it isn't a stack pointer or some other special register, return the
3868/// register class for the register. Otherwise, return null.
3869static const TargetRegisterClass *
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003870isAllocatableRegister(unsigned Reg, MachineFunction &MF,
Dan Gohman6f0d0242008-02-10 18:45:23 +00003871 const TargetLowering &TLI,
3872 const TargetRegisterInfo *TRI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003873 MVT FoundVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003874 const TargetRegisterClass *FoundRC = 0;
Dan Gohman6f0d0242008-02-10 18:45:23 +00003875 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3876 E = TRI->regclass_end(); RCI != E; ++RCI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003877 MVT ThisVT = MVT::Other;
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003878
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003879 const TargetRegisterClass *RC = *RCI;
3880 // If none of the the value types for this register class are valid, we
3881 // can't use it. For example, 64-bit reg classes on 32-bit targets.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003882 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3883 I != E; ++I) {
3884 if (TLI.isTypeLegal(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003885 // If we have already found this register in a different register class,
3886 // choose the one with the largest VT specified. For example, on
3887 // PowerPC, we favor f64 register classes over f32.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003888 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003889 ThisVT = *I;
3890 break;
3891 }
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003892 }
3893 }
3894
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003895 if (ThisVT == MVT::Other) continue;
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003896
Chris Lattner864635a2006-02-22 22:37:12 +00003897 // NOTE: This isn't ideal. In particular, this might allocate the
3898 // frame pointer in functions that need it (due to them not being taken
3899 // out of allocation, because a variable sized allocation hasn't been seen
3900 // yet). This is a slight code pessimization, but should still work.
Chris Lattner9b6fb5d2006-02-22 23:09:03 +00003901 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3902 E = RC->allocation_order_end(MF); I != E; ++I)
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003903 if (*I == Reg) {
3904 // We found a matching register class. Keep looking at others in case
3905 // we find one with larger registers that this physreg is also in.
3906 FoundRC = RC;
3907 FoundVT = ThisVT;
3908 break;
3909 }
Chris Lattner4e4b5762006-02-01 18:59:47 +00003910 }
Chris Lattnerf8814cf2006-04-02 00:24:45 +00003911 return FoundRC;
Chris Lattner864635a2006-02-22 22:37:12 +00003912}
3913
Chris Lattner4e4b5762006-02-01 18:59:47 +00003914
Chris Lattner0c583402007-04-28 20:49:53 +00003915namespace {
3916/// AsmOperandInfo - This contains information for each constraint that we are
3917/// lowering.
Evan Cheng5c807602008-02-26 02:33:44 +00003918struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3919 /// CallOperand - If this is the result output operand or a clobber
3920 /// this is null, otherwise it is the incoming operand to the CallInst.
3921 /// This gets modified as the asm is processed.
Chris Lattner0c583402007-04-28 20:49:53 +00003922 SDOperand CallOperand;
Evan Cheng5c807602008-02-26 02:33:44 +00003923
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003924 /// AssignedRegs - If this is a register or register class operand, this
3925 /// contains the set of register corresponding to the operand.
3926 RegsForValue AssignedRegs;
3927
Dan Gohman23ce5022008-04-25 18:27:55 +00003928 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
Evan Cheng5c807602008-02-26 02:33:44 +00003929 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
Chris Lattner0c583402007-04-28 20:49:53 +00003930 }
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003931
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003932 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3933 /// busy in OutputRegs/InputRegs.
3934 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3935 std::set<unsigned> &OutputRegs,
Chris Lattner7cbeb242008-02-21 04:55:52 +00003936 std::set<unsigned> &InputRegs,
3937 const TargetRegisterInfo &TRI) const {
3938 if (isOutReg) {
3939 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3940 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3941 }
3942 if (isInReg) {
3943 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3944 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3945 }
3946 }
3947
3948private:
3949 /// MarkRegAndAliases - Mark the specified register and all aliases in the
3950 /// specified set.
3951 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
3952 const TargetRegisterInfo &TRI) {
3953 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3954 Regs.insert(Reg);
3955 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3956 for (; *Aliases; ++Aliases)
3957 Regs.insert(*Aliases);
3958 }
Chris Lattner0c583402007-04-28 20:49:53 +00003959};
3960} // end anon namespace.
Chris Lattner864635a2006-02-22 22:37:12 +00003961
Chris Lattner3ff90dc2007-04-30 17:16:27 +00003962
Chris Lattner0fe71e92008-02-21 19:43:13 +00003963/// GetRegistersForValue - Assign registers (virtual or physical) for the
3964/// specified operand. We prefer to assign virtual registers, to allow the
3965/// register allocator handle the assignment process. However, if the asm uses
3966/// features that we can't model on machineinstrs, we have SDISel do the
3967/// allocation. This produces generally horrible, but correct, code.
3968///
3969/// OpInfo describes the operand.
3970/// HasEarlyClobber is true if there are any early clobber constraints (=&r)
3971/// or any explicitly clobbered registers.
3972/// Input and OutputRegs are the set of already allocated physical registers.
3973///
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003974void SelectionDAGLowering::
Evan Cheng5c807602008-02-26 02:33:44 +00003975GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
Chris Lattnerbf996f12007-04-30 17:29:31 +00003976 std::set<unsigned> &OutputRegs,
3977 std::set<unsigned> &InputRegs) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00003978 // Compute whether this value requires an input register, an output register,
3979 // or both.
3980 bool isOutReg = false;
3981 bool isInReg = false;
3982 switch (OpInfo.Type) {
3983 case InlineAsm::isOutput:
3984 isOutReg = true;
3985
3986 // If this is an early-clobber output, or if there is an input
3987 // constraint that matches this, we need to reserve the input register
3988 // so no other inputs allocate to it.
3989 isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3990 break;
3991 case InlineAsm::isInput:
3992 isInReg = true;
3993 isOutReg = false;
3994 break;
3995 case InlineAsm::isClobber:
3996 isOutReg = true;
3997 isInReg = true;
3998 break;
3999 }
4000
4001
4002 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattnerb606dba2008-04-28 06:44:42 +00004003 SmallVector<unsigned, 4> Regs;
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004004
4005 // If this is a constraint for a single physreg, or a constraint for a
4006 // register class, find it.
4007 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4008 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4009 OpInfo.ConstraintVT);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004010
4011 unsigned NumRegs = 1;
4012 if (OpInfo.ConstraintVT != MVT::Other)
Dan Gohmanb9f10192007-06-21 14:42:22 +00004013 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004014 MVT RegVT;
4015 MVT ValueVT = OpInfo.ConstraintVT;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004016
Chris Lattnerbf996f12007-04-30 17:29:31 +00004017
4018 // If this is a constraint for a specific physical register, like {r17},
4019 // assign it now.
4020 if (PhysReg.first) {
4021 if (OpInfo.ConstraintVT == MVT::Other)
4022 ValueVT = *PhysReg.second->vt_begin();
4023
4024 // Get the actual register value type. This is important, because the user
4025 // may have asked for (e.g.) the AX register in i32 type. We need to
4026 // remember that AX is actually i16 to get the right extension.
4027 RegVT = *PhysReg.second->vt_begin();
4028
4029 // This is a explicit reference to a physical register.
4030 Regs.push_back(PhysReg.first);
4031
4032 // If this is an expanded reference, add the rest of the regs to Regs.
4033 if (NumRegs != 1) {
4034 TargetRegisterClass::iterator I = PhysReg.second->begin();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004035 for (; *I != PhysReg.first; ++I)
Evan Cheng50871242008-05-14 20:07:51 +00004036 assert(I != PhysReg.second->end() && "Didn't find reg!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004037
4038 // Already added the first reg.
4039 --NumRegs; ++I;
4040 for (; NumRegs; --NumRegs, ++I) {
Evan Cheng50871242008-05-14 20:07:51 +00004041 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
Chris Lattnerbf996f12007-04-30 17:29:31 +00004042 Regs.push_back(*I);
4043 }
4044 }
Dan Gohman23ce5022008-04-25 18:27:55 +00004045 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004046 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4047 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004048 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004049 }
4050
4051 // Otherwise, if this was a reference to an LLVM register class, create vregs
4052 // for this reference.
4053 std::vector<unsigned> RegClassRegs;
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004054 const TargetRegisterClass *RC = PhysReg.second;
4055 if (RC) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004056 // If this is an early clobber or tied register, our regalloc doesn't know
4057 // how to maintain the constraint. If it isn't, go ahead and create vreg
4058 // and let the regalloc do the right thing.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004059 if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4060 // If there is some other early clobber and this is an input register,
4061 // then we are forced to pre-allocate the input reg so it doesn't
4062 // conflict with the earlyclobber.
4063 !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
Chris Lattnerbf996f12007-04-30 17:29:31 +00004064 RegVT = *PhysReg.second->vt_begin();
4065
4066 if (OpInfo.ConstraintVT == MVT::Other)
4067 ValueVT = RegVT;
4068
4069 // Create the appropriate number of virtual registers.
Chris Lattner84bc5422007-12-31 04:13:23 +00004070 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004071 for (; NumRegs; --NumRegs)
Chris Lattner84bc5422007-12-31 04:13:23 +00004072 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Chris Lattnerbf996f12007-04-30 17:29:31 +00004073
Dan Gohman23ce5022008-04-25 18:27:55 +00004074 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004075 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004076 }
4077
4078 // Otherwise, we can't allocate it. Let the code below figure out how to
4079 // maintain these constraints.
4080 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4081
4082 } else {
4083 // This is a reference to a register class that doesn't directly correspond
4084 // to an LLVM register class. Allocate NumRegs consecutive, available,
4085 // registers from the class.
4086 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4087 OpInfo.ConstraintVT);
4088 }
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004089
Dan Gohman6f0d0242008-02-10 18:45:23 +00004090 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
Chris Lattnerbf996f12007-04-30 17:29:31 +00004091 unsigned NumAllocated = 0;
4092 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4093 unsigned Reg = RegClassRegs[i];
4094 // See if this register is available.
4095 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4096 (isInReg && InputRegs.count(Reg))) { // Already used.
4097 // Make sure we find consecutive registers.
4098 NumAllocated = 0;
4099 continue;
4100 }
4101
4102 // Check to see if this register is allocatable (i.e. don't give out the
4103 // stack pointer).
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004104 if (RC == 0) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004105 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
Chris Lattnerc2c28fc2007-06-15 19:11:01 +00004106 if (!RC) { // Couldn't allocate this register.
4107 // Reset NumAllocated to make sure we return consecutive registers.
4108 NumAllocated = 0;
4109 continue;
4110 }
Chris Lattnerbf996f12007-04-30 17:29:31 +00004111 }
4112
4113 // Okay, this register is good, we can use it.
4114 ++NumAllocated;
4115
4116 // If we allocated enough consecutive registers, succeed.
4117 if (NumAllocated == NumRegs) {
4118 unsigned RegStart = (i-NumAllocated)+1;
4119 unsigned RegEnd = i+1;
4120 // Mark all of the allocated registers used.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004121 for (unsigned i = RegStart; i != RegEnd; ++i)
4122 Regs.push_back(RegClassRegs[i]);
Chris Lattnerbf996f12007-04-30 17:29:31 +00004123
Dan Gohman23ce5022008-04-25 18:27:55 +00004124 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004125 OpInfo.ConstraintVT);
Chris Lattner7cbeb242008-02-21 04:55:52 +00004126 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004127 return;
Chris Lattnerbf996f12007-04-30 17:29:31 +00004128 }
4129 }
4130
4131 // Otherwise, we couldn't allocate enough registers for this.
Chris Lattnerbf996f12007-04-30 17:29:31 +00004132}
4133
4134
Chris Lattnerce7518c2006-01-26 22:24:51 +00004135/// visitInlineAsm - Handle a call to an InlineAsm object.
4136///
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004137void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4138 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004139
Chris Lattner0c583402007-04-28 20:49:53 +00004140 /// ConstraintOperands - Information about all of the constraints.
Evan Cheng5c807602008-02-26 02:33:44 +00004141 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Chris Lattnerce7518c2006-01-26 22:24:51 +00004142
4143 SDOperand Chain = getRoot();
4144 SDOperand Flag;
4145
Chris Lattner4e4b5762006-02-01 18:59:47 +00004146 std::set<unsigned> OutputRegs, InputRegs;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004147
Chris Lattner0c583402007-04-28 20:49:53 +00004148 // Do a prepass over the constraints, canonicalizing them, and building up the
4149 // ConstraintOperands list.
4150 std::vector<InlineAsm::ConstraintInfo>
4151 ConstraintInfos = IA->ParseConstraints();
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004152
4153 // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4154 // constraint. If so, we can't let the register allocator allocate any input
4155 // registers, because it will not know to avoid the earlyclobbered output reg.
4156 bool SawEarlyClobber = false;
4157
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004158 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
Chris Lattneracf8b012008-04-27 23:44:28 +00004159 unsigned ResNo = 0; // ResNo - The result number of the next output.
Chris Lattner0c583402007-04-28 20:49:53 +00004160 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004161 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4162 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Chris Lattner0c583402007-04-28 20:49:53 +00004163
Duncan Sands83ec4b62008-06-06 12:08:01 +00004164 MVT OpVT = MVT::Other;
Chris Lattner0c583402007-04-28 20:49:53 +00004165
4166 // Compute the value type for each operand.
4167 switch (OpInfo.Type) {
Chris Lattner1efa40f2006-02-22 00:56:39 +00004168 case InlineAsm::isOutput:
Chris Lattneracf8b012008-04-27 23:44:28 +00004169 // Indirect outputs just consume an argument.
4170 if (OpInfo.isIndirect) {
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004171 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattneracf8b012008-04-27 23:44:28 +00004172 break;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004173 }
Chris Lattneracf8b012008-04-27 23:44:28 +00004174 // The return value of the call is this value. As such, there is no
4175 // corresponding argument.
4176 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4177 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4178 OpVT = TLI.getValueType(STy->getElementType(ResNo));
4179 } else {
4180 assert(ResNo == 0 && "Asm only has one result!");
4181 OpVT = TLI.getValueType(CS.getType());
4182 }
4183 ++ResNo;
Chris Lattner1efa40f2006-02-22 00:56:39 +00004184 break;
4185 case InlineAsm::isInput:
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004186 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
Chris Lattner1efa40f2006-02-22 00:56:39 +00004187 break;
4188 case InlineAsm::isClobber:
Chris Lattner0c583402007-04-28 20:49:53 +00004189 // Nothing to do.
Chris Lattner1efa40f2006-02-22 00:56:39 +00004190 break;
4191 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004192
Chris Lattner0c583402007-04-28 20:49:53 +00004193 // If this is an input or an indirect output, process the call argument.
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004194 // BasicBlocks are labels, currently appearing only in asm's.
Chris Lattner0c583402007-04-28 20:49:53 +00004195 if (OpInfo.CallOperandVal) {
Chris Lattner507ffd22008-04-27 00:16:18 +00004196 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4197 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004198 else {
4199 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4200 const Type *OpTy = OpInfo.CallOperandVal->getType();
4201 // If this is an indirect operand, the operand is a pointer to the
4202 // accessed type.
4203 if (OpInfo.isIndirect)
4204 OpTy = cast<PointerType>(OpTy)->getElementType();
4205
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004206 // If OpTy is not a single value, it may be a struct/union that we
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004207 // can tile with integers.
Dan Gohman4fa2a3f2008-05-23 00:34:04 +00004208 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004209 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4210 switch (BitSize) {
4211 default: break;
4212 case 1:
4213 case 8:
4214 case 16:
4215 case 32:
4216 case 64:
4217 OpTy = IntegerType::get(BitSize);
4218 break;
4219 }
Chris Lattner6995cf62007-04-29 18:58:03 +00004220 }
Dale Johanneseneb57ea72007-11-05 21:20:28 +00004221
4222 OpVT = TLI.getValueType(OpTy, true);
Chris Lattner0c583402007-04-28 20:49:53 +00004223 }
4224 }
4225
4226 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a600be2007-04-28 21:01:43 +00004227
Chris Lattner3ff90dc2007-04-30 17:16:27 +00004228 // Compute the constraint code and ConstraintType to use.
Chris Lattner5a096902008-04-27 00:37:18 +00004229 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
Chris Lattner0c583402007-04-28 20:49:53 +00004230
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004231 // Keep track of whether we see an earlyclobber.
4232 SawEarlyClobber |= OpInfo.isEarlyClobber;
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004233
Chris Lattner0fe71e92008-02-21 19:43:13 +00004234 // If we see a clobber of a register, it is an early clobber.
Chris Lattner69e6a8d2008-02-21 20:54:31 +00004235 if (!SawEarlyClobber &&
4236 OpInfo.Type == InlineAsm::isClobber &&
4237 OpInfo.ConstraintType == TargetLowering::C_Register) {
4238 // Note that we want to ignore things that we don't trick here, like
4239 // dirflag, fpsr, flags, etc.
4240 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
4241 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4242 OpInfo.ConstraintVT);
4243 if (PhysReg.first || PhysReg.second) {
4244 // This is a register we know of.
4245 SawEarlyClobber = true;
4246 }
4247 }
Chris Lattner0fe71e92008-02-21 19:43:13 +00004248
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004249 // If this is a memory input, and if the operand is not indirect, do what we
4250 // need to to provide an address for the memory input.
4251 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4252 !OpInfo.isIndirect) {
4253 assert(OpInfo.Type == InlineAsm::isInput &&
4254 "Can only indirectify direct input operands!");
4255
4256 // Memory operands really want the address of the value. If we don't have
4257 // an indirect input, put it in the constpool if we can, otherwise spill
4258 // it to a stack slot.
4259
4260 // If the operand is a float, integer, or vector constant, spill to a
4261 // constant pool entry to get its address.
4262 Value *OpVal = OpInfo.CallOperandVal;
4263 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4264 isa<ConstantVector>(OpVal)) {
4265 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4266 TLI.getPointerTy());
4267 } else {
4268 // Otherwise, create a stack slot and emit a store to it before the
4269 // asm.
4270 const Type *Ty = OpVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +00004271 uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004272 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4273 MachineFunction &MF = DAG.getMachineFunction();
4274 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
4275 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4276 Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4277 OpInfo.CallOperand = StackSlot;
4278 }
4279
4280 // There is no longer a Value* corresponding to this operand.
4281 OpInfo.CallOperandVal = 0;
4282 // It is now an indirect operand.
4283 OpInfo.isIndirect = true;
4284 }
4285
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004286 // If this constraint is for a specific register, allocate it before
4287 // anything else.
4288 if (OpInfo.ConstraintType == TargetLowering::C_Register)
4289 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
Chris Lattner0c583402007-04-28 20:49:53 +00004290 }
Chris Lattner0c583402007-04-28 20:49:53 +00004291 ConstraintInfos.clear();
4292
4293
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004294 // Second pass - Loop over all of the operands, assigning virtual or physregs
4295 // to registerclass operands.
4296 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004297 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004298
4299 // C_Register operands have already been allocated, Other/Memory don't need
4300 // to be.
4301 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4302 GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4303 }
4304
Chris Lattner0c583402007-04-28 20:49:53 +00004305 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
4306 std::vector<SDOperand> AsmNodeOperands;
4307 AsmNodeOperands.push_back(SDOperand()); // reserve space for input chain
4308 AsmNodeOperands.push_back(
4309 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4310
Chris Lattner2cc2f662006-02-01 01:28:23 +00004311
Chris Lattner0f0b7d42006-02-21 23:12:12 +00004312 // Loop over all of the inputs, copying the operand values into the
4313 // appropriate registers and processing the output regs.
Chris Lattner864635a2006-02-22 22:37:12 +00004314 RegsForValue RetValRegs;
Chris Lattner41f62592008-04-29 04:29:54 +00004315
Chris Lattner0c583402007-04-28 20:49:53 +00004316 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4317 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4318
4319 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
Evan Cheng5c807602008-02-26 02:33:44 +00004320 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Chris Lattner1efa40f2006-02-22 00:56:39 +00004321
Chris Lattner0c583402007-04-28 20:49:53 +00004322 switch (OpInfo.Type) {
Chris Lattner2cc2f662006-02-01 01:28:23 +00004323 case InlineAsm::isOutput: {
Chris Lattnerc83994e2007-04-28 21:03:16 +00004324 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4325 OpInfo.ConstraintType != TargetLowering::C_Register) {
Chris Lattnerf2f3cd52007-04-28 06:08:13 +00004326 // Memory output, or 'other' output (e.g. 'X' constraint).
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004327 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
Chris Lattner22873462006-02-27 23:45:39 +00004328
Chris Lattner22873462006-02-27 23:45:39 +00004329 // Add information to the INLINEASM node to know about this output.
4330 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004331 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4332 TLI.getPointerTy()));
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004333 AsmNodeOperands.push_back(OpInfo.CallOperand);
Chris Lattner22873462006-02-27 23:45:39 +00004334 break;
4335 }
4336
Chris Lattner2a600be2007-04-28 21:01:43 +00004337 // Otherwise, this is a register or register class output.
Chris Lattner22873462006-02-27 23:45:39 +00004338
Chris Lattner864635a2006-02-22 22:37:12 +00004339 // Copy the output from the appropriate register. Find a register that
Chris Lattner1efa40f2006-02-22 00:56:39 +00004340 // we can use.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004341 if (OpInfo.AssignedRegs.Regs.empty()) {
Duncan Sandsa47c6c32008-06-17 03:24:13 +00004342 cerr << "Couldn't allocate output reg for constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004343 << OpInfo.ConstraintCode << "'!\n";
Chris Lattnerd03f1582006-10-31 07:33:13 +00004344 exit(1);
4345 }
Chris Lattner1efa40f2006-02-22 00:56:39 +00004346
Chris Lattner41f62592008-04-29 04:29:54 +00004347 // If this is an indirect operand, store through the pointer after the
4348 // asm.
4349 if (OpInfo.isIndirect) {
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004350 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
Chris Lattner0c583402007-04-28 20:49:53 +00004351 OpInfo.CallOperandVal));
Chris Lattner41f62592008-04-29 04:29:54 +00004352 } else {
4353 // This is the result value of the call.
4354 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4355 // Concatenate this output onto the outputs list.
4356 RetValRegs.append(OpInfo.AssignedRegs);
Chris Lattner2cc2f662006-02-01 01:28:23 +00004357 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004358
4359 // Add information to the INLINEASM node to know that this register is
4360 // set.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004361 OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4362 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004363 break;
4364 }
4365 case InlineAsm::isInput: {
Chris Lattner0c583402007-04-28 20:49:53 +00004366 SDOperand InOperandVal = OpInfo.CallOperand;
Chris Lattner3d81fee2006-02-04 02:16:44 +00004367
Chris Lattner0c583402007-04-28 20:49:53 +00004368 if (isdigit(OpInfo.ConstraintCode[0])) { // Matching constraint?
Chris Lattner2223aea2006-02-02 00:25:23 +00004369 // If this is required to match an output register we have already set,
4370 // just use its register.
Chris Lattner0c583402007-04-28 20:49:53 +00004371 unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
Chris Lattner3d81fee2006-02-04 02:16:44 +00004372
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004373 // Scan until we find the definition we already emitted of this operand.
4374 // When we find it, create a RegsForValue operand.
4375 unsigned CurOp = 2; // The first operand.
4376 for (; OperandNo; --OperandNo) {
4377 // Advance to the next operand.
4378 unsigned NumOps =
4379 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattnera15cf702006-07-20 19:02:21 +00004380 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4381 (NumOps & 7) == 4 /*MEM*/) &&
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004382 "Skipped past definitions?");
4383 CurOp += (NumOps>>3)+1;
4384 }
4385
4386 unsigned NumOps =
4387 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
Chris Lattner527fae12007-02-01 01:21:12 +00004388 if ((NumOps & 7) == 2 /*REGDEF*/) {
4389 // Add NumOps>>3 registers to MatchedRegs.
4390 RegsForValue MatchedRegs;
Dan Gohman23ce5022008-04-25 18:27:55 +00004391 MatchedRegs.TLI = &TLI;
Dan Gohman1fa850b2008-05-02 00:03:54 +00004392 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4393 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
Chris Lattner527fae12007-02-01 01:21:12 +00004394 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4395 unsigned Reg =
4396 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4397 MatchedRegs.Regs.push_back(Reg);
4398 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004399
Chris Lattner527fae12007-02-01 01:21:12 +00004400 // Use the produced MatchedRegs object to
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004401 MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner527fae12007-02-01 01:21:12 +00004402 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4403 break;
4404 } else {
4405 assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
Chris Lattnerf9853bc2008-02-21 05:27:19 +00004406 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
4407 // Add information to the INLINEASM node to know about this input.
4408 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4409 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4410 TLI.getPointerTy()));
4411 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4412 break;
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004413 }
Chris Lattner2223aea2006-02-02 00:25:23 +00004414 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004415
Chris Lattner2a600be2007-04-28 21:01:43 +00004416 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Chris Lattner0c583402007-04-28 20:49:53 +00004417 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004418 "Don't know how to handle indirect other inputs yet!");
4419
Chris Lattner48884cd2007-08-25 00:47:38 +00004420 std::vector<SDOperand> Ops;
4421 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4422 Ops, DAG);
4423 if (Ops.empty()) {
Bill Wendling832171c2006-12-07 20:04:42 +00004424 cerr << "Invalid operand for inline asm constraint '"
Chris Lattner0c583402007-04-28 20:49:53 +00004425 << OpInfo.ConstraintCode << "'!\n";
Chris Lattner53069fb2006-10-31 19:41:18 +00004426 exit(1);
4427 }
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004428
4429 // Add information to the INLINEASM node to know about this input.
Chris Lattner48884cd2007-08-25 00:47:38 +00004430 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004431 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4432 TLI.getPointerTy()));
Chris Lattner48884cd2007-08-25 00:47:38 +00004433 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004434 break;
Chris Lattner2a600be2007-04-28 21:01:43 +00004435 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
Chris Lattner09e4b7e2007-04-28 21:12:06 +00004436 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
Chris Lattner44b2c502007-04-28 06:42:38 +00004437 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4438 "Memory operands expect pointer values");
4439
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004440 // Add information to the INLINEASM node to know about this input.
4441 unsigned ResOpType = 4/*MEM*/ | (1 << 3);
Chris Lattnerc90233b2007-05-15 01:33:58 +00004442 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4443 TLI.getPointerTy()));
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004444 AsmNodeOperands.push_back(InOperandVal);
4445 break;
4446 }
4447
Chris Lattner2a600be2007-04-28 21:01:43 +00004448 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4449 OpInfo.ConstraintType == TargetLowering::C_Register) &&
4450 "Unknown constraint type!");
Chris Lattner0c583402007-04-28 20:49:53 +00004451 assert(!OpInfo.isIndirect &&
Chris Lattner44b2c502007-04-28 06:42:38 +00004452 "Don't know how to handle indirect register inputs yet!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004453
4454 // Copy the input into the appropriate registers.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004455 assert(!OpInfo.AssignedRegs.Regs.empty() &&
4456 "Couldn't allocate input reg!");
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004457
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004458 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
Chris Lattner87bc3bd2006-02-24 01:11:24 +00004459
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004460 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4461 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004462 break;
4463 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004464 case InlineAsm::isClobber: {
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004465 // Add the clobbered value to the operand list, so that the register
4466 // allocator is aware that the physreg got clobbered.
Chris Lattnere7cf56a2007-04-30 21:11:17 +00004467 if (!OpInfo.AssignedRegs.Regs.empty())
4468 OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4469 AsmNodeOperands);
Chris Lattner6656dd12006-01-31 02:03:41 +00004470 break;
4471 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00004472 }
Chris Lattner6656dd12006-01-31 02:03:41 +00004473 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004474
4475 // Finish up input operands.
4476 AsmNodeOperands[0] = Chain;
4477 if (Flag.Val) AsmNodeOperands.push_back(Flag);
4478
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004479 Chain = DAG.getNode(ISD::INLINEASM,
4480 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004481 &AsmNodeOperands[0], AsmNodeOperands.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004482 Flag = Chain.getValue(1);
4483
Chris Lattner6656dd12006-01-31 02:03:41 +00004484 // If this asm returns a register value, copy the result from that register
4485 // and set it as the value of the call.
Chris Lattner3a508c92007-04-12 06:00:20 +00004486 if (!RetValRegs.Regs.empty()) {
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004487 SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner3fb29682008-04-29 04:48:56 +00004488
4489 // If any of the results of the inline asm is a vector, it may have the
4490 // wrong width/num elts. This can happen for register classes that can
4491 // contain multiple different value types. The preg or vreg allocated may
4492 // not have the same VT as was expected. Convert it to the right type with
Dan Gohman7f321562007-06-25 16:23:39 +00004493 // bit_convert.
Chris Lattner3fb29682008-04-29 04:48:56 +00004494 if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4495 for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004496 if (Val.Val->getValueType(i).isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004497 Val = DAG.getNode(ISD::BIT_CONVERT,
4498 TLI.getValueType(ResSTy->getElementType(i)), Val);
4499 }
4500 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004501 if (Val.getValueType().isVector())
Chris Lattner3fb29682008-04-29 04:48:56 +00004502 Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4503 Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004504 }
Chris Lattner3fb29682008-04-29 04:48:56 +00004505
Duncan Sandsfd7b3262007-12-17 18:08:19 +00004506 setValue(CS.getInstruction(), Val);
Chris Lattner3a508c92007-04-12 06:00:20 +00004507 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00004508
Chris Lattner6656dd12006-01-31 02:03:41 +00004509 std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
4510
4511 // Process indirect outputs, first output all of the flagged copies out of
4512 // physregs.
4513 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
Chris Lattner864635a2006-02-22 22:37:12 +00004514 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
Chris Lattner6656dd12006-01-31 02:03:41 +00004515 Value *Ptr = IndirectStoresToEmit[i].second;
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004516 SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
Chris Lattner864635a2006-02-22 22:37:12 +00004517 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6656dd12006-01-31 02:03:41 +00004518 }
4519
4520 // Emit the non-flagged stores from the physregs.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004521 SmallVector<SDOperand, 8> OutChains;
Chris Lattner6656dd12006-01-31 02:03:41 +00004522 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Chris Lattner0c583402007-04-28 20:49:53 +00004523 OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
Chris Lattner6656dd12006-01-31 02:03:41 +00004524 getValue(StoresToEmit[i].second),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004525 StoresToEmit[i].second, 0));
Chris Lattner6656dd12006-01-31 02:03:41 +00004526 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004527 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4528 &OutChains[0], OutChains.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00004529 DAG.setRoot(Chain);
4530}
4531
4532
Chris Lattner1c08c712005-01-07 07:47:53 +00004533void SelectionDAGLowering::visitMalloc(MallocInst &I) {
4534 SDOperand Src = getValue(I.getOperand(0));
4535
Duncan Sands83ec4b62008-06-06 12:08:01 +00004536 MVT IntPtr = TLI.getPointerTy();
Chris Lattner68cd65e2005-01-22 23:04:37 +00004537
Duncan Sands8e4eb092008-06-08 20:54:56 +00004538 if (IntPtr.bitsLT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004539 Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004540 else if (IntPtr.bitsGT(Src.getValueType()))
Chris Lattner68cd65e2005-01-22 23:04:37 +00004541 Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
Chris Lattner1c08c712005-01-07 07:47:53 +00004542
4543 // Scale the source by the type size.
Duncan Sands514ab342007-11-01 20:53:16 +00004544 uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
Chris Lattner1c08c712005-01-07 07:47:53 +00004545 Src = DAG.getNode(ISD::MUL, Src.getValueType(),
Chris Lattner0bd48932008-01-17 07:00:52 +00004546 Src, DAG.getIntPtrConstant(ElementSize));
Chris Lattner1c08c712005-01-07 07:47:53 +00004547
Reid Spencer47857812006-12-31 05:55:36 +00004548 TargetLowering::ArgListTy Args;
4549 TargetLowering::ArgListEntry Entry;
4550 Entry.Node = Src;
4551 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004552 Args.push_back(Entry);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004553
4554 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004555 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4556 true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
Chris Lattnercf5734d2005-01-08 19:26:18 +00004557 setValue(&I, Result.first); // Pointers always fit in registers
4558 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004559}
4560
4561void SelectionDAGLowering::visitFree(FreeInst &I) {
Reid Spencer47857812006-12-31 05:55:36 +00004562 TargetLowering::ArgListTy Args;
4563 TargetLowering::ArgListEntry Entry;
4564 Entry.Node = getValue(I.getOperand(0));
4565 Entry.Ty = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00004566 Args.push_back(Entry);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004567 MVT IntPtr = TLI.getPointerTy();
Chris Lattnercf5734d2005-01-08 19:26:18 +00004568 std::pair<SDOperand,SDOperand> Result =
Duncan Sands00fee652008-02-14 17:28:50 +00004569 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4570 CallingConv::C, true,
Chris Lattnercf5734d2005-01-08 19:26:18 +00004571 DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4572 DAG.setRoot(Result.second);
Chris Lattner1c08c712005-01-07 07:47:53 +00004573}
4574
Evan Chengff9b3732008-01-30 18:18:23 +00004575// EmitInstrWithCustomInserter - This method should be implemented by targets
4576// that mark instructions with the 'usesCustomDAGSchedInserter' flag. These
Chris Lattner025c39b2005-08-26 20:54:47 +00004577// instructions are special in various ways, which require special support to
4578// insert. The specified MachineInstr is created but not inserted into any
4579// basic blocks, and the scheduler passes ownership of it to this method.
Evan Chengff9b3732008-01-30 18:18:23 +00004580MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Chris Lattner025c39b2005-08-26 20:54:47 +00004581 MachineBasicBlock *MBB) {
Bill Wendling832171c2006-12-07 20:04:42 +00004582 cerr << "If a target marks an instruction with "
4583 << "'usesCustomDAGSchedInserter', it must implement "
Evan Chengff9b3732008-01-30 18:18:23 +00004584 << "TargetLowering::EmitInstrWithCustomInserter!\n";
Chris Lattner025c39b2005-08-26 20:54:47 +00004585 abort();
4586 return 0;
4587}
4588
Chris Lattner39ae3622005-01-09 00:00:49 +00004589void SelectionDAGLowering::visitVAStart(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004590 DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(),
4591 getValue(I.getOperand(1)),
4592 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner39ae3622005-01-09 00:00:49 +00004593}
4594
4595void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004596 SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
4597 getValue(I.getOperand(0)),
4598 DAG.getSrcValue(I.getOperand(0)));
4599 setValue(&I, V);
4600 DAG.setRoot(V.getValue(1));
Chris Lattner1c08c712005-01-07 07:47:53 +00004601}
4602
4603void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004604 DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4605 getValue(I.getOperand(1)),
4606 DAG.getSrcValue(I.getOperand(1))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004607}
4608
4609void SelectionDAGLowering::visitVACopy(CallInst &I) {
Nate Begemanacc398c2006-01-25 18:21:52 +00004610 DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(),
4611 getValue(I.getOperand(1)),
4612 getValue(I.getOperand(2)),
4613 DAG.getSrcValue(I.getOperand(1)),
4614 DAG.getSrcValue(I.getOperand(2))));
Chris Lattner1c08c712005-01-07 07:47:53 +00004615}
4616
Chris Lattnerfdfded52006-04-12 16:20:43 +00004617/// TargetLowering::LowerArguments - This is the default LowerArguments
4618/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004619/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
4620/// integrated into SDISel.
Chris Lattnerfdfded52006-04-12 16:20:43 +00004621std::vector<SDOperand>
4622TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
4623 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
4624 std::vector<SDOperand> Ops;
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004625 Ops.push_back(DAG.getRoot());
Chris Lattnerfdfded52006-04-12 16:20:43 +00004626 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4627 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4628
4629 // Add one result value for each formal argument.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004630 std::vector<MVT> RetVals;
Anton Korobeynikov6aa279d2007-01-28 18:01:49 +00004631 unsigned j = 1;
Anton Korobeynikovac2b2cf2007-01-28 16:04:40 +00004632 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4633 I != E; ++I, ++j) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004634 SmallVector<MVT, 4> ValueVTs;
4635 ComputeValueVTs(*this, I->getType(), ValueVTs);
4636 for (unsigned Value = 0, NumValues = ValueVTs.size();
4637 Value != NumValues; ++Value) {
4638 MVT VT = ValueVTs[Value];
4639 const Type *ArgTy = VT.getTypeForMVT();
4640 ISD::ArgFlagsTy Flags;
4641 unsigned OriginalAlignment =
4642 getTargetData()->getABITypeAlignment(ArgTy);
Lauro Ramos Venancio7aa47b62007-02-13 13:50:08 +00004643
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004644 if (F.paramHasAttr(j, ParamAttr::ZExt))
4645 Flags.setZExt();
4646 if (F.paramHasAttr(j, ParamAttr::SExt))
4647 Flags.setSExt();
4648 if (F.paramHasAttr(j, ParamAttr::InReg))
4649 Flags.setInReg();
4650 if (F.paramHasAttr(j, ParamAttr::StructRet))
4651 Flags.setSRet();
4652 if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4653 Flags.setByVal();
4654 const PointerType *Ty = cast<PointerType>(I->getType());
4655 const Type *ElementTy = Ty->getElementType();
4656 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4657 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4658 // For ByVal, alignment should be passed from FE. BE will guess if
4659 // this info is not there but there are cases it cannot get right.
4660 if (F.getParamAlignment(j))
4661 FrameAlign = F.getParamAlignment(j);
4662 Flags.setByValAlign(FrameAlign);
4663 Flags.setByValSize(FrameSize);
4664 }
4665 if (F.paramHasAttr(j, ParamAttr::Nest))
4666 Flags.setNest();
4667 Flags.setOrigAlign(OriginalAlignment);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004668
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004669 MVT RegisterVT = getRegisterType(VT);
4670 unsigned NumRegs = getNumRegisters(VT);
4671 for (unsigned i = 0; i != NumRegs; ++i) {
4672 RetVals.push_back(RegisterVT);
4673 ISD::ArgFlagsTy MyFlags = Flags;
4674 if (NumRegs > 1 && i == 0)
4675 MyFlags.setSplit();
4676 // if it isn't first piece, alignment must be 1
4677 else if (i > 0)
4678 MyFlags.setOrigAlign(1);
4679 Ops.push_back(DAG.getArgFlags(MyFlags));
4680 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004681 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004682 }
Evan Cheng3b0d2862006-04-25 23:03:35 +00004683
Chris Lattner8c0c10c2006-05-16 06:45:34 +00004684 RetVals.push_back(MVT::Other);
Chris Lattnerfdfded52006-04-12 16:20:43 +00004685
4686 // Create the node.
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004687 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004688 DAG.getVTList(&RetVals[0], RetVals.size()),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004689 &Ops[0], Ops.size()).Val;
Chris Lattner86ca3ca2008-02-13 07:39:09 +00004690
4691 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
4692 // allows exposing the loads that may be part of the argument access to the
4693 // first DAGCombiner pass.
4694 SDOperand TmpRes = LowerOperation(SDOperand(Result, 0), DAG);
4695
4696 // The number of results should match up, except that the lowered one may have
4697 // an extra flag result.
4698 assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4699 (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4700 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4701 && "Lowering produced unexpected number of results!");
4702 Result = TmpRes.Val;
4703
Dan Gohman27a70be2007-07-02 16:18:06 +00004704 unsigned NumArgRegs = Result->getNumValues() - 1;
4705 DAG.setRoot(SDOperand(Result, NumArgRegs));
Chris Lattnerfdfded52006-04-12 16:20:43 +00004706
4707 // Set up the return result vector.
4708 Ops.clear();
4709 unsigned i = 0;
Reid Spencer47857812006-12-31 05:55:36 +00004710 unsigned Idx = 1;
4711 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
4712 ++I, ++Idx) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004713 SmallVector<MVT, 4> ValueVTs;
4714 ComputeValueVTs(*this, I->getType(), ValueVTs);
4715 for (unsigned Value = 0, NumValues = ValueVTs.size();
4716 Value != NumValues; ++Value) {
4717 MVT VT = ValueVTs[Value];
4718 MVT PartVT = getRegisterType(VT);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004719
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004720 unsigned NumParts = getNumRegisters(VT);
4721 SmallVector<SDOperand, 4> Parts(NumParts);
4722 for (unsigned j = 0; j != NumParts; ++j)
4723 Parts[j] = SDOperand(Result, i++);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004724
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004725 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4726 if (F.paramHasAttr(Idx, ParamAttr::SExt))
4727 AssertOp = ISD::AssertSext;
4728 else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4729 AssertOp = ISD::AssertZext;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004730
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004731 Ops.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4732 AssertOp));
4733 }
Chris Lattnerfdfded52006-04-12 16:20:43 +00004734 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004735 assert(i == NumArgRegs && "Argument register count mismatch!");
Chris Lattnerfdfded52006-04-12 16:20:43 +00004736 return Ops;
4737}
4738
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004739
4740/// TargetLowering::LowerCallTo - This is the default LowerCallTo
4741/// implementation, which just inserts an ISD::CALL node, which is later custom
4742/// lowered by the target to something concrete. FIXME: When all targets are
4743/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
4744std::pair<SDOperand, SDOperand>
Duncan Sands00fee652008-02-14 17:28:50 +00004745TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
4746 bool RetSExt, bool RetZExt, bool isVarArg,
4747 unsigned CallingConv, bool isTailCall,
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004748 SDOperand Callee,
4749 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattnerbe384162006-08-16 22:57:46 +00004750 SmallVector<SDOperand, 32> Ops;
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004751 Ops.push_back(Chain); // Op#0 - Chain
4752 Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4753 Ops.push_back(DAG.getConstant(isVarArg, getPointerTy())); // Op#2 - VarArg
4754 Ops.push_back(DAG.getConstant(isTailCall, getPointerTy())); // Op#3 - Tail
4755 Ops.push_back(Callee);
4756
4757 // Handle all of the outgoing arguments.
4758 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004759 SmallVector<MVT, 4> ValueVTs;
4760 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4761 for (unsigned Value = 0, NumValues = ValueVTs.size();
4762 Value != NumValues; ++Value) {
4763 MVT VT = ValueVTs[Value];
4764 const Type *ArgTy = VT.getTypeForMVT();
4765 SDOperand Op = SDOperand(Args[i].Node.Val, Args[i].Node.ResNo + Value);
4766 ISD::ArgFlagsTy Flags;
4767 unsigned OriginalAlignment =
4768 getTargetData()->getABITypeAlignment(ArgTy);
Duncan Sands276dcbd2008-03-21 09:14:45 +00004769
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004770 if (Args[i].isZExt)
4771 Flags.setZExt();
4772 if (Args[i].isSExt)
4773 Flags.setSExt();
4774 if (Args[i].isInReg)
4775 Flags.setInReg();
4776 if (Args[i].isSRet)
4777 Flags.setSRet();
4778 if (Args[i].isByVal) {
4779 Flags.setByVal();
4780 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4781 const Type *ElementTy = Ty->getElementType();
4782 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4783 unsigned FrameSize = getTargetData()->getABITypeSize(ElementTy);
4784 // For ByVal, alignment should come from FE. BE will guess if this
4785 // info is not there but there are cases it cannot get right.
4786 if (Args[i].Alignment)
4787 FrameAlign = Args[i].Alignment;
4788 Flags.setByValAlign(FrameAlign);
4789 Flags.setByValSize(FrameSize);
4790 }
4791 if (Args[i].isNest)
4792 Flags.setNest();
4793 Flags.setOrigAlign(OriginalAlignment);
Dan Gohman27a70be2007-07-02 16:18:06 +00004794
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004795 MVT PartVT = getRegisterType(VT);
4796 unsigned NumParts = getNumRegisters(VT);
4797 SmallVector<SDOperand, 4> Parts(NumParts);
4798 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004799
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004800 if (Args[i].isSExt)
4801 ExtendKind = ISD::SIGN_EXTEND;
4802 else if (Args[i].isZExt)
4803 ExtendKind = ISD::ZERO_EXTEND;
Duncan Sandsb988bac2008-02-11 20:58:28 +00004804
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004805 getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004806
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004807 for (unsigned i = 0; i != NumParts; ++i) {
4808 // if it isn't first piece, alignment must be 1
4809 ISD::ArgFlagsTy MyFlags = Flags;
4810 if (NumParts > 1 && i == 0)
4811 MyFlags.setSplit();
4812 else if (i != 0)
4813 MyFlags.setOrigAlign(1);
Duncan Sandsb988bac2008-02-11 20:58:28 +00004814
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004815 Ops.push_back(Parts[i]);
4816 Ops.push_back(DAG.getArgFlags(MyFlags));
4817 }
Dan Gohman27a70be2007-07-02 16:18:06 +00004818 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004819 }
4820
Dan Gohmanef5d1942008-03-11 21:11:25 +00004821 // Figure out the result value types. We start by making a list of
Dan Gohman23ce5022008-04-25 18:27:55 +00004822 // the potentially illegal return value types.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004823 SmallVector<MVT, 4> LoweredRetTys;
4824 SmallVector<MVT, 4> RetTys;
Dan Gohman23ce5022008-04-25 18:27:55 +00004825 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004826
Dan Gohman23ce5022008-04-25 18:27:55 +00004827 // Then we translate that to a list of legal types.
4828 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004829 MVT VT = RetTys[I];
4830 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004831 unsigned NumRegs = getNumRegisters(VT);
4832 for (unsigned i = 0; i != NumRegs; ++i)
4833 LoweredRetTys.push_back(RegisterVT);
4834 }
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004835
Dan Gohmanef5d1942008-03-11 21:11:25 +00004836 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004837
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004838 // Create the CALL node.
Chris Lattnerbe384162006-08-16 22:57:46 +00004839 SDOperand Res = DAG.getNode(ISD::CALL,
Dan Gohmanef5d1942008-03-11 21:11:25 +00004840 DAG.getVTList(&LoweredRetTys[0],
4841 LoweredRetTys.size()),
Chris Lattnerbe384162006-08-16 22:57:46 +00004842 &Ops[0], Ops.size());
Dan Gohmanef5d1942008-03-11 21:11:25 +00004843 Chain = Res.getValue(LoweredRetTys.size() - 1);
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004844
4845 // Gather up the call result into a single value.
4846 if (RetTy != Type::VoidTy) {
Duncan Sands00fee652008-02-14 17:28:50 +00004847 ISD::NodeType AssertOp = ISD::DELETED_NODE;
4848
4849 if (RetSExt)
4850 AssertOp = ISD::AssertSext;
4851 else if (RetZExt)
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004852 AssertOp = ISD::AssertZext;
Duncan Sands00fee652008-02-14 17:28:50 +00004853
Dan Gohmanef5d1942008-03-11 21:11:25 +00004854 SmallVector<SDOperand, 4> ReturnValues;
4855 unsigned RegNo = 0;
Dan Gohman23ce5022008-04-25 18:27:55 +00004856 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004857 MVT VT = RetTys[I];
4858 MVT RegisterVT = getRegisterType(VT);
Dan Gohmanef5d1942008-03-11 21:11:25 +00004859 unsigned NumRegs = getNumRegisters(VT);
4860 unsigned RegNoEnd = NumRegs + RegNo;
4861 SmallVector<SDOperand, 4> Results;
4862 for (; RegNo != RegNoEnd; ++RegNo)
4863 Results.push_back(Res.getValue(RegNo));
4864 SDOperand ReturnValue =
4865 getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4866 AssertOp);
4867 ReturnValues.push_back(ReturnValue);
4868 }
4869 Res = ReturnValues.size() == 1 ? ReturnValues.front() :
4870 DAG.getNode(ISD::MERGE_VALUES,
4871 DAG.getVTList(&RetTys[0], RetTys.size()),
4872 &ReturnValues[0], ReturnValues.size());
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004873 }
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004874
4875 return std::make_pair(Res, Chain);
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004876}
4877
Chris Lattner50381b62005-05-14 05:50:48 +00004878SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner171453a2005-01-16 07:28:41 +00004879 assert(0 && "LowerOperation not implemented for this target!");
4880 abort();
Misha Brukmand3f03e42005-02-17 21:39:27 +00004881 return SDOperand();
Chris Lattner171453a2005-01-16 07:28:41 +00004882}
4883
Nate Begeman0aed7842006-01-28 03:14:31 +00004884SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
4885 SelectionDAG &DAG) {
4886 assert(0 && "CustomPromoteOperation not implemented for this target!");
4887 abort();
4888 return SDOperand();
4889}
4890
Chris Lattner7041ee32005-01-11 05:56:49 +00004891//===----------------------------------------------------------------------===//
4892// SelectionDAGISel code
4893//===----------------------------------------------------------------------===//
Chris Lattner1c08c712005-01-07 07:47:53 +00004894
Duncan Sands83ec4b62008-06-06 12:08:01 +00004895unsigned SelectionDAGISel::MakeReg(MVT VT) {
Chris Lattner84bc5422007-12-31 04:13:23 +00004896 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
Chris Lattner1c08c712005-01-07 07:47:53 +00004897}
4898
Chris Lattner495a0b52005-08-17 06:37:43 +00004899void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyc7c3f112006-10-16 20:52:31 +00004900 AU.addRequired<AliasAnalysis>();
Gordon Henriksence224772008-01-07 01:30:38 +00004901 AU.addRequired<CollectorModuleMetadata>();
Chris Lattnerc8d288f2007-03-31 04:18:03 +00004902 AU.setPreservesAll();
Chris Lattner495a0b52005-08-17 06:37:43 +00004903}
Chris Lattner1c08c712005-01-07 07:47:53 +00004904
Chris Lattner1c08c712005-01-07 07:47:53 +00004905bool SelectionDAGISel::runOnFunction(Function &Fn) {
Dan Gohman5f43f922007-08-27 16:26:13 +00004906 // Get alias analysis for load/store combining.
4907 AA = &getAnalysis<AliasAnalysis>();
4908
Chris Lattner1c08c712005-01-07 07:47:53 +00004909 MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
Gordon Henriksence224772008-01-07 01:30:38 +00004910 if (MF.getFunction()->hasCollector())
4911 GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4912 else
4913 GCI = 0;
Chris Lattner84bc5422007-12-31 04:13:23 +00004914 RegInfo = &MF.getRegInfo();
Bill Wendling832171c2006-12-07 20:04:42 +00004915 DOUT << "\n\n\n=== " << Fn.getName() << "\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00004916
4917 FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4918
Dale Johannesen1532f3d2008-04-02 00:25:04 +00004919 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4920 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4921 // Mark landing pad.
4922 FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
Duncan Sands9fac0b52007-06-06 10:05:18 +00004923
4924 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
Chris Lattner1c08c712005-01-07 07:47:53 +00004925 SelectBasicBlock(I, MF, FuncInfo);
Misha Brukmanedf128a2005-04-21 22:36:52 +00004926
Evan Chengad2070c2007-02-10 02:43:39 +00004927 // Add function live-ins to entry block live-in set.
4928 BasicBlock *EntryBB = &Fn.getEntryBlock();
4929 BB = FuncInfo.MBBMap[EntryBB];
Chris Lattner84bc5422007-12-31 04:13:23 +00004930 if (!RegInfo->livein_empty())
4931 for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4932 E = RegInfo->livein_end(); I != E; ++I)
Evan Chengad2070c2007-02-10 02:43:39 +00004933 BB->addLiveIn(I->first);
4934
Duncan Sandsf4070822007-06-15 19:04:19 +00004935#ifndef NDEBUG
4936 assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4937 "Not all catch info was assigned to a landing pad!");
4938#endif
4939
Chris Lattner1c08c712005-01-07 07:47:53 +00004940 return true;
4941}
4942
Chris Lattner6833b062008-04-28 07:16:35 +00004943void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
Chris Lattner571e4342006-10-27 21:36:01 +00004944 SDOperand Op = getValue(V);
Chris Lattner18c2f132005-01-13 20:50:02 +00004945 assert((Op.getOpcode() != ISD::CopyFromReg ||
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004946 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
Chris Lattner18c2f132005-01-13 20:50:02 +00004947 "Copy from a reg to the same reg!");
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004948 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
Dan Gohmanb6f5b002007-06-28 23:29:44 +00004949
Dan Gohman23ce5022008-04-25 18:27:55 +00004950 RegsForValue RFV(TLI, Reg, V->getType());
4951 SDOperand Chain = DAG.getEntryNode();
4952 RFV.getCopyToRegs(Op, DAG, Chain, 0);
4953 PendingExports.push_back(Chain);
Chris Lattner1c08c712005-01-07 07:47:53 +00004954}
4955
Chris Lattner068a81e2005-01-17 17:15:02 +00004956void SelectionDAGISel::
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004957LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
Chris Lattner068a81e2005-01-17 17:15:02 +00004958 // If this is the entry block, emit arguments.
Evan Cheng15699fc2007-02-10 01:08:18 +00004959 Function &F = *LLVMBB->getParent();
Chris Lattner0afa8e32005-01-17 17:55:19 +00004960 FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
Chris Lattnerbf209482005-10-30 19:42:35 +00004961 SDOperand OldRoot = SDL.DAG.getRoot();
4962 std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
Chris Lattner068a81e2005-01-17 17:15:02 +00004963
Chris Lattnerbf209482005-10-30 19:42:35 +00004964 unsigned a = 0;
4965 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004966 AI != E; ++AI) {
4967 SmallVector<MVT, 4> ValueVTs;
4968 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4969 unsigned NumValues = ValueVTs.size();
Chris Lattnerbf209482005-10-30 19:42:35 +00004970 if (!AI->use_empty()) {
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004971 SmallVector<MVT, 4> LegalValueVTs(NumValues);
4972 for (unsigned VI = 0; VI != NumValues; ++VI)
4973 LegalValueVTs[VI] = Args[a + VI].getValueType();
4974 SDL.setValue(AI, SDL.DAG.getNode(ISD::MERGE_VALUES,
4975 SDL.DAG.getVTList(&LegalValueVTs[0],
4976 NumValues),
4977 &Args[a], NumValues));
Chris Lattnerbf209482005-10-30 19:42:35 +00004978 // If this argument is live outside of the entry block, insert a copy from
4979 // whereever we got it to the vreg that other BB's will reference it as.
Chris Lattner251db182007-02-25 18:40:32 +00004980 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4981 if (VMI != FuncInfo.ValueMap.end()) {
Dan Gohman86e1ebf2008-03-27 19:56:19 +00004982 SDL.CopyValueToVirtualRegister(AI, VMI->second);
Chris Lattnerbf209482005-10-30 19:42:35 +00004983 }
Chris Lattner0afa8e32005-01-17 17:55:19 +00004984 }
Dan Gohmanf5025cf2008-06-09 21:19:23 +00004985 a += NumValues;
4986 }
Chris Lattnerbf209482005-10-30 19:42:35 +00004987
Chris Lattnerbf209482005-10-30 19:42:35 +00004988 // Finally, if the target has anything special to do, allow it to do so.
Chris Lattner96645412006-05-16 06:10:58 +00004989 // FIXME: this should insert code into the DAG!
Chris Lattnerbf209482005-10-30 19:42:35 +00004990 EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
Chris Lattner068a81e2005-01-17 17:15:02 +00004991}
4992
Duncan Sandsf4070822007-06-15 19:04:19 +00004993static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4994 MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004995 for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00004996 if (isSelector(I)) {
Duncan Sandsf4070822007-06-15 19:04:19 +00004997 // Apply the catch info to DestBB.
4998 addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4999#ifndef NDEBUG
Duncan Sands560a7372007-11-15 09:54:37 +00005000 if (!FLI.MBBMap[SrcBB]->isLandingPad())
5001 FLI.CatchInfoFound.insert(I);
Duncan Sandsf4070822007-06-15 19:04:19 +00005002#endif
5003 }
5004}
5005
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005006/// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
5007/// whether object offset >= 0.
5008static bool
5009IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDOperand Op) {
5010 if (!isa<FrameIndexSDNode>(Op)) return false;
5011
5012 FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
5013 int FrameIdx = FrameIdxNode->getIndex();
5014 return MFI->isFixedObjectIndex(FrameIdx) &&
5015 MFI->getObjectOffset(FrameIdx) >= 0;
5016}
5017
5018/// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
5019/// possibly be overwritten when lowering the outgoing arguments in a tail
5020/// call. Currently the implementation of this call is very conservative and
5021/// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
5022/// virtual registers would be overwritten by direct lowering.
5023static bool IsPossiblyOverwrittenArgumentOfTailCall(SDOperand Op,
5024 MachineFrameInfo * MFI) {
5025 RegisterSDNode * OpReg = NULL;
5026 if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
5027 (Op.getOpcode()== ISD::CopyFromReg &&
5028 (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
5029 (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
5030 (Op.getOpcode() == ISD::LOAD &&
5031 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
5032 (Op.getOpcode() == ISD::MERGE_VALUES &&
5033 Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
5034 IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
5035 getOperand(1))))
5036 return true;
5037 return false;
5038}
5039
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005040/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005041/// DAG and fixes their tailcall attribute operand.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005042static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
5043 TargetLowering& TLI) {
5044 SDNode * Ret = NULL;
5045 SDOperand Terminator = DAG.getRoot();
5046
5047 // Find RET node.
5048 if (Terminator.getOpcode() == ISD::RET) {
5049 Ret = Terminator.Val;
5050 }
5051
5052 // Fix tail call attribute of CALL nodes.
5053 for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
5054 BI = prior(DAG.allnodes_end()); BI != BE; --BI) {
5055 if (BI->getOpcode() == ISD::CALL) {
5056 SDOperand OpRet(Ret, 0);
5057 SDOperand OpCall(static_cast<SDNode*>(BI), 0);
5058 bool isMarkedTailCall =
5059 cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5060 // If CALL node has tail call attribute set to true and the call is not
5061 // eligible (no RET or the target rejects) the attribute is fixed to
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00005062 // false. The TargetLowering::IsEligibleForTailCallOptimization function
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005063 // must correctly identify tail call optimizable calls.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005064 if (!isMarkedTailCall) continue;
5065 if (Ret==NULL ||
5066 !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5067 // Not eligible. Mark CALL node as non tail call.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005068 SmallVector<SDOperand, 32> Ops;
5069 unsigned idx=0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005070 for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5071 E = OpCall.Val->op_end(); I != E; I++, idx++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005072 if (idx!=3)
5073 Ops.push_back(*I);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005074 else
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005075 Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5076 }
5077 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005078 } else {
5079 // Look for tail call clobbered arguments. Emit a series of
5080 // copyto/copyfrom virtual register nodes to protect them.
5081 SmallVector<SDOperand, 32> Ops;
5082 SDOperand Chain = OpCall.getOperand(0), InFlag;
5083 unsigned idx=0;
5084 for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5085 E = OpCall.Val->op_end(); I != E; I++, idx++) {
5086 SDOperand Arg = *I;
5087 if (idx > 4 && (idx % 2)) {
5088 bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5089 getArgFlags().isByVal();
5090 MachineFunction &MF = DAG.getMachineFunction();
5091 MachineFrameInfo *MFI = MF.getFrameInfo();
5092 if (!isByVal &&
5093 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005094 MVT VT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005095 unsigned VReg = MF.getRegInfo().
5096 createVirtualRegister(TLI.getRegClassFor(VT));
5097 Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5098 InFlag = Chain.getValue(1);
5099 Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5100 Chain = Arg.getValue(1);
5101 InFlag = Arg.getValue(2);
5102 }
5103 }
5104 Ops.push_back(Arg);
5105 }
5106 // Link in chain of CopyTo/CopyFromReg.
5107 Ops[0] = Chain;
5108 DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005109 }
5110 }
5111 }
5112}
5113
Chris Lattner1c08c712005-01-07 07:47:53 +00005114void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5115 std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
Nate Begemanf15485a2006-03-27 01:32:24 +00005116 FunctionLoweringInfo &FuncInfo) {
Gordon Henriksence224772008-01-07 01:30:38 +00005117 SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerddb870b2005-01-13 17:59:43 +00005118
Chris Lattnerbf209482005-10-30 19:42:35 +00005119 // Lower any arguments needed in this block if this is the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +00005120 if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005121 LowerArguments(LLVMBB, SDL);
Chris Lattner1c08c712005-01-07 07:47:53 +00005122
5123 BB = FuncInfo.MBBMap[LLVMBB];
5124 SDL.setCurrentBasicBlock(BB);
5125
Duncan Sandsf4070822007-06-15 19:04:19 +00005126 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Duncan Sands9fac0b52007-06-06 10:05:18 +00005127
Dale Johannesen1532f3d2008-04-02 00:25:04 +00005128 if (MMI && BB->isLandingPad()) {
Duncan Sandsf4070822007-06-15 19:04:19 +00005129 // Add a label to mark the beginning of the landing pad. Deletion of the
5130 // landing pad can thus be detected via the MachineModuleInfo.
5131 unsigned LabelID = MMI->addLandingPad(BB);
5132 DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, DAG.getEntryNode(),
Evan Chengbb81d972008-01-31 09:59:15 +00005133 DAG.getConstant(LabelID, MVT::i32),
5134 DAG.getConstant(1, MVT::i32)));
Duncan Sandsf4070822007-06-15 19:04:19 +00005135
Evan Chenge47c3332007-06-27 18:45:32 +00005136 // Mark exception register as live in.
5137 unsigned Reg = TLI.getExceptionAddressRegister();
5138 if (Reg) BB->addLiveIn(Reg);
5139
5140 // Mark exception selector register as live in.
5141 Reg = TLI.getExceptionSelectorRegister();
5142 if (Reg) BB->addLiveIn(Reg);
5143
Duncan Sandsf4070822007-06-15 19:04:19 +00005144 // FIXME: Hack around an exception handling flaw (PR1508): the personality
5145 // function and list of typeids logically belong to the invoke (or, if you
5146 // like, the basic block containing the invoke), and need to be associated
5147 // with it in the dwarf exception handling tables. Currently however the
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005148 // information is provided by an intrinsic (eh.selector) that can be moved
5149 // to unexpected places by the optimizers: if the unwind edge is critical,
5150 // then breaking it can result in the intrinsics being in the successor of
5151 // the landing pad, not the landing pad itself. This results in exceptions
5152 // not being caught because no typeids are associated with the invoke.
5153 // This may not be the only way things can go wrong, but it is the only way
5154 // we try to work around for the moment.
Duncan Sandsf4070822007-06-15 19:04:19 +00005155 BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5156
5157 if (Br && Br->isUnconditional()) { // Critical edge?
5158 BasicBlock::iterator I, E;
5159 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
Duncan Sandscf26d7c2007-07-04 20:52:51 +00005160 if (isSelector(I))
Duncan Sandsf4070822007-06-15 19:04:19 +00005161 break;
5162
5163 if (I == E)
5164 // No catch info found - try to extract some from the successor.
5165 copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
Duncan Sands9fac0b52007-06-06 10:05:18 +00005166 }
5167 }
5168
Chris Lattner1c08c712005-01-07 07:47:53 +00005169 // Lower all of the non-terminator instructions.
5170 for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5171 I != E; ++I)
5172 SDL.visit(*I);
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005173
Chris Lattner1c08c712005-01-07 07:47:53 +00005174 // Ensure that all instructions which are used outside of their defining
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005175 // blocks are available as virtual registers. Invoke is handled elsewhere.
Chris Lattner1c08c712005-01-07 07:47:53 +00005176 for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005177 if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
Chris Lattner9f24ad72007-02-04 01:35:11 +00005178 DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
Chris Lattner1c08c712005-01-07 07:47:53 +00005179 if (VMI != FuncInfo.ValueMap.end())
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005180 SDL.CopyValueToVirtualRegister(I, VMI->second);
Chris Lattner1c08c712005-01-07 07:47:53 +00005181 }
5182
5183 // Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5184 // ensure constants are generated when needed. Remember the virtual registers
5185 // that need to be added to the Machine PHI nodes as input. We cannot just
5186 // directly add them, because expansion might result in multiple MBB's for one
5187 // BB. As such, the start of the BB might correspond to a different MBB than
5188 // the end.
Misha Brukmanedf128a2005-04-21 22:36:52 +00005189 //
Chris Lattner8c494ab2006-10-27 23:50:33 +00005190 TerminatorInst *TI = LLVMBB->getTerminator();
Chris Lattner1c08c712005-01-07 07:47:53 +00005191
5192 // Emit constants only once even if used by multiple PHI nodes.
5193 std::map<Constant*, unsigned> ConstantsOut;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005194
Chris Lattner8c494ab2006-10-27 23:50:33 +00005195 // Vector bool would be better, but vector<bool> is really slow.
5196 std::vector<unsigned char> SuccsHandled;
5197 if (TI->getNumSuccessors())
5198 SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5199
Dan Gohman532dc2e2007-07-09 20:59:04 +00005200 // Check successor nodes' PHI nodes that expect a constant to be available
5201 // from this block.
Chris Lattner1c08c712005-01-07 07:47:53 +00005202 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5203 BasicBlock *SuccBB = TI->getSuccessor(succ);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005204 if (!isa<PHINode>(SuccBB->begin())) continue;
Chris Lattner8c494ab2006-10-27 23:50:33 +00005205 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005206
Chris Lattner8c494ab2006-10-27 23:50:33 +00005207 // If this terminator has multiple identical successors (common for
5208 // switches), only handle each succ once.
5209 unsigned SuccMBBNo = SuccMBB->getNumber();
5210 if (SuccsHandled[SuccMBBNo]) continue;
5211 SuccsHandled[SuccMBBNo] = true;
5212
5213 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
Chris Lattner1c08c712005-01-07 07:47:53 +00005214 PHINode *PN;
5215
5216 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5217 // nodes and Machine PHI nodes, but the incoming operands have not been
5218 // emitted yet.
5219 for (BasicBlock::iterator I = SuccBB->begin();
Chris Lattner8c494ab2006-10-27 23:50:33 +00005220 (PN = dyn_cast<PHINode>(I)); ++I) {
5221 // Ignore dead phi's.
5222 if (PN->use_empty()) continue;
5223
5224 unsigned Reg;
5225 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
Chris Lattner3f7927c2006-11-29 01:12:32 +00005226
Chris Lattner8c494ab2006-10-27 23:50:33 +00005227 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5228 unsigned &RegOut = ConstantsOut[C];
5229 if (RegOut == 0) {
5230 RegOut = FuncInfo.CreateRegForValue(C);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005231 SDL.CopyValueToVirtualRegister(C, RegOut);
Chris Lattner1c08c712005-01-07 07:47:53 +00005232 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005233 Reg = RegOut;
5234 } else {
5235 Reg = FuncInfo.ValueMap[PHIOp];
5236 if (Reg == 0) {
5237 assert(isa<AllocaInst>(PHIOp) &&
5238 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5239 "Didn't codegen value into a register!??");
5240 Reg = FuncInfo.CreateRegForValue(PHIOp);
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005241 SDL.CopyValueToVirtualRegister(PHIOp, Reg);
Chris Lattner7e021512006-03-31 02:12:18 +00005242 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005243 }
Chris Lattner8c494ab2006-10-27 23:50:33 +00005244
5245 // Remember that this register needs to added to the machine PHI node as
5246 // the input for this MBB.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005247 MVT VT = TLI.getValueType(PN->getType());
Dan Gohman7f321562007-06-25 16:23:39 +00005248 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohmanb9f10192007-06-21 14:42:22 +00005249 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
Chris Lattner8c494ab2006-10-27 23:50:33 +00005250 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5251 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005252 }
5253 ConstantsOut.clear();
5254
5255 // Lower the terminator after the copies are emitted.
Duncan Sandsf19f6bb2007-06-13 05:51:31 +00005256 SDL.visit(*LLVMBB->getTerminator());
Chris Lattnera651cf62005-01-17 19:43:36 +00005257
Nate Begemanf15485a2006-03-27 01:32:24 +00005258 // Copy over any CaseBlock records that may now exist due to SwitchInst
Nate Begeman37efe672006-04-22 18:53:45 +00005259 // lowering, as well as any jump table information.
Nate Begemanf15485a2006-03-27 01:32:24 +00005260 SwitchCases.clear();
5261 SwitchCases = SDL.SwitchCases;
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005262 JTCases.clear();
5263 JTCases = SDL.JTCases;
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005264 BitTestCases.clear();
5265 BitTestCases = SDL.BitTestCases;
5266
Chris Lattnera651cf62005-01-17 19:43:36 +00005267 // Make sure the root of the DAG is up-to-date.
Dan Gohman86e1ebf2008-03-27 19:56:19 +00005268 DAG.setRoot(SDL.getControlRoot());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00005269
5270 // Check whether calls in this block are real tail calls. Fix up CALL nodes
5271 // with correct tailcall attribute so that the target can rely on the tailcall
5272 // attribute indicating whether the call is really eligible for tail call
5273 // optimization.
5274 CheckDAGForTailCallsAndFixThem(DAG, TLI);
Chris Lattner1c08c712005-01-07 07:47:53 +00005275}
5276
Chris Lattneread0d882008-06-17 06:09:18 +00005277void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5278 SmallPtrSet<SDNode*, 128> VisitedNodes;
5279 SmallVector<SDNode*, 128> Worklist;
5280
5281 Worklist.push_back(DAG.getRoot().Val);
5282
5283 APInt Mask;
5284 APInt KnownZero;
5285 APInt KnownOne;
5286
5287 while (!Worklist.empty()) {
5288 SDNode *N = Worklist.back();
5289 Worklist.pop_back();
5290
5291 // If we've already seen this node, ignore it.
5292 if (!VisitedNodes.insert(N))
5293 continue;
5294
5295 // Otherwise, add all chain operands to the worklist.
5296 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5297 if (N->getOperand(i).getValueType() == MVT::Other)
5298 Worklist.push_back(N->getOperand(i).Val);
5299
5300 // If this is a CopyToReg with a vreg dest, process it.
5301 if (N->getOpcode() != ISD::CopyToReg)
5302 continue;
5303
5304 unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5305 if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5306 continue;
5307
5308 // Ignore non-scalar or non-integer values.
5309 SDOperand Src = N->getOperand(2);
5310 MVT SrcVT = Src.getValueType();
5311 if (!SrcVT.isInteger() || SrcVT.isVector())
5312 continue;
5313
5314 unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5315 Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5316 DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5317
5318 // Only install this information if it tells us something.
5319 if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5320 DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5321 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5322 if (DestReg >= FLI.LiveOutRegInfo.size())
5323 FLI.LiveOutRegInfo.resize(DestReg+1);
5324 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5325 LOI.NumSignBits = NumSignBits;
5326 LOI.KnownOne = NumSignBits;
5327 LOI.KnownZero = NumSignBits;
5328 }
5329 }
5330}
5331
Nate Begemanf15485a2006-03-27 01:32:24 +00005332void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
Dan Gohman417e11b2007-10-08 15:12:17 +00005333 DOUT << "Lowered selection DAG:\n";
5334 DEBUG(DAG.dump());
5335
Chris Lattneraf21d552005-10-10 16:47:10 +00005336 // Run the DAG combiner in pre-legalize mode.
Dan Gohman5f43f922007-08-27 16:26:13 +00005337 DAG.Combine(false, *AA);
Nate Begeman2300f552005-09-07 00:15:36 +00005338
Dan Gohman417e11b2007-10-08 15:12:17 +00005339 DOUT << "Optimized lowered selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005340 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005341
Chris Lattner1c08c712005-01-07 07:47:53 +00005342 // Second step, hack on the DAG until it only uses operations and types that
5343 // the target supports.
Chris Lattner01d029b2007-10-15 06:10:22 +00005344#if 0 // Enable this some day.
5345 DAG.LegalizeTypes();
5346 // Someday even later, enable a dag combine pass here.
5347#endif
Chris Lattnerac9dc082005-01-23 04:36:26 +00005348 DAG.Legalize();
Nate Begemanf15485a2006-03-27 01:32:24 +00005349
Bill Wendling832171c2006-12-07 20:04:42 +00005350 DOUT << "Legalized selection DAG:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005351 DEBUG(DAG.dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005352
Chris Lattneraf21d552005-10-10 16:47:10 +00005353 // Run the DAG combiner in post-legalize mode.
Dan Gohman5f43f922007-08-27 16:26:13 +00005354 DAG.Combine(true, *AA);
Nate Begeman2300f552005-09-07 00:15:36 +00005355
Dan Gohman417e11b2007-10-08 15:12:17 +00005356 DOUT << "Optimized legalized selection DAG:\n";
5357 DEBUG(DAG.dump());
5358
Evan Chenga9c20912006-01-21 02:32:06 +00005359 if (ViewISelDAGs) DAG.viewGraph();
Chris Lattneread0d882008-06-17 06:09:18 +00005360
5361 if (EnableValueProp) // FIXME: Only do this if !fast.
5362 ComputeLiveOutVRegInfo(DAG);
Evan Cheng552c4a82006-04-28 02:09:19 +00005363
Chris Lattnera33ef482005-03-30 01:10:47 +00005364 // Third, instruction select all of the operations to machine code, adding the
5365 // code to the MachineBasicBlock.
Chris Lattner1c08c712005-01-07 07:47:53 +00005366 InstructionSelectBasicBlock(DAG);
Nate Begemanf15485a2006-03-27 01:32:24 +00005367
Bill Wendling832171c2006-12-07 20:04:42 +00005368 DOUT << "Selected machine code:\n";
Chris Lattner1c08c712005-01-07 07:47:53 +00005369 DEBUG(BB->dump());
Nate Begemanf15485a2006-03-27 01:32:24 +00005370}
Chris Lattner1c08c712005-01-07 07:47:53 +00005371
Nate Begemanf15485a2006-03-27 01:32:24 +00005372void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5373 FunctionLoweringInfo &FuncInfo) {
5374 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5375 {
Chris Lattneread0d882008-06-17 06:09:18 +00005376 SelectionDAG DAG(TLI, MF, FuncInfo,
5377 getAnalysisToUpdate<MachineModuleInfo>());
Nate Begemanf15485a2006-03-27 01:32:24 +00005378 CurDAG = &DAG;
5379
5380 // First step, lower LLVM code to some DAG. This DAG may use operations and
5381 // types that are not supported by the target.
5382 BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5383
5384 // Second step, emit the lowered DAG as machine code.
5385 CodeGenAndEmitDAG(DAG);
5386 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005387
5388 DOUT << "Total amount of phi nodes to update: "
5389 << PHINodesToUpdate.size() << "\n";
5390 DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5391 DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5392 << ", " << PHINodesToUpdate[i].second << ")\n";);
Nate Begemanf15485a2006-03-27 01:32:24 +00005393
Chris Lattnera33ef482005-03-30 01:10:47 +00005394 // Next, now that we know what the last MBB the LLVM BB expanded is, update
Chris Lattner1c08c712005-01-07 07:47:53 +00005395 // PHI nodes in successors.
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005396 if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
Nate Begemanf15485a2006-03-27 01:32:24 +00005397 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5398 MachineInstr *PHI = PHINodesToUpdate[i].first;
5399 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5400 "This is not a machine PHI node that we are updating!");
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005401 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5402 false));
5403 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begemanf15485a2006-03-27 01:32:24 +00005404 }
5405 return;
Chris Lattner1c08c712005-01-07 07:47:53 +00005406 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005407
5408 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5409 // Lower header first, if it wasn't already lowered
5410 if (!BitTestCases[i].Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005411 SelectionDAG HSDAG(TLI, MF, FuncInfo,
5412 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005413 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005414 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005415 // Set the current basic block to the mbb we wish to insert the code into
5416 BB = BitTestCases[i].Parent;
5417 HSDL.setCurrentBasicBlock(BB);
5418 // Emit the code
5419 HSDL.visitBitTestHeader(BitTestCases[i]);
5420 HSDAG.setRoot(HSDL.getRoot());
5421 CodeGenAndEmitDAG(HSDAG);
5422 }
5423
5424 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
Chris Lattneread0d882008-06-17 06:09:18 +00005425 SelectionDAG BSDAG(TLI, MF, FuncInfo,
5426 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005427 CurDAG = &BSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005428 SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005429 // Set the current basic block to the mbb we wish to insert the code into
5430 BB = BitTestCases[i].Cases[j].ThisBB;
5431 BSDL.setCurrentBasicBlock(BB);
5432 // Emit the code
5433 if (j+1 != ej)
5434 BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5435 BitTestCases[i].Reg,
5436 BitTestCases[i].Cases[j]);
5437 else
5438 BSDL.visitBitTestCase(BitTestCases[i].Default,
5439 BitTestCases[i].Reg,
5440 BitTestCases[i].Cases[j]);
5441
5442
5443 BSDAG.setRoot(BSDL.getRoot());
5444 CodeGenAndEmitDAG(BSDAG);
5445 }
5446
5447 // Update PHI Nodes
5448 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5449 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5450 MachineBasicBlock *PHIBB = PHI->getParent();
5451 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5452 "This is not a machine PHI node that we are updating!");
5453 // This is "default" BB. We have two jumps to it. From "header" BB and
5454 // from last "case" BB.
5455 if (PHIBB == BitTestCases[i].Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005456 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5457 false));
5458 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5459 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5460 false));
5461 PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5462 back().ThisBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005463 }
5464 // One of "cases" BB.
5465 for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5466 MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5467 if (cBB->succ_end() !=
5468 std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005469 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5470 false));
5471 PHI->addOperand(MachineOperand::CreateMBB(cBB));
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005472 }
5473 }
5474 }
5475 }
5476
Nate Begeman9453eea2006-04-23 06:26:20 +00005477 // If the JumpTable record is filled in, then we need to emit a jump table.
5478 // Updating the PHI nodes is tricky in this case, since we need to determine
5479 // whether the PHI is a successor of the range check MBB or the jump table MBB
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005480 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5481 // Lower header first, if it wasn't already lowered
5482 if (!JTCases[i].first.Emitted) {
Chris Lattneread0d882008-06-17 06:09:18 +00005483 SelectionDAG HSDAG(TLI, MF, FuncInfo,
5484 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005485 CurDAG = &HSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005486 SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005487 // Set the current basic block to the mbb we wish to insert the code into
5488 BB = JTCases[i].first.HeaderBB;
5489 HSDL.setCurrentBasicBlock(BB);
5490 // Emit the code
5491 HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5492 HSDAG.setRoot(HSDL.getRoot());
5493 CodeGenAndEmitDAG(HSDAG);
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005494 }
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005495
Chris Lattneread0d882008-06-17 06:09:18 +00005496 SelectionDAG JSDAG(TLI, MF, FuncInfo,
5497 getAnalysisToUpdate<MachineModuleInfo>());
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005498 CurDAG = &JSDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005499 SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
Nate Begeman37efe672006-04-22 18:53:45 +00005500 // Set the current basic block to the mbb we wish to insert the code into
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005501 BB = JTCases[i].second.MBB;
5502 JSDL.setCurrentBasicBlock(BB);
Nate Begeman37efe672006-04-22 18:53:45 +00005503 // Emit the code
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005504 JSDL.visitJumpTable(JTCases[i].second);
5505 JSDAG.setRoot(JSDL.getRoot());
5506 CodeGenAndEmitDAG(JSDAG);
5507
Nate Begeman37efe672006-04-22 18:53:45 +00005508 // Update PHI Nodes
5509 for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5510 MachineInstr *PHI = PHINodesToUpdate[pi].first;
5511 MachineBasicBlock *PHIBB = PHI->getParent();
5512 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5513 "This is not a machine PHI node that we are updating!");
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005514 // "default" BB. We can go there only from header BB.
Anton Korobeynikov3a84b9b2007-03-25 15:07:15 +00005515 if (PHIBB == JTCases[i].second.Default) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005516 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5517 false));
5518 PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
Nate Begemanf4360a42006-05-03 03:48:02 +00005519 }
Anton Korobeynikov4198c582007-04-09 12:31:58 +00005520 // JT BB. Just iterate over successors here
Nate Begemanf4360a42006-05-03 03:48:02 +00005521 if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005522 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5523 false));
5524 PHI->addOperand(MachineOperand::CreateMBB(BB));
Nate Begeman37efe672006-04-22 18:53:45 +00005525 }
5526 }
Nate Begeman37efe672006-04-22 18:53:45 +00005527 }
5528
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005529 // If the switch block involved a branch to one of the actual successors, we
5530 // need to update PHI nodes in that block.
5531 for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5532 MachineInstr *PHI = PHINodesToUpdate[i].first;
5533 assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5534 "This is not a machine PHI node that we are updating!");
5535 if (BB->isSuccessor(PHI->getParent())) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005536 PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5537 false));
5538 PHI->addOperand(MachineOperand::CreateMBB(BB));
Chris Lattnerb2e806e2006-10-22 23:00:53 +00005539 }
5540 }
5541
Nate Begemanf15485a2006-03-27 01:32:24 +00005542 // If we generated any switch lowering information, build and codegen any
5543 // additional DAGs necessary.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005544 for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
Chris Lattneread0d882008-06-17 06:09:18 +00005545 SelectionDAG SDAG(TLI, MF, FuncInfo,
5546 getAnalysisToUpdate<MachineModuleInfo>());
Nate Begemanf15485a2006-03-27 01:32:24 +00005547 CurDAG = &SDAG;
Gordon Henriksence224772008-01-07 01:30:38 +00005548 SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005549
Nate Begemanf15485a2006-03-27 01:32:24 +00005550 // Set the current basic block to the mbb we wish to insert the code into
5551 BB = SwitchCases[i].ThisBB;
5552 SDL.setCurrentBasicBlock(BB);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005553
Nate Begemanf15485a2006-03-27 01:32:24 +00005554 // Emit the code
5555 SDL.visitSwitchCase(SwitchCases[i]);
5556 SDAG.setRoot(SDL.getRoot());
5557 CodeGenAndEmitDAG(SDAG);
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005558
5559 // Handle any PHI nodes in successors of this chunk, as if we were coming
5560 // from the original BB before switch expansion. Note that PHI nodes can
5561 // occur multiple times in PHINodesToUpdate. We have to be very careful to
5562 // handle them the right number of times.
Chris Lattner57ab6592006-10-24 17:57:59 +00005563 while ((BB = SwitchCases[i].TrueBB)) { // Handle LHS and RHS.
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005564 for (MachineBasicBlock::iterator Phi = BB->begin();
5565 Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5566 // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5567 for (unsigned pn = 0; ; ++pn) {
5568 assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5569 if (PHINodesToUpdate[pn].first == Phi) {
Chris Lattner9ce2e9d2007-12-30 00:57:42 +00005570 Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5571 second, false));
5572 Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005573 break;
5574 }
5575 }
Nate Begemanf15485a2006-03-27 01:32:24 +00005576 }
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005577
5578 // Don't process RHS if same block as LHS.
Chris Lattner57ab6592006-10-24 17:57:59 +00005579 if (BB == SwitchCases[i].FalseBB)
5580 SwitchCases[i].FalseBB = 0;
Chris Lattnerd5e93c02006-09-07 01:59:34 +00005581
5582 // If we haven't handled the RHS, do so now. Otherwise, we're done.
Chris Lattner24525952006-10-24 18:07:37 +00005583 SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
Chris Lattner57ab6592006-10-24 17:57:59 +00005584 SwitchCases[i].FalseBB = 0;
Nate Begemanf15485a2006-03-27 01:32:24 +00005585 }
Chris Lattner57ab6592006-10-24 17:57:59 +00005586 assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
Chris Lattnera33ef482005-03-30 01:10:47 +00005587 }
Chris Lattner1c08c712005-01-07 07:47:53 +00005588}
Evan Chenga9c20912006-01-21 02:32:06 +00005589
Jim Laskey13ec7022006-08-01 14:21:23 +00005590
Evan Chenga9c20912006-01-21 02:32:06 +00005591//===----------------------------------------------------------------------===//
5592/// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
5593/// target node in the graph.
5594void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
5595 if (ViewSchedDAGs) DAG.viewGraph();
Evan Cheng4ef10862006-01-23 07:01:07 +00005596
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005597 RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
Jim Laskey13ec7022006-08-01 14:21:23 +00005598
5599 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +00005600 Ctor = ISHeuristic;
Jim Laskey9373beb2006-08-01 19:14:14 +00005601 RegisterScheduler::setDefault(Ctor);
Evan Cheng4ef10862006-01-23 07:01:07 +00005602 }
Jim Laskey13ec7022006-08-01 14:21:23 +00005603
Jim Laskey9ff542f2006-08-01 18:29:48 +00005604 ScheduleDAG *SL = Ctor(this, &DAG, BB);
Chris Lattnera3818e62006-01-21 19:12:11 +00005605 BB = SL->Run();
Dan Gohman3e1a7ae2007-08-28 20:32:58 +00005606
5607 if (ViewSUnitDAGs) SL->viewGraph();
5608
Evan Chengcccf1232006-02-04 06:49:00 +00005609 delete SL;
Evan Chenga9c20912006-01-21 02:32:06 +00005610}
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005611
Chris Lattner03fc53c2006-03-06 00:22:00 +00005612
Jim Laskey9ff542f2006-08-01 18:29:48 +00005613HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5614 return new HazardRecognizer();
5615}
5616
Chris Lattner75548062006-10-11 03:58:02 +00005617//===----------------------------------------------------------------------===//
5618// Helper functions used by the generated instruction selector.
5619//===----------------------------------------------------------------------===//
5620// Calls to these methods are generated by tblgen.
5621
5622/// CheckAndMask - The isel is trying to match something like (and X, 255). If
5623/// the dag combiner simplified the 255, we still want to match. RHS is the
5624/// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5625/// specified in the .td file (e.g. 255).
5626bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohmandc9b3d02007-07-24 23:00:27 +00005627 int64_t DesiredMaskS) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005628 const APInt &ActualMask = RHS->getAPIntValue();
5629 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005630
5631 // If the actual mask exactly matches, success!
5632 if (ActualMask == DesiredMask)
5633 return true;
5634
5635 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005636 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005637 return false;
5638
5639 // Otherwise, the DAG Combiner may have proven that the value coming in is
5640 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005641 APInt NeededMask = DesiredMask & ~ActualMask;
Dan Gohmanea859be2007-06-22 14:59:07 +00005642 if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
Chris Lattner75548062006-10-11 03:58:02 +00005643 return true;
5644
5645 // TODO: check to see if missing bits are just not demanded.
5646
5647 // Otherwise, this pattern doesn't match.
5648 return false;
5649}
5650
5651/// CheckOrMask - The isel is trying to match something like (or X, 255). If
5652/// the dag combiner simplified the 255, we still want to match. RHS is the
5653/// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5654/// specified in the .td file (e.g. 255).
5655bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005656 int64_t DesiredMaskS) const {
5657 const APInt &ActualMask = RHS->getAPIntValue();
5658 const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
Chris Lattner75548062006-10-11 03:58:02 +00005659
5660 // If the actual mask exactly matches, success!
5661 if (ActualMask == DesiredMask)
5662 return true;
5663
5664 // If the actual AND mask is allowing unallowed bits, this doesn't match.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005665 if (ActualMask.intersects(~DesiredMask))
Chris Lattner75548062006-10-11 03:58:02 +00005666 return false;
5667
5668 // Otherwise, the DAG Combiner may have proven that the value coming in is
5669 // either already zero or is not demanded. Check for known zero input bits.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005670 APInt NeededMask = DesiredMask & ~ActualMask;
Chris Lattner75548062006-10-11 03:58:02 +00005671
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005672 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005673 CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
Chris Lattner75548062006-10-11 03:58:02 +00005674
5675 // If all the missing bits in the or are already known to be set, match!
5676 if ((NeededMask & KnownOne) == NeededMask)
5677 return true;
5678
5679 // TODO: check to see if missing bits are just not demanded.
5680
5681 // Otherwise, this pattern doesn't match.
5682 return false;
5683}
5684
Jim Laskey9ff542f2006-08-01 18:29:48 +00005685
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005686/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5687/// by tblgen. Others should not call it.
5688void SelectionDAGISel::
5689SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
5690 std::vector<SDOperand> InOps;
5691 std::swap(InOps, Ops);
5692
5693 Ops.push_back(InOps[0]); // input chain.
5694 Ops.push_back(InOps[1]); // input asm string.
5695
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005696 unsigned i = 2, e = InOps.size();
5697 if (InOps[e-1].getValueType() == MVT::Flag)
5698 --e; // Don't process a flag operand if it is here.
5699
5700 while (i != e) {
5701 unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5702 if ((Flags & 7) != 4 /*MEM*/) {
5703 // Just skip over this operand, copying the operands verbatim.
5704 Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5705 i += (Flags >> 3) + 1;
5706 } else {
5707 assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5708 // Otherwise, this is a memory operand. Ask the target to select it.
5709 std::vector<SDOperand> SelOps;
5710 if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
Bill Wendling832171c2006-12-07 20:04:42 +00005711 cerr << "Could not match memory address. Inline asm failure!\n";
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005712 exit(1);
5713 }
5714
5715 // Add this to the output node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005716 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Chris Lattner36d43962006-12-16 21:14:48 +00005717 Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
Chris Lattner4b993b12007-04-09 00:33:58 +00005718 IntPtrTy));
Chris Lattner0e43f2b2006-02-24 02:13:54 +00005719 Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5720 i += 2;
5721 }
5722 }
5723
5724 // Add the flag input back if present.
5725 if (e != InOps.size())
5726 Ops.push_back(InOps.back());
5727}
Devang Patel794fd752007-05-01 21:15:47 +00005728
Devang Patel19974732007-05-03 01:11:54 +00005729char SelectionDAGISel::ID = 0;