Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/MachineRelocation.h - Target Relocation ----*- C++ -*-===// |
Misha Brukman | ea61c35 | 2005-04-21 20:39:54 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 7ed47a1 | 2007-12-29 19:59:42 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | ea61c35 | 2005-04-21 20:39:54 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the MachineRelocation class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_CODEGEN_MACHINERELOCATION_H |
| 15 | #define LLVM_CODEGEN_MACHINERELOCATION_H |
| 16 | |
| 17 | #include "llvm/Support/DataTypes.h" |
Chris Lattner | 4e2239d | 2004-11-20 23:40:54 +0000 | [diff] [blame] | 18 | #include <cassert> |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 19 | |
| 20 | namespace llvm { |
| 21 | class GlobalValue; |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 22 | class MachineBasicBlock; |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 23 | |
| 24 | /// MachineRelocation - This represents a target-specific relocation value, |
| 25 | /// produced by the code emitter. This relocation is resolved after the has |
| 26 | /// been emitted, either to an object file or to memory, when the target of the |
| 27 | /// relocation can be resolved. |
| 28 | /// |
| 29 | /// A relocation is made up of the following logical portions: |
| 30 | /// 1. An offset in the machine code buffer, the location to modify. |
Chris Lattner | 765da91 | 2004-11-21 03:27:13 +0000 | [diff] [blame] | 31 | /// 2. A target specific relocation type (a number from 0 to 63). |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 32 | /// 3. A symbol being referenced, either as a GlobalValue* or as a string. |
| 33 | /// 4. An optional constant value to be added to the reference. |
Chris Lattner | 765da91 | 2004-11-21 03:27:13 +0000 | [diff] [blame] | 34 | /// 5. A bit, CanRewrite, which indicates to the JIT that a function stub is |
| 35 | /// not needed for the relocation. |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 36 | /// 6. An index into the GOT, if the target uses a GOT |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 37 | /// |
| 38 | class MachineRelocation { |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 39 | enum AddressType { |
| 40 | isResult, // Relocation has be transformed into its result pointer. |
| 41 | isGV, // The Target.GV field is valid. |
Evan Cheng | 9ed2f80 | 2008-11-10 01:08:07 +0000 | [diff] [blame] | 42 | isIndirectSym, // Relocation of an indirect symbol. |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 43 | isBB, // Relocation of BB address. |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 44 | isExtSym, // The Target.ExtSym field is valid. |
Evan Cheng | 52b510b | 2006-06-23 01:02:37 +0000 | [diff] [blame] | 45 | isConstPool, // Relocation of constant pool address. |
| 46 | isJumpTable, // Relocation of jump table address. |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 47 | isGOTIndex // The Target.GOTIndex field is valid. |
| 48 | }; |
| 49 | |
| 50 | /// Offset - This is the offset from the start of the code buffer of the |
| 51 | /// relocation to perform. |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame^] | 52 | uintptr_t Offset; |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 53 | |
| 54 | /// ConstantVal - A field that may be used by the target relocation type. |
| 55 | intptr_t ConstantVal; |
| 56 | |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 57 | union { |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 58 | void *Result; // If this has been resolved to a resolved pointer |
Evan Cheng | 9ed2f80 | 2008-11-10 01:08:07 +0000 | [diff] [blame] | 59 | GlobalValue *GV; // If this is a pointer to a GV or an indirect ref. |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 60 | MachineBasicBlock *MBB; // If this is a pointer to a LLVM BB |
| 61 | const char *ExtSym; // If this is a pointer to a named symbol |
| 62 | unsigned Index; // Constant pool / jump table index |
| 63 | unsigned GOTIndex; // Index in the GOT of this symbol/global |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 64 | } Target; |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 65 | |
Evan Cheng | 70ba70f | 2008-10-29 23:53:42 +0000 | [diff] [blame] | 66 | unsigned TargetReloType : 6; // The target relocation ID |
| 67 | AddressType AddrType : 4; // The field of Target to use |
| 68 | bool NeedStub : 1; // True if this relocation requires a stub |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 69 | bool GOTRelative : 1; // Should this relocation be relative to the GOT? |
Evan Cheng | 70ba70f | 2008-10-29 23:53:42 +0000 | [diff] [blame] | 70 | bool TargetResolve : 1; // True if target should resolve the address |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 71 | |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 72 | public: |
Nate Begeman | 5381baa | 2006-12-11 02:19:29 +0000 | [diff] [blame] | 73 | // Relocation types used in a generic implementation. Currently, relocation |
| 74 | // entries for all things use the generic VANILLA type until they are refined |
| 75 | // into target relocation types. |
| 76 | enum RelocationType { |
| 77 | VANILLA |
| 78 | }; |
| 79 | |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 80 | /// MachineRelocation::getGV - Return a relocation entry for a GlobalValue. |
| 81 | /// |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame^] | 82 | static MachineRelocation getGV(uintptr_t offset, unsigned RelocationType, |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 83 | GlobalValue *GV, intptr_t cst = 0, |
Evan Cheng | 02aabbf | 2008-01-03 02:56:28 +0000 | [diff] [blame] | 84 | bool NeedStub = 0, |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 85 | bool GOTrelative = 0) { |
Chris Lattner | 765da91 | 2004-11-21 03:27:13 +0000 | [diff] [blame] | 86 | assert((RelocationType & ~63) == 0 && "Relocation type too large!"); |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 87 | MachineRelocation Result; |
| 88 | Result.Offset = offset; |
| 89 | Result.ConstantVal = cst; |
| 90 | Result.TargetReloType = RelocationType; |
| 91 | Result.AddrType = isGV; |
Evan Cheng | 02aabbf | 2008-01-03 02:56:28 +0000 | [diff] [blame] | 92 | Result.NeedStub = NeedStub; |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 93 | Result.GOTRelative = GOTrelative; |
Evan Cheng | 70ba70f | 2008-10-29 23:53:42 +0000 | [diff] [blame] | 94 | Result.TargetResolve = false; |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 95 | Result.Target.GV = GV; |
| 96 | return Result; |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Evan Cheng | 9ed2f80 | 2008-11-10 01:08:07 +0000 | [diff] [blame] | 99 | /// MachineRelocation::getIndirectSymbol - Return a relocation entry for an |
| 100 | /// indirect symbol. |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame^] | 101 | static MachineRelocation getIndirectSymbol(uintptr_t offset, |
Evan Cheng | 9ed2f80 | 2008-11-10 01:08:07 +0000 | [diff] [blame] | 102 | unsigned RelocationType, |
| 103 | GlobalValue *GV, intptr_t cst = 0, |
| 104 | bool NeedStub = 0, |
| 105 | bool GOTrelative = 0) { |
Evan Cheng | be8c03f | 2008-01-04 10:46:51 +0000 | [diff] [blame] | 106 | assert((RelocationType & ~63) == 0 && "Relocation type too large!"); |
| 107 | MachineRelocation Result; |
| 108 | Result.Offset = offset; |
| 109 | Result.ConstantVal = cst; |
| 110 | Result.TargetReloType = RelocationType; |
Evan Cheng | 9ed2f80 | 2008-11-10 01:08:07 +0000 | [diff] [blame] | 111 | Result.AddrType = isIndirectSym; |
Evan Cheng | be8c03f | 2008-01-04 10:46:51 +0000 | [diff] [blame] | 112 | Result.NeedStub = NeedStub; |
| 113 | Result.GOTRelative = GOTrelative; |
Evan Cheng | 70ba70f | 2008-10-29 23:53:42 +0000 | [diff] [blame] | 114 | Result.TargetResolve = false; |
Evan Cheng | be8c03f | 2008-01-04 10:46:51 +0000 | [diff] [blame] | 115 | Result.Target.GV = GV; |
| 116 | return Result; |
| 117 | } |
| 118 | |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 119 | /// MachineRelocation::getBB - Return a relocation entry for a BB. |
| 120 | /// |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame^] | 121 | static MachineRelocation getBB(uintptr_t offset,unsigned RelocationType, |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 122 | MachineBasicBlock *MBB, intptr_t cst = 0) { |
| 123 | assert((RelocationType & ~63) == 0 && "Relocation type too large!"); |
| 124 | MachineRelocation Result; |
| 125 | Result.Offset = offset; |
| 126 | Result.ConstantVal = cst; |
| 127 | Result.TargetReloType = RelocationType; |
| 128 | Result.AddrType = isBB; |
Evan Cheng | 02aabbf | 2008-01-03 02:56:28 +0000 | [diff] [blame] | 129 | Result.NeedStub = false; |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 130 | Result.GOTRelative = false; |
Evan Cheng | 70ba70f | 2008-10-29 23:53:42 +0000 | [diff] [blame] | 131 | Result.TargetResolve = false; |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 132 | Result.Target.MBB = MBB; |
| 133 | return Result; |
| 134 | } |
| 135 | |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 136 | /// MachineRelocation::getExtSym - Return a relocation entry for an external |
| 137 | /// symbol, like "free". |
| 138 | /// |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame^] | 139 | static MachineRelocation getExtSym(uintptr_t offset, unsigned RelocationType, |
Evan Cheng | 652f7ea | 2008-05-30 22:47:19 +0000 | [diff] [blame] | 140 | const char *ES, intptr_t cst = 0, |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 141 | bool GOTrelative = 0) { |
Chris Lattner | 765da91 | 2004-11-21 03:27:13 +0000 | [diff] [blame] | 142 | assert((RelocationType & ~63) == 0 && "Relocation type too large!"); |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 143 | MachineRelocation Result; |
| 144 | Result.Offset = offset; |
| 145 | Result.ConstantVal = cst; |
| 146 | Result.TargetReloType = RelocationType; |
| 147 | Result.AddrType = isExtSym; |
Chris Lattner | c2f191c | 2008-01-21 22:27:27 +0000 | [diff] [blame] | 148 | Result.NeedStub = true; |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 149 | Result.GOTRelative = GOTrelative; |
Evan Cheng | 70ba70f | 2008-10-29 23:53:42 +0000 | [diff] [blame] | 150 | Result.TargetResolve = false; |
Evan Cheng | 652f7ea | 2008-05-30 22:47:19 +0000 | [diff] [blame] | 151 | Result.Target.ExtSym = ES; |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 152 | return Result; |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 153 | } |
| 154 | |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 155 | /// MachineRelocation::getConstPool - Return a relocation entry for a constant |
| 156 | /// pool entry. |
| 157 | /// |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame^] | 158 | static MachineRelocation getConstPool(uintptr_t offset,unsigned RelocationType, |
Evan Cheng | 70ba70f | 2008-10-29 23:53:42 +0000 | [diff] [blame] | 159 | unsigned CPI, intptr_t cst = 0, |
| 160 | bool letTargetResolve = false) { |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 161 | assert((RelocationType & ~63) == 0 && "Relocation type too large!"); |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 162 | MachineRelocation Result; |
| 163 | Result.Offset = offset; |
| 164 | Result.ConstantVal = cst; |
| 165 | Result.TargetReloType = RelocationType; |
| 166 | Result.AddrType = isConstPool; |
Evan Cheng | 02aabbf | 2008-01-03 02:56:28 +0000 | [diff] [blame] | 167 | Result.NeedStub = false; |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 168 | Result.GOTRelative = false; |
Evan Cheng | 70ba70f | 2008-10-29 23:53:42 +0000 | [diff] [blame] | 169 | Result.TargetResolve = letTargetResolve; |
Evan Cheng | 52b510b | 2006-06-23 01:02:37 +0000 | [diff] [blame] | 170 | Result.Target.Index = CPI; |
| 171 | return Result; |
| 172 | } |
| 173 | |
| 174 | /// MachineRelocation::getJumpTable - Return a relocation entry for a jump |
| 175 | /// table entry. |
| 176 | /// |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame^] | 177 | static MachineRelocation getJumpTable(uintptr_t offset,unsigned RelocationType, |
Evan Cheng | a27b353 | 2008-11-07 09:01:15 +0000 | [diff] [blame] | 178 | unsigned JTI, intptr_t cst = 0, |
| 179 | bool letTargetResolve = false) { |
Evan Cheng | 52b510b | 2006-06-23 01:02:37 +0000 | [diff] [blame] | 180 | assert((RelocationType & ~63) == 0 && "Relocation type too large!"); |
| 181 | MachineRelocation Result; |
| 182 | Result.Offset = offset; |
| 183 | Result.ConstantVal = cst; |
| 184 | Result.TargetReloType = RelocationType; |
| 185 | Result.AddrType = isJumpTable; |
Evan Cheng | 02aabbf | 2008-01-03 02:56:28 +0000 | [diff] [blame] | 186 | Result.NeedStub = false; |
Evan Cheng | 52b510b | 2006-06-23 01:02:37 +0000 | [diff] [blame] | 187 | Result.GOTRelative = false; |
Evan Cheng | a27b353 | 2008-11-07 09:01:15 +0000 | [diff] [blame] | 188 | Result.TargetResolve = letTargetResolve; |
Evan Cheng | 52b510b | 2006-06-23 01:02:37 +0000 | [diff] [blame] | 189 | Result.Target.Index = JTI; |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 190 | return Result; |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 193 | /// getMachineCodeOffset - Return the offset into the code buffer that the |
| 194 | /// relocation should be performed. |
Chris Lattner | 5a032de | 2006-05-03 20:30:20 +0000 | [diff] [blame] | 195 | intptr_t getMachineCodeOffset() const { |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 196 | return Offset; |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Chris Lattner | fab11a7 | 2004-11-20 03:43:50 +0000 | [diff] [blame] | 199 | /// getRelocationType - Return the target-specific relocation ID for this |
| 200 | /// relocation. |
| 201 | unsigned getRelocationType() const { |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 202 | return TargetReloType; |
Chris Lattner | fab11a7 | 2004-11-20 03:43:50 +0000 | [diff] [blame] | 203 | } |
| 204 | |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 205 | /// getConstantVal - Get the constant value associated with this relocation. |
| 206 | /// This is often an offset from the symbol. |
| 207 | /// |
| 208 | intptr_t getConstantVal() const { |
| 209 | return ConstantVal; |
| 210 | } |
| 211 | |
Nate Begeman | 5381baa | 2006-12-11 02:19:29 +0000 | [diff] [blame] | 212 | /// setConstantVal - Set the constant value associated with this relocation. |
| 213 | /// This is often an offset from the symbol. |
| 214 | /// |
| 215 | void setConstantVal(intptr_t val) { |
| 216 | ConstantVal = val; |
| 217 | } |
| 218 | |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 219 | /// isGlobalValue - Return true if this relocation is a GlobalValue, as |
| 220 | /// opposed to a constant string. |
| 221 | bool isGlobalValue() const { |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 222 | return AddrType == isGV; |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Evan Cheng | 9ed2f80 | 2008-11-10 01:08:07 +0000 | [diff] [blame] | 225 | /// isIndirectSymbol - Return true if this relocation is the address an |
| 226 | /// indirect symbol |
| 227 | bool isIndirectSymbol() const { |
| 228 | return AddrType == isIndirectSym; |
Evan Cheng | be8c03f | 2008-01-04 10:46:51 +0000 | [diff] [blame] | 229 | } |
| 230 | |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 231 | /// isBasicBlock - Return true if this relocation is a basic block reference. |
| 232 | /// |
| 233 | bool isBasicBlock() const { |
| 234 | return AddrType == isBB; |
| 235 | } |
| 236 | |
Evan Cheng | d7398c9 | 2008-11-08 07:37:34 +0000 | [diff] [blame] | 237 | /// isExternalSymbol - Return true if this is a constant string. |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 238 | /// |
Evan Cheng | d7398c9 | 2008-11-08 07:37:34 +0000 | [diff] [blame] | 239 | bool isExternalSymbol() const { |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 240 | return AddrType == isExtSym; |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | /// isConstantPoolIndex - Return true if this is a constant pool reference. |
| 244 | /// |
| 245 | bool isConstantPoolIndex() const { |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 246 | return AddrType == isConstPool; |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Evan Cheng | 52b510b | 2006-06-23 01:02:37 +0000 | [diff] [blame] | 249 | /// isJumpTableIndex - Return true if this is a jump table reference. |
| 250 | /// |
| 251 | bool isJumpTableIndex() const { |
| 252 | return AddrType == isJumpTable; |
| 253 | } |
| 254 | |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 255 | /// isGOTRelative - Return true the target wants the index into the GOT of |
| 256 | /// the symbol rather than the address of the symbol. |
| 257 | bool isGOTRelative() const { |
| 258 | return GOTRelative; |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Evan Cheng | 02aabbf | 2008-01-03 02:56:28 +0000 | [diff] [blame] | 261 | /// doesntNeedStub - This function returns true if the JIT for this target |
| 262 | /// target is capable of directly handling the relocated GlobalValue reference |
| 263 | /// without using either a stub function or issuing an extra load to get the |
| 264 | /// GV address. |
| 265 | bool doesntNeedStub() const { |
| 266 | return !NeedStub; |
Chris Lattner | 765da91 | 2004-11-21 03:27:13 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Evan Cheng | 70ba70f | 2008-10-29 23:53:42 +0000 | [diff] [blame] | 269 | /// letTargetResolve - Return true if the target JITInfo is usually |
| 270 | /// responsible for resolving the address of this relocation. |
| 271 | bool letTargetResolve() const { |
| 272 | return TargetResolve; |
| 273 | } |
| 274 | |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 275 | /// getGlobalValue - If this is a global value reference, return the |
| 276 | /// referenced global. |
| 277 | GlobalValue *getGlobalValue() const { |
Evan Cheng | 9ed2f80 | 2008-11-10 01:08:07 +0000 | [diff] [blame] | 278 | assert((isGlobalValue() || isIndirectSymbol()) && |
Evan Cheng | be8c03f | 2008-01-04 10:46:51 +0000 | [diff] [blame] | 279 | "This is not a global value reference!"); |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 280 | return Target.GV; |
| 281 | } |
| 282 | |
Evan Cheng | b4e80f8 | 2006-07-27 18:18:13 +0000 | [diff] [blame] | 283 | MachineBasicBlock *getBasicBlock() const { |
| 284 | assert(isBasicBlock() && "This is not a basic block reference!"); |
| 285 | return Target.MBB; |
| 286 | } |
| 287 | |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 288 | /// getString - If this is a string value, return the string reference. |
| 289 | /// |
Evan Cheng | d7398c9 | 2008-11-08 07:37:34 +0000 | [diff] [blame] | 290 | const char *getExternalSymbol() const { |
| 291 | assert(isExternalSymbol() && "This is not an external symbol reference!"); |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 292 | return Target.ExtSym; |
| 293 | } |
| 294 | |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 295 | /// getConstantPoolIndex - If this is a const pool reference, return |
| 296 | /// the index into the constant pool. |
| 297 | unsigned getConstantPoolIndex() const { |
| 298 | assert(isConstantPoolIndex() && "This is not a constant pool reference!"); |
Evan Cheng | 52b510b | 2006-06-23 01:02:37 +0000 | [diff] [blame] | 299 | return Target.Index; |
| 300 | } |
| 301 | |
| 302 | /// getJumpTableIndex - If this is a jump table reference, return |
| 303 | /// the index into the jump table. |
| 304 | unsigned getJumpTableIndex() const { |
| 305 | assert(isJumpTableIndex() && "This is not a jump table reference!"); |
| 306 | return Target.Index; |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 307 | } |
| 308 | |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 309 | /// getResultPointer - Once this has been resolved to point to an actual |
| 310 | /// address, this returns the pointer. |
| 311 | void *getResultPointer() const { |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 312 | assert(AddrType == isResult && "Result pointer isn't set yet!"); |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 313 | return Target.Result; |
| 314 | } |
| 315 | |
| 316 | /// setResultPointer - Set the result to the specified pointer value. |
| 317 | /// |
| 318 | void setResultPointer(void *Ptr) { |
| 319 | Target.Result = Ptr; |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 320 | AddrType = isResult; |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 321 | } |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 322 | |
| 323 | /// setGOTIndex - Set the GOT index to a specific value. |
| 324 | void setGOTIndex(unsigned idx) { |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 325 | AddrType = isGOTIndex; |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 326 | Target.GOTIndex = idx; |
| 327 | } |
| 328 | |
| 329 | /// getGOTIndex - Once this has been resolved to an entry in the GOT, |
Jeff Cohen | 9eb59ec | 2005-07-27 05:53:44 +0000 | [diff] [blame] | 330 | /// this returns that index. The index is from the lowest address entry |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 331 | /// in the GOT. |
| 332 | unsigned getGOTIndex() const { |
Chris Lattner | 1e3822c | 2006-05-03 18:52:31 +0000 | [diff] [blame] | 333 | assert(AddrType == isGOTIndex); |
Andrew Lenharth | 6a6b2db | 2005-07-22 20:46:42 +0000 | [diff] [blame] | 334 | return Target.GOTIndex; |
| 335 | } |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 336 | }; |
Chris Lattner | b89df9c | 2004-11-20 03:05:50 +0000 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | #endif |