Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 1 | //===- X86JITInfo.h - X86 implementation of the JIT interface --*- C++ -*-===// |
Misha Brukman | 0e0a7a45 | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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. |
Misha Brukman | 0e0a7a45 | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 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 | |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 17 | #include "llvm/Function.h" |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 18 | #include "llvm/Target/TargetJITInfo.h" |
| 19 | |
| 20 | namespace llvm { |
Evan Cheng | c4c6257 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 21 | class X86TargetMachine; |
Chris Lattner | 4482715 | 2003-12-28 09:47:19 +0000 | [diff] [blame] | 22 | |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 23 | class X86JITInfo : public TargetJITInfo { |
Evan Cheng | c4c6257 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 24 | X86TargetMachine &TM; |
Evan Cheng | 2a3e08b | 2008-01-05 02:26:58 +0000 | [diff] [blame] | 25 | intptr_t PICBase; |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 26 | public: |
Dan Gohman | 950a4c4 | 2008-03-25 22:06:05 +0000 | [diff] [blame] | 27 | explicit X86JITInfo(X86TargetMachine &tm) : TM(tm) {useGOT = 0;} |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 28 | |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 29 | /// replaceMachineCodeForFunction - Make it so that calling the function |
| 30 | /// whose machine code is at OLD turns into a call to NEW, perhaps by |
| 31 | /// overwriting OLD with a branch to NEW. This is used for self-modifying |
| 32 | /// code. |
| 33 | /// |
Chris Lattner | f70e0c2 | 2003-12-28 21:23:38 +0000 | [diff] [blame] | 34 | virtual void replaceMachineCodeForFunction(void *Old, void *New); |
Misha Brukman | 0e0a7a45 | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 35 | |
Evan Cheng | be8c03f | 2008-01-04 10:46:51 +0000 | [diff] [blame] | 36 | /// emitGlobalValueLazyPtr - Use the specified MachineCodeEmitter object to |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 37 | /// emit a lazy pointer which contains the address of the specified ptr. |
| 38 | virtual void *emitGlobalValueLazyPtr(const GlobalValue* GV, void *ptr, |
| 39 | MachineCodeEmitter &MCE); |
Evan Cheng | be8c03f | 2008-01-04 10:46:51 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 89d64e2 | 2004-11-20 23:53:56 +0000 | [diff] [blame] | 41 | /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a |
| 42 | /// small native function that simply calls the function at the specified |
| 43 | /// address. |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 44 | virtual void *emitFunctionStub(const Function* F, void *Fn, |
| 45 | MachineCodeEmitter &MCE); |
Chris Lattner | 89d64e2 | 2004-11-20 23:53:56 +0000 | [diff] [blame] | 46 | |
Evan Cheng | 2a3e08b | 2008-01-05 02:26:58 +0000 | [diff] [blame] | 47 | /// getPICJumpTableEntry - Returns the value of the jumptable entry for the |
| 48 | /// specific basic block. |
| 49 | virtual intptr_t getPICJumpTableEntry(intptr_t BB, intptr_t JTBase); |
| 50 | |
Chris Lattner | 89d64e2 | 2004-11-20 23:53:56 +0000 | [diff] [blame] | 51 | /// getLazyResolverFunction - Expose the lazy resolver to the JIT. |
| 52 | virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn); |
| 53 | |
| 54 | /// relocate - Before the JIT can run a block of code that has been emitted, |
| 55 | /// it must rewrite the code to contain the actual addresses of any |
| 56 | /// referenced global symbols. |
| 57 | virtual void relocate(void *Function, MachineRelocation *MR, |
Andrew Lenharth | 908bc86 | 2005-07-22 20:49:37 +0000 | [diff] [blame] | 58 | unsigned NumRelocs, unsigned char* GOTBase); |
Evan Cheng | 2a3e08b | 2008-01-05 02:26:58 +0000 | [diff] [blame] | 59 | |
| 60 | /// setPICBase / getPICBase - Getter / setter of PICBase, used to compute |
| 61 | /// PIC jumptable entry. |
| 62 | void setPICBase(intptr_t Base) { PICBase = Base; } |
| 63 | intptr_t getPICBase() const { return PICBase; } |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 64 | }; |
| 65 | } |
| 66 | |
| 67 | #endif |