2003-12-20 01:22:19 +00:00
|
|
|
//===- X86JITInfo.h - X86 implementation of the JIT interface --*- C++ -*-===//
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-12-20 01:22:19 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-12-20 01:22:19 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the X86 implementation of the TargetJITInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86JITINFO_H
|
|
|
|
#define X86JITINFO_H
|
|
|
|
|
2008-04-16 20:46:05 +00:00
|
|
|
#include "llvm/Function.h"
|
2009-05-30 20:51:52 +00:00
|
|
|
#include "llvm/CodeGen/JITCodeEmitter.h"
|
2003-12-20 01:22:19 +00:00
|
|
|
#include "llvm/Target/TargetJITInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2006-03-13 23:20:37 +00:00
|
|
|
class X86TargetMachine;
|
2003-12-28 09:47:19 +00:00
|
|
|
|
2003-12-20 01:22:19 +00:00
|
|
|
class X86JITInfo : public TargetJITInfo {
|
2006-03-13 23:20:37 +00:00
|
|
|
X86TargetMachine &TM;
|
2008-12-10 02:32:19 +00:00
|
|
|
uintptr_t PICBase;
|
2008-10-25 15:41:43 +00:00
|
|
|
char* TLSOffset;
|
2003-12-20 01:22:19 +00:00
|
|
|
public:
|
2008-10-25 15:41:43 +00:00
|
|
|
explicit X86JITInfo(X86TargetMachine &tm) : TM(tm) {
|
|
|
|
useGOT = 0;
|
|
|
|
TLSOffset = 0;
|
|
|
|
}
|
2003-12-20 01:22:19 +00:00
|
|
|
|
|
|
|
/// replaceMachineCodeForFunction - Make it so that calling the function
|
|
|
|
/// whose machine code is at OLD turns into a call to NEW, perhaps by
|
|
|
|
/// overwriting OLD with a branch to NEW. This is used for self-modifying
|
|
|
|
/// code.
|
|
|
|
///
|
2003-12-28 21:23:38 +00:00
|
|
|
virtual void replaceMachineCodeForFunction(void *Old, void *New);
|
2005-04-21 23:38:14 +00:00
|
|
|
|
2009-05-30 20:51:52 +00:00
|
|
|
/// emitGlobalValueIndirectSym - Use the specified JITCodeEmitter object
|
2008-11-10 01:08:07 +00:00
|
|
|
/// to emit an indirect symbol which contains the address of the specified
|
|
|
|
/// ptr.
|
|
|
|
virtual void *emitGlobalValueIndirectSym(const GlobalValue* GV, void *ptr,
|
2009-05-30 20:51:52 +00:00
|
|
|
JITCodeEmitter &JCE);
|
2008-01-04 10:46:51 +00:00
|
|
|
|
2009-05-30 20:51:52 +00:00
|
|
|
/// emitFunctionStub - Use the specified JITCodeEmitter object to emit a
|
2004-11-20 23:53:56 +00:00
|
|
|
/// small native function that simply calls the function at the specified
|
|
|
|
/// address.
|
2008-04-16 20:46:05 +00:00
|
|
|
virtual void *emitFunctionStub(const Function* F, void *Fn,
|
2009-05-30 20:51:52 +00:00
|
|
|
JITCodeEmitter &JCE);
|
2004-11-20 23:53:56 +00:00
|
|
|
|
2009-05-30 20:51:52 +00:00
|
|
|
/// emitFunctionStubAtAddr - Use the specified JITCodeEmitter object to
|
2009-02-18 08:31:02 +00:00
|
|
|
/// emit a small native function that simply calls Fn. Emit the stub into
|
|
|
|
/// the supplied buffer.
|
|
|
|
virtual void emitFunctionStubAtAddr(const Function* F, void *Fn,
|
2009-05-30 20:51:52 +00:00
|
|
|
void *Buffer, JITCodeEmitter &JCE);
|
2009-02-18 08:31:02 +00:00
|
|
|
|
2008-01-05 02:26:58 +00:00
|
|
|
/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
|
|
|
|
/// specific basic block.
|
2008-12-10 02:32:19 +00:00
|
|
|
virtual uintptr_t getPICJumpTableEntry(uintptr_t BB, uintptr_t JTBase);
|
2008-01-05 02:26:58 +00:00
|
|
|
|
2004-11-20 23:53:56 +00:00
|
|
|
/// getLazyResolverFunction - Expose the lazy resolver to the JIT.
|
|
|
|
virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
|
|
|
|
|
|
|
|
/// relocate - Before the JIT can run a block of code that has been emitted,
|
|
|
|
/// it must rewrite the code to contain the actual addresses of any
|
|
|
|
/// referenced global symbols.
|
|
|
|
virtual void relocate(void *Function, MachineRelocation *MR,
|
2005-07-22 20:49:37 +00:00
|
|
|
unsigned NumRelocs, unsigned char* GOTBase);
|
2008-10-25 15:41:43 +00:00
|
|
|
|
|
|
|
/// allocateThreadLocalMemory - Each target has its own way of
|
|
|
|
/// handling thread local variables. This method returns a value only
|
|
|
|
/// meaningful to the target.
|
|
|
|
virtual char* allocateThreadLocalMemory(size_t size);
|
2008-01-05 02:26:58 +00:00
|
|
|
|
|
|
|
/// setPICBase / getPICBase - Getter / setter of PICBase, used to compute
|
|
|
|
/// PIC jumptable entry.
|
2008-12-10 02:32:19 +00:00
|
|
|
void setPICBase(uintptr_t Base) { PICBase = Base; }
|
|
|
|
uintptr_t getPICBase() const { return PICBase; }
|
2003-12-20 01:22:19 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|