Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 1 | //===- ARMJITInfo.h - ARM implementation of the JIT interface --*- C++ -*-===// |
| 2 | // |
| 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. |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the declaration of the ARMJITInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef ARMJITINFO_H |
| 15 | #define ARMJITINFO_H |
| 16 | |
| 17 | #include "llvm/Target/TargetJITInfo.h" |
| 18 | |
| 19 | namespace llvm { |
| 20 | class ARMTargetMachine; |
| 21 | |
| 22 | class ARMJITInfo : public TargetJITInfo { |
| 23 | ARMTargetMachine &TM; |
| 24 | public: |
Dan Gohman | 950a4c4 | 2008-03-25 22:06:05 +0000 | [diff] [blame] | 25 | explicit ARMJITInfo(ARMTargetMachine &tm) : TM(tm) {useGOT = 0;} |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 26 | |
| 27 | /// replaceMachineCodeForFunction - Make it so that calling the function |
| 28 | /// whose machine code is at OLD turns into a call to NEW, perhaps by |
| 29 | /// overwriting OLD with a branch to NEW. This is used for self-modifying |
| 30 | /// code. |
| 31 | /// |
| 32 | virtual void replaceMachineCodeForFunction(void *Old, void *New); |
| 33 | |
| 34 | /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a |
| 35 | /// small native function that simply calls the function at the specified |
| 36 | /// address. |
Nicolas Geoffray | 51cc3c1 | 2008-04-16 20:46:05 +0000 | [diff] [blame] | 37 | virtual void *emitFunctionStub(const Function* F, void *Fn, |
| 38 | MachineCodeEmitter &MCE); |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 39 | |
| 40 | /// getLazyResolverFunction - Expose the lazy resolver to the JIT. |
| 41 | virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn); |
| 42 | |
| 43 | /// relocate - Before the JIT can run a block of code that has been emitted, |
| 44 | /// it must rewrite the code to contain the actual addresses of any |
| 45 | /// referenced global symbols. |
| 46 | virtual void relocate(void *Function, MachineRelocation *MR, |
| 47 | unsigned NumRelocs, unsigned char* GOTBase); |
| 48 | }; |
| 49 | } |
| 50 | |
| 51 | #endif |