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"
|
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-01-05 02:26:58 +00:00
|
|
|
intptr_t PICBase;
|
2003-12-20 01:22:19 +00:00
|
|
|
public:
|
2008-03-25 22:06:05 +00:00
|
|
|
explicit X86JITInfo(X86TargetMachine &tm) : TM(tm) {useGOT = 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
|
|
|
|
2008-01-04 10:46:51 +00:00
|
|
|
/// emitGlobalValueLazyPtr - Use the specified MachineCodeEmitter object to
|
2008-04-16 20:46:05 +00:00
|
|
|
/// emit a lazy pointer which contains the address of the specified ptr.
|
|
|
|
virtual void *emitGlobalValueLazyPtr(const GlobalValue* GV, void *ptr,
|
|
|
|
MachineCodeEmitter &MCE);
|
2008-01-04 10:46:51 +00:00
|
|
|
|
2004-11-20 23:53:56 +00:00
|
|
|
/// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a
|
|
|
|
/// 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,
|
|
|
|
MachineCodeEmitter &MCE);
|
2004-11-20 23:53:56 +00:00
|
|
|
|
2008-01-05 02:26:58 +00:00
|
|
|
/// getPICJumpTableEntry - Returns the value of the jumptable entry for the
|
|
|
|
/// specific basic block.
|
|
|
|
virtual intptr_t getPICJumpTableEntry(intptr_t BB, intptr_t JTBase);
|
|
|
|
|
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-01-05 02:26:58 +00:00
|
|
|
|
|
|
|
/// setPICBase / getPICBase - Getter / setter of PICBase, used to compute
|
|
|
|
/// PIC jumptable entry.
|
|
|
|
void setPICBase(intptr_t Base) { PICBase = Base; }
|
|
|
|
intptr_t getPICBase() const { return PICBase; }
|
2003-12-20 01:22:19 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|