blob: af5016def91702c779f5411b50a1ba2e55b46ab4 [file] [log] [blame]
Chris Lattner1e60a912003-12-20 01:22:19 +00001//===- X86JITInfo.h - X86 implementation of the JIT interface --*- C++ -*-===//
Misha Brukman0e0a7a452005-04-21 23:38:14 +00002//
Chris Lattner1e60a912003-12-20 01:22:19 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman0e0a7a452005-04-21 23:38:14 +00007//
Chris Lattner1e60a912003-12-20 01:22:19 +00008//===----------------------------------------------------------------------===//
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 {
Evan Chengc4c62572006-03-13 23:20:37 +000020 class X86TargetMachine;
Chris Lattner44827152003-12-28 09:47:19 +000021
Chris Lattner1e60a912003-12-20 01:22:19 +000022 class X86JITInfo : public TargetJITInfo {
Evan Chengc4c62572006-03-13 23:20:37 +000023 X86TargetMachine &TM;
Chris Lattner1e60a912003-12-20 01:22:19 +000024 public:
Evan Chengc4c62572006-03-13 23:20:37 +000025 X86JITInfo(X86TargetMachine &tm) : TM(tm) {useGOT = 0;}
Chris Lattner1e60a912003-12-20 01:22:19 +000026
Chris Lattner1e60a912003-12-20 01:22:19 +000027 /// 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 ///
Chris Lattnerf70e0c22003-12-28 21:23:38 +000032 virtual void replaceMachineCodeForFunction(void *Old, void *New);
Misha Brukman0e0a7a452005-04-21 23:38:14 +000033
Chris Lattner89d64e22004-11-20 23:53:56 +000034 /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a
35 /// small native function that simply calls the function at the specified
36 /// address.
37 virtual void *emitFunctionStub(void *Fn, MachineCodeEmitter &MCE);
38
39 /// getLazyResolverFunction - Expose the lazy resolver to the JIT.
40 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
41
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,
Andrew Lenharth908bc862005-07-22 20:49:37 +000046 unsigned NumRelocs, unsigned char* GOTBase);
Chris Lattner1e60a912003-12-20 01:22:19 +000047 };
48}
49
50#endif