blob: 7bb1bb1fea52f1184cd0e71cde68413cda49a067 [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
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000017#include "llvm/ADT/APInt.h"
18#include "llvm/ADT/DenseMap.h"
Chandler Carrutha1514e22012-12-04 07:12:27 +000019#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000020#include "llvm/CodeGen/SelectionDAGNodes.h"
Bill Wendling0eb96fd2009-02-03 01:32:22 +000021#include "llvm/CodeGen/ValueTypes.h"
Chandler Carrutha1514e22012-12-04 07:12:27 +000022#include "llvm/Constants.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;
Micah Villmow3574eca2012-10-08 16:38:25 +000069class DataLayout;
Owen Anderson243eb9e2011-12-08 22:15:21 +000070class TargetLibraryInfo;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000071class TargetLowering;
72class TruncInst;
73class UIToFPInst;
74class UnreachableInst;
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 {
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +0000132 const Constant *Low;
133 const Constant *High;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000134 MachineBasicBlock* BB;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000135 uint32_t ExtraWeight;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000136
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000137 Case() : Low(0), High(0), BB(0), ExtraWeight(0) { }
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +0000138 Case(const Constant *low, const Constant *high, MachineBasicBlock *bb,
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000139 uint32_t extraweight) : Low(low), High(high), BB(bb),
140 ExtraWeight(extraweight) { }
141
Chris Lattnere880efe2009-11-07 07:50:34 +0000142 APInt size() const {
143 const APInt &rHigh = cast<ConstantInt>(High)->getValue();
144 const APInt &rLow = cast<ConstantInt>(Low)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000145 return (rHigh - rLow + 1ULL);
146 }
147 };
148
149 struct CaseBits {
150 uint64_t Mask;
151 MachineBasicBlock* BB;
152 unsigned Bits;
Manman Ren1a710fd2012-08-24 18:14:27 +0000153 uint32_t ExtraWeight;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000154
Manman Ren1a710fd2012-08-24 18:14:27 +0000155 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits,
156 uint32_t Weight):
157 Mask(mask), BB(bb), Bits(bits), ExtraWeight(Weight) { }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000158 };
159
160 typedef std::vector<Case> CaseVector;
161 typedef std::vector<CaseBits> CaseBitsVector;
162 typedef CaseVector::iterator CaseItr;
163 typedef std::pair<CaseItr, CaseItr> CaseRange;
164
165 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
166 /// of conditional branches.
167 struct CaseRec {
Dan Gohman46510a72010-04-15 01:51:59 +0000168 CaseRec(MachineBasicBlock *bb, const Constant *lt, const Constant *ge,
169 CaseRange r) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000170 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
171
172 /// CaseBB - The MBB in which to emit the compare and branch
173 MachineBasicBlock *CaseBB;
174 /// LT, GE - If nonzero, we know the current case value must be less-than or
175 /// greater-than-or-equal-to these Constants.
Dan Gohman46510a72010-04-15 01:51:59 +0000176 const Constant *LT;
177 const Constant *GE;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000178 /// Range - A pair of iterators representing the range of case values to be
179 /// processed at this point in the binary search tree.
180 CaseRange Range;
181 };
182
183 typedef std::vector<CaseRec> CaseRecVector;
184
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000185 struct CaseBitsCmp {
Chris Lattner53334ca2010-01-01 23:37:34 +0000186 bool operator()(const CaseBits &C1, const CaseBits &C2) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000187 return C1.Bits > C2.Bits;
188 }
189 };
190
Chris Lattner53334ca2010-01-01 23:37:34 +0000191 size_t Clusterify(CaseVector &Cases, const SwitchInst &SI);
Anton Korobeynikov23218582008-12-23 22:25:27 +0000192
Dan Gohman2048b852009-11-23 18:04:58 +0000193 /// CaseBlock - This structure is used to communicate between
194 /// SelectionDAGBuilder and SDISel for the code generation of additional basic
195 /// blocks needed by multi-case switch statements.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000196 struct CaseBlock {
Dan Gohman46510a72010-04-15 01:51:59 +0000197 CaseBlock(ISD::CondCode cc, const Value *cmplhs, const Value *cmprhs,
198 const Value *cmpmiddle,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000199 MachineBasicBlock *truebb, MachineBasicBlock *falsebb,
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000200 MachineBasicBlock *me,
201 uint32_t trueweight = 0, uint32_t falseweight = 0)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000202 : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs),
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000203 TrueBB(truebb), FalseBB(falsebb), ThisBB(me),
204 TrueWeight(trueweight), FalseWeight(falseweight) { }
205
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000206 // CC - the condition code to use for the case block's setcc node
207 ISD::CondCode CC;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000208
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000209 // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit.
210 // Emit by default LHS op RHS. MHS is used for range comparisons:
211 // If MHS is not null: (LHS <= MHS) and (MHS <= RHS).
Dan Gohman46510a72010-04-15 01:51:59 +0000212 const Value *CmpLHS, *CmpMHS, *CmpRHS;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000213
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000214 // TrueBB/FalseBB - the block to branch to if the setcc is true/false.
215 MachineBasicBlock *TrueBB, *FalseBB;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000216
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000217 // ThisBB - the block into which to emit the code for the setcc and branches
218 MachineBasicBlock *ThisBB;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000219
220 // TrueWeight/FalseWeight - branch weights.
221 uint32_t TrueWeight, FalseWeight;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000222 };
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000223
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000224 struct JumpTable {
225 JumpTable(unsigned R, unsigned J, MachineBasicBlock *M,
226 MachineBasicBlock *D): Reg(R), JTI(J), MBB(M), Default(D) {}
227
228 /// Reg - the virtual register containing the index of the jump table entry
229 //. to jump to.
230 unsigned Reg;
231 /// JTI - the JumpTableIndex for this jump table in the function.
232 unsigned JTI;
233 /// MBB - the MBB into which to emit the code for the indirect jump.
234 MachineBasicBlock *MBB;
235 /// Default - the MBB of the default bb, which is a successor of the range
236 /// check MBB. This is when updating PHI nodes in successors.
237 MachineBasicBlock *Default;
238 };
239 struct JumpTableHeader {
Dan Gohman46510a72010-04-15 01:51:59 +0000240 JumpTableHeader(APInt F, APInt L, const Value *SV, MachineBasicBlock *H,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000241 bool E = false):
242 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
Anton Korobeynikov23218582008-12-23 22:25:27 +0000243 APInt First;
244 APInt Last;
Dan Gohman46510a72010-04-15 01:51:59 +0000245 const Value *SValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000246 MachineBasicBlock *HeaderBB;
247 bool Emitted;
248 };
249 typedef std::pair<JumpTableHeader, JumpTable> JumpTableBlock;
250
251 struct BitTestCase {
Manman Ren1a710fd2012-08-24 18:14:27 +0000252 BitTestCase(uint64_t M, MachineBasicBlock* T, MachineBasicBlock* Tr,
253 uint32_t Weight):
254 Mask(M), ThisBB(T), TargetBB(Tr), ExtraWeight(Weight) { }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000255 uint64_t Mask;
Chris Lattner53334ca2010-01-01 23:37:34 +0000256 MachineBasicBlock *ThisBB;
257 MachineBasicBlock *TargetBB;
Manman Ren1a710fd2012-08-24 18:14:27 +0000258 uint32_t ExtraWeight;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000259 };
260
261 typedef SmallVector<BitTestCase, 3> BitTestInfo;
262
263 struct BitTestBlock {
Dan Gohman46510a72010-04-15 01:51:59 +0000264 BitTestBlock(APInt F, APInt R, const Value* SV,
Evan Chengd08e5b42011-01-06 01:02:44 +0000265 unsigned Rg, EVT RgVT, bool E,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000266 MachineBasicBlock* P, MachineBasicBlock* D,
267 const BitTestInfo& C):
Evan Chengd08e5b42011-01-06 01:02:44 +0000268 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000269 Parent(P), Default(D), Cases(C) { }
Anton Korobeynikov23218582008-12-23 22:25:27 +0000270 APInt First;
271 APInt Range;
Dan Gohman46510a72010-04-15 01:51:59 +0000272 const Value *SValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000273 unsigned Reg;
Evan Chengd08e5b42011-01-06 01:02:44 +0000274 EVT RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000275 bool Emitted;
276 MachineBasicBlock *Parent;
277 MachineBasicBlock *Default;
278 BitTestInfo Cases;
279 };
280
281public:
282 // TLI - This is information that describes the available target features we
283 // need for lowering. This indicates when operations are unavailable,
284 // implemented with a libcall, etc.
Dan Gohman55e59c12010-04-19 19:05:59 +0000285 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +0000286 const TargetLowering &TLI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000287 SelectionDAG &DAG;
Micah Villmow3574eca2012-10-08 16:38:25 +0000288 const DataLayout *TD;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000289 AliasAnalysis *AA;
Owen Anderson243eb9e2011-12-08 22:15:21 +0000290 const TargetLibraryInfo *LibInfo;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000291
292 /// SwitchCases - Vector of CaseBlock structures used to communicate
293 /// SwitchInst code generation information.
294 std::vector<CaseBlock> SwitchCases;
295 /// JTCases - Vector of JumpTable structures used to communicate
296 /// SwitchInst code generation information.
297 std::vector<JumpTableBlock> JTCases;
298 /// BitTestCases - Vector of BitTestBlock structures used to communicate
299 /// SwitchInst code generation information.
300 std::vector<BitTestBlock> BitTestCases;
Evan Chengfb2e7522009-09-18 21:02:19 +0000301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000302 // Emit PHI-node-operand constants only once even if used by multiple
303 // PHI nodes.
Dan Gohman46510a72010-04-15 01:51:59 +0000304 DenseMap<const Constant *, unsigned> ConstantsOut;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000305
306 /// FuncInfo - Information about the function as a whole.
307 ///
308 FunctionLoweringInfo &FuncInfo;
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000309
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000310 /// OptLevel - What optimization level we're generating code for.
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000311 ///
Bill Wendling98a366d2009-04-29 23:29:43 +0000312 CodeGenOpt::Level OptLevel;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000313
314 /// GFI - Garbage collection metadata for the function.
315 GCFunctionInfo *GFI;
316
Bill Wendling30e67402011-10-05 22:24:35 +0000317 /// LPadToCallSiteMap - Map a landing pad to the call site indexes.
318 DenseMap<MachineBasicBlock*, SmallVector<unsigned, 4> > LPadToCallSiteMap;
Bill Wendlinga8512ed2011-10-04 22:00:35 +0000319
Dan Gohman98ca4f22009-08-05 01:29:28 +0000320 /// HasTailCall - This is set to true if a call in the current
321 /// block has been translated as a tail call. In this case,
322 /// no subsequent DAG nodes should be created.
323 ///
324 bool HasTailCall;
325
Owen Anderson0a5372e2009-07-13 04:09:18 +0000326 LLVMContext *Context;
327
Dan Gohman55e59c12010-04-19 19:05:59 +0000328 SelectionDAGBuilder(SelectionDAG &dag, FunctionLoweringInfo &funcinfo,
Dan Gohman2048b852009-11-23 18:04:58 +0000329 CodeGenOpt::Level ol)
Dan Gohman55e59c12010-04-19 19:05:59 +0000330 : SDNodeOrder(0), TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
331 DAG(dag), FuncInfo(funcinfo), OptLevel(ol),
Richard Smithcb1f68d2012-08-22 00:42:39 +0000332 HasTailCall(false) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000333 }
334
Owen Anderson243eb9e2011-12-08 22:15:21 +0000335 void init(GCFunctionInfo *gfi, AliasAnalysis &aa,
336 const TargetLibraryInfo *li);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000337
Dan Gohmanb02b62a2010-04-14 18:24:06 +0000338 /// clear - Clear out the current SelectionDAG and the associated
Dan Gohman2048b852009-11-23 18:04:58 +0000339 /// state and prepare this SelectionDAGBuilder object to be used
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000340 /// for a new block. This doesn't clear out information about
341 /// additional blocks that are needed to complete switch lowering
342 /// or PHI node updating; that information is cleared out as it is
343 /// consumed.
344 void clear();
345
Devang Patel23385752011-05-23 17:44:13 +0000346 /// clearDanglingDebugInfo - Clear the dangling debug information
Benjamin Kramerd9b0b022012-06-02 10:20:22 +0000347 /// map. This function is separated from the clear so that debug
Devang Patel23385752011-05-23 17:44:13 +0000348 /// information that is dangling in a basic block can be properly
349 /// resolved in a different basic block. This allows the
350 /// SelectionDAG to resolve dangling debug information attached
351 /// to PHI nodes.
352 void clearDanglingDebugInfo();
353
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000354 /// getRoot - Return the current virtual root of the Selection DAG,
355 /// flushing any PendingLoad items. This must be done before emitting
356 /// a store or any other node that may need to be ordered after any
357 /// prior load instructions.
358 ///
359 SDValue getRoot();
360
361 /// getControlRoot - Similar to getRoot, but instead of flushing all the
362 /// PendingLoad items, flush all the PendingExports items. It is necessary
363 /// to do this before emitting a terminator instruction.
364 ///
365 SDValue getControlRoot();
366
Dale Johannesen66978ee2009-01-31 02:22:37 +0000367 DebugLoc getCurDebugLoc() const { return CurDebugLoc; }
Devang Patel68e6bee2011-02-21 23:21:26 +0000368
Bill Wendling3ea3c242009-12-22 02:10:19 +0000369 unsigned getSDNodeOrder() const { return SDNodeOrder; }
370
Dan Gohman46510a72010-04-15 01:51:59 +0000371 void CopyValueToVirtualRegister(const Value *V, unsigned Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000372
Bill Wendling4533cac2010-01-28 21:51:40 +0000373 /// AssignOrderingToNode - Assign an ordering to the node. The order is gotten
374 /// from how the code appeared in the source. The ordering is used by the
375 /// scheduler to effectively turn off scheduling.
376 void AssignOrderingToNode(const SDNode *Node);
377
Dan Gohman46510a72010-04-15 01:51:59 +0000378 void visit(const Instruction &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000379
Dan Gohman46510a72010-04-15 01:51:59 +0000380 void visit(unsigned Opcode, const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000381
Dale Johannesenbdc09d92010-07-16 00:02:08 +0000382 // resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V,
383 // generate the debug data structures now that we've seen its definition.
384 void resolveDanglingDebugInfo(const Value *V, SDValue Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000385 SDValue getValue(const Value *V);
Dan Gohman28a17352010-07-01 01:59:43 +0000386 SDValue getNonRegisterValue(const Value *V);
387 SDValue getValueImpl(const Value *V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000388
389 void setValue(const Value *V, SDValue NewN) {
390 SDValue &N = NodeMap[V];
391 assert(N.getNode() == 0 && "Already set a value for this node!");
392 N = NewN;
393 }
394
Devang Patel9126c0d2010-06-01 19:59:01 +0000395 void setUnusedArgValue(const Value *V, SDValue NewN) {
396 SDValue &N = UnusedArgNodeMap[V];
397 assert(N.getNode() == 0 && "Already set a value for this node!");
398 N = NewN;
399 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000400
Dan Gohman46510a72010-04-15 01:51:59 +0000401 void FindMergedConditions(const Value *Cond, MachineBasicBlock *TBB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000402 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000403 MachineBasicBlock *SwitchBB, unsigned Opc);
Dan Gohman46510a72010-04-15 01:51:59 +0000404 void EmitBranchForMergedCondition(const Value *Cond, MachineBasicBlock *TBB,
Dan Gohmanc2277342008-10-17 21:16:08 +0000405 MachineBasicBlock *FBB,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000406 MachineBasicBlock *CurBB,
407 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000408 bool ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases);
Dan Gohman46510a72010-04-15 01:51:59 +0000409 bool isExportableFromCurrentBlock(const Value *V, const BasicBlock *FromBB);
410 void CopyToExportRegsIfNeeded(const Value *V);
411 void ExportFromCurrentBlock(const Value *V);
412 void LowerCallTo(ImmutableCallSite CS, SDValue Callee, bool IsTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000413 MachineBasicBlock *LandingPad = NULL);
414
Jakob Stoklund Olesen2622f462010-09-30 19:44:31 +0000415 /// UpdateSplitBlock - When an MBB was split during scheduling, update the
416 /// references that ned to refer to the last resulting block.
417 void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last);
418
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000419private:
420 // Terminator instructions.
Dan Gohman46510a72010-04-15 01:51:59 +0000421 void visitRet(const ReturnInst &I);
422 void visitBr(const BranchInst &I);
423 void visitSwitch(const SwitchInst &I);
424 void visitIndirectBr(const IndirectBrInst &I);
Bill Wendlinga60f0e72010-07-15 23:42:21 +0000425 void visitUnreachable(const UnreachableInst &I) { /* noop */ }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000426
427 // Helpers for visitSwitch
428 bool handleSmallSwitchRange(CaseRec& CR,
429 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000430 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000431 MachineBasicBlock* Default,
432 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000433 bool handleJTSwitchCase(CaseRec& CR,
434 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000435 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000436 MachineBasicBlock* Default,
437 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000438 bool handleBTSplitSwitchCase(CaseRec& CR,
439 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000440 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000441 MachineBasicBlock* Default,
442 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000443 bool handleBitTestsSwitchCase(CaseRec& CR,
444 CaseRecVector& WorkList,
Dan Gohman46510a72010-04-15 01:51:59 +0000445 const Value* SV,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000446 MachineBasicBlock* Default,
447 MachineBasicBlock *SwitchBB);
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000448
Jakub Staszak25101bb2011-12-20 20:03:10 +0000449 uint32_t getEdgeWeight(const MachineBasicBlock *Src,
450 const MachineBasicBlock *Dst) const;
Jakub Staszakc8f34de2011-07-29 22:25:21 +0000451 void addSuccessorWithWeight(MachineBasicBlock *Src, MachineBasicBlock *Dst,
452 uint32_t Weight = 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000453public:
Dan Gohman99be8ae2010-04-19 22:41:47 +0000454 void visitSwitchCase(CaseBlock &CB,
455 MachineBasicBlock *SwitchBB);
456 void visitBitTestHeader(BitTestBlock &B, MachineBasicBlock *SwitchBB);
Evan Chengd08e5b42011-01-06 01:02:44 +0000457 void visitBitTestCase(BitTestBlock &BB,
458 MachineBasicBlock* NextMBB,
Manman Ren1a710fd2012-08-24 18:14:27 +0000459 uint32_t BranchWeightToNext,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000460 unsigned Reg,
Dan Gohman99be8ae2010-04-19 22:41:47 +0000461 BitTestCase &B,
462 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000463 void visitJumpTable(JumpTable &JT);
Dan Gohman99be8ae2010-04-19 22:41:47 +0000464 void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH,
465 MachineBasicBlock *SwitchBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000466
467private:
468 // These all get lowered before this pass.
Dan Gohman46510a72010-04-15 01:51:59 +0000469 void visitInvoke(const InvokeInst &I);
Bill Wendlingdccc03b2011-07-31 06:30:59 +0000470 void visitResume(const ResumeInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000471
Dan Gohman46510a72010-04-15 01:51:59 +0000472 void visitBinary(const User &I, unsigned OpCode);
473 void visitShift(const User &I, unsigned Opcode);
474 void visitAdd(const User &I) { visitBinary(I, ISD::ADD); }
475 void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); }
476 void visitSub(const User &I) { visitBinary(I, ISD::SUB); }
477 void visitFSub(const User &I);
478 void visitMul(const User &I) { visitBinary(I, ISD::MUL); }
479 void visitFMul(const User &I) { visitBinary(I, ISD::FMUL); }
480 void visitURem(const User &I) { visitBinary(I, ISD::UREM); }
481 void visitSRem(const User &I) { visitBinary(I, ISD::SREM); }
482 void visitFRem(const User &I) { visitBinary(I, ISD::FREM); }
483 void visitUDiv(const User &I) { visitBinary(I, ISD::UDIV); }
Benjamin Kramer9c640302011-07-08 10:31:30 +0000484 void visitSDiv(const User &I);
Dan Gohman46510a72010-04-15 01:51:59 +0000485 void visitFDiv(const User &I) { visitBinary(I, ISD::FDIV); }
486 void visitAnd (const User &I) { visitBinary(I, ISD::AND); }
487 void visitOr (const User &I) { visitBinary(I, ISD::OR); }
488 void visitXor (const User &I) { visitBinary(I, ISD::XOR); }
489 void visitShl (const User &I) { visitShift(I, ISD::SHL); }
490 void visitLShr(const User &I) { visitShift(I, ISD::SRL); }
491 void visitAShr(const User &I) { visitShift(I, ISD::SRA); }
492 void visitICmp(const User &I);
493 void visitFCmp(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000494 // Visit the conversion instructions
Dan Gohman46510a72010-04-15 01:51:59 +0000495 void visitTrunc(const User &I);
496 void visitZExt(const User &I);
497 void visitSExt(const User &I);
498 void visitFPTrunc(const User &I);
499 void visitFPExt(const User &I);
500 void visitFPToUI(const User &I);
501 void visitFPToSI(const User &I);
502 void visitUIToFP(const User &I);
503 void visitSIToFP(const User &I);
504 void visitPtrToInt(const User &I);
505 void visitIntToPtr(const User &I);
506 void visitBitCast(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000507
Dan Gohman46510a72010-04-15 01:51:59 +0000508 void visitExtractElement(const User &I);
509 void visitInsertElement(const User &I);
510 void visitShuffleVector(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000511
Dan Gohman46510a72010-04-15 01:51:59 +0000512 void visitExtractValue(const ExtractValueInst &I);
513 void visitInsertValue(const InsertValueInst &I);
Bill Wendlinge6e88262011-08-12 20:24:12 +0000514 void visitLandingPad(const LandingPadInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000515
Dan Gohman46510a72010-04-15 01:51:59 +0000516 void visitGetElementPtr(const User &I);
517 void visitSelect(const User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000518
Dan Gohman46510a72010-04-15 01:51:59 +0000519 void visitAlloca(const AllocaInst &I);
520 void visitLoad(const LoadInst &I);
521 void visitStore(const StoreInst &I);
Eli Friedmanff030482011-07-28 21:48:00 +0000522 void visitAtomicCmpXchg(const AtomicCmpXchgInst &I);
523 void visitAtomicRMW(const AtomicRMWInst &I);
Eli Friedman47f35132011-07-25 23:16:38 +0000524 void visitFence(const FenceInst &I);
Dan Gohmanba5be5c2010-04-20 15:00:41 +0000525 void visitPHI(const PHINode &I);
Dan Gohman46510a72010-04-15 01:51:59 +0000526 void visitCall(const CallInst &I);
527 bool visitMemCmpCall(const CallInst &I);
Bob Wilson53624a22012-08-03 23:29:17 +0000528 bool visitUnaryFloatCall(const CallInst &I, unsigned Opcode);
Eli Friedman327236c2011-08-24 20:50:09 +0000529 void visitAtomicLoad(const LoadInst &I);
530 void visitAtomicStore(const StoreInst &I);
531
Dan Gohman46510a72010-04-15 01:51:59 +0000532 void visitInlineAsm(ImmutableCallSite CS);
533 const char *visitIntrinsicCall(const CallInst &I, unsigned Intrinsic);
534 void visitTargetIntrinsic(const CallInst &I, unsigned Intrinsic);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000535
Dan Gohman46510a72010-04-15 01:51:59 +0000536 void visitVAStart(const CallInst &I);
537 void visitVAArg(const VAArgInst &I);
538 void visitVAEnd(const CallInst &I);
539 void visitVACopy(const CallInst &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000540
Dan Gohman46510a72010-04-15 01:51:59 +0000541 void visitUserOp1(const Instruction &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000542 llvm_unreachable("UserOp1 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000543 }
Dan Gohman46510a72010-04-15 01:51:59 +0000544 void visitUserOp2(const Instruction &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000545 llvm_unreachable("UserOp2 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000546 }
Dan Gohmanc105a2b2010-04-22 20:55:53 +0000547
548 void HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB);
Evan Cheng2ad0fcf2010-04-28 23:08:54 +0000549
Devang Patelab43add2010-08-25 20:41:24 +0000550 /// EmitFuncArgumentDbgValue - If V is an function argument then create
551 /// corresponding DBG_VALUE machine instruction for it now. At the end of
552 /// instruction selection, they will be inserted to the entry BB.
Devang Patel78a06e52010-08-25 20:39:26 +0000553 bool EmitFuncArgumentDbgValue(const Value *V, MDNode *Variable,
Devang Patel34ca5ed2010-08-31 06:12:08 +0000554 int64_t Offset, const SDValue &N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000555};
556
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000557} // end namespace llvm
558
559#endif