blob: f5466123d359d531931118d6b0f6a12e0bad9ddb [file] [log] [blame]
Dan Gohman2048b852009-11-23 18:04:58 +00001//===-- SelectionDAGBuilder.h - Selection-DAG building --------------------===//
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements routines for translating from LLVM IR into SelectionDAG IR.
11//
12//===----------------------------------------------------------------------===//
13
Dan Gohman2048b852009-11-23 18:04:58 +000014#ifndef SELECTIONDAGBUILDER_H
15#define SELECTIONDAGBUILDER_H
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000016
17#include "llvm/Constants.h"
Owen Anderson0a5372e2009-07-13 04:09:18 +000018#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000019#include "llvm/ADT/APInt.h"
20#include "llvm/ADT/DenseMap.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000021#include "llvm/CodeGen/SelectionDAGNodes.h"
Bill Wendling0eb96fd2009-02-03 01:32:22 +000022#include "llvm/CodeGen/ValueTypes.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000023#include "llvm/Support/CallSite.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000024#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000025#include <vector>
26#include <set>
27
28namespace llvm {
29
30class AliasAnalysis;
31class AllocaInst;
32class BasicBlock;
33class BitCastInst;
34class BranchInst;
35class CallInst;
Devang Patel4cf81c42010-08-26 23:35:15 +000036class DbgValueInst;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000037class ExtractElementInst;
38class ExtractValueInst;
39class FCmpInst;
40class FPExtInst;
41class FPToSIInst;
42class FPToUIInst;
43class FPTruncInst;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000044class Function;
Dan Gohman6277eb22009-11-23 17:16:22 +000045class FunctionLoweringInfo;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000046class GetElementPtrInst;
47class GCFunctionInfo;
48class ICmpInst;
49class IntToPtrInst;
Chris Lattnerab21db72009-10-28 00:19:10 +000050class IndirectBrInst;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000051class InvokeInst;
52class InsertElementInst;
53class InsertValueInst;
54class Instruction;
55class LoadInst;
56class MachineBasicBlock;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000057class MachineInstr;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000058class MachineRegisterInfo;
Evan Cheng2ad0fcf2010-04-28 23:08:54 +000059class MDNode;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000060class PHINode;
61class PtrToIntInst;
62class ReturnInst;
Dale Johannesenbdc09d92010-07-16 00:02:08 +000063class SDDbgValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000064class SExtInst;
65class SelectInst;
66class ShuffleVectorInst;
67class SIToFPInst;
68class StoreInst;
69class SwitchInst;
70class TargetData;
71class TargetLowering;
72class TruncInst;
73class UIToFPInst;
74class UnreachableInst;
75class UnwindInst;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000076class VAArgInst;
77class ZExtInst;
78
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000079//===----------------------------------------------------------------------===//
Dan Gohman2048b852009-11-23 18:04:58 +000080/// SelectionDAGBuilder - This is the common target-independent lowering
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000081/// implementation that is parameterized by a TargetLowering object.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000082///
Dan Gohman2048b852009-11-23 18:04:58 +000083class SelectionDAGBuilder {
Dale Johannesen66978ee2009-01-31 02:22:37 +000084 /// CurDebugLoc - current file + line number. Changes as we build the DAG.
85 DebugLoc CurDebugLoc;
86
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000087 DenseMap<const Value*, SDValue> NodeMap;
Devang Patel9126c0d2010-06-01 19:59:01 +000088
89 /// UnusedArgNodeMap - Maps argument value for unused arguments. This is used
90 /// to preserve debug information for incoming arguments.
91 DenseMap<const Value*, SDValue> UnusedArgNodeMap;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000092
Dale Johannesenbdc09d92010-07-16 00:02:08 +000093 /// DanglingDebugInfo - Helper type for DanglingDebugInfoMap.
94 class DanglingDebugInfo {
Devang Patel4cf81c42010-08-26 23:35:15 +000095 const DbgValueInst* DI;
Dale Johannesenbdc09d92010-07-16 00:02:08 +000096 DebugLoc dl;
97 unsigned SDNodeOrder;
98 public:
99 DanglingDebugInfo() : DI(0), dl(DebugLoc()), SDNodeOrder(0) { }
Devang Patel4cf81c42010-08-26 23:35:15 +0000100 DanglingDebugInfo(const DbgValueInst *di, DebugLoc DL, unsigned SDNO) :
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000101 DI(di), dl(DL), SDNodeOrder(SDNO) { }
Devang Patel4cf81c42010-08-26 23:35:15 +0000102 const DbgValueInst* getDI() { return DI; }
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000103 DebugLoc getdl() { return dl; }
104 unsigned getSDNodeOrder() { return SDNodeOrder; }
105 };
106
107 /// DanglingDebugInfoMap - Keeps track of dbg_values for which we have not
108 /// yet seen the referent. We defer handling these until we do see it.
109 DenseMap<const Value*, DanglingDebugInfo> DanglingDebugInfoMap;
110
Chris Lattner8047d9a2009-12-24 00:37:38 +0000111public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000112 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
113 /// them up and then emit token factor nodes when possible. This allows us to
114 /// get simple disambiguation between loads without worrying about alias
115 /// analysis.
116 SmallVector<SDValue, 8> PendingLoads;
Chris Lattner8047d9a2009-12-24 00:37:38 +0000117private:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000118
119 /// PendingExports - CopyToReg nodes that copy values to virtual registers
120 /// for export to other blocks need to be emitted before any terminator
121 /// instruction, but they have no other ordering requirements. We bunch them
122 /// up and the emit a single tokenfactor for them just before terminator
123 /// instructions.
124 SmallVector<SDValue, 8> PendingExports;
125
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +0000126 /// SDNodeOrder - A unique monotonically increasing number used to order the
127 /// SDNodes we create.
128 unsigned SDNodeOrder;
129
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000130 /// Case - A struct to record the Value for a switch case, and the
131 /// case's target basic block.
132 struct Case {
133 Constant* Low;
134 Constant* High;
135 MachineBasicBlock* BB;
136
137 Case() : Low(0), High(0), BB(0) { }
138 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
139 Low(low), High(high), BB(bb) { }
Chris Lattnere880efe2009-11-07 07:50:34 +0000140 APInt size() const {
141 const APInt &rHigh = cast<ConstantInt>(High)->getValue();
142 const APInt &rLow = cast<ConstantInt>(Low)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000143 return (rHigh - rLow + 1ULL);
144 }
145 };
146
147 struct CaseBits {
148 uint64_t Mask;
149 MachineBasicBlock* BB;
150 unsigned Bits;
151
152 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
153 Mask(mask), BB(bb), Bits(bits) { }
154 };
155
156 typedef std::vector<Case> CaseVector;
157 typedef std::vector<CaseBits> CaseBitsVector;
158 typedef CaseVector::iterator CaseItr;
159 typedef std::pair<CaseItr, CaseItr> CaseRange;
160
161 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
162 /// of conditional branches.
163 struct CaseRec {
Dan Gohman46510a72010-04-15 01:51:59 +0000164 CaseRec(MachineBasicBlock *bb, const Constant *lt, const Constant *ge,
165 CaseRange r) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000166 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
167
168 /// CaseBB - The MBB in which to emit the compare and branch
169 MachineBasicBlock *CaseBB;
170 /// LT, GE - If nonzero, we know the current case value must be less-than or
171 /// greater-than-or-equal-to these Constants.
Dan Gohman46510a72010-04-15 01:51:59 +0000172 const Constant *LT;
173 const Constant *GE;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000174 /// Range - A pair of iterators representing the range of case values to be
175 /// processed at this point in the binary search tree.
176 CaseRange Range;
177 };
178
179 typedef std::vector<CaseRec> CaseRecVector;
180
181 /// The comparison function for sorting the switch case values in the vector.
182 /// WARNING: Case ranges should be disjoint!
183 struct CaseCmp {
Chris Lattner53334ca2010-01-01 23:37:34 +0000184 bool operator()(const Case &C1, const Case &C2) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000185 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
186 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
187 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
188 return CI1->getValue().slt(CI2->getValue());
189 }
190 };
191
192 struct CaseBitsCmp {
Chris Lattner53334ca2010-01-01 23:37:34 +0000193 bool operator()(const CaseBits &C1, const CaseBits &C2) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000194 return C1.Bits > C2.Bits;
195 }
196 };
197
Chris Lattner53334ca2010-01-01 23:37:34 +0000198 size_t Clusterify(CaseVector &Cases, const SwitchInst &SI);
Anton Korobeynikov23218582008-12-23 22:25:27 +0000199
Dan Gohman2048b852009-11-23 18:04:58 +0000200 /// CaseBlock - This structure is used to communicate between
201 /// SelectionDAGBuilder and SDISel for the code generation of additional basic
202 /// blocks needed by multi-case switch statements.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000203 struct CaseBlock {
Dan Gohman46510a72010-04-15 01:51:59 +0000204 CaseBlock(ISD::CondCode cc, const Value *cmplhs, const Value *cmprhs,
205 const Value *cmpmiddle,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000206 MachineBasicBlock *truebb, MachineBasicBlock *falsebb,
207 MachineBasicBlock *me)
208 : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs),
209 TrueBB(truebb), FalseBB(falsebb), ThisBB(me) {}
210 // CC - the condition code to use for the case block's setcc node
211 ISD::CondCode CC;
212 // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit.
213 // Emit by default LHS op RHS. MHS is used for range comparisons:
214 // If MHS is not null: (LHS <= MHS) and (MHS <= RHS).
Dan Gohman46510a72010-04-15 01:51:59 +0000215 const Value *CmpLHS, *CmpMHS, *CmpRHS;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000216 // TrueBB/FalseBB - the block to branch to if the setcc is true/false.
217 MachineBasicBlock *TrueBB, *FalseBB;
218 // ThisBB - the block into which to emit the code for the setcc and branches
219 MachineBasicBlock *ThisBB;
220 };
221 struct JumpTable {
222 JumpTable(unsigned R, unsigned J, MachineBasicBlock *M,
223 MachineBasicBlock *D): Reg(R), JTI(J), MBB(M), Default(D) {}
224
225 /// Reg - the virtual register containing the index of the jump table entry
226 //. to jump to.
227 unsigned Reg;
228 /// JTI - the JumpTableIndex for this jump table in the function.
229 unsigned JTI;
230 /// MBB - the MBB into which to emit the code for the indirect jump.
231 MachineBasicBlock *MBB;
232 /// Default - the MBB of the default bb, which is a successor of the range
233 /// check MBB. This is when updating PHI nodes in successors.
234 MachineBasicBlock *Default;
235 };
236 struct JumpTableHeader {
Dan Gohman46510a72010-04-15 01:51:59 +0000237 JumpTableHeader(APInt F, APInt L, const Value *SV, MachineBasicBlock *H,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000238 bool E = false):
239 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
Anton Korobeynikov23218582008-12-23 22:25:27 +0000240 APInt First;
241 APInt Last;
Dan Gohman46510a72010-04-15 01:51:59 +0000242 const Value *SValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000243 MachineBasicBlock *HeaderBB;
244 bool Emitted;
245 };
246 typedef std::pair<JumpTableHeader, JumpTable> JumpTableBlock;
247
248 struct BitTestCase {
249 BitTestCase(uint64_t M, MachineBasicBlock* T, MachineBasicBlock* Tr):
250 Mask(M), ThisBB(T), TargetBB(Tr) { }
251 uint64_t Mask;
Chris Lattner53334ca2010-01-01 23:37:34 +0000252 MachineBasicBlock *ThisBB;
253 MachineBasicBlock *TargetBB;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000254 };
255
256 typedef SmallVector<BitTestCase, 3> BitTestInfo;
257
258 struct BitTestBlock {
Dan Gohman46510a72010-04-15 01:51:59 +0000259 BitTestBlock(APInt F, APInt R, const Value* SV,
Evan Chengd08e5b42011-01-06 01:02:44 +0000260 unsigned Rg, EVT RgVT, bool E,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000261 MachineBasicBlock* P, MachineBasicBlock* D,
262 const BitTestInfo& C):
Evan Chengd08e5b42011-01-06 01:02:44 +0000263 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000264 Parent(P), Default(D), Cases(C) { }
Anton Korobeynikov23218582008-12-23 22:25:27 +0000265 APInt First;
266 APInt Range;
Dan Gohman46510a72010-04-15 01:51:59 +0000267 const Value *SValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000268 unsigned Reg;
Evan Chengd08e5b42011-01-06 01:02:44 +0000269 EVT RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000270 bool Emitted;
271 MachineBasicBlock *Parent;
272 MachineBasicBlock *Default;
273 BitTestInfo Cases;
274 };
275
276public:
277 // TLI - This is information that describes the available target features we
278 // need for lowering. This indicates when operations are unavailable,
279 // implemented with a libcall, etc.
Dan Gohman55e59c12010-04-19 19:05:59 +0000280 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +0000281 const TargetLowering &TLI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000282 SelectionDAG &DAG;
283 const TargetData *TD;
284 AliasAnalysis *AA;
285
286 /// SwitchCases - Vector of CaseBlock structures used to communicate
287 /// SwitchInst code generation information.
288 std::vector<CaseBlock> SwitchCases;
289 /// JTCases - Vector of JumpTable structures used to communicate
290 /// SwitchInst code generation information.
291 std::vector<JumpTableBlock> JTCases;
292 /// BitTestCases - Vector of BitTestBlock structures used to communicate
293 /// SwitchInst code generation information.
294 std::vector<BitTestBlock> BitTestCases;
Evan Chengfb2e7522009-09-18 21:02:19 +0000295
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000296 // Emit PHI-node-operand constants only once even if used by multiple
297 // PHI nodes.
Dan Gohman46510a72010-04-15 01:51:59 +0000298 DenseMap<const Constant *, unsigned> ConstantsOut;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000299
300 /// FuncInfo - Information about the function as a whole.
301 ///
302 FunctionLoweringInfo &FuncInfo;
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000303
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000304 /// OptLevel - What optimization level we're generating code for.
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000305 ///
Bill Wendling98a366d2009-04-29 23:29:43 +0000306 CodeGenOpt::Level OptLevel;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000307
308 /// GFI - Garbage collection metadata for the function.
309 GCFunctionInfo *GFI;
310
Dan Gohman98ca4f22009-08-05 01:29:28 +0000311 /// HasTailCall - This is set to true if a call in the current
312 /// block has been translated as a tail call. In this case,
313 /// no subsequent DAG nodes should be created.
314 ///
315 bool HasTailCall;
316
Owen Anderson0a5372e2009-07-13 04:09:18 +0000317 LLVMContext *Context;
318
Dan Gohman55e59c12010-04-19 19:05:59 +0000319 SelectionDAGBuilder(SelectionDAG &dag, FunctionLoweringInfo &funcinfo,
Dan Gohman2048b852009-11-23 18:04:58 +0000320 CodeGenOpt::Level ol)
Dan Gohman55e59c12010-04-19 19:05:59 +0000321 : SDNodeOrder(0), TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
322 DAG(dag), FuncInfo(funcinfo), OptLevel(ol),
Chris Lattnera4f2bb02010-04-02 20:17:23 +0000323 HasTailCall(false), Context(dag.getContext()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000324 }
325
326 void init(GCFunctionInfo *gfi, AliasAnalysis &aa);
327
Dan Gohmanb02b62a2010-04-14 18:24:06 +0000328 /// clear - Clear out the current SelectionDAG and the associated
Dan Gohman2048b852009-11-23 18:04:58 +0000329 /// state and prepare this SelectionDAGBuilder object to be used
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000330 /// for a new block. This doesn't clear out information about
331 /// additional blocks that are needed to complete switch lowering
332 /// or PHI node updating; that information is cleared out as it is
333 /// consumed.
334 void clear();
335
336 /// getRoot - Return the current virtual root of the Selection DAG,
337 /// flushing any PendingLoad items. This must be done before emitting
338 /// a store or any other node that may need to be ordered after any
339 /// prior load instructions.
340 ///
341 SDValue getRoot();
342
343 /// getControlRoot - Similar to getRoot, but instead of flushing all the
344 /// PendingLoad items, flush all the PendingExports items. It is necessary
345 /// to do this before emitting a terminator instruction.
346 ///
347 SDValue getControlRoot();
348
Dale Johannesen66978ee2009-01-31 02:22:37 +0000349 DebugLoc getCurDebugLoc() const { return CurDebugLoc; }
Devang Patel68e6bee2011-02-21 23:21:26 +0000350
Bill Wendling3ea3c242009-12-22 02:10:19 +0000351 unsigned getSDNodeOrder() const { return SDNodeOrder; }
352
Dan Gohman46510a72010-04-15 01:51:59 +0000353 void CopyValueToVirtualRegister(const Value *V, unsigned Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000354
Bill Wendling4533cac2010-01-28 21:51:40 +0000355 /// AssignOrderingToNode - Assign an ordering to the node. The order is gotten
356 /// from how the code appeared in the source. The ordering is used by the
357 /// scheduler to effectively turn off scheduling.
358 void AssignOrderingToNode(const SDNode *Node);
359
Dan Gohman46510a72010-04-15 01:51:59 +0000360 void visit(const Instruction &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000361
Dan Gohman46510a72010-04-15 01:51:59 +0000362 void visit(unsigned Opcode, const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000363
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000364 // resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V,
365 // generate the debug data structures now that we've seen its definition.
366 void resolveDanglingDebugInfo(const Value *V, SDValue Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000367 SDValue getValue(const Value *V);
Dan Gohman28a17352010-07-01 01:59:43 +0000368 SDValue getNonRegisterValue(const Value *V);
369 SDValue getValueImpl(const Value *V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000370
371 void setValue(const Value *V, SDValue NewN) {
372 SDValue &N = NodeMap[V];
373 assert(N.getNode() == 0 && "Already set a value for this node!");
374 N = NewN;
375 }
376
Devang Patel9126c0d2010-06-01 19:59:01 +0000377 void setUnusedArgValue(const Value *V, SDValue NewN) {
378 SDValue &N = UnusedArgNodeMap[V];
379 assert(N.getNode() == 0 && "Already set a value for this node!");
380 N = NewN;
381 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000382
Dan Gohman46510a72010-04-15 01:51:59 +0000383 void FindMergedConditions(const Value *Cond, MachineBasicBlock *TBB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000384 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000385 MachineBasicBlock *SwitchBB, unsigned Opc);
Dan Gohman46510a72010-04-15 01:51:59 +0000386 void EmitBranchForMergedCondition(const Value *Cond, MachineBasicBlock *TBB,
Dan Gohmanc2277342008-10-17 21:16:08 +0000387 MachineBasicBlock *FBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000388 MachineBasicBlock *CurBB,
389 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000390 bool ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases);
Dan Gohman46510a72010-04-15 01:51:59 +0000391 bool isExportableFromCurrentBlock(const Value *V, const BasicBlock *FromBB);
392 void CopyToExportRegsIfNeeded(const Value *V);
393 void ExportFromCurrentBlock(const Value *V);
394 void LowerCallTo(ImmutableCallSite CS, SDValue Callee, bool IsTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000395 MachineBasicBlock *LandingPad = NULL);
396
Jakob Stoklund Olesen2622f462010-09-30 19:44:31 +0000397 /// UpdateSplitBlock - When an MBB was split during scheduling, update the
398 /// references that ned to refer to the last resulting block.
399 void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last);
400
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000401private:
402 // Terminator instructions.
Dan Gohman46510a72010-04-15 01:51:59 +0000403 void visitRet(const ReturnInst &I);
404 void visitBr(const BranchInst &I);
405 void visitSwitch(const SwitchInst &I);
406 void visitIndirectBr(const IndirectBrInst &I);
Bill Wendlinga60f0e72010-07-15 23:42:21 +0000407 void visitUnreachable(const UnreachableInst &I) { /* noop */ }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000408
409 // Helpers for visitSwitch
410 bool handleSmallSwitchRange(CaseRec& CR,
411 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000412 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000413 MachineBasicBlock* Default,
414 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000415 bool handleJTSwitchCase(CaseRec& CR,
416 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000417 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000418 MachineBasicBlock* Default,
419 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000420 bool handleBTSplitSwitchCase(CaseRec& CR,
421 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000422 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000423 MachineBasicBlock* Default,
424 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000425 bool handleBitTestsSwitchCase(CaseRec& CR,
426 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000427 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000428 MachineBasicBlock* Default,
429 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000430public:
Dan Gohman99be8ae2010-04-19 22:41:47 +0000431 void visitSwitchCase(CaseBlock &CB,
432 MachineBasicBlock *SwitchBB);
433 void visitBitTestHeader(BitTestBlock &B, MachineBasicBlock *SwitchBB);
Evan Chengd08e5b42011-01-06 01:02:44 +0000434 void visitBitTestCase(BitTestBlock &BB,
435 MachineBasicBlock* NextMBB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000436 unsigned Reg,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000437 BitTestCase &B,
438 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000439 void visitJumpTable(JumpTable &JT);
Dan Gohman99be8ae2010-04-19 22:41:47 +0000440 void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH,
441 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000442
443private:
444 // These all get lowered before this pass.
Dan Gohman46510a72010-04-15 01:51:59 +0000445 void visitInvoke(const InvokeInst &I);
446 void visitUnwind(const UnwindInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000447
Dan Gohman46510a72010-04-15 01:51:59 +0000448 void visitBinary(const User &I, unsigned OpCode);
449 void visitShift(const User &I, unsigned Opcode);
450 void visitAdd(const User &I) { visitBinary(I, ISD::ADD); }
451 void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); }
452 void visitSub(const User &I) { visitBinary(I, ISD::SUB); }
453 void visitFSub(const User &I);
454 void visitMul(const User &I) { visitBinary(I, ISD::MUL); }
455 void visitFMul(const User &I) { visitBinary(I, ISD::FMUL); }
456 void visitURem(const User &I) { visitBinary(I, ISD::UREM); }
457 void visitSRem(const User &I) { visitBinary(I, ISD::SREM); }
458 void visitFRem(const User &I) { visitBinary(I, ISD::FREM); }
459 void visitUDiv(const User &I) { visitBinary(I, ISD::UDIV); }
460 void visitSDiv(const User &I) { visitBinary(I, ISD::SDIV); }
461 void visitFDiv(const User &I) { visitBinary(I, ISD::FDIV); }
462 void visitAnd (const User &I) { visitBinary(I, ISD::AND); }
463 void visitOr (const User &I) { visitBinary(I, ISD::OR); }
464 void visitXor (const User &I) { visitBinary(I, ISD::XOR); }
465 void visitShl (const User &I) { visitShift(I, ISD::SHL); }
466 void visitLShr(const User &I) { visitShift(I, ISD::SRL); }
467 void visitAShr(const User &I) { visitShift(I, ISD::SRA); }
468 void visitICmp(const User &I);
469 void visitFCmp(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000470 // Visit the conversion instructions
Dan Gohman46510a72010-04-15 01:51:59 +0000471 void visitTrunc(const User &I);
472 void visitZExt(const User &I);
473 void visitSExt(const User &I);
474 void visitFPTrunc(const User &I);
475 void visitFPExt(const User &I);
476 void visitFPToUI(const User &I);
477 void visitFPToSI(const User &I);
478 void visitUIToFP(const User &I);
479 void visitSIToFP(const User &I);
480 void visitPtrToInt(const User &I);
481 void visitIntToPtr(const User &I);
482 void visitBitCast(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000483
Dan Gohman46510a72010-04-15 01:51:59 +0000484 void visitExtractElement(const User &I);
485 void visitInsertElement(const User &I);
486 void visitShuffleVector(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000487
Dan Gohman46510a72010-04-15 01:51:59 +0000488 void visitExtractValue(const ExtractValueInst &I);
489 void visitInsertValue(const InsertValueInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000490
Dan Gohman46510a72010-04-15 01:51:59 +0000491 void visitGetElementPtr(const User &I);
492 void visitSelect(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000493
Dan Gohman46510a72010-04-15 01:51:59 +0000494 void visitAlloca(const AllocaInst &I);
495 void visitLoad(const LoadInst &I);
496 void visitStore(const StoreInst &I);
Dan Gohmanba5be5c2010-04-20 15:00:41 +0000497 void visitPHI(const PHINode &I);
Dan Gohman46510a72010-04-15 01:51:59 +0000498 void visitCall(const CallInst &I);
499 bool visitMemCmpCall(const CallInst &I);
Chris Lattner8047d9a2009-12-24 00:37:38 +0000500
Dan Gohman46510a72010-04-15 01:51:59 +0000501 void visitInlineAsm(ImmutableCallSite CS);
502 const char *visitIntrinsicCall(const CallInst &I, unsigned Intrinsic);
503 void visitTargetIntrinsic(const CallInst &I, unsigned Intrinsic);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000504
Dan Gohman46510a72010-04-15 01:51:59 +0000505 void visitPow(const CallInst &I);
506 void visitExp2(const CallInst &I);
507 void visitExp(const CallInst &I);
508 void visitLog(const CallInst &I);
509 void visitLog2(const CallInst &I);
510 void visitLog10(const CallInst &I);
Dale Johannesen601d3c02008-09-05 01:48:15 +0000511
Dan Gohman46510a72010-04-15 01:51:59 +0000512 void visitVAStart(const CallInst &I);
513 void visitVAArg(const VAArgInst &I);
514 void visitVAEnd(const CallInst &I);
515 void visitVACopy(const CallInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000516
Dan Gohman46510a72010-04-15 01:51:59 +0000517 void visitUserOp1(const Instruction &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000518 llvm_unreachable("UserOp1 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000519 }
Dan Gohman46510a72010-04-15 01:51:59 +0000520 void visitUserOp2(const Instruction &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000521 llvm_unreachable("UserOp2 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000522 }
523
Dan Gohman46510a72010-04-15 01:51:59 +0000524 const char *implVisitBinaryAtomic(const CallInst& I, ISD::NodeType Op);
525 const char *implVisitAluOverflow(const CallInst &I, ISD::NodeType Op);
Dan Gohmanc105a2b2010-04-22 20:55:53 +0000526
527 void HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB);
Evan Cheng2ad0fcf2010-04-28 23:08:54 +0000528
Devang Patelab43add2010-08-25 20:41:24 +0000529 /// EmitFuncArgumentDbgValue - If V is an function argument then create
530 /// corresponding DBG_VALUE machine instruction for it now. At the end of
531 /// instruction selection, they will be inserted to the entry BB.
Devang Patel78a06e52010-08-25 20:39:26 +0000532 bool EmitFuncArgumentDbgValue(const Value *V, MDNode *Variable,
Devang Patel34ca5ed2010-08-31 06:12:08 +0000533 int64_t Offset, const SDValue &N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000534};
535
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000536} // end namespace llvm
537
538#endif