aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-23 05:57:57 +0000
committerChris Lattner <sabre@nondot.org>2004-11-23 05:57:57 +0000
commit163393732a9a781b6b057c39ee6b1e0c96b9d199 (patch)
tree5f5dae0b608ddc8bb0b4e77c7f62b2b3f4f106d9
parent42edd31209a14710196262c728d4863e19a1c5a9 (diff)
Implement all of the methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18142 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/PowerPC/PPC32JITInfo.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPC32JITInfo.h b/lib/Target/PowerPC/PPC32JITInfo.h
index 5c82d21a69..5fa0b58b4c 100644
--- a/lib/Target/PowerPC/PPC32JITInfo.h
+++ b/lib/Target/PowerPC/PPC32JITInfo.h
@@ -24,6 +24,11 @@ namespace llvm {
public:
PPC32JITInfo(TargetMachine &tm) : PowerPCJITInfo(tm) {}
+ virtual void *emitFunctionStub(void *Fn, MachineCodeEmitter &MCE);
+ virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
+ virtual void relocate(void *Function, MachineRelocation *MR,
+ unsigned NumRelocs);
+
/// replaceMachineCodeForFunction - Make it so that calling the function
/// whose machine code is at OLD turns into a call to NEW, perhaps by
/// overwriting OLD with a branch to NEW. This is used for self-modifying