blob: 6a4e2148a5aacae601c2ae60d8cd16da1fb5daea [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
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +000017#include "llvm/Function.h"
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000018#include "llvm/CodeGen/JITCodeEmitter.h"
Chris Lattner1e60a912003-12-20 01:22:19 +000019#include "llvm/Target/TargetJITInfo.h"
20
21namespace llvm {
Evan Chengc4c62572006-03-13 23:20:37 +000022 class X86TargetMachine;
Chris Lattner44827152003-12-28 09:47:19 +000023
Chris Lattner1e60a912003-12-20 01:22:19 +000024 class X86JITInfo : public TargetJITInfo {
Evan Chengc4c62572006-03-13 23:20:37 +000025 X86TargetMachine &TM;
Evan Cheng5788d1a2008-12-10 02:32:19 +000026 uintptr_t PICBase;
Nicolas Geoffray46fa1392008-10-25 15:41:43 +000027 char* TLSOffset;
Chris Lattner1e60a912003-12-20 01:22:19 +000028 public:
Nicolas Geoffray46fa1392008-10-25 15:41:43 +000029 explicit X86JITInfo(X86TargetMachine &tm) : TM(tm) {
30 useGOT = 0;
31 TLSOffset = 0;
32 }
Chris Lattner1e60a912003-12-20 01:22:19 +000033
Chris Lattner1e60a912003-12-20 01:22:19 +000034 /// replaceMachineCodeForFunction - Make it so that calling the function
35 /// whose machine code is at OLD turns into a call to NEW, perhaps by
36 /// overwriting OLD with a branch to NEW. This is used for self-modifying
37 /// code.
38 ///
Chris Lattnerf70e0c22003-12-28 21:23:38 +000039 virtual void replaceMachineCodeForFunction(void *Old, void *New);
Misha Brukman0e0a7a452005-04-21 23:38:14 +000040
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000041 /// emitGlobalValueIndirectSym - Use the specified JITCodeEmitter object
Evan Cheng9ed2f802008-11-10 01:08:07 +000042 /// to emit an indirect symbol which contains the address of the specified
43 /// ptr.
44 virtual void *emitGlobalValueIndirectSym(const GlobalValue* GV, void *ptr,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000045 JITCodeEmitter &JCE);
Evan Chengbe8c03f2008-01-04 10:46:51 +000046
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000047 /// emitFunctionStub - Use the specified JITCodeEmitter object to emit a
Chris Lattner89d64e22004-11-20 23:53:56 +000048 /// small native function that simply calls the function at the specified
49 /// address.
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +000050 virtual void *emitFunctionStub(const Function* F, void *Fn,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000051 JITCodeEmitter &JCE);
Chris Lattner89d64e22004-11-20 23:53:56 +000052
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000053 /// emitFunctionStubAtAddr - Use the specified JITCodeEmitter object to
Nate Begemand6b7a242009-02-18 08:31:02 +000054 /// emit a small native function that simply calls Fn. Emit the stub into
55 /// the supplied buffer.
56 virtual void emitFunctionStubAtAddr(const Function* F, void *Fn,
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000057 void *Buffer, JITCodeEmitter &JCE);
Nate Begemand6b7a242009-02-18 08:31:02 +000058
Evan Cheng2a3e08b2008-01-05 02:26:58 +000059 /// getPICJumpTableEntry - Returns the value of the jumptable entry for the
60 /// specific basic block.
Evan Cheng5788d1a2008-12-10 02:32:19 +000061 virtual uintptr_t getPICJumpTableEntry(uintptr_t BB, uintptr_t JTBase);
Evan Cheng2a3e08b2008-01-05 02:26:58 +000062
Chris Lattner89d64e22004-11-20 23:53:56 +000063 /// getLazyResolverFunction - Expose the lazy resolver to the JIT.
64 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
65
66 /// relocate - Before the JIT can run a block of code that has been emitted,
67 /// it must rewrite the code to contain the actual addresses of any
68 /// referenced global symbols.
69 virtual void relocate(void *Function, MachineRelocation *MR,
Andrew Lenharth908bc862005-07-22 20:49:37 +000070 unsigned NumRelocs, unsigned char* GOTBase);
Nicolas Geoffray46fa1392008-10-25 15:41:43 +000071
72 /// allocateThreadLocalMemory - Each target has its own way of
73 /// handling thread local variables. This method returns a value only
74 /// meaningful to the target.
75 virtual char* allocateThreadLocalMemory(size_t size);
Evan Cheng2a3e08b2008-01-05 02:26:58 +000076
77 /// setPICBase / getPICBase - Getter / setter of PICBase, used to compute
78 /// PIC jumptable entry.
Evan Cheng5788d1a2008-12-10 02:32:19 +000079 void setPICBase(uintptr_t Base) { PICBase = Base; }
80 uintptr_t getPICBase() const { return PICBase; }
Chris Lattner1e60a912003-12-20 01:22:19 +000081 };
82}
83
84#endif