blob: f1639040c422550afc95c99e3474c4adbc3ea8c9 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- X86JITInfo.h - X86 implementation of the JIT interface --*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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
17#include "llvm/Target/TargetJITInfo.h"
18
19namespace llvm {
20 class X86TargetMachine;
21
22 class X86JITInfo : public TargetJITInfo {
23 X86TargetMachine &TM;
24 public:
25 X86JITInfo(X86TargetMachine &tm) : TM(tm) {useGOT = 0;}
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
Evan Cheng28e7e162008-01-04 10:46:51 +000034 /// emitGlobalValueLazyPtr - Use the specified MachineCodeEmitter object to
35 /// emit a lazy pointer which contains the address of the specified GV.
36 virtual void *emitGlobalValueLazyPtr(void *GV, MachineCodeEmitter &MCE);
37
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038 /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a
39 /// small native function that simply calls the function at the specified
40 /// address.
41 virtual void *emitFunctionStub(void *Fn, MachineCodeEmitter &MCE);
42
43 /// getLazyResolverFunction - Expose the lazy resolver to the JIT.
44 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
45
46 /// relocate - Before the JIT can run a block of code that has been emitted,
47 /// it must rewrite the code to contain the actual addresses of any
48 /// referenced global symbols.
49 virtual void relocate(void *Function, MachineRelocation *MR,
50 unsigned NumRelocs, unsigned char* GOTBase);
51 };
52}
53
54#endif