Dan Gohman | 2048b85 | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 1 | //===-- SelectionDAGBuilder.h - Selection-DAG building --------------------===// |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2 | // |
| 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 Gohman | 2048b85 | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 14 | #ifndef SELECTIONDAGBUILDER_H |
| 15 | #define SELECTIONDAGBUILDER_H |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 16 | |
| 17 | #include "llvm/Constants.h" |
Owen Anderson | 0a5372e | 2009-07-13 04:09:18 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/SelectionDAG.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/APInt.h" |
| 20 | #include "llvm/ADT/DenseMap.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/SelectionDAGNodes.h" |
Bill Wendling | 0eb96fd | 2009-02-03 01:32:22 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/ValueTypes.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 23 | #include "llvm/Support/CallSite.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 25 | #include <vector> |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 26 | |
| 27 | namespace llvm { |
| 28 | |
| 29 | class AliasAnalysis; |
| 30 | class AllocaInst; |
| 31 | class BasicBlock; |
| 32 | class BitCastInst; |
| 33 | class BranchInst; |
| 34 | class CallInst; |
Devang Patel | 4cf81c4 | 2010-08-26 23:35:15 +0000 | [diff] [blame] | 35 | class DbgValueInst; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 36 | class ExtractElementInst; |
| 37 | class ExtractValueInst; |
| 38 | class FCmpInst; |
| 39 | class FPExtInst; |
| 40 | class FPToSIInst; |
| 41 | class FPToUIInst; |
| 42 | class FPTruncInst; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 43 | class Function; |
Dan Gohman | 6277eb2 | 2009-11-23 17:16:22 +0000 | [diff] [blame] | 44 | class FunctionLoweringInfo; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 45 | class GetElementPtrInst; |
| 46 | class GCFunctionInfo; |
| 47 | class ICmpInst; |
| 48 | class IntToPtrInst; |
Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 49 | class IndirectBrInst; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 50 | class InvokeInst; |
| 51 | class InsertElementInst; |
| 52 | class InsertValueInst; |
| 53 | class Instruction; |
| 54 | class LoadInst; |
| 55 | class MachineBasicBlock; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 56 | class MachineInstr; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 57 | class MachineRegisterInfo; |
Evan Cheng | 2ad0fcf | 2010-04-28 23:08:54 +0000 | [diff] [blame] | 58 | class MDNode; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 59 | class PHINode; |
| 60 | class PtrToIntInst; |
| 61 | class ReturnInst; |
Dale Johannesen | bdc09d9 | 2010-07-16 00:02:08 +0000 | [diff] [blame] | 62 | class SDDbgValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 63 | class SExtInst; |
| 64 | class SelectInst; |
| 65 | class ShuffleVectorInst; |
| 66 | class SIToFPInst; |
| 67 | class StoreInst; |
| 68 | class SwitchInst; |
| 69 | class TargetData; |
| 70 | class TargetLowering; |
| 71 | class TruncInst; |
| 72 | class UIToFPInst; |
| 73 | class UnreachableInst; |
| 74 | class UnwindInst; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 75 | class VAArgInst; |
| 76 | class ZExtInst; |
| 77 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 78 | //===----------------------------------------------------------------------===// |
Dan Gohman | 2048b85 | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 79 | /// SelectionDAGBuilder - This is the common target-independent lowering |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 80 | /// implementation that is parameterized by a TargetLowering object. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 81 | /// |
Dan Gohman | 2048b85 | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 82 | class SelectionDAGBuilder { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 83 | /// CurDebugLoc - current file + line number. Changes as we build the DAG. |
| 84 | DebugLoc CurDebugLoc; |
| 85 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 86 | DenseMap<const Value*, SDValue> NodeMap; |
Devang Patel | 9126c0d | 2010-06-01 19:59:01 +0000 | [diff] [blame] | 87 | |
| 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 Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 91 | |
Dale Johannesen | bdc09d9 | 2010-07-16 00:02:08 +0000 | [diff] [blame] | 92 | /// DanglingDebugInfo - Helper type for DanglingDebugInfoMap. |
| 93 | class DanglingDebugInfo { |
Devang Patel | 4cf81c4 | 2010-08-26 23:35:15 +0000 | [diff] [blame] | 94 | const DbgValueInst* DI; |
Dale Johannesen | bdc09d9 | 2010-07-16 00:02:08 +0000 | [diff] [blame] | 95 | DebugLoc dl; |
| 96 | unsigned SDNodeOrder; |
| 97 | public: |
| 98 | DanglingDebugInfo() : DI(0), dl(DebugLoc()), SDNodeOrder(0) { } |
Devang Patel | 4cf81c4 | 2010-08-26 23:35:15 +0000 | [diff] [blame] | 99 | DanglingDebugInfo(const DbgValueInst *di, DebugLoc DL, unsigned SDNO) : |
Dale Johannesen | bdc09d9 | 2010-07-16 00:02:08 +0000 | [diff] [blame] | 100 | DI(di), dl(DL), SDNodeOrder(SDNO) { } |
Devang Patel | 4cf81c4 | 2010-08-26 23:35:15 +0000 | [diff] [blame] | 101 | const DbgValueInst* getDI() { return DI; } |
Dale Johannesen | bdc09d9 | 2010-07-16 00:02:08 +0000 | [diff] [blame] | 102 | 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 Lattner | 8047d9a | 2009-12-24 00:37:38 +0000 | [diff] [blame] | 110 | public: |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 111 | /// 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 Lattner | 8047d9a | 2009-12-24 00:37:38 +0000 | [diff] [blame] | 116 | private: |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 117 | |
| 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 Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 125 | /// SDNodeOrder - A unique monotonically increasing number used to order the |
| 126 | /// SDNodes we create. |
| 127 | unsigned SDNodeOrder; |
| 128 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 129 | /// 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; |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 135 | uint32_t ExtraWeight; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 136 | |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 137 | Case() : Low(0), High(0), BB(0), ExtraWeight(0) { } |
| 138 | Case(Constant* low, Constant* high, MachineBasicBlock* bb, |
| 139 | uint32_t extraweight) : Low(low), High(high), BB(bb), |
| 140 | ExtraWeight(extraweight) { } |
| 141 | |
Chris Lattner | e880efe | 2009-11-07 07:50:34 +0000 | [diff] [blame] | 142 | APInt size() const { |
| 143 | const APInt &rHigh = cast<ConstantInt>(High)->getValue(); |
| 144 | const APInt &rLow = cast<ConstantInt>(Low)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 145 | return (rHigh - rLow + 1ULL); |
| 146 | } |
| 147 | }; |
| 148 | |
| 149 | struct CaseBits { |
| 150 | uint64_t Mask; |
| 151 | MachineBasicBlock* BB; |
| 152 | unsigned Bits; |
| 153 | |
| 154 | CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits): |
| 155 | Mask(mask), BB(bb), Bits(bits) { } |
| 156 | }; |
| 157 | |
| 158 | typedef std::vector<Case> CaseVector; |
| 159 | typedef std::vector<CaseBits> CaseBitsVector; |
| 160 | typedef CaseVector::iterator CaseItr; |
| 161 | typedef std::pair<CaseItr, CaseItr> CaseRange; |
| 162 | |
| 163 | /// CaseRec - A struct with ctor used in lowering switches to a binary tree |
| 164 | /// of conditional branches. |
| 165 | struct CaseRec { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 166 | CaseRec(MachineBasicBlock *bb, const Constant *lt, const Constant *ge, |
| 167 | CaseRange r) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 168 | CaseBB(bb), LT(lt), GE(ge), Range(r) {} |
| 169 | |
| 170 | /// CaseBB - The MBB in which to emit the compare and branch |
| 171 | MachineBasicBlock *CaseBB; |
| 172 | /// LT, GE - If nonzero, we know the current case value must be less-than or |
| 173 | /// greater-than-or-equal-to these Constants. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 174 | const Constant *LT; |
| 175 | const Constant *GE; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 176 | /// Range - A pair of iterators representing the range of case values to be |
| 177 | /// processed at this point in the binary search tree. |
| 178 | CaseRange Range; |
| 179 | }; |
| 180 | |
| 181 | typedef std::vector<CaseRec> CaseRecVector; |
| 182 | |
| 183 | /// The comparison function for sorting the switch case values in the vector. |
| 184 | /// WARNING: Case ranges should be disjoint! |
| 185 | struct CaseCmp { |
Chris Lattner | 53334ca | 2010-01-01 23:37:34 +0000 | [diff] [blame] | 186 | bool operator()(const Case &C1, const Case &C2) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 187 | assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High)); |
| 188 | const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); |
| 189 | const ConstantInt* CI2 = cast<const ConstantInt>(C2.High); |
| 190 | return CI1->getValue().slt(CI2->getValue()); |
| 191 | } |
| 192 | }; |
| 193 | |
| 194 | struct CaseBitsCmp { |
Chris Lattner | 53334ca | 2010-01-01 23:37:34 +0000 | [diff] [blame] | 195 | bool operator()(const CaseBits &C1, const CaseBits &C2) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 196 | return C1.Bits > C2.Bits; |
| 197 | } |
| 198 | }; |
| 199 | |
Chris Lattner | 53334ca | 2010-01-01 23:37:34 +0000 | [diff] [blame] | 200 | size_t Clusterify(CaseVector &Cases, const SwitchInst &SI); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 201 | |
Dan Gohman | 2048b85 | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 202 | /// CaseBlock - This structure is used to communicate between |
| 203 | /// SelectionDAGBuilder and SDISel for the code generation of additional basic |
| 204 | /// blocks needed by multi-case switch statements. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 205 | struct CaseBlock { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 206 | CaseBlock(ISD::CondCode cc, const Value *cmplhs, const Value *cmprhs, |
| 207 | const Value *cmpmiddle, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 208 | MachineBasicBlock *truebb, MachineBasicBlock *falsebb, |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 209 | MachineBasicBlock *me, |
| 210 | uint32_t trueweight = 0, uint32_t falseweight = 0) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 211 | : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs), |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 212 | TrueBB(truebb), FalseBB(falsebb), ThisBB(me), |
| 213 | TrueWeight(trueweight), FalseWeight(falseweight) { } |
| 214 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 215 | // CC - the condition code to use for the case block's setcc node |
| 216 | ISD::CondCode CC; |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 217 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 218 | // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit. |
| 219 | // Emit by default LHS op RHS. MHS is used for range comparisons: |
| 220 | // If MHS is not null: (LHS <= MHS) and (MHS <= RHS). |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 221 | const Value *CmpLHS, *CmpMHS, *CmpRHS; |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 222 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 223 | // TrueBB/FalseBB - the block to branch to if the setcc is true/false. |
| 224 | MachineBasicBlock *TrueBB, *FalseBB; |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 225 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 226 | // ThisBB - the block into which to emit the code for the setcc and branches |
| 227 | MachineBasicBlock *ThisBB; |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 228 | |
| 229 | // TrueWeight/FalseWeight - branch weights. |
| 230 | uint32_t TrueWeight, FalseWeight; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 231 | }; |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 232 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 233 | struct JumpTable { |
| 234 | JumpTable(unsigned R, unsigned J, MachineBasicBlock *M, |
| 235 | MachineBasicBlock *D): Reg(R), JTI(J), MBB(M), Default(D) {} |
| 236 | |
| 237 | /// Reg - the virtual register containing the index of the jump table entry |
| 238 | //. to jump to. |
| 239 | unsigned Reg; |
| 240 | /// JTI - the JumpTableIndex for this jump table in the function. |
| 241 | unsigned JTI; |
| 242 | /// MBB - the MBB into which to emit the code for the indirect jump. |
| 243 | MachineBasicBlock *MBB; |
| 244 | /// Default - the MBB of the default bb, which is a successor of the range |
| 245 | /// check MBB. This is when updating PHI nodes in successors. |
| 246 | MachineBasicBlock *Default; |
| 247 | }; |
| 248 | struct JumpTableHeader { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 249 | JumpTableHeader(APInt F, APInt L, const Value *SV, MachineBasicBlock *H, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 250 | bool E = false): |
| 251 | First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {} |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 252 | APInt First; |
| 253 | APInt Last; |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 254 | const Value *SValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 255 | MachineBasicBlock *HeaderBB; |
| 256 | bool Emitted; |
| 257 | }; |
| 258 | typedef std::pair<JumpTableHeader, JumpTable> JumpTableBlock; |
| 259 | |
| 260 | struct BitTestCase { |
| 261 | BitTestCase(uint64_t M, MachineBasicBlock* T, MachineBasicBlock* Tr): |
| 262 | Mask(M), ThisBB(T), TargetBB(Tr) { } |
| 263 | uint64_t Mask; |
Chris Lattner | 53334ca | 2010-01-01 23:37:34 +0000 | [diff] [blame] | 264 | MachineBasicBlock *ThisBB; |
| 265 | MachineBasicBlock *TargetBB; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 266 | }; |
| 267 | |
| 268 | typedef SmallVector<BitTestCase, 3> BitTestInfo; |
| 269 | |
| 270 | struct BitTestBlock { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 271 | BitTestBlock(APInt F, APInt R, const Value* SV, |
Evan Cheng | d08e5b4 | 2011-01-06 01:02:44 +0000 | [diff] [blame] | 272 | unsigned Rg, EVT RgVT, bool E, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 273 | MachineBasicBlock* P, MachineBasicBlock* D, |
| 274 | const BitTestInfo& C): |
Evan Cheng | d08e5b4 | 2011-01-06 01:02:44 +0000 | [diff] [blame] | 275 | First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 276 | Parent(P), Default(D), Cases(C) { } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 277 | APInt First; |
| 278 | APInt Range; |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 279 | const Value *SValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 280 | unsigned Reg; |
Evan Cheng | d08e5b4 | 2011-01-06 01:02:44 +0000 | [diff] [blame] | 281 | EVT RegVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 282 | bool Emitted; |
| 283 | MachineBasicBlock *Parent; |
| 284 | MachineBasicBlock *Default; |
| 285 | BitTestInfo Cases; |
| 286 | }; |
| 287 | |
| 288 | public: |
| 289 | // TLI - This is information that describes the available target features we |
| 290 | // need for lowering. This indicates when operations are unavailable, |
| 291 | // implemented with a libcall, etc. |
Dan Gohman | 55e59c1 | 2010-04-19 19:05:59 +0000 | [diff] [blame] | 292 | const TargetMachine &TM; |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 293 | const TargetLowering &TLI; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 294 | SelectionDAG &DAG; |
| 295 | const TargetData *TD; |
| 296 | AliasAnalysis *AA; |
| 297 | |
| 298 | /// SwitchCases - Vector of CaseBlock structures used to communicate |
| 299 | /// SwitchInst code generation information. |
| 300 | std::vector<CaseBlock> SwitchCases; |
| 301 | /// JTCases - Vector of JumpTable structures used to communicate |
| 302 | /// SwitchInst code generation information. |
| 303 | std::vector<JumpTableBlock> JTCases; |
| 304 | /// BitTestCases - Vector of BitTestBlock structures used to communicate |
| 305 | /// SwitchInst code generation information. |
| 306 | std::vector<BitTestBlock> BitTestCases; |
Evan Cheng | fb2e752 | 2009-09-18 21:02:19 +0000 | [diff] [blame] | 307 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 308 | // Emit PHI-node-operand constants only once even if used by multiple |
| 309 | // PHI nodes. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 310 | DenseMap<const Constant *, unsigned> ConstantsOut; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 311 | |
| 312 | /// FuncInfo - Information about the function as a whole. |
| 313 | /// |
| 314 | FunctionLoweringInfo &FuncInfo; |
Bill Wendling | dfdacee | 2009-02-19 21:12:54 +0000 | [diff] [blame] | 315 | |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 316 | /// OptLevel - What optimization level we're generating code for. |
Bill Wendling | dfdacee | 2009-02-19 21:12:54 +0000 | [diff] [blame] | 317 | /// |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 318 | CodeGenOpt::Level OptLevel; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 319 | |
| 320 | /// GFI - Garbage collection metadata for the function. |
| 321 | GCFunctionInfo *GFI; |
| 322 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 323 | /// HasTailCall - This is set to true if a call in the current |
| 324 | /// block has been translated as a tail call. In this case, |
| 325 | /// no subsequent DAG nodes should be created. |
| 326 | /// |
| 327 | bool HasTailCall; |
| 328 | |
Owen Anderson | 0a5372e | 2009-07-13 04:09:18 +0000 | [diff] [blame] | 329 | LLVMContext *Context; |
| 330 | |
Dan Gohman | 55e59c1 | 2010-04-19 19:05:59 +0000 | [diff] [blame] | 331 | SelectionDAGBuilder(SelectionDAG &dag, FunctionLoweringInfo &funcinfo, |
Dan Gohman | 2048b85 | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 332 | CodeGenOpt::Level ol) |
Dan Gohman | 55e59c1 | 2010-04-19 19:05:59 +0000 | [diff] [blame] | 333 | : SDNodeOrder(0), TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()), |
| 334 | DAG(dag), FuncInfo(funcinfo), OptLevel(ol), |
Chris Lattner | a4f2bb0 | 2010-04-02 20:17:23 +0000 | [diff] [blame] | 335 | HasTailCall(false), Context(dag.getContext()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | void init(GCFunctionInfo *gfi, AliasAnalysis &aa); |
| 339 | |
Dan Gohman | b02b62a | 2010-04-14 18:24:06 +0000 | [diff] [blame] | 340 | /// clear - Clear out the current SelectionDAG and the associated |
Dan Gohman | 2048b85 | 2009-11-23 18:04:58 +0000 | [diff] [blame] | 341 | /// state and prepare this SelectionDAGBuilder object to be used |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 342 | /// for a new block. This doesn't clear out information about |
| 343 | /// additional blocks that are needed to complete switch lowering |
| 344 | /// or PHI node updating; that information is cleared out as it is |
| 345 | /// consumed. |
| 346 | void clear(); |
| 347 | |
Devang Patel | 2338575 | 2011-05-23 17:44:13 +0000 | [diff] [blame] | 348 | /// clearDanglingDebugInfo - Clear the dangling debug information |
| 349 | /// map. This function is seperated from the clear so that debug |
| 350 | /// information that is dangling in a basic block can be properly |
| 351 | /// resolved in a different basic block. This allows the |
| 352 | /// SelectionDAG to resolve dangling debug information attached |
| 353 | /// to PHI nodes. |
| 354 | void clearDanglingDebugInfo(); |
| 355 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 356 | /// getRoot - Return the current virtual root of the Selection DAG, |
| 357 | /// flushing any PendingLoad items. This must be done before emitting |
| 358 | /// a store or any other node that may need to be ordered after any |
| 359 | /// prior load instructions. |
| 360 | /// |
| 361 | SDValue getRoot(); |
| 362 | |
| 363 | /// getControlRoot - Similar to getRoot, but instead of flushing all the |
| 364 | /// PendingLoad items, flush all the PendingExports items. It is necessary |
| 365 | /// to do this before emitting a terminator instruction. |
| 366 | /// |
| 367 | SDValue getControlRoot(); |
| 368 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 369 | DebugLoc getCurDebugLoc() const { return CurDebugLoc; } |
Devang Patel | 68e6bee | 2011-02-21 23:21:26 +0000 | [diff] [blame] | 370 | |
Bill Wendling | 3ea3c24 | 2009-12-22 02:10:19 +0000 | [diff] [blame] | 371 | unsigned getSDNodeOrder() const { return SDNodeOrder; } |
| 372 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 373 | void CopyValueToVirtualRegister(const Value *V, unsigned Reg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 374 | |
Bill Wendling | 4533cac | 2010-01-28 21:51:40 +0000 | [diff] [blame] | 375 | /// AssignOrderingToNode - Assign an ordering to the node. The order is gotten |
| 376 | /// from how the code appeared in the source. The ordering is used by the |
| 377 | /// scheduler to effectively turn off scheduling. |
| 378 | void AssignOrderingToNode(const SDNode *Node); |
| 379 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 380 | void visit(const Instruction &I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 381 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 382 | void visit(unsigned Opcode, const User &I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 383 | |
Dale Johannesen | bdc09d9 | 2010-07-16 00:02:08 +0000 | [diff] [blame] | 384 | // resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V, |
| 385 | // generate the debug data structures now that we've seen its definition. |
| 386 | void resolveDanglingDebugInfo(const Value *V, SDValue Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 387 | SDValue getValue(const Value *V); |
Dan Gohman | 28a1735 | 2010-07-01 01:59:43 +0000 | [diff] [blame] | 388 | SDValue getNonRegisterValue(const Value *V); |
| 389 | SDValue getValueImpl(const Value *V); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 390 | |
| 391 | void setValue(const Value *V, SDValue NewN) { |
| 392 | SDValue &N = NodeMap[V]; |
| 393 | assert(N.getNode() == 0 && "Already set a value for this node!"); |
| 394 | N = NewN; |
| 395 | } |
| 396 | |
Devang Patel | 9126c0d | 2010-06-01 19:59:01 +0000 | [diff] [blame] | 397 | void setUnusedArgValue(const Value *V, SDValue NewN) { |
| 398 | SDValue &N = UnusedArgNodeMap[V]; |
| 399 | assert(N.getNode() == 0 && "Already set a value for this node!"); |
| 400 | N = NewN; |
| 401 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 402 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 403 | void FindMergedConditions(const Value *Cond, MachineBasicBlock *TBB, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 404 | MachineBasicBlock *FBB, MachineBasicBlock *CurBB, |
Dan Gohman | 99be8ae | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 405 | MachineBasicBlock *SwitchBB, unsigned Opc); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 406 | void EmitBranchForMergedCondition(const Value *Cond, MachineBasicBlock *TBB, |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 407 | MachineBasicBlock *FBB, |
Dan Gohman | 99be8ae | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 408 | MachineBasicBlock *CurBB, |
| 409 | MachineBasicBlock *SwitchBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 410 | bool ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 411 | bool isExportableFromCurrentBlock(const Value *V, const BasicBlock *FromBB); |
| 412 | void CopyToExportRegsIfNeeded(const Value *V); |
| 413 | void ExportFromCurrentBlock(const Value *V); |
| 414 | void LowerCallTo(ImmutableCallSite CS, SDValue Callee, bool IsTailCall, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 415 | MachineBasicBlock *LandingPad = NULL); |
| 416 | |
Jakob Stoklund Olesen | 2622f46 | 2010-09-30 19:44:31 +0000 | [diff] [blame] | 417 | /// UpdateSplitBlock - When an MBB was split during scheduling, update the |
| 418 | /// references that ned to refer to the last resulting block. |
| 419 | void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last); |
| 420 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 421 | private: |
| 422 | // Terminator instructions. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 423 | void visitRet(const ReturnInst &I); |
| 424 | void visitBr(const BranchInst &I); |
| 425 | void visitSwitch(const SwitchInst &I); |
| 426 | void visitIndirectBr(const IndirectBrInst &I); |
Bill Wendling | a60f0e7 | 2010-07-15 23:42:21 +0000 | [diff] [blame] | 427 | void visitUnreachable(const UnreachableInst &I) { /* noop */ } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 428 | |
| 429 | // Helpers for visitSwitch |
| 430 | bool handleSmallSwitchRange(CaseRec& CR, |
| 431 | CaseRecVector& WorkList, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 432 | const Value* SV, |
Dan Gohman | 99be8ae | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 433 | MachineBasicBlock* Default, |
| 434 | MachineBasicBlock *SwitchBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 435 | bool handleJTSwitchCase(CaseRec& CR, |
| 436 | CaseRecVector& WorkList, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 437 | const Value* SV, |
Dan Gohman | 99be8ae | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 438 | MachineBasicBlock* Default, |
| 439 | MachineBasicBlock *SwitchBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 440 | bool handleBTSplitSwitchCase(CaseRec& CR, |
| 441 | CaseRecVector& WorkList, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 442 | const Value* SV, |
Dan Gohman | 99be8ae | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 443 | MachineBasicBlock* Default, |
| 444 | MachineBasicBlock *SwitchBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 445 | bool handleBitTestsSwitchCase(CaseRec& CR, |
| 446 | CaseRecVector& WorkList, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 447 | const Value* SV, |
Dan Gohman | 99be8ae | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 448 | MachineBasicBlock* Default, |
| 449 | MachineBasicBlock *SwitchBB); |
Jakub Staszak | 7cc2b07 | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 450 | |
| 451 | uint32_t getEdgeWeight(MachineBasicBlock *Src, MachineBasicBlock *Dst); |
Jakub Staszak | c8f34de | 2011-07-29 22:25:21 +0000 | [diff] [blame] | 452 | void addSuccessorWithWeight(MachineBasicBlock *Src, MachineBasicBlock *Dst, |
| 453 | uint32_t Weight = 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 454 | public: |
Dan Gohman | 99be8ae | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 455 | void visitSwitchCase(CaseBlock &CB, |
| 456 | MachineBasicBlock *SwitchBB); |
| 457 | void visitBitTestHeader(BitTestBlock &B, MachineBasicBlock *SwitchBB); |
Evan Cheng | d08e5b4 | 2011-01-06 01:02:44 +0000 | [diff] [blame] | 458 | void visitBitTestCase(BitTestBlock &BB, |
| 459 | MachineBasicBlock* NextMBB, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 460 | unsigned Reg, |
Dan Gohman | 99be8ae | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 461 | BitTestCase &B, |
| 462 | MachineBasicBlock *SwitchBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 463 | void visitJumpTable(JumpTable &JT); |
Dan Gohman | 99be8ae | 2010-04-19 22:41:47 +0000 | [diff] [blame] | 464 | void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH, |
| 465 | MachineBasicBlock *SwitchBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 466 | |
| 467 | private: |
| 468 | // These all get lowered before this pass. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 469 | void visitInvoke(const InvokeInst &I); |
Bill Wendling | dccc03b | 2011-07-31 06:30:59 +0000 | [diff] [blame] | 470 | void visitResume(const ResumeInst &I); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 471 | void visitUnwind(const UnwindInst &I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 472 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 473 | void visitBinary(const User &I, unsigned OpCode); |
| 474 | void visitShift(const User &I, unsigned Opcode); |
| 475 | void visitAdd(const User &I) { visitBinary(I, ISD::ADD); } |
| 476 | void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); } |
| 477 | void visitSub(const User &I) { visitBinary(I, ISD::SUB); } |
| 478 | void visitFSub(const User &I); |
| 479 | void visitMul(const User &I) { visitBinary(I, ISD::MUL); } |
| 480 | void visitFMul(const User &I) { visitBinary(I, ISD::FMUL); } |
| 481 | void visitURem(const User &I) { visitBinary(I, ISD::UREM); } |
| 482 | void visitSRem(const User &I) { visitBinary(I, ISD::SREM); } |
| 483 | void visitFRem(const User &I) { visitBinary(I, ISD::FREM); } |
| 484 | void visitUDiv(const User &I) { visitBinary(I, ISD::UDIV); } |
Benjamin Kramer | 9c64030 | 2011-07-08 10:31:30 +0000 | [diff] [blame] | 485 | void visitSDiv(const User &I); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 486 | void visitFDiv(const User &I) { visitBinary(I, ISD::FDIV); } |
| 487 | void visitAnd (const User &I) { visitBinary(I, ISD::AND); } |
| 488 | void visitOr (const User &I) { visitBinary(I, ISD::OR); } |
| 489 | void visitXor (const User &I) { visitBinary(I, ISD::XOR); } |
| 490 | void visitShl (const User &I) { visitShift(I, ISD::SHL); } |
| 491 | void visitLShr(const User &I) { visitShift(I, ISD::SRL); } |
| 492 | void visitAShr(const User &I) { visitShift(I, ISD::SRA); } |
| 493 | void visitICmp(const User &I); |
| 494 | void visitFCmp(const User &I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 495 | // Visit the conversion instructions |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 496 | void visitTrunc(const User &I); |
| 497 | void visitZExt(const User &I); |
| 498 | void visitSExt(const User &I); |
| 499 | void visitFPTrunc(const User &I); |
| 500 | void visitFPExt(const User &I); |
| 501 | void visitFPToUI(const User &I); |
| 502 | void visitFPToSI(const User &I); |
| 503 | void visitUIToFP(const User &I); |
| 504 | void visitSIToFP(const User &I); |
| 505 | void visitPtrToInt(const User &I); |
| 506 | void visitIntToPtr(const User &I); |
| 507 | void visitBitCast(const User &I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 508 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 509 | void visitExtractElement(const User &I); |
| 510 | void visitInsertElement(const User &I); |
| 511 | void visitShuffleVector(const User &I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 512 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 513 | void visitExtractValue(const ExtractValueInst &I); |
| 514 | void visitInsertValue(const InsertValueInst &I); |
Bill Wendling | e6e8826 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 515 | void visitLandingPad(const LandingPadInst &I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 516 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 517 | void visitGetElementPtr(const User &I); |
| 518 | void visitSelect(const User &I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 519 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 520 | void visitAlloca(const AllocaInst &I); |
| 521 | void visitLoad(const LoadInst &I); |
| 522 | void visitStore(const StoreInst &I); |
Eli Friedman | ff03048 | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 523 | void visitAtomicCmpXchg(const AtomicCmpXchgInst &I); |
| 524 | void visitAtomicRMW(const AtomicRMWInst &I); |
Eli Friedman | 47f3513 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 525 | void visitFence(const FenceInst &I); |
Dan Gohman | ba5be5c | 2010-04-20 15:00:41 +0000 | [diff] [blame] | 526 | void visitPHI(const PHINode &I); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 527 | void visitCall(const CallInst &I); |
| 528 | bool visitMemCmpCall(const CallInst &I); |
Eli Friedman | 327236c | 2011-08-24 20:50:09 +0000 | [diff] [blame^] | 529 | void visitAtomicLoad(const LoadInst &I); |
| 530 | void visitAtomicStore(const StoreInst &I); |
| 531 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 532 | void visitInlineAsm(ImmutableCallSite CS); |
| 533 | const char *visitIntrinsicCall(const CallInst &I, unsigned Intrinsic); |
| 534 | void visitTargetIntrinsic(const CallInst &I, unsigned Intrinsic); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 535 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 536 | void visitPow(const CallInst &I); |
| 537 | void visitExp2(const CallInst &I); |
| 538 | void visitExp(const CallInst &I); |
| 539 | void visitLog(const CallInst &I); |
| 540 | void visitLog2(const CallInst &I); |
| 541 | void visitLog10(const CallInst &I); |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 542 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 543 | void visitVAStart(const CallInst &I); |
| 544 | void visitVAArg(const VAArgInst &I); |
| 545 | void visitVAEnd(const CallInst &I); |
| 546 | void visitVACopy(const CallInst &I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 547 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 548 | void visitUserOp1(const Instruction &I) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 549 | llvm_unreachable("UserOp1 should not exist at instruction selection time!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 550 | } |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 551 | void visitUserOp2(const Instruction &I) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 552 | llvm_unreachable("UserOp2 should not exist at instruction selection time!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 553 | } |
| 554 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 555 | const char *implVisitBinaryAtomic(const CallInst& I, ISD::NodeType Op); |
| 556 | const char *implVisitAluOverflow(const CallInst &I, ISD::NodeType Op); |
Dan Gohman | c105a2b | 2010-04-22 20:55:53 +0000 | [diff] [blame] | 557 | |
| 558 | void HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB); |
Evan Cheng | 2ad0fcf | 2010-04-28 23:08:54 +0000 | [diff] [blame] | 559 | |
Devang Patel | ab43add | 2010-08-25 20:41:24 +0000 | [diff] [blame] | 560 | /// EmitFuncArgumentDbgValue - If V is an function argument then create |
| 561 | /// corresponding DBG_VALUE machine instruction for it now. At the end of |
| 562 | /// instruction selection, they will be inserted to the entry BB. |
Devang Patel | 78a06e5 | 2010-08-25 20:39:26 +0000 | [diff] [blame] | 563 | bool EmitFuncArgumentDbgValue(const Value *V, MDNode *Variable, |
Devang Patel | 34ca5ed | 2010-08-31 06:12:08 +0000 | [diff] [blame] | 564 | int64_t Offset, const SDValue &N); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 565 | }; |
| 566 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 567 | } // end namespace llvm |
| 568 | |
| 569 | #endif |