Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- X86JITInfo.h - X86 implementation of the JIT interface --*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the X86 implementation of the TargetJITInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef X86JITINFO_H |
| 15 | #define X86JITINFO_H |
| 16 | |
| 17 | #include "llvm/Target/TargetJITInfo.h" |
| 18 | |
| 19 | namespace llvm { |
| 20 | class X86TargetMachine; |
| 21 | |
| 22 | class X86JITInfo : public TargetJITInfo { |
| 23 | X86TargetMachine &TM; |
Evan Cheng | af74325 | 2008-01-05 02:26:58 +0000 | [diff] [blame] | 24 | intptr_t PICBase; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 25 | public: |
Dan Gohman | 40bd38e | 2008-03-25 22:06:05 +0000 | [diff] [blame^] | 26 | explicit X86JITInfo(X86TargetMachine &tm) : TM(tm) {useGOT = 0;} |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 27 | |
| 28 | /// replaceMachineCodeForFunction - Make it so that calling the function |
| 29 | /// whose machine code is at OLD turns into a call to NEW, perhaps by |
| 30 | /// overwriting OLD with a branch to NEW. This is used for self-modifying |
| 31 | /// code. |
| 32 | /// |
| 33 | virtual void replaceMachineCodeForFunction(void *Old, void *New); |
| 34 | |
Evan Cheng | 28e7e16 | 2008-01-04 10:46:51 +0000 | [diff] [blame] | 35 | /// emitGlobalValueLazyPtr - Use the specified MachineCodeEmitter object to |
| 36 | /// emit a lazy pointer which contains the address of the specified GV. |
| 37 | virtual void *emitGlobalValueLazyPtr(void *GV, MachineCodeEmitter &MCE); |
| 38 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 39 | /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a |
| 40 | /// small native function that simply calls the function at the specified |
| 41 | /// address. |
| 42 | virtual void *emitFunctionStub(void *Fn, MachineCodeEmitter &MCE); |
| 43 | |
Evan Cheng | af74325 | 2008-01-05 02:26:58 +0000 | [diff] [blame] | 44 | /// getPICJumpTableEntry - Returns the value of the jumptable entry for the |
| 45 | /// specific basic block. |
| 46 | virtual intptr_t getPICJumpTableEntry(intptr_t BB, intptr_t JTBase); |
| 47 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 48 | /// getLazyResolverFunction - Expose the lazy resolver to the JIT. |
| 49 | virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn); |
| 50 | |
| 51 | /// relocate - Before the JIT can run a block of code that has been emitted, |
| 52 | /// it must rewrite the code to contain the actual addresses of any |
| 53 | /// referenced global symbols. |
| 54 | virtual void relocate(void *Function, MachineRelocation *MR, |
| 55 | unsigned NumRelocs, unsigned char* GOTBase); |
Evan Cheng | af74325 | 2008-01-05 02:26:58 +0000 | [diff] [blame] | 56 | |
| 57 | /// setPICBase / getPICBase - Getter / setter of PICBase, used to compute |
| 58 | /// PIC jumptable entry. |
| 59 | void setPICBase(intptr_t Base) { PICBase = Base; } |
| 60 | intptr_t getPICBase() const { return PICBase; } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 61 | }; |
| 62 | } |
| 63 | |
| 64 | #endif |