blob: a0884ebf5d56a62d7bcfa0c1e4270aba54f20c3e [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>
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000026
27namespace llvm {
28
29class AliasAnalysis;
30class AllocaInst;
31class BasicBlock;
32class BitCastInst;
33class BranchInst;
34class CallInst;
Devang Patel4cf81c42010-08-26 23:35:15 +000035class DbgValueInst;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000036class ExtractElementInst;
37class ExtractValueInst;
38class FCmpInst;
39class FPExtInst;
40class FPToSIInst;
41class FPToUIInst;
42class FPTruncInst;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000043class Function;
Dan Gohman6277eb22009-11-23 17:16:22 +000044class FunctionLoweringInfo;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000045class GetElementPtrInst;
46class GCFunctionInfo;
47class ICmpInst;
48class IntToPtrInst;
Chris Lattnerab21db72009-10-28 00:19:10 +000049class IndirectBrInst;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000050class InvokeInst;
51class InsertElementInst;
52class InsertValueInst;
53class Instruction;
54class LoadInst;
55class MachineBasicBlock;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000056class MachineInstr;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000057class MachineRegisterInfo;
Evan Cheng2ad0fcf2010-04-28 23:08:54 +000058class MDNode;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000059class PHINode;
60class PtrToIntInst;
61class ReturnInst;
Dale Johannesenbdc09d92010-07-16 00:02:08 +000062class SDDbgValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000063class SExtInst;
64class SelectInst;
65class ShuffleVectorInst;
66class SIToFPInst;
67class StoreInst;
68class SwitchInst;
69class TargetData;
70class TargetLowering;
71class TruncInst;
72class UIToFPInst;
73class UnreachableInst;
74class UnwindInst;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000075class VAArgInst;
76class ZExtInst;
77
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000078//===----------------------------------------------------------------------===//
Dan Gohman2048b852009-11-23 18:04:58 +000079/// SelectionDAGBuilder - This is the common target-independent lowering
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000080/// implementation that is parameterized by a TargetLowering object.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000081///
Dan Gohman2048b852009-11-23 18:04:58 +000082class SelectionDAGBuilder {
Dale Johannesen66978ee2009-01-31 02:22:37 +000083 /// CurDebugLoc - current file + line number. Changes as we build the DAG.
84 DebugLoc CurDebugLoc;
85
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000086 DenseMap<const Value*, SDValue> NodeMap;
Devang Patel9126c0d2010-06-01 19:59:01 +000087
88 /// UnusedArgNodeMap - Maps argument value for unused arguments. This is used
89 /// to preserve debug information for incoming arguments.
90 DenseMap<const Value*, SDValue> UnusedArgNodeMap;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000091
Dale Johannesenbdc09d92010-07-16 00:02:08 +000092 /// DanglingDebugInfo - Helper type for DanglingDebugInfoMap.
93 class DanglingDebugInfo {
Devang Patel4cf81c42010-08-26 23:35:15 +000094 const DbgValueInst* DI;
Dale Johannesenbdc09d92010-07-16 00:02:08 +000095 DebugLoc dl;
96 unsigned SDNodeOrder;
97 public:
98 DanglingDebugInfo() : DI(0), dl(DebugLoc()), SDNodeOrder(0) { }
Devang Patel4cf81c42010-08-26 23:35:15 +000099 DanglingDebugInfo(const DbgValueInst *di, DebugLoc DL, unsigned SDNO) :
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000100 DI(di), dl(DL), SDNodeOrder(SDNO) { }
Devang Patel4cf81c42010-08-26 23:35:15 +0000101 const DbgValueInst* getDI() { return DI; }
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000102 DebugLoc getdl() { return dl; }
103 unsigned getSDNodeOrder() { return SDNodeOrder; }
104 };
105
106 /// DanglingDebugInfoMap - Keeps track of dbg_values for which we have not
107 /// yet seen the referent. We defer handling these until we do see it.
108 DenseMap<const Value*, DanglingDebugInfo> DanglingDebugInfoMap;
109
Chris Lattner8047d9a2009-12-24 00:37:38 +0000110public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000111 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
112 /// them up and then emit token factor nodes when possible. This allows us to
113 /// get simple disambiguation between loads without worrying about alias
114 /// analysis.
115 SmallVector<SDValue, 8> PendingLoads;
Chris Lattner8047d9a2009-12-24 00:37:38 +0000116private:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000117
118 /// PendingExports - CopyToReg nodes that copy values to virtual registers
119 /// for export to other blocks need to be emitted before any terminator
120 /// instruction, but they have no other ordering requirements. We bunch them
121 /// up and the emit a single tokenfactor for them just before terminator
122 /// instructions.
123 SmallVector<SDValue, 8> PendingExports;
124
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +0000125 /// SDNodeOrder - A unique monotonically increasing number used to order the
126 /// SDNodes we create.
127 unsigned SDNodeOrder;
128
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000129 /// Case - A struct to record the Value for a switch case, and the
130 /// case's target basic block.
131 struct Case {
132 Constant* Low;
133 Constant* High;
134 MachineBasicBlock* BB;
135
136 Case() : Low(0), High(0), BB(0) { }
137 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
138 Low(low), High(high), BB(bb) { }
Chris Lattnere880efe2009-11-07 07:50:34 +0000139 APInt size() const {
140 const APInt &rHigh = cast<ConstantInt>(High)->getValue();
141 const APInt &rLow = cast<ConstantInt>(Low)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000142 return (rHigh - rLow + 1ULL);
143 }
144 };
145
146 struct CaseBits {
147 uint64_t Mask;
148 MachineBasicBlock* BB;
149 unsigned Bits;
150
151 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
152 Mask(mask), BB(bb), Bits(bits) { }
153 };
154
155 typedef std::vector<Case> CaseVector;
156 typedef std::vector<CaseBits> CaseBitsVector;
157 typedef CaseVector::iterator CaseItr;
158 typedef std::pair<CaseItr, CaseItr> CaseRange;
159
160 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
161 /// of conditional branches.
162 struct CaseRec {
Dan Gohman46510a72010-04-15 01:51:59 +0000163 CaseRec(MachineBasicBlock *bb, const Constant *lt, const Constant *ge,
164 CaseRange r) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000165 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
166
167 /// CaseBB - The MBB in which to emit the compare and branch
168 MachineBasicBlock *CaseBB;
169 /// LT, GE - If nonzero, we know the current case value must be less-than or
170 /// greater-than-or-equal-to these Constants.
Dan Gohman46510a72010-04-15 01:51:59 +0000171 const Constant *LT;
172 const Constant *GE;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000173 /// Range - A pair of iterators representing the range of case values to be
174 /// processed at this point in the binary search tree.
175 CaseRange Range;
176 };
177
178 typedef std::vector<CaseRec> CaseRecVector;
179
180 /// The comparison function for sorting the switch case values in the vector.
181 /// WARNING: Case ranges should be disjoint!
182 struct CaseCmp {
Chris Lattner53334ca2010-01-01 23:37:34 +0000183 bool operator()(const Case &C1, const Case &C2) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000184 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
185 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
186 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
187 return CI1->getValue().slt(CI2->getValue());
188 }
189 };
190
191 struct CaseBitsCmp {
Chris Lattner53334ca2010-01-01 23:37:34 +0000192 bool operator()(const CaseBits &C1, const CaseBits &C2) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000193 return C1.Bits > C2.Bits;
194 }
195 };
196
Chris Lattner53334ca2010-01-01 23:37:34 +0000197 size_t Clusterify(CaseVector &Cases, const SwitchInst &SI);
Anton Korobeynikov23218582008-12-23 22:25:27 +0000198
Dan Gohman2048b852009-11-23 18:04:58 +0000199 /// CaseBlock - This structure is used to communicate between
200 /// SelectionDAGBuilder and SDISel for the code generation of additional basic
201 /// blocks needed by multi-case switch statements.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000202 struct CaseBlock {
Dan Gohman46510a72010-04-15 01:51:59 +0000203 CaseBlock(ISD::CondCode cc, const Value *cmplhs, const Value *cmprhs,
204 const Value *cmpmiddle,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000205 MachineBasicBlock *truebb, MachineBasicBlock *falsebb,
206 MachineBasicBlock *me)
207 : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs),
208 TrueBB(truebb), FalseBB(falsebb), ThisBB(me) {}
209 // CC - the condition code to use for the case block's setcc node
210 ISD::CondCode CC;
211 // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit.
212 // Emit by default LHS op RHS. MHS is used for range comparisons:
213 // If MHS is not null: (LHS <= MHS) and (MHS <= RHS).
Dan Gohman46510a72010-04-15 01:51:59 +0000214 const Value *CmpLHS, *CmpMHS, *CmpRHS;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000215 // TrueBB/FalseBB - the block to branch to if the setcc is true/false.
216 MachineBasicBlock *TrueBB, *FalseBB;
217 // ThisBB - the block into which to emit the code for the setcc and branches
218 MachineBasicBlock *ThisBB;
219 };
220 struct JumpTable {
221 JumpTable(unsigned R, unsigned J, MachineBasicBlock *M,
222 MachineBasicBlock *D): Reg(R), JTI(J), MBB(M), Default(D) {}
223
224 /// Reg - the virtual register containing the index of the jump table entry
225 //. to jump to.
226 unsigned Reg;
227 /// JTI - the JumpTableIndex for this jump table in the function.
228 unsigned JTI;
229 /// MBB - the MBB into which to emit the code for the indirect jump.
230 MachineBasicBlock *MBB;
231 /// Default - the MBB of the default bb, which is a successor of the range
232 /// check MBB. This is when updating PHI nodes in successors.
233 MachineBasicBlock *Default;
234 };
235 struct JumpTableHeader {
Dan Gohman46510a72010-04-15 01:51:59 +0000236 JumpTableHeader(APInt F, APInt L, const Value *SV, MachineBasicBlock *H,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000237 bool E = false):
238 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
Anton Korobeynikov23218582008-12-23 22:25:27 +0000239 APInt First;
240 APInt Last;
Dan Gohman46510a72010-04-15 01:51:59 +0000241 const Value *SValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000242 MachineBasicBlock *HeaderBB;
243 bool Emitted;
244 };
245 typedef std::pair<JumpTableHeader, JumpTable> JumpTableBlock;
246
247 struct BitTestCase {
248 BitTestCase(uint64_t M, MachineBasicBlock* T, MachineBasicBlock* Tr):
249 Mask(M), ThisBB(T), TargetBB(Tr) { }
250 uint64_t Mask;
Chris Lattner53334ca2010-01-01 23:37:34 +0000251 MachineBasicBlock *ThisBB;
252 MachineBasicBlock *TargetBB;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000253 };
254
255 typedef SmallVector<BitTestCase, 3> BitTestInfo;
256
257 struct BitTestBlock {
Dan Gohman46510a72010-04-15 01:51:59 +0000258 BitTestBlock(APInt F, APInt R, const Value* SV,
Evan Chengd08e5b42011-01-06 01:02:44 +0000259 unsigned Rg, EVT RgVT, bool E,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000260 MachineBasicBlock* P, MachineBasicBlock* D,
261 const BitTestInfo& C):
Evan Chengd08e5b42011-01-06 01:02:44 +0000262 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000263 Parent(P), Default(D), Cases(C) { }
Anton Korobeynikov23218582008-12-23 22:25:27 +0000264 APInt First;
265 APInt Range;
Dan Gohman46510a72010-04-15 01:51:59 +0000266 const Value *SValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000267 unsigned Reg;
Evan Chengd08e5b42011-01-06 01:02:44 +0000268 EVT RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000269 bool Emitted;
270 MachineBasicBlock *Parent;
271 MachineBasicBlock *Default;
272 BitTestInfo Cases;
273 };
274
275public:
276 // TLI - This is information that describes the available target features we
277 // need for lowering. This indicates when operations are unavailable,
278 // implemented with a libcall, etc.
Dan Gohman55e59c12010-04-19 19:05:59 +0000279 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +0000280 const TargetLowering &TLI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000281 SelectionDAG &DAG;
282 const TargetData *TD;
283 AliasAnalysis *AA;
284
285 /// SwitchCases - Vector of CaseBlock structures used to communicate
286 /// SwitchInst code generation information.
287 std::vector<CaseBlock> SwitchCases;
288 /// JTCases - Vector of JumpTable structures used to communicate
289 /// SwitchInst code generation information.
290 std::vector<JumpTableBlock> JTCases;
291 /// BitTestCases - Vector of BitTestBlock structures used to communicate
292 /// SwitchInst code generation information.
293 std::vector<BitTestBlock> BitTestCases;
Evan Chengfb2e7522009-09-18 21:02:19 +0000294
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000295 // Emit PHI-node-operand constants only once even if used by multiple
296 // PHI nodes.
Dan Gohman46510a72010-04-15 01:51:59 +0000297 DenseMap<const Constant *, unsigned> ConstantsOut;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000298
299 /// FuncInfo - Information about the function as a whole.
300 ///
301 FunctionLoweringInfo &FuncInfo;
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000302
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000303 /// OptLevel - What optimization level we're generating code for.
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000304 ///
Bill Wendling98a366d2009-04-29 23:29:43 +0000305 CodeGenOpt::Level OptLevel;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000306
307 /// GFI - Garbage collection metadata for the function.
308 GCFunctionInfo *GFI;
309
Dan Gohman98ca4f22009-08-05 01:29:28 +0000310 /// HasTailCall - This is set to true if a call in the current
311 /// block has been translated as a tail call. In this case,
312 /// no subsequent DAG nodes should be created.
313 ///
314 bool HasTailCall;
315
Owen Anderson0a5372e2009-07-13 04:09:18 +0000316 LLVMContext *Context;
317
Dan Gohman55e59c12010-04-19 19:05:59 +0000318 SelectionDAGBuilder(SelectionDAG &dag, FunctionLoweringInfo &funcinfo,
Dan Gohman2048b852009-11-23 18:04:58 +0000319 CodeGenOpt::Level ol)
Dan Gohman55e59c12010-04-19 19:05:59 +0000320 : SDNodeOrder(0), TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
321 DAG(dag), FuncInfo(funcinfo), OptLevel(ol),
Chris Lattnera4f2bb02010-04-02 20:17:23 +0000322 HasTailCall(false), Context(dag.getContext()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000323 }
324
325 void init(GCFunctionInfo *gfi, AliasAnalysis &aa);
326
Dan Gohmanb02b62a2010-04-14 18:24:06 +0000327 /// clear - Clear out the current SelectionDAG and the associated
Dan Gohman2048b852009-11-23 18:04:58 +0000328 /// state and prepare this SelectionDAGBuilder object to be used
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000329 /// for a new block. This doesn't clear out information about
330 /// additional blocks that are needed to complete switch lowering
331 /// or PHI node updating; that information is cleared out as it is
332 /// consumed.
333 void clear();
334
Devang Patel23385752011-05-23 17:44:13 +0000335 /// clearDanglingDebugInfo - Clear the dangling debug information
336 /// map. This function is seperated from the clear so that debug
337 /// information that is dangling in a basic block can be properly
338 /// resolved in a different basic block. This allows the
339 /// SelectionDAG to resolve dangling debug information attached
340 /// to PHI nodes.
341 void clearDanglingDebugInfo();
342
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000343 /// getRoot - Return the current virtual root of the Selection DAG,
344 /// flushing any PendingLoad items. This must be done before emitting
345 /// a store or any other node that may need to be ordered after any
346 /// prior load instructions.
347 ///
348 SDValue getRoot();
349
350 /// getControlRoot - Similar to getRoot, but instead of flushing all the
351 /// PendingLoad items, flush all the PendingExports items. It is necessary
352 /// to do this before emitting a terminator instruction.
353 ///
354 SDValue getControlRoot();
355
Dale Johannesen66978ee2009-01-31 02:22:37 +0000356 DebugLoc getCurDebugLoc() const { return CurDebugLoc; }
Devang Patel68e6bee2011-02-21 23:21:26 +0000357
Bill Wendling3ea3c242009-12-22 02:10:19 +0000358 unsigned getSDNodeOrder() const { return SDNodeOrder; }
359
Dan Gohman46510a72010-04-15 01:51:59 +0000360 void CopyValueToVirtualRegister(const Value *V, unsigned Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000361
Bill Wendling4533cac2010-01-28 21:51:40 +0000362 /// AssignOrderingToNode - Assign an ordering to the node. The order is gotten
363 /// from how the code appeared in the source. The ordering is used by the
364 /// scheduler to effectively turn off scheduling.
365 void AssignOrderingToNode(const SDNode *Node);
366
Dan Gohman46510a72010-04-15 01:51:59 +0000367 void visit(const Instruction &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000368
Dan Gohman46510a72010-04-15 01:51:59 +0000369 void visit(unsigned Opcode, const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000370
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000371 // resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V,
372 // generate the debug data structures now that we've seen its definition.
373 void resolveDanglingDebugInfo(const Value *V, SDValue Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000374 SDValue getValue(const Value *V);
Dan Gohman28a17352010-07-01 01:59:43 +0000375 SDValue getNonRegisterValue(const Value *V);
376 SDValue getValueImpl(const Value *V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000377
378 void setValue(const Value *V, SDValue NewN) {
379 SDValue &N = NodeMap[V];
380 assert(N.getNode() == 0 && "Already set a value for this node!");
381 N = NewN;
382 }
383
Devang Patel9126c0d2010-06-01 19:59:01 +0000384 void setUnusedArgValue(const Value *V, SDValue NewN) {
385 SDValue &N = UnusedArgNodeMap[V];
386 assert(N.getNode() == 0 && "Already set a value for this node!");
387 N = NewN;
388 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000389
Dan Gohman46510a72010-04-15 01:51:59 +0000390 void FindMergedConditions(const Value *Cond, MachineBasicBlock *TBB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000391 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000392 MachineBasicBlock *SwitchBB, unsigned Opc);
Dan Gohman46510a72010-04-15 01:51:59 +0000393 void EmitBranchForMergedCondition(const Value *Cond, MachineBasicBlock *TBB,
Dan Gohmanc2277342008-10-17 21:16:08 +0000394 MachineBasicBlock *FBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000395 MachineBasicBlock *CurBB,
396 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000397 bool ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases);
Dan Gohman46510a72010-04-15 01:51:59 +0000398 bool isExportableFromCurrentBlock(const Value *V, const BasicBlock *FromBB);
399 void CopyToExportRegsIfNeeded(const Value *V);
400 void ExportFromCurrentBlock(const Value *V);
401 void LowerCallTo(ImmutableCallSite CS, SDValue Callee, bool IsTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000402 MachineBasicBlock *LandingPad = NULL);
403
Jakob Stoklund Olesen2622f462010-09-30 19:44:31 +0000404 /// UpdateSplitBlock - When an MBB was split during scheduling, update the
405 /// references that ned to refer to the last resulting block.
406 void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last);
407
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000408private:
409 // Terminator instructions.
Dan Gohman46510a72010-04-15 01:51:59 +0000410 void visitRet(const ReturnInst &I);
411 void visitBr(const BranchInst &I);
412 void visitSwitch(const SwitchInst &I);
413 void visitIndirectBr(const IndirectBrInst &I);
Bill Wendlinga60f0e72010-07-15 23:42:21 +0000414 void visitUnreachable(const UnreachableInst &I) { /* noop */ }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000415
416 // Helpers for visitSwitch
417 bool handleSmallSwitchRange(CaseRec& CR,
418 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000419 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000420 MachineBasicBlock* Default,
421 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000422 bool handleJTSwitchCase(CaseRec& CR,
423 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000424 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000425 MachineBasicBlock* Default,
426 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000427 bool handleBTSplitSwitchCase(CaseRec& CR,
428 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000429 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000430 MachineBasicBlock* Default,
431 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000432 bool handleBitTestsSwitchCase(CaseRec& CR,
433 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000434 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000435 MachineBasicBlock* Default,
436 MachineBasicBlock *SwitchBB);
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000437
438 uint32_t getEdgeWeight(MachineBasicBlock *Src, MachineBasicBlock *Dst);
439 void addSuccessorWithWeight(MachineBasicBlock *Src, MachineBasicBlock *Dst);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000440public:
Dan Gohman99be8ae2010-04-19 22:41:47 +0000441 void visitSwitchCase(CaseBlock &CB,
442 MachineBasicBlock *SwitchBB);
443 void visitBitTestHeader(BitTestBlock &B, MachineBasicBlock *SwitchBB);
Evan Chengd08e5b42011-01-06 01:02:44 +0000444 void visitBitTestCase(BitTestBlock &BB,
445 MachineBasicBlock* NextMBB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000446 unsigned Reg,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000447 BitTestCase &B,
448 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000449 void visitJumpTable(JumpTable &JT);
Dan Gohman99be8ae2010-04-19 22:41:47 +0000450 void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH,
451 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000452
453private:
454 // These all get lowered before this pass.
Dan Gohman46510a72010-04-15 01:51:59 +0000455 void visitInvoke(const InvokeInst &I);
456 void visitUnwind(const UnwindInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000457
Dan Gohman46510a72010-04-15 01:51:59 +0000458 void visitBinary(const User &I, unsigned OpCode);
459 void visitShift(const User &I, unsigned Opcode);
460 void visitAdd(const User &I) { visitBinary(I, ISD::ADD); }
461 void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); }
462 void visitSub(const User &I) { visitBinary(I, ISD::SUB); }
463 void visitFSub(const User &I);
464 void visitMul(const User &I) { visitBinary(I, ISD::MUL); }
465 void visitFMul(const User &I) { visitBinary(I, ISD::FMUL); }
466 void visitURem(const User &I) { visitBinary(I, ISD::UREM); }
467 void visitSRem(const User &I) { visitBinary(I, ISD::SREM); }
468 void visitFRem(const User &I) { visitBinary(I, ISD::FREM); }
469 void visitUDiv(const User &I) { visitBinary(I, ISD::UDIV); }
Benjamin Kramer9c640302011-07-08 10:31:30 +0000470 void visitSDiv(const User &I);
Dan Gohman46510a72010-04-15 01:51:59 +0000471 void visitFDiv(const User &I) { visitBinary(I, ISD::FDIV); }
472 void visitAnd (const User &I) { visitBinary(I, ISD::AND); }
473 void visitOr (const User &I) { visitBinary(I, ISD::OR); }
474 void visitXor (const User &I) { visitBinary(I, ISD::XOR); }
475 void visitShl (const User &I) { visitShift(I, ISD::SHL); }
476 void visitLShr(const User &I) { visitShift(I, ISD::SRL); }
477 void visitAShr(const User &I) { visitShift(I, ISD::SRA); }
478 void visitICmp(const User &I);
479 void visitFCmp(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000480 // Visit the conversion instructions
Dan Gohman46510a72010-04-15 01:51:59 +0000481 void visitTrunc(const User &I);
482 void visitZExt(const User &I);
483 void visitSExt(const User &I);
484 void visitFPTrunc(const User &I);
485 void visitFPExt(const User &I);
486 void visitFPToUI(const User &I);
487 void visitFPToSI(const User &I);
488 void visitUIToFP(const User &I);
489 void visitSIToFP(const User &I);
490 void visitPtrToInt(const User &I);
491 void visitIntToPtr(const User &I);
492 void visitBitCast(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000493
Dan Gohman46510a72010-04-15 01:51:59 +0000494 void visitExtractElement(const User &I);
495 void visitInsertElement(const User &I);
496 void visitShuffleVector(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000497
Dan Gohman46510a72010-04-15 01:51:59 +0000498 void visitExtractValue(const ExtractValueInst &I);
499 void visitInsertValue(const InsertValueInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000500
Dan Gohman46510a72010-04-15 01:51:59 +0000501 void visitGetElementPtr(const User &I);
502 void visitSelect(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000503
Dan Gohman46510a72010-04-15 01:51:59 +0000504 void visitAlloca(const AllocaInst &I);
505 void visitLoad(const LoadInst &I);
506 void visitStore(const StoreInst &I);
Dan Gohmanba5be5c2010-04-20 15:00:41 +0000507 void visitPHI(const PHINode &I);
Dan Gohman46510a72010-04-15 01:51:59 +0000508 void visitCall(const CallInst &I);
509 bool visitMemCmpCall(const CallInst &I);
Chris Lattner8047d9a2009-12-24 00:37:38 +0000510
Dan Gohman46510a72010-04-15 01:51:59 +0000511 void visitInlineAsm(ImmutableCallSite CS);
512 const char *visitIntrinsicCall(const CallInst &I, unsigned Intrinsic);
513 void visitTargetIntrinsic(const CallInst &I, unsigned Intrinsic);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000514
Dan Gohman46510a72010-04-15 01:51:59 +0000515 void visitPow(const CallInst &I);
516 void visitExp2(const CallInst &I);
517 void visitExp(const CallInst &I);
518 void visitLog(const CallInst &I);
519 void visitLog2(const CallInst &I);
520 void visitLog10(const CallInst &I);
Dale Johannesen601d3c02008-09-05 01:48:15 +0000521
Dan Gohman46510a72010-04-15 01:51:59 +0000522 void visitVAStart(const CallInst &I);
523 void visitVAArg(const VAArgInst &I);
524 void visitVAEnd(const CallInst &I);
525 void visitVACopy(const CallInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000526
Dan Gohman46510a72010-04-15 01:51:59 +0000527 void visitUserOp1(const Instruction &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000528 llvm_unreachable("UserOp1 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000529 }
Dan Gohman46510a72010-04-15 01:51:59 +0000530 void visitUserOp2(const Instruction &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000531 llvm_unreachable("UserOp2 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000532 }
533
Dan Gohman46510a72010-04-15 01:51:59 +0000534 const char *implVisitBinaryAtomic(const CallInst& I, ISD::NodeType Op);
535 const char *implVisitAluOverflow(const CallInst &I, ISD::NodeType Op);
Dan Gohmanc105a2b2010-04-22 20:55:53 +0000536
537 void HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB);
Evan Cheng2ad0fcf2010-04-28 23:08:54 +0000538
Devang Patelab43add2010-08-25 20:41:24 +0000539 /// EmitFuncArgumentDbgValue - If V is an function argument then create
540 /// corresponding DBG_VALUE machine instruction for it now. At the end of
541 /// instruction selection, they will be inserted to the entry BB.
Devang Patel78a06e52010-08-25 20:39:26 +0000542 bool EmitFuncArgumentDbgValue(const Value *V, MDNode *Variable,
Devang Patel34ca5ed2010-08-31 06:12:08 +0000543 int64_t Offset, const SDValue &N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000544};
545
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000546} // end namespace llvm
547
548#endif