c5397819aee9606e48e79e5c9ac09cf74e71e40b
[oota-llvm.git] / include / llvm / CodeGen / MachineRelocation.h
1 //===-- llvm/CodeGen/MachineRelocation.h - Target Relocation ----*- C++ -*-===//
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 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"
18 #include <cassert>
19
20 namespace llvm {
21 class GlobalValue;
22 class MachineBasicBlock;
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.
31 ///   2. A target specific relocation type (a number from 0 to 63).
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.
34 ///   5. A bit, CanRewrite, which indicates to the JIT that a function stub is
35 ///      not needed for the relocation.
36 ///   6. An index into the GOT, if the target uses a GOT
37 ///
38 class MachineRelocation {
39   enum AddressType {
40     isResult,         // Relocation has be transformed into its result pointer.
41     isGV,             // The Target.GV field is valid.
42     isIndirectSym,    // Relocation of an indirect symbol.
43     isBB,             // Relocation of BB address.
44     isExtSym,         // The Target.ExtSym field is valid.
45     isConstPool,      // Relocation of constant pool address.
46     isJumpTable,      // Relocation of jump table address.
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.
52   uintptr_t Offset;
53   
54   /// ConstantVal - A field that may be used by the target relocation type.
55   intptr_t ConstantVal;
56
57   union {
58     void *Result;           // If this has been resolved to a resolved pointer
59     GlobalValue *GV;        // If this is a pointer to a GV or an indirect ref.
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
64   } Target;
65
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
69   bool GOTRelative        : 1; // Should this relocation be relative to the GOT?
70   bool TargetResolve      : 1; // True if target should resolve the address
71
72 public:
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   
80   /// MachineRelocation::getGV - Return a relocation entry for a GlobalValue.
81   ///
82   static MachineRelocation getGV(uintptr_t offset, unsigned RelocationType, 
83                                  GlobalValue *GV, intptr_t cst = 0,
84                                  bool NeedStub = 0,
85                                  bool GOTrelative = 0) {
86     assert((RelocationType & ~63) == 0 && "Relocation type too large!");
87     MachineRelocation Result;
88     Result.Offset = offset;
89     Result.ConstantVal = cst;
90     Result.TargetReloType = RelocationType;
91     Result.AddrType = isGV;
92     Result.NeedStub = NeedStub;
93     Result.GOTRelative = GOTrelative;
94     Result.TargetResolve = false;
95     Result.Target.GV = GV;
96     return Result;
97   }
98
99   /// MachineRelocation::getIndirectSymbol - Return a relocation entry for an
100   /// indirect symbol.
101   static MachineRelocation getIndirectSymbol(uintptr_t offset,
102                                              unsigned RelocationType, 
103                                              GlobalValue *GV, intptr_t cst = 0,
104                                              bool NeedStub = 0,
105                                              bool GOTrelative = 0) {
106     assert((RelocationType & ~63) == 0 && "Relocation type too large!");
107     MachineRelocation Result;
108     Result.Offset = offset;
109     Result.ConstantVal = cst;
110     Result.TargetReloType = RelocationType;
111     Result.AddrType = isIndirectSym;
112     Result.NeedStub = NeedStub;
113     Result.GOTRelative = GOTrelative;
114     Result.TargetResolve = false;
115     Result.Target.GV = GV;
116     return Result;
117   }
118
119   /// MachineRelocation::getBB - Return a relocation entry for a BB.
120   ///
121   static MachineRelocation getBB(uintptr_t offset,unsigned RelocationType,
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;
129     Result.NeedStub = false;
130     Result.GOTRelative = false;
131     Result.TargetResolve = false;
132     Result.Target.MBB = MBB;
133     return Result;
134   }
135
136   /// MachineRelocation::getExtSym - Return a relocation entry for an external
137   /// symbol, like "free".
138   ///
139   static MachineRelocation getExtSym(uintptr_t offset, unsigned RelocationType, 
140                                      const char *ES, intptr_t cst = 0,
141                                      bool GOTrelative = 0) {
142     assert((RelocationType & ~63) == 0 && "Relocation type too large!");
143     MachineRelocation Result;
144     Result.Offset = offset;
145     Result.ConstantVal = cst;
146     Result.TargetReloType = RelocationType;
147     Result.AddrType = isExtSym;
148     Result.NeedStub = true;
149     Result.GOTRelative = GOTrelative;
150     Result.TargetResolve = false;
151     Result.Target.ExtSym = ES;
152     return Result;
153   }
154
155   /// MachineRelocation::getConstPool - Return a relocation entry for a constant
156   /// pool entry.
157   ///
158   static MachineRelocation getConstPool(uintptr_t offset,unsigned RelocationType,
159                                         unsigned CPI, intptr_t cst = 0,
160                                         bool letTargetResolve = false) {
161     assert((RelocationType & ~63) == 0 && "Relocation type too large!");
162     MachineRelocation Result;
163     Result.Offset = offset;
164     Result.ConstantVal = cst;
165     Result.TargetReloType = RelocationType;
166     Result.AddrType = isConstPool;
167     Result.NeedStub = false;
168     Result.GOTRelative = false;
169     Result.TargetResolve = letTargetResolve;
170     Result.Target.Index = CPI;
171     return Result;
172   }
173
174   /// MachineRelocation::getJumpTable - Return a relocation entry for a jump
175   /// table entry.
176   ///
177   static MachineRelocation getJumpTable(uintptr_t offset,unsigned RelocationType,
178                                         unsigned JTI, intptr_t cst = 0,
179                                         bool letTargetResolve = false) {
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;
186     Result.NeedStub = false;
187     Result.GOTRelative = false;
188     Result.TargetResolve = letTargetResolve;
189     Result.Target.Index = JTI;
190     return Result;
191   }
192
193   /// getMachineCodeOffset - Return the offset into the code buffer that the
194   /// relocation should be performed.
195   intptr_t getMachineCodeOffset() const {
196     return Offset;
197   }
198
199   /// getRelocationType - Return the target-specific relocation ID for this
200   /// relocation.
201   unsigned getRelocationType() const {
202     return TargetReloType;
203   }
204
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
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
219   /// isGlobalValue - Return true if this relocation is a GlobalValue, as
220   /// opposed to a constant string.
221   bool isGlobalValue() const {
222     return AddrType == isGV;
223   }
224
225   /// isIndirectSymbol - Return true if this relocation is the address an
226   /// indirect symbol
227   bool isIndirectSymbol() const {
228     return AddrType == isIndirectSym;
229   }
230
231   /// isBasicBlock - Return true if this relocation is a basic block reference.
232   ///
233   bool isBasicBlock() const {
234     return AddrType == isBB;
235   }
236
237   /// isExternalSymbol - Return true if this is a constant string.
238   ///
239   bool isExternalSymbol() const {
240     return AddrType == isExtSym;
241   }
242
243   /// isConstantPoolIndex - Return true if this is a constant pool reference.
244   ///
245   bool isConstantPoolIndex() const {
246     return AddrType == isConstPool;
247   }
248
249   /// isJumpTableIndex - Return true if this is a jump table reference.
250   ///
251   bool isJumpTableIndex() const {
252     return AddrType == isJumpTable;
253   }
254
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;
259   }
260
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;
267   }
268
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
275   /// getGlobalValue - If this is a global value reference, return the
276   /// referenced global.
277   GlobalValue *getGlobalValue() const {
278     assert((isGlobalValue() || isIndirectSymbol()) &&
279            "This is not a global value reference!");
280     return Target.GV;
281   }
282
283   MachineBasicBlock *getBasicBlock() const {
284     assert(isBasicBlock() && "This is not a basic block reference!");
285     return Target.MBB;
286   }
287
288   /// getString - If this is a string value, return the string reference.
289   ///
290   const char *getExternalSymbol() const {
291     assert(isExternalSymbol() && "This is not an external symbol reference!");
292     return Target.ExtSym;
293   }
294
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!");
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;
307   }
308
309   /// getResultPointer - Once this has been resolved to point to an actual
310   /// address, this returns the pointer.
311   void *getResultPointer() const {
312     assert(AddrType == isResult && "Result pointer isn't set yet!");
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;
320     AddrType = isResult;
321   }
322
323   /// setGOTIndex - Set the GOT index to a specific value.
324   void setGOTIndex(unsigned idx) {
325     AddrType = isGOTIndex;
326     Target.GOTIndex = idx;
327   }
328
329   /// getGOTIndex - Once this has been resolved to an entry in the GOT,
330   /// this returns that index.  The index is from the lowest address entry
331   /// in the GOT.
332   unsigned getGOTIndex() const {
333     assert(AddrType == isGOTIndex);
334     return Target.GOTIndex;
335   }
336 };
337 }
338
339 #endif