blob: 5147b6cb232d7b1c076617592534108d7232f547 [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;
Owen Anderson243eb9e2011-12-08 22:15:21 +000070class TargetLibraryInfo;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000071class 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;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000136 uint32_t ExtraWeight;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000137
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000138 Case() : Low(0), High(0), BB(0), ExtraWeight(0) { }
139 Case(Constant* low, Constant* high, MachineBasicBlock* bb,
140 uint32_t extraweight) : Low(low), High(high), BB(bb),
141 ExtraWeight(extraweight) { }
142
Chris Lattnere880efe2009-11-07 07:50:34 +0000143 APInt size() const {
144 const APInt &rHigh = cast<ConstantInt>(High)->getValue();
145 const APInt &rLow = cast<ConstantInt>(Low)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000146 return (rHigh - rLow + 1ULL);
147 }
148 };
149
150 struct CaseBits {
151 uint64_t Mask;
152 MachineBasicBlock* BB;
153 unsigned Bits;
154
155 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
156 Mask(mask), BB(bb), Bits(bits) { }
157 };
158
159 typedef std::vector<Case> CaseVector;
160 typedef std::vector<CaseBits> CaseBitsVector;
161 typedef CaseVector::iterator CaseItr;
162 typedef std::pair<CaseItr, CaseItr> CaseRange;
163
164 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
165 /// of conditional branches.
166 struct CaseRec {
Dan Gohman46510a72010-04-15 01:51:59 +0000167 CaseRec(MachineBasicBlock *bb, const Constant *lt, const Constant *ge,
168 CaseRange r) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000169 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
170
171 /// CaseBB - The MBB in which to emit the compare and branch
172 MachineBasicBlock *CaseBB;
173 /// LT, GE - If nonzero, we know the current case value must be less-than or
174 /// greater-than-or-equal-to these Constants.
Dan Gohman46510a72010-04-15 01:51:59 +0000175 const Constant *LT;
176 const Constant *GE;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000177 /// Range - A pair of iterators representing the range of case values to be
178 /// processed at this point in the binary search tree.
179 CaseRange Range;
180 };
181
182 typedef std::vector<CaseRec> CaseRecVector;
183
184 /// The comparison function for sorting the switch case values in the vector.
185 /// WARNING: Case ranges should be disjoint!
186 struct CaseCmp {
Chris Lattner53334ca2010-01-01 23:37:34 +0000187 bool operator()(const Case &C1, const Case &C2) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000188 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
189 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
190 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
191 return CI1->getValue().slt(CI2->getValue());
192 }
193 };
194
195 struct CaseBitsCmp {
Chris Lattner53334ca2010-01-01 23:37:34 +0000196 bool operator()(const CaseBits &C1, const CaseBits &C2) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000197 return C1.Bits > C2.Bits;
198 }
199 };
200
Chris Lattner53334ca2010-01-01 23:37:34 +0000201 size_t Clusterify(CaseVector &Cases, const SwitchInst &SI);
Anton Korobeynikov23218582008-12-23 22:25:27 +0000202
Dan Gohman2048b852009-11-23 18:04:58 +0000203 /// CaseBlock - This structure is used to communicate between
204 /// SelectionDAGBuilder and SDISel for the code generation of additional basic
205 /// blocks needed by multi-case switch statements.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000206 struct CaseBlock {
Dan Gohman46510a72010-04-15 01:51:59 +0000207 CaseBlock(ISD::CondCode cc, const Value *cmplhs, const Value *cmprhs,
208 const Value *cmpmiddle,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000209 MachineBasicBlock *truebb, MachineBasicBlock *falsebb,
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000210 MachineBasicBlock *me,
211 uint32_t trueweight = 0, uint32_t falseweight = 0)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000212 : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs),
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000213 TrueBB(truebb), FalseBB(falsebb), ThisBB(me),
214 TrueWeight(trueweight), FalseWeight(falseweight) { }
215
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000216 // CC - the condition code to use for the case block's setcc node
217 ISD::CondCode CC;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000218
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000219 // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit.
220 // Emit by default LHS op RHS. MHS is used for range comparisons:
221 // If MHS is not null: (LHS <= MHS) and (MHS <= RHS).
Dan Gohman46510a72010-04-15 01:51:59 +0000222 const Value *CmpLHS, *CmpMHS, *CmpRHS;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000223
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000224 // TrueBB/FalseBB - the block to branch to if the setcc is true/false.
225 MachineBasicBlock *TrueBB, *FalseBB;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000226
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000227 // ThisBB - the block into which to emit the code for the setcc and branches
228 MachineBasicBlock *ThisBB;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000229
230 // TrueWeight/FalseWeight - branch weights.
231 uint32_t TrueWeight, FalseWeight;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000232 };
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000233
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000234 struct JumpTable {
235 JumpTable(unsigned R, unsigned J, MachineBasicBlock *M,
236 MachineBasicBlock *D): Reg(R), JTI(J), MBB(M), Default(D) {}
237
238 /// Reg - the virtual register containing the index of the jump table entry
239 //. to jump to.
240 unsigned Reg;
241 /// JTI - the JumpTableIndex for this jump table in the function.
242 unsigned JTI;
243 /// MBB - the MBB into which to emit the code for the indirect jump.
244 MachineBasicBlock *MBB;
245 /// Default - the MBB of the default bb, which is a successor of the range
246 /// check MBB. This is when updating PHI nodes in successors.
247 MachineBasicBlock *Default;
248 };
249 struct JumpTableHeader {
Dan Gohman46510a72010-04-15 01:51:59 +0000250 JumpTableHeader(APInt F, APInt L, const Value *SV, MachineBasicBlock *H,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000251 bool E = false):
252 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
Anton Korobeynikov23218582008-12-23 22:25:27 +0000253 APInt First;
254 APInt Last;
Dan Gohman46510a72010-04-15 01:51:59 +0000255 const Value *SValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000256 MachineBasicBlock *HeaderBB;
257 bool Emitted;
258 };
259 typedef std::pair<JumpTableHeader, JumpTable> JumpTableBlock;
260
261 struct BitTestCase {
262 BitTestCase(uint64_t M, MachineBasicBlock* T, MachineBasicBlock* Tr):
263 Mask(M), ThisBB(T), TargetBB(Tr) { }
264 uint64_t Mask;
Chris Lattner53334ca2010-01-01 23:37:34 +0000265 MachineBasicBlock *ThisBB;
266 MachineBasicBlock *TargetBB;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000267 };
268
269 typedef SmallVector<BitTestCase, 3> BitTestInfo;
270
271 struct BitTestBlock {
Dan Gohman46510a72010-04-15 01:51:59 +0000272 BitTestBlock(APInt F, APInt R, const Value* SV,
Evan Chengd08e5b42011-01-06 01:02:44 +0000273 unsigned Rg, EVT RgVT, bool E,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000274 MachineBasicBlock* P, MachineBasicBlock* D,
275 const BitTestInfo& C):
Evan Chengd08e5b42011-01-06 01:02:44 +0000276 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000277 Parent(P), Default(D), Cases(C) { }
Anton Korobeynikov23218582008-12-23 22:25:27 +0000278 APInt First;
279 APInt Range;
Dan Gohman46510a72010-04-15 01:51:59 +0000280 const Value *SValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000281 unsigned Reg;
Evan Chengd08e5b42011-01-06 01:02:44 +0000282 EVT RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000283 bool Emitted;
284 MachineBasicBlock *Parent;
285 MachineBasicBlock *Default;
286 BitTestInfo Cases;
287 };
288
289public:
290 // TLI - This is information that describes the available target features we
291 // need for lowering. This indicates when operations are unavailable,
292 // implemented with a libcall, etc.
Dan Gohman55e59c12010-04-19 19:05:59 +0000293 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +0000294 const TargetLowering &TLI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000295 SelectionDAG &DAG;
296 const TargetData *TD;
297 AliasAnalysis *AA;
Owen Anderson243eb9e2011-12-08 22:15:21 +0000298 const TargetLibraryInfo *LibInfo;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000299
300 /// SwitchCases - Vector of CaseBlock structures used to communicate
301 /// SwitchInst code generation information.
302 std::vector<CaseBlock> SwitchCases;
303 /// JTCases - Vector of JumpTable structures used to communicate
304 /// SwitchInst code generation information.
305 std::vector<JumpTableBlock> JTCases;
306 /// BitTestCases - Vector of BitTestBlock structures used to communicate
307 /// SwitchInst code generation information.
308 std::vector<BitTestBlock> BitTestCases;
Evan Chengfb2e7522009-09-18 21:02:19 +0000309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000310 // Emit PHI-node-operand constants only once even if used by multiple
311 // PHI nodes.
Dan Gohman46510a72010-04-15 01:51:59 +0000312 DenseMap<const Constant *, unsigned> ConstantsOut;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000313
314 /// FuncInfo - Information about the function as a whole.
315 ///
316 FunctionLoweringInfo &FuncInfo;
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000317
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000318 /// OptLevel - What optimization level we're generating code for.
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000319 ///
Bill Wendling98a366d2009-04-29 23:29:43 +0000320 CodeGenOpt::Level OptLevel;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000321
322 /// GFI - Garbage collection metadata for the function.
323 GCFunctionInfo *GFI;
324
Bill Wendling30e67402011-10-05 22:24:35 +0000325 /// LPadToCallSiteMap - Map a landing pad to the call site indexes.
326 DenseMap<MachineBasicBlock*, SmallVector<unsigned, 4> > LPadToCallSiteMap;
Bill Wendlinga8512ed2011-10-04 22:00:35 +0000327
Dan Gohman98ca4f22009-08-05 01:29:28 +0000328 /// HasTailCall - This is set to true if a call in the current
329 /// block has been translated as a tail call. In this case,
330 /// no subsequent DAG nodes should be created.
331 ///
332 bool HasTailCall;
333
Owen Anderson0a5372e2009-07-13 04:09:18 +0000334 LLVMContext *Context;
335
Dan Gohman55e59c12010-04-19 19:05:59 +0000336 SelectionDAGBuilder(SelectionDAG &dag, FunctionLoweringInfo &funcinfo,
Dan Gohman2048b852009-11-23 18:04:58 +0000337 CodeGenOpt::Level ol)
Dan Gohman55e59c12010-04-19 19:05:59 +0000338 : SDNodeOrder(0), TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
339 DAG(dag), FuncInfo(funcinfo), OptLevel(ol),
Chris Lattnera4f2bb02010-04-02 20:17:23 +0000340 HasTailCall(false), Context(dag.getContext()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000341 }
342
Owen Anderson243eb9e2011-12-08 22:15:21 +0000343 void init(GCFunctionInfo *gfi, AliasAnalysis &aa,
344 const TargetLibraryInfo *li);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000345
Dan Gohmanb02b62a2010-04-14 18:24:06 +0000346 /// clear - Clear out the current SelectionDAG and the associated
Dan Gohman2048b852009-11-23 18:04:58 +0000347 /// state and prepare this SelectionDAGBuilder object to be used
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000348 /// for a new block. This doesn't clear out information about
349 /// additional blocks that are needed to complete switch lowering
350 /// or PHI node updating; that information is cleared out as it is
351 /// consumed.
352 void clear();
353
Devang Patel23385752011-05-23 17:44:13 +0000354 /// clearDanglingDebugInfo - Clear the dangling debug information
355 /// map. This function is seperated from the clear so that debug
356 /// information that is dangling in a basic block can be properly
357 /// resolved in a different basic block. This allows the
358 /// SelectionDAG to resolve dangling debug information attached
359 /// to PHI nodes.
360 void clearDanglingDebugInfo();
361
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000362 /// getRoot - Return the current virtual root of the Selection DAG,
363 /// flushing any PendingLoad items. This must be done before emitting
364 /// a store or any other node that may need to be ordered after any
365 /// prior load instructions.
366 ///
367 SDValue getRoot();
368
369 /// getControlRoot - Similar to getRoot, but instead of flushing all the
370 /// PendingLoad items, flush all the PendingExports items. It is necessary
371 /// to do this before emitting a terminator instruction.
372 ///
373 SDValue getControlRoot();
374
Dale Johannesen66978ee2009-01-31 02:22:37 +0000375 DebugLoc getCurDebugLoc() const { return CurDebugLoc; }
Devang Patel68e6bee2011-02-21 23:21:26 +0000376
Bill Wendling3ea3c242009-12-22 02:10:19 +0000377 unsigned getSDNodeOrder() const { return SDNodeOrder; }
378
Dan Gohman46510a72010-04-15 01:51:59 +0000379 void CopyValueToVirtualRegister(const Value *V, unsigned Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000380
Bill Wendling4533cac2010-01-28 21:51:40 +0000381 /// AssignOrderingToNode - Assign an ordering to the node. The order is gotten
382 /// from how the code appeared in the source. The ordering is used by the
383 /// scheduler to effectively turn off scheduling.
384 void AssignOrderingToNode(const SDNode *Node);
385
Dan Gohman46510a72010-04-15 01:51:59 +0000386 void visit(const Instruction &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000387
Dan Gohman46510a72010-04-15 01:51:59 +0000388 void visit(unsigned Opcode, const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000389
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000390 // resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V,
391 // generate the debug data structures now that we've seen its definition.
392 void resolveDanglingDebugInfo(const Value *V, SDValue Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000393 SDValue getValue(const Value *V);
Dan Gohman28a17352010-07-01 01:59:43 +0000394 SDValue getNonRegisterValue(const Value *V);
395 SDValue getValueImpl(const Value *V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000396
397 void setValue(const Value *V, SDValue NewN) {
398 SDValue &N = NodeMap[V];
399 assert(N.getNode() == 0 && "Already set a value for this node!");
400 N = NewN;
401 }
402
Devang Patel9126c0d2010-06-01 19:59:01 +0000403 void setUnusedArgValue(const Value *V, SDValue NewN) {
404 SDValue &N = UnusedArgNodeMap[V];
405 assert(N.getNode() == 0 && "Already set a value for this node!");
406 N = NewN;
407 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000408
Dan Gohman46510a72010-04-15 01:51:59 +0000409 void FindMergedConditions(const Value *Cond, MachineBasicBlock *TBB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000410 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000411 MachineBasicBlock *SwitchBB, unsigned Opc);
Dan Gohman46510a72010-04-15 01:51:59 +0000412 void EmitBranchForMergedCondition(const Value *Cond, MachineBasicBlock *TBB,
Dan Gohmanc2277342008-10-17 21:16:08 +0000413 MachineBasicBlock *FBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000414 MachineBasicBlock *CurBB,
415 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000416 bool ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases);
Dan Gohman46510a72010-04-15 01:51:59 +0000417 bool isExportableFromCurrentBlock(const Value *V, const BasicBlock *FromBB);
418 void CopyToExportRegsIfNeeded(const Value *V);
419 void ExportFromCurrentBlock(const Value *V);
420 void LowerCallTo(ImmutableCallSite CS, SDValue Callee, bool IsTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000421 MachineBasicBlock *LandingPad = NULL);
422
Jakob Stoklund Olesen2622f462010-09-30 19:44:31 +0000423 /// UpdateSplitBlock - When an MBB was split during scheduling, update the
424 /// references that ned to refer to the last resulting block.
425 void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last);
426
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000427private:
428 // Terminator instructions.
Dan Gohman46510a72010-04-15 01:51:59 +0000429 void visitRet(const ReturnInst &I);
430 void visitBr(const BranchInst &I);
431 void visitSwitch(const SwitchInst &I);
432 void visitIndirectBr(const IndirectBrInst &I);
Bill Wendlinga60f0e72010-07-15 23:42:21 +0000433 void visitUnreachable(const UnreachableInst &I) { /* noop */ }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000434
435 // Helpers for visitSwitch
436 bool handleSmallSwitchRange(CaseRec& CR,
437 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000438 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000439 MachineBasicBlock* Default,
440 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000441 bool handleJTSwitchCase(CaseRec& CR,
442 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000443 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000444 MachineBasicBlock* Default,
445 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000446 bool handleBTSplitSwitchCase(CaseRec& CR,
447 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000448 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000449 MachineBasicBlock* Default,
450 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000451 bool handleBitTestsSwitchCase(CaseRec& CR,
452 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000453 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000454 MachineBasicBlock* Default,
455 MachineBasicBlock *SwitchBB);
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000456
457 uint32_t getEdgeWeight(MachineBasicBlock *Src, MachineBasicBlock *Dst);
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000458 void addSuccessorWithWeight(MachineBasicBlock *Src, MachineBasicBlock *Dst,
459 uint32_t Weight = 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000460public:
Dan Gohman99be8ae2010-04-19 22:41:47 +0000461 void visitSwitchCase(CaseBlock &CB,
462 MachineBasicBlock *SwitchBB);
463 void visitBitTestHeader(BitTestBlock &B, MachineBasicBlock *SwitchBB);
Evan Chengd08e5b42011-01-06 01:02:44 +0000464 void visitBitTestCase(BitTestBlock &BB,
465 MachineBasicBlock* NextMBB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000466 unsigned Reg,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000467 BitTestCase &B,
468 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000469 void visitJumpTable(JumpTable &JT);
Dan Gohman99be8ae2010-04-19 22:41:47 +0000470 void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH,
471 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000472
473private:
474 // These all get lowered before this pass.
Dan Gohman46510a72010-04-15 01:51:59 +0000475 void visitInvoke(const InvokeInst &I);
Bill Wendlingdccc03b2011-07-31 06:30:59 +0000476 void visitResume(const ResumeInst &I);
Dan Gohman46510a72010-04-15 01:51:59 +0000477 void visitUnwind(const UnwindInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000478
Dan Gohman46510a72010-04-15 01:51:59 +0000479 void visitBinary(const User &I, unsigned OpCode);
480 void visitShift(const User &I, unsigned Opcode);
481 void visitAdd(const User &I) { visitBinary(I, ISD::ADD); }
482 void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); }
483 void visitSub(const User &I) { visitBinary(I, ISD::SUB); }
484 void visitFSub(const User &I);
485 void visitMul(const User &I) { visitBinary(I, ISD::MUL); }
486 void visitFMul(const User &I) { visitBinary(I, ISD::FMUL); }
487 void visitURem(const User &I) { visitBinary(I, ISD::UREM); }
488 void visitSRem(const User &I) { visitBinary(I, ISD::SREM); }
489 void visitFRem(const User &I) { visitBinary(I, ISD::FREM); }
490 void visitUDiv(const User &I) { visitBinary(I, ISD::UDIV); }
Benjamin Kramer9c640302011-07-08 10:31:30 +0000491 void visitSDiv(const User &I);
Dan Gohman46510a72010-04-15 01:51:59 +0000492 void visitFDiv(const User &I) { visitBinary(I, ISD::FDIV); }
493 void visitAnd (const User &I) { visitBinary(I, ISD::AND); }
494 void visitOr (const User &I) { visitBinary(I, ISD::OR); }
495 void visitXor (const User &I) { visitBinary(I, ISD::XOR); }
496 void visitShl (const User &I) { visitShift(I, ISD::SHL); }
497 void visitLShr(const User &I) { visitShift(I, ISD::SRL); }
498 void visitAShr(const User &I) { visitShift(I, ISD::SRA); }
499 void visitICmp(const User &I);
500 void visitFCmp(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000501 // Visit the conversion instructions
Dan Gohman46510a72010-04-15 01:51:59 +0000502 void visitTrunc(const User &I);
503 void visitZExt(const User &I);
504 void visitSExt(const User &I);
505 void visitFPTrunc(const User &I);
506 void visitFPExt(const User &I);
507 void visitFPToUI(const User &I);
508 void visitFPToSI(const User &I);
509 void visitUIToFP(const User &I);
510 void visitSIToFP(const User &I);
511 void visitPtrToInt(const User &I);
512 void visitIntToPtr(const User &I);
513 void visitBitCast(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000514
Dan Gohman46510a72010-04-15 01:51:59 +0000515 void visitExtractElement(const User &I);
516 void visitInsertElement(const User &I);
517 void visitShuffleVector(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000518
Dan Gohman46510a72010-04-15 01:51:59 +0000519 void visitExtractValue(const ExtractValueInst &I);
520 void visitInsertValue(const InsertValueInst &I);
Bill Wendlinge6e88262011-08-12 20:24:12 +0000521 void visitLandingPad(const LandingPadInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000522
Dan Gohman46510a72010-04-15 01:51:59 +0000523 void visitGetElementPtr(const User &I);
524 void visitSelect(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000525
Dan Gohman46510a72010-04-15 01:51:59 +0000526 void visitAlloca(const AllocaInst &I);
527 void visitLoad(const LoadInst &I);
528 void visitStore(const StoreInst &I);
Eli Friedmanff030482011-07-28 21:48:00 +0000529 void visitAtomicCmpXchg(const AtomicCmpXchgInst &I);
530 void visitAtomicRMW(const AtomicRMWInst &I);
Eli Friedman47f35132011-07-25 23:16:38 +0000531 void visitFence(const FenceInst &I);
Dan Gohmanba5be5c2010-04-20 15:00:41 +0000532 void visitPHI(const PHINode &I);
Dan Gohman46510a72010-04-15 01:51:59 +0000533 void visitCall(const CallInst &I);
534 bool visitMemCmpCall(const CallInst &I);
Eli Friedman327236c2011-08-24 20:50:09 +0000535 void visitAtomicLoad(const LoadInst &I);
536 void visitAtomicStore(const StoreInst &I);
537
Dan Gohman46510a72010-04-15 01:51:59 +0000538 void visitInlineAsm(ImmutableCallSite CS);
539 const char *visitIntrinsicCall(const CallInst &I, unsigned Intrinsic);
540 void visitTargetIntrinsic(const CallInst &I, unsigned Intrinsic);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000541
Dan Gohman46510a72010-04-15 01:51:59 +0000542 void visitPow(const CallInst &I);
543 void visitExp2(const CallInst &I);
544 void visitExp(const CallInst &I);
545 void visitLog(const CallInst &I);
546 void visitLog2(const CallInst &I);
547 void visitLog10(const CallInst &I);
Dale Johannesen601d3c02008-09-05 01:48:15 +0000548
Dan Gohman46510a72010-04-15 01:51:59 +0000549 void visitVAStart(const CallInst &I);
550 void visitVAArg(const VAArgInst &I);
551 void visitVAEnd(const CallInst &I);
552 void visitVACopy(const CallInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000553
Dan Gohman46510a72010-04-15 01:51:59 +0000554 void visitUserOp1(const Instruction &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000555 llvm_unreachable("UserOp1 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000556 }
Dan Gohman46510a72010-04-15 01:51:59 +0000557 void visitUserOp2(const Instruction &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000558 llvm_unreachable("UserOp2 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000559 }
560
Dan Gohman46510a72010-04-15 01:51:59 +0000561 const char *implVisitAluOverflow(const CallInst &I, ISD::NodeType Op);
Dan Gohmanc105a2b2010-04-22 20:55:53 +0000562
563 void HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB);
Evan Cheng2ad0fcf2010-04-28 23:08:54 +0000564
Devang Patelab43add2010-08-25 20:41:24 +0000565 /// EmitFuncArgumentDbgValue - If V is an function argument then create
566 /// corresponding DBG_VALUE machine instruction for it now. At the end of
567 /// instruction selection, they will be inserted to the entry BB.
Devang Patel78a06e52010-08-25 20:39:26 +0000568 bool EmitFuncArgumentDbgValue(const Value *V, MDNode *Variable,
Devang Patel34ca5ed2010-08-31 06:12:08 +0000569 int64_t Offset, const SDValue &N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000570};
571
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000572} // end namespace llvm
573
574#endif