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" |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame^] | 18 | #include "llvm/CodeGen/JITCodeEmitter.h" |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetJITInfo.h" |
| 20 | |
| 21 | namespace llvm { |
Evan Cheng | c4c6257 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 22 | class X86TargetMachine; |
Chris Lattner | 4482715 | 2003-12-28 09:47:19 +0000 | [diff] [blame] | 23 | |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 24 | class X86JITInfo : public TargetJITInfo { |
Evan Cheng | c4c6257 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 25 | X86TargetMachine &TM; |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame] | 26 | uintptr_t PICBase; |
Nicolas Geoffray | 46fa139 | 2008-10-25 15:41:43 +0000 | [diff] [blame] | 27 | char* TLSOffset; |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 28 | public: |
Nicolas Geoffray | 46fa139 | 2008-10-25 15:41:43 +0000 | [diff] [blame] | 29 | explicit X86JITInfo(X86TargetMachine &tm) : TM(tm) { |
| 30 | useGOT = 0; |
| 31 | TLSOffset = 0; |
| 32 | } |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 33 | |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 34 | /// replaceMachineCodeForFunction - Make it so that calling the function |
| 35 | /// whose machine code is at OLD turns into a call to NEW, perhaps by |
| 36 | /// overwriting OLD with a branch to NEW. This is used for self-modifying |
| 37 | /// code. |
| 38 | /// |
Chris Lattner | f70e0c2 | 2003-12-28 21:23:38 +0000 | [diff] [blame] | 39 | virtual void replaceMachineCodeForFunction(void *Old, void *New); |
Misha Brukman | 0e0a7a45 | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 40 | |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame^] | 41 | /// emitGlobalValueIndirectSym - Use the specified JITCodeEmitter object |
Evan Cheng | 9ed2f80 | 2008-11-10 01:08:07 +0000 | [diff] [blame] | 42 | /// to emit an indirect symbol which contains the address of the specified |
| 43 | /// ptr. |
| 44 | virtual void *emitGlobalValueIndirectSym(const GlobalValue* GV, void *ptr, |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame^] | 45 | JITCodeEmitter &JCE); |
Evan Cheng | be8c03f | 2008-01-04 10:46:51 +0000 | [diff] [blame] | 46 | |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame^] | 47 | /// emitFunctionStub - Use the specified JITCodeEmitter object to emit a |
Chris Lattner | 89d64e2 | 2004-11-20 23:53:56 +0000 | [diff] [blame] | 48 | /// small native function that simply calls the function at the specified |
| 49 | /// address. |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 50 | virtual void *emitFunctionStub(const Function* F, void *Fn, |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame^] | 51 | JITCodeEmitter &JCE); |
Chris Lattner | 89d64e2 | 2004-11-20 23:53:56 +0000 | [diff] [blame] | 52 | |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame^] | 53 | /// emitFunctionStubAtAddr - Use the specified JITCodeEmitter object to |
Nate Begeman | d6b7a24 | 2009-02-18 08:31:02 +0000 | [diff] [blame] | 54 | /// emit a small native function that simply calls Fn. Emit the stub into |
| 55 | /// the supplied buffer. |
| 56 | virtual void emitFunctionStubAtAddr(const Function* F, void *Fn, |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame^] | 57 | void *Buffer, JITCodeEmitter &JCE); |
Nate Begeman | d6b7a24 | 2009-02-18 08:31:02 +0000 | [diff] [blame] | 58 | |
Evan Cheng | 2a3e08b | 2008-01-05 02:26:58 +0000 | [diff] [blame] | 59 | /// getPICJumpTableEntry - Returns the value of the jumptable entry for the |
| 60 | /// specific basic block. |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame] | 61 | virtual uintptr_t getPICJumpTableEntry(uintptr_t BB, uintptr_t JTBase); |
Evan Cheng | 2a3e08b | 2008-01-05 02:26:58 +0000 | [diff] [blame] | 62 | |
Chris Lattner | 89d64e2 | 2004-11-20 23:53:56 +0000 | [diff] [blame] | 63 | /// getLazyResolverFunction - Expose the lazy resolver to the JIT. |
| 64 | virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn); |
| 65 | |
| 66 | /// relocate - Before the JIT can run a block of code that has been emitted, |
| 67 | /// it must rewrite the code to contain the actual addresses of any |
| 68 | /// referenced global symbols. |
| 69 | virtual void relocate(void *Function, MachineRelocation *MR, |
Andrew Lenharth | 908bc86 | 2005-07-22 20:49:37 +0000 | [diff] [blame] | 70 | unsigned NumRelocs, unsigned char* GOTBase); |
Nicolas Geoffray | 46fa139 | 2008-10-25 15:41:43 +0000 | [diff] [blame] | 71 | |
| 72 | /// allocateThreadLocalMemory - Each target has its own way of |
| 73 | /// handling thread local variables. This method returns a value only |
| 74 | /// meaningful to the target. |
| 75 | virtual char* allocateThreadLocalMemory(size_t size); |
Evan Cheng | 2a3e08b | 2008-01-05 02:26:58 +0000 | [diff] [blame] | 76 | |
| 77 | /// setPICBase / getPICBase - Getter / setter of PICBase, used to compute |
| 78 | /// PIC jumptable entry. |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame] | 79 | void setPICBase(uintptr_t Base) { PICBase = Base; } |
| 80 | uintptr_t getPICBase() const { return PICBase; } |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 81 | }; |
| 82 | } |
| 83 | |
| 84 | #endif |