Move getPreferredAlignmentLog from AsmPrinter to TargetData
[oota-llvm.git] / lib / Target / X86 / X86JITInfo.h
1 //===- X86JITInfo.h - X86 implementation of the JIT interface  --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
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
19 namespace llvm {
20   class X86TargetMachine;
21   class IntrinsicLowering;
22
23   class X86JITInfo : public TargetJITInfo {
24     X86TargetMachine &TM;
25   public:
26     X86JITInfo(X86TargetMachine &tm) : TM(tm) {useGOT = 0;}
27
28     /// replaceMachineCodeForFunction - Make it so that calling the function
29     /// whose machine code is at OLD turns into a call to NEW, perhaps by
30     /// overwriting OLD with a branch to NEW.  This is used for self-modifying
31     /// code.
32     ///
33     virtual void replaceMachineCodeForFunction(void *Old, void *New);
34
35     /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a
36     /// small native function that simply calls the function at the specified
37     /// address.
38     virtual void *emitFunctionStub(void *Fn, MachineCodeEmitter &MCE);
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