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
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and 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
|
|
|
|
|
|
|
|
#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
|
|
|
class IntrinsicLowering;
|
|
|
|
|
2003-12-20 01:22:19 +00:00
|
|
|
class X86JITInfo : public TargetJITInfo {
|
2006-03-13 23:20:37 +00:00
|
|
|
X86TargetMachine &TM;
|
2003-12-20 01:22:19 +00:00
|
|
|
public:
|
2006-03-13 23:20:37 +00:00
|
|
|
X86JITInfo(X86TargetMachine &tm) : TM(tm) {useGOT = 0;}
|
2003-12-20 01:22:19 +00:00
|
|
|
|
|
|
|
/// addPassesToJITCompile - Add passes to the specified pass manager to
|
|
|
|
/// implement a fast dynamic compiler for this target. Return true if this
|
|
|
|
/// is not supported for this target.
|
|
|
|
///
|
|
|
|
virtual void addPassesToJITCompile(FunctionPassManager &PM);
|
2005-04-21 23:38:14 +00:00
|
|
|
|
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
|
|
|
|
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.
|
|
|
|
virtual void *emitFunctionStub(void *Fn, MachineCodeEmitter &MCE);
|
|
|
|
|
|
|
|
/// 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);
|
2003-12-20 01:22:19 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|