blob: 6b8d197846b2e81a48eb6a2a94f492d22f27b4bd [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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/Target/TargetJITInfo.h"
19
20namespace llvm {
21 class X86TargetMachine;
22
23 class X86JITInfo : public TargetJITInfo {
24 X86TargetMachine &TM;
Evan Chengaf743252008-01-05 02:26:58 +000025 intptr_t PICBase;
Nicolas Geoffray46fa1532008-10-25 15:41:43 +000026 char* TLSOffset;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027 public:
Nicolas Geoffray46fa1532008-10-25 15:41:43 +000028 explicit X86JITInfo(X86TargetMachine &tm) : TM(tm) {
29 useGOT = 0;
30 TLSOffset = 0;
31 }
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
Evan Cheng28e7e162008-01-04 10:46:51 +000040 /// emitGlobalValueLazyPtr - Use the specified MachineCodeEmitter object to
Nicolas Geoffray2b483b52008-04-16 20:46:05 +000041 /// emit a lazy pointer which contains the address of the specified ptr.
42 virtual void *emitGlobalValueLazyPtr(const GlobalValue* GV, void *ptr,
43 MachineCodeEmitter &MCE);
Evan Cheng28e7e162008-01-04 10:46:51 +000044
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045 /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a
46 /// small native function that simply calls the function at the specified
47 /// address.
Nicolas Geoffray2b483b52008-04-16 20:46:05 +000048 virtual void *emitFunctionStub(const Function* F, void *Fn,
49 MachineCodeEmitter &MCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050
Evan Chengaf743252008-01-05 02:26:58 +000051 /// getPICJumpTableEntry - Returns the value of the jumptable entry for the
52 /// specific basic block.
53 virtual intptr_t getPICJumpTableEntry(intptr_t BB, intptr_t JTBase);
54
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055 /// getLazyResolverFunction - Expose the lazy resolver to the JIT.
56 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
57
58 /// relocate - Before the JIT can run a block of code that has been emitted,
59 /// it must rewrite the code to contain the actual addresses of any
60 /// referenced global symbols.
61 virtual void relocate(void *Function, MachineRelocation *MR,
62 unsigned NumRelocs, unsigned char* GOTBase);
Nicolas Geoffray46fa1532008-10-25 15:41:43 +000063
64 /// allocateThreadLocalMemory - Each target has its own way of
65 /// handling thread local variables. This method returns a value only
66 /// meaningful to the target.
67 virtual char* allocateThreadLocalMemory(size_t size);
Evan Chengaf743252008-01-05 02:26:58 +000068
69 /// setPICBase / getPICBase - Getter / setter of PICBase, used to compute
70 /// PIC jumptable entry.
71 void setPICBase(intptr_t Base) { PICBase = Base; }
72 intptr_t getPICBase() const { return PICBase; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073 };
74}
75
76#endif