2003-12-20 09:46:27 +08:00
|
|
|
//===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===//
|
2005-04-22 06:55:34 +08:00
|
|
|
//
|
2003-10-21 23:17:13 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 06:55:34 +08:00
|
|
|
//
|
2003-10-21 23:17:13 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-24 08:01:22 +08:00
|
|
|
//
|
2003-12-20 09:46:27 +08:00
|
|
|
// This file defines the top-level JIT data structure.
|
2002-12-24 08:01:22 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-12-20 09:46:27 +08:00
|
|
|
#ifndef JIT_H
|
|
|
|
#define JIT_H
|
2002-12-24 08:01:22 +08:00
|
|
|
|
2003-09-06 03:39:22 +08:00
|
|
|
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
2002-12-24 08:01:22 +08:00
|
|
|
#include "llvm/PassManager.h"
|
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
namespace llvm {
|
|
|
|
|
2002-12-24 08:01:22 +08:00
|
|
|
class Function;
|
2009-06-25 10:04:04 +08:00
|
|
|
class JITEvent_EmittedFunctionDetails;
|
2002-12-24 08:01:22 +08:00
|
|
|
class MachineCodeEmitter;
|
2009-05-19 05:06:40 +08:00
|
|
|
class MachineCodeInfo;
|
2009-06-25 10:04:04 +08:00
|
|
|
class TargetJITInfo;
|
|
|
|
class TargetMachine;
|
2002-12-24 08:01:22 +08:00
|
|
|
|
2005-07-12 23:51:55 +08:00
|
|
|
class JITState {
|
|
|
|
private:
|
2003-08-14 02:16:50 +08:00
|
|
|
FunctionPassManager PM; // Passes to compile a function
|
2009-02-18 16:31:02 +08:00
|
|
|
ModuleProvider *MP; // ModuleProvider used to create the PM
|
2002-12-24 08:01:22 +08:00
|
|
|
|
2009-02-18 16:31:02 +08:00
|
|
|
/// PendingFunctions - Functions which have not been code generated yet, but
|
|
|
|
/// were called from a function being code generated.
|
|
|
|
std::vector<Function*> PendingFunctions;
|
2003-12-20 11:36:47 +08:00
|
|
|
|
2005-07-12 23:51:55 +08:00
|
|
|
public:
|
2009-02-18 16:31:02 +08:00
|
|
|
explicit JITState(ModuleProvider *MP) : PM(MP), MP(MP) {}
|
2005-07-12 23:51:55 +08:00
|
|
|
|
2007-04-21 06:40:40 +08:00
|
|
|
FunctionPassManager &getPM(const MutexGuard &L) {
|
2005-07-12 23:51:55 +08:00
|
|
|
return PM;
|
|
|
|
}
|
2009-02-18 16:31:02 +08:00
|
|
|
|
|
|
|
ModuleProvider *getMP() const { return MP; }
|
|
|
|
std::vector<Function*> &getPendingFunctions(const MutexGuard &L) {
|
|
|
|
return PendingFunctions;
|
2005-07-12 23:51:55 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class JIT : public ExecutionEngine {
|
|
|
|
TargetMachine &TM; // The current target we are compiling to
|
|
|
|
TargetJITInfo &TJI; // The JITInfo for the target we are compiling to
|
2009-06-02 03:57:37 +08:00
|
|
|
JITCodeEmitter *JCE; // JCE object
|
2009-06-25 10:04:04 +08:00
|
|
|
std::vector<JITEventListener*> EventListeners;
|
2005-07-12 23:51:55 +08:00
|
|
|
|
2008-05-22 00:34:48 +08:00
|
|
|
JITState *jitstate;
|
2005-07-12 23:51:55 +08:00
|
|
|
|
2007-12-06 09:34:04 +08:00
|
|
|
JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji,
|
2009-04-30 07:29:43 +08:00
|
|
|
JITMemoryManager *JMM, CodeGenOpt::Level OptLevel);
|
2002-12-24 08:01:22 +08:00
|
|
|
public:
|
2003-12-20 09:46:27 +08:00
|
|
|
~JIT();
|
2002-12-24 08:01:22 +08:00
|
|
|
|
2006-03-22 14:07:50 +08:00
|
|
|
static void Register() {
|
|
|
|
JITCtor = create;
|
|
|
|
}
|
|
|
|
|
2004-11-20 11:11:07 +08:00
|
|
|
/// getJITInfo - Return the target JIT information structure.
|
|
|
|
///
|
|
|
|
TargetJITInfo &getJITInfo() const { return TJI; }
|
|
|
|
|
2003-09-04 04:34:19 +08:00
|
|
|
/// create - Create an return a new JIT compiler if there is one available
|
2006-03-23 13:22:51 +08:00
|
|
|
/// for the current target. Otherwise, return null.
|
2003-09-04 04:34:19 +08:00
|
|
|
///
|
2008-08-08 16:11:34 +08:00
|
|
|
static ExecutionEngine *create(ModuleProvider *MP, std::string *Err,
|
2009-04-30 07:29:43 +08:00
|
|
|
CodeGenOpt::Level OptLevel =
|
|
|
|
CodeGenOpt::Default) {
|
2009-04-29 08:32:19 +08:00
|
|
|
return createJIT(MP, Err, 0, OptLevel);
|
2007-12-06 09:34:04 +08:00
|
|
|
}
|
2003-09-04 04:34:19 +08:00
|
|
|
|
2008-05-22 00:34:48 +08:00
|
|
|
virtual void addModuleProvider(ModuleProvider *MP);
|
2009-01-24 03:27:28 +08:00
|
|
|
|
|
|
|
/// removeModuleProvider - Remove a ModuleProvider from the list of modules.
|
|
|
|
/// Relases the Module from the ModuleProvider, materializing it in the
|
|
|
|
/// process, and returns the materialized Module.
|
2008-05-22 00:34:48 +08:00
|
|
|
virtual Module *removeModuleProvider(ModuleProvider *MP,
|
|
|
|
std::string *ErrInfo = 0);
|
|
|
|
|
2009-01-24 03:27:28 +08:00
|
|
|
/// deleteModuleProvider - Remove a ModuleProvider from the list of modules,
|
|
|
|
/// and deletes the ModuleProvider and owned Module. Avoids materializing
|
|
|
|
/// the underlying module.
|
|
|
|
virtual void deleteModuleProvider(ModuleProvider *P,std::string *ErrInfo = 0);
|
|
|
|
|
2008-07-03 08:51:05 +08:00
|
|
|
/// runFunction - Start execution with the specified function and arguments.
|
2002-12-24 08:01:22 +08:00
|
|
|
///
|
2003-12-26 14:13:47 +08:00
|
|
|
virtual GenericValue runFunction(Function *F,
|
|
|
|
const std::vector<GenericValue> &ArgValues);
|
2002-12-24 08:01:22 +08:00
|
|
|
|
2003-01-13 09:00:48 +08:00
|
|
|
/// getPointerToNamedFunction - This method returns the address of the
|
|
|
|
/// specified function by using the dlsym function call. As such it is only
|
|
|
|
/// useful for resolving library symbols, not code generated symbols.
|
|
|
|
///
|
2009-01-05 13:32:42 +08:00
|
|
|
/// If AbortOnFailure is false and no function with the given name is
|
|
|
|
/// found, this function silently returns a null pointer. Otherwise,
|
|
|
|
/// it prints a message to stderr and aborts.
|
|
|
|
///
|
|
|
|
void *getPointerToNamedFunction(const std::string &Name,
|
|
|
|
bool AbortOnFailure = true);
|
2003-01-13 09:00:48 +08:00
|
|
|
|
2003-05-09 05:34:11 +08:00
|
|
|
// CompilationCallback - Invoked the first time that a call site is found,
|
|
|
|
// which causes lazy compilation of the target function.
|
2005-04-22 06:55:34 +08:00
|
|
|
//
|
2003-05-09 05:34:11 +08:00
|
|
|
static void CompilationCallback();
|
2003-05-14 21:53:40 +08:00
|
|
|
|
2003-06-02 07:24:36 +08:00
|
|
|
/// getPointerToFunction - This returns the address of the specified function,
|
|
|
|
/// compiling it if necessary.
|
2003-10-18 02:27:12 +08:00
|
|
|
///
|
2003-08-14 02:16:50 +08:00
|
|
|
void *getPointerToFunction(Function *F);
|
2003-06-02 07:24:36 +08:00
|
|
|
|
2003-12-20 11:36:47 +08:00
|
|
|
/// getOrEmitGlobalVariable - Return the address of the specified global
|
|
|
|
/// variable, possibly emitting it to memory if needed. This is used by the
|
|
|
|
/// Emitter.
|
|
|
|
void *getOrEmitGlobalVariable(const GlobalVariable *GV);
|
|
|
|
|
2003-12-12 15:12:02 +08:00
|
|
|
/// getPointerToFunctionOrStub - If the specified function has been
|
|
|
|
/// code-gen'd, return a pointer to the function. If not, compile it, or use
|
|
|
|
/// a stub to implement lazy compilation if available.
|
|
|
|
///
|
|
|
|
void *getPointerToFunctionOrStub(Function *F);
|
|
|
|
|
2003-10-18 02:27:12 +08:00
|
|
|
/// recompileAndRelinkFunction - This method is used to force a function
|
|
|
|
/// which has already been compiled, to be compiled again, possibly
|
|
|
|
/// after it has been modified. Then the entry to the old copy is overwritten
|
|
|
|
/// with a branch to the new copy. If there was no old copy, this acts
|
2003-12-20 09:46:27 +08:00
|
|
|
/// just like JIT::getPointerToFunction().
|
2003-10-18 02:27:12 +08:00
|
|
|
///
|
|
|
|
void *recompileAndRelinkFunction(Function *F);
|
|
|
|
|
2004-11-08 07:58:46 +08:00
|
|
|
/// freeMachineCodeForFunction - deallocate memory used to code-generate this
|
|
|
|
/// Function.
|
|
|
|
///
|
|
|
|
void freeMachineCodeForFunction(Function *F);
|
|
|
|
|
2009-02-18 16:31:02 +08:00
|
|
|
/// addPendingFunction - while jitting non-lazily, a called but non-codegen'd
|
|
|
|
/// function was encountered. Add it to a pending list to be processed after
|
|
|
|
/// the current function.
|
|
|
|
///
|
|
|
|
void addPendingFunction(Function *F);
|
|
|
|
|
2007-02-24 10:57:03 +08:00
|
|
|
/// getCodeEmitter - Return the code emitter this JIT is emitting into.
|
2009-05-31 04:51:52 +08:00
|
|
|
JITCodeEmitter *getCodeEmitter() const { return JCE; }
|
2007-12-06 09:34:04 +08:00
|
|
|
|
|
|
|
static ExecutionEngine *createJIT(ModuleProvider *MP, std::string *Err,
|
2009-04-30 07:29:43 +08:00
|
|
|
JITMemoryManager *JMM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
2009-05-19 05:06:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
// Run the JIT on F and return information about the generated code
|
|
|
|
void runJITOnFunction(Function *F, MachineCodeInfo *MCI = 0);
|
|
|
|
|
2009-06-25 10:04:04 +08:00
|
|
|
virtual void RegisterJITEventListener(JITEventListener *L);
|
|
|
|
virtual void UnregisterJITEventListener(JITEventListener *L);
|
|
|
|
/// These functions correspond to the methods on JITEventListener. They
|
|
|
|
/// iterate over the registered listeners and call the corresponding method on
|
|
|
|
/// each.
|
|
|
|
void NotifyFunctionEmitted(
|
|
|
|
const Function &F, void *Code, size_t Size,
|
|
|
|
const JITEvent_EmittedFunctionDetails &Details);
|
|
|
|
void NotifyFreeingMachineCode(const Function &F, void *OldPtr);
|
|
|
|
|
2002-12-24 08:01:22 +08:00
|
|
|
private:
|
2009-05-31 04:51:52 +08:00
|
|
|
static JITCodeEmitter *createEmitter(JIT &J, JITMemoryManager *JMM);
|
2009-02-07 05:25:08 +08:00
|
|
|
void runJITOnFunctionUnlocked(Function *F, const MutexGuard &locked);
|
2009-02-18 16:31:02 +08:00
|
|
|
void updateFunctionStub(Function *F);
|
|
|
|
void updateDlsymStubTable();
|
2009-05-19 05:06:40 +08:00
|
|
|
|
2008-10-25 23:41:43 +08:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/// getMemoryforGV - Allocate memory for a global variable.
|
|
|
|
virtual char* getMemoryForGV(const GlobalVariable* GV);
|
|
|
|
|
2002-12-24 08:01:22 +08:00
|
|
|
};
|
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-12-24 08:01:22 +08:00
|
|
|
#endif
|