blob: c381433bf357821fe2f66c96beb4baa4e296baf6 [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
Nicolas Geoffray2b483b52008-04-16 20:46:05 +000017#include "llvm/Function.h"
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000018#include "llvm/CodeGen/JITCodeEmitter.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019#include "llvm/Target/TargetJITInfo.h"
20
21namespace llvm {
22 class X86TargetMachine;
Evan Cheng5746a942009-09-03 04:37:05 +000023 class X86Subtarget;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024
25 class X86JITInfo : public TargetJITInfo {
26 X86TargetMachine &TM;
Evan Cheng5746a942009-09-03 04:37:05 +000027 const X86Subtarget *Subtarget;
Evan Cheng6e561c72008-12-10 02:32:19 +000028 uintptr_t PICBase;
Nicolas Geoffray46fa1532008-10-25 15:41:43 +000029 char* TLSOffset;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030 public:
Evan Cheng5746a942009-09-03 04:37:05 +000031 explicit X86JITInfo(X86TargetMachine &tm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032
33 /// replaceMachineCodeForFunction - Make it so that calling the function
34 /// whose machine code is at OLD turns into a call to NEW, perhaps by
35 /// overwriting OLD with a branch to NEW. This is used for self-modifying
36 /// code.
37 ///
38 virtual void replaceMachineCodeForFunction(void *Old, void *New);
39
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000040 /// emitGlobalValueIndirectSym - Use the specified JITCodeEmitter object
Evan Cheng8af22c42008-11-10 01:08:07 +000041 /// to emit an indirect symbol which contains the address of the specified
42 /// ptr.
43 virtual void *emitGlobalValueIndirectSym(const GlobalValue* GV, void *ptr,
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000044 JITCodeEmitter &JCE);
Evan Cheng28e7e162008-01-04 10:46:51 +000045
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000046 /// emitFunctionStub - Use the specified JITCodeEmitter object to emit a
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047 /// small native function that simply calls the function at the specified
48 /// address.
Nicolas Geoffray2b483b52008-04-16 20:46:05 +000049 virtual void *emitFunctionStub(const Function* F, void *Fn,
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000050 JITCodeEmitter &JCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000052 /// emitFunctionStubAtAddr - Use the specified JITCodeEmitter object to
Nate Begeman7b1a8472009-02-18 08:31:02 +000053 /// emit a small native function that simply calls Fn. Emit the stub into
54 /// the supplied buffer.
55 virtual void emitFunctionStubAtAddr(const Function* F, void *Fn,
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000056 void *Buffer, JITCodeEmitter &JCE);
Nate Begeman7b1a8472009-02-18 08:31:02 +000057
Evan Chengaf743252008-01-05 02:26:58 +000058 /// getPICJumpTableEntry - Returns the value of the jumptable entry for the
59 /// specific basic block.
Evan Cheng6e561c72008-12-10 02:32:19 +000060 virtual uintptr_t getPICJumpTableEntry(uintptr_t BB, uintptr_t JTBase);
Evan Chengaf743252008-01-05 02:26:58 +000061
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062 /// getLazyResolverFunction - Expose the lazy resolver to the JIT.
63 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
64
65 /// relocate - Before the JIT can run a block of code that has been emitted,
66 /// it must rewrite the code to contain the actual addresses of any
67 /// referenced global symbols.
68 virtual void relocate(void *Function, MachineRelocation *MR,
69 unsigned NumRelocs, unsigned char* GOTBase);
Nicolas Geoffray46fa1532008-10-25 15:41:43 +000070
71 /// allocateThreadLocalMemory - Each target has its own way of
72 /// handling thread local variables. This method returns a value only
73 /// meaningful to the target.
74 virtual char* allocateThreadLocalMemory(size_t size);
Evan Chengaf743252008-01-05 02:26:58 +000075
76 /// setPICBase / getPICBase - Getter / setter of PICBase, used to compute
77 /// PIC jumptable entry.
Evan Cheng6e561c72008-12-10 02:32:19 +000078 void setPICBase(uintptr_t Base) { PICBase = Base; }
79 uintptr_t getPICBase() const { return PICBase; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080 };
81}
82
83#endif