2003-12-20 01:46:27 +00:00
|
|
|
//===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===//
|
2003-10-21 15:17:13 +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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-24 00:01:22 +00:00
|
|
|
//
|
2003-12-20 01:46:27 +00:00
|
|
|
// This file defines the top-level JIT data structure.
|
2002-12-24 00:01:22 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-12-20 01:46:27 +00:00
|
|
|
#ifndef JIT_H
|
|
|
|
#define JIT_H
|
2002-12-24 00:01:22 +00:00
|
|
|
|
2003-09-05 19:39:22 +00:00
|
|
|
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
2002-12-24 00:01:22 +00:00
|
|
|
#include "llvm/PassManager.h"
|
|
|
|
#include <map>
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2002-12-24 00:01:22 +00:00
|
|
|
class Function;
|
|
|
|
class GlobalValue;
|
|
|
|
class Constant;
|
|
|
|
class TargetMachine;
|
2003-12-20 01:22:19 +00:00
|
|
|
class TargetJITInfo;
|
2002-12-24 00:01:22 +00:00
|
|
|
class MachineCodeEmitter;
|
|
|
|
|
2003-12-20 01:46:27 +00:00
|
|
|
class JIT : public ExecutionEngine {
|
2002-12-24 00:01:22 +00:00
|
|
|
TargetMachine &TM; // The current target we are compiling to
|
2003-12-20 01:22:19 +00:00
|
|
|
TargetJITInfo &TJI; // The JITInfo for the target we are compiling to
|
|
|
|
|
2003-08-13 18:16:50 +00:00
|
|
|
FunctionPassManager PM; // Passes to compile a function
|
2002-12-24 00:01:22 +00:00
|
|
|
MachineCodeEmitter *MCE; // MCE object
|
|
|
|
|
2003-12-20 03:36:47 +00:00
|
|
|
/// PendingGlobals - Global variables which have had memory allocated for them
|
|
|
|
/// while a function was code generated, but which have not been initialized
|
|
|
|
/// yet.
|
|
|
|
std::vector<const GlobalVariable*> PendingGlobals;
|
|
|
|
|
2003-12-20 01:46:27 +00:00
|
|
|
JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji);
|
2002-12-24 00:01:22 +00:00
|
|
|
public:
|
2003-12-20 01:46:27 +00:00
|
|
|
~JIT();
|
2002-12-24 00:01:22 +00:00
|
|
|
|
2003-09-03 20:34:19 +00:00
|
|
|
/// create - Create an return a new JIT compiler if there is one available
|
2003-12-28 09:44:37 +00:00
|
|
|
/// for the current target. Otherwise, return null. If the JIT is created
|
|
|
|
/// successfully, it takes responsibility for deleting the specified
|
|
|
|
/// IntrinsicLowering implementation.
|
2003-09-03 20:34:19 +00:00
|
|
|
///
|
2003-12-28 09:44:37 +00:00
|
|
|
static ExecutionEngine *create(ModuleProvider *MP, IntrinsicLowering *IL = 0);
|
2003-09-03 20:34:19 +00:00
|
|
|
|
2002-12-24 00:01:22 +00:00
|
|
|
/// run - Start execution with the specified function and arguments.
|
|
|
|
///
|
2003-12-26 06:13:47 +00:00
|
|
|
virtual GenericValue runFunction(Function *F,
|
|
|
|
const std::vector<GenericValue> &ArgValues);
|
2002-12-24 00:01:22 +00:00
|
|
|
|
2003-01-13 01:00:48 +00: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.
|
|
|
|
///
|
|
|
|
void *getPointerToNamedFunction(const std::string &Name);
|
|
|
|
|
2003-05-08 21:34:11 +00:00
|
|
|
// CompilationCallback - Invoked the first time that a call site is found,
|
|
|
|
// which causes lazy compilation of the target function.
|
|
|
|
//
|
|
|
|
static void CompilationCallback();
|
2003-05-14 13:53:40 +00:00
|
|
|
|
2003-06-01 23:24:36 +00:00
|
|
|
/// getPointerToFunction - This returns the address of the specified function,
|
|
|
|
/// compiling it if necessary.
|
2003-10-17 18:27:12 +00:00
|
|
|
///
|
2003-08-13 18:16:50 +00:00
|
|
|
void *getPointerToFunction(Function *F);
|
2003-06-01 23:24:36 +00:00
|
|
|
|
2003-12-20 03:36:47 +00: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 07:12:02 +00: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-17 18:27:12 +00: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 01:46:27 +00:00
|
|
|
/// just like JIT::getPointerToFunction().
|
2003-10-17 18:27:12 +00:00
|
|
|
///
|
|
|
|
void *recompileAndRelinkFunction(Function *F);
|
|
|
|
|
2002-12-24 00:01:22 +00:00
|
|
|
private:
|
2003-12-20 01:46:27 +00:00
|
|
|
static MachineCodeEmitter *createEmitter(JIT &J);
|
2003-10-17 18:27:12 +00:00
|
|
|
void runJITOnFunction (Function *F);
|
2002-12-24 00:01:22 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-12-24 00:01:22 +00:00
|
|
|
#endif
|