1 //===- ARMJITInfo.h - ARM implementation of the JIT interface --*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the declaration of the ARMJITInfo class.
12 //===----------------------------------------------------------------------===//
17 #include "llvm/Target/TargetJITInfo.h"
20 class ARMTargetMachine
;
22 class ARMJITInfo
: public TargetJITInfo
{
25 ARMJITInfo(ARMTargetMachine
&tm
) : TM(tm
) {useGOT
= 0;}
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
32 virtual void replaceMachineCodeForFunction(void *Old
, void *New
);
34 /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a
35 /// small native function that simply calls the function at the specified
37 virtual void *emitFunctionStub(void *Fn
, MachineCodeEmitter
&MCE
);
39 /// getLazyResolverFunction - Expose the lazy resolver to the JIT.
40 virtual LazyResolverFn
getLazyResolverFunction(JITCompilerFn
);
42 /// relocate - Before the JIT can run a block of code that has been emitted,
43 /// it must rewrite the code to contain the actual addresses of any
44 /// referenced global symbols.
45 virtual void relocate(void *Function
, MachineRelocation
*MR
,
46 unsigned NumRelocs
, unsigned char* GOTBase
);