2002-12-24 00:01:05 +00:00
|
|
|
//===- ExecutionEngine.h - Abstract Execution Engine Interface --*- C++ -*-===//
|
2003-10-20 20:19:47 +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:05 +00:00
|
|
|
//
|
|
|
|
// This file defines the abstract interface that implements execution support
|
|
|
|
// for LLVM.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef EXECUTION_ENGINE_H
|
|
|
|
#define EXECUTION_ENGINE_H
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2003-07-25 18:06:53 +00:00
|
|
|
#include <cassert>
|
2004-09-03 18:19:51 +00:00
|
|
|
#include <string>
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2003-12-20 02:45:16 +00:00
|
|
|
union GenericValue;
|
2002-12-24 00:01:05 +00:00
|
|
|
class Constant;
|
|
|
|
class Function;
|
2003-12-20 02:45:16 +00:00
|
|
|
class GlobalVariable;
|
2003-10-14 21:35:52 +00:00
|
|
|
class GlobalValue;
|
2002-12-24 00:01:05 +00:00
|
|
|
class Module;
|
2003-10-16 21:16:21 +00:00
|
|
|
class ModuleProvider;
|
2002-12-24 00:01:05 +00:00
|
|
|
class TargetData;
|
2003-10-14 21:35:52 +00:00
|
|
|
class Type;
|
2003-12-28 09:48:17 +00:00
|
|
|
class IntrinsicLowering;
|
2002-12-24 00:01:05 +00:00
|
|
|
|
|
|
|
class ExecutionEngine {
|
|
|
|
Module &CurMod;
|
|
|
|
const TargetData *TD;
|
|
|
|
|
2003-12-31 20:19:31 +00:00
|
|
|
/// GlobalAddressMap - A mapping between LLVM global values and their
|
|
|
|
/// actualized version...
|
|
|
|
std::map<const GlobalValue*, void *> GlobalAddressMap;
|
|
|
|
|
|
|
|
/// GlobalAddressReverseMap - This is the reverse mapping of GlobalAddressMap,
|
|
|
|
/// used to convert raw addresses into the LLVM global value that is emitted
|
|
|
|
/// at the address. This map is not computed unless getGlobalValueAtAddress
|
|
|
|
/// is called at some point.
|
|
|
|
std::map<void *, const GlobalValue*> GlobalAddressReverseMap;
|
2003-12-20 03:35:50 +00:00
|
|
|
protected:
|
|
|
|
ModuleProvider *MP;
|
2002-12-24 00:01:05 +00:00
|
|
|
|
|
|
|
void setTargetData(const TargetData &td) {
|
|
|
|
TD = &td;
|
|
|
|
}
|
2003-10-14 21:35:52 +00:00
|
|
|
|
2002-12-24 00:01:05 +00:00
|
|
|
public:
|
2003-10-16 21:16:21 +00:00
|
|
|
ExecutionEngine(ModuleProvider *P);
|
|
|
|
ExecutionEngine(Module *M);
|
2002-12-24 00:01:05 +00:00
|
|
|
virtual ~ExecutionEngine();
|
|
|
|
|
|
|
|
Module &getModule() const { return CurMod; }
|
|
|
|
const TargetData &getTargetData() const { return *TD; }
|
|
|
|
|
2003-12-26 06:12:25 +00:00
|
|
|
/// create - This is the factory method for creating an execution engine which
|
2003-12-28 09:48:17 +00:00
|
|
|
/// is appropriate for the current machine. If specified, the
|
|
|
|
/// IntrinsicLowering implementation should be allocated on the heap.
|
|
|
|
static ExecutionEngine *create(ModuleProvider *MP, bool ForceInterpreter,
|
|
|
|
IntrinsicLowering *IL = 0);
|
2003-09-03 20:34:19 +00:00
|
|
|
|
2003-12-26 06:12:25 +00:00
|
|
|
/// runFunction - Execute the specified function with the specified arguments,
|
|
|
|
/// and return the result.
|
|
|
|
///
|
|
|
|
virtual GenericValue runFunction(Function *F,
|
|
|
|
const std::vector<GenericValue> &ArgValues) = 0;
|
|
|
|
|
2003-12-26 06:50:15 +00:00
|
|
|
/// runFunctionAsMain - This is a helper function which wraps runFunction to
|
|
|
|
/// handle the common task of starting up main with the specified argc, argv,
|
|
|
|
/// and envp parameters.
|
|
|
|
int runFunctionAsMain(Function *Fn, const std::vector<std::string> &argv,
|
|
|
|
const char * const * envp);
|
|
|
|
|
|
|
|
|
2003-12-20 02:45:16 +00:00
|
|
|
void addGlobalMapping(const GlobalValue *GV, void *Addr) {
|
2003-12-31 20:19:31 +00:00
|
|
|
void *&CurVal = GlobalAddressMap[GV];
|
2003-12-20 03:35:50 +00:00
|
|
|
assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!");
|
2002-12-24 00:01:05 +00:00
|
|
|
CurVal = Addr;
|
2003-12-31 20:19:31 +00:00
|
|
|
|
|
|
|
// If we are using the reverse mapping, add it too
|
|
|
|
if (!GlobalAddressReverseMap.empty()) {
|
|
|
|
const GlobalValue *&V = GlobalAddressReverseMap[Addr];
|
|
|
|
assert((V == 0 || GV == 0) && "GlobalMapping already established!");
|
|
|
|
V = GV;
|
|
|
|
}
|
2002-12-24 00:01:05 +00:00
|
|
|
}
|
|
|
|
|
2004-11-22 16:54:54 +00:00
|
|
|
/// updateGlobalMapping - Replace an existing mapping for GV with a new
|
|
|
|
/// address. This updates both maps as required.
|
|
|
|
void updateGlobalMapping(const GlobalValue *GV, void *Addr) {
|
|
|
|
void *&CurVal = GlobalAddressMap[GV];
|
|
|
|
if (CurVal && !GlobalAddressReverseMap.empty())
|
|
|
|
GlobalAddressReverseMap.erase(CurVal);
|
|
|
|
CurVal = Addr;
|
|
|
|
|
|
|
|
// If we are using the reverse mapping, add it too
|
|
|
|
if (!GlobalAddressReverseMap.empty()) {
|
|
|
|
const GlobalValue *&V = GlobalAddressReverseMap[Addr];
|
|
|
|
assert((V == 0 || GV == 0) && "GlobalMapping already established!");
|
|
|
|
V = GV;
|
|
|
|
}
|
2004-11-22 12:38:36 +00:00
|
|
|
}
|
|
|
|
|
2003-12-12 06:31:42 +00:00
|
|
|
/// getPointerToGlobalIfAvailable - This returns the address of the specified
|
|
|
|
/// global value if it is available, otherwise it returns null.
|
|
|
|
///
|
2003-05-09 03:29:03 +00:00
|
|
|
void *getPointerToGlobalIfAvailable(const GlobalValue *GV) {
|
2003-12-31 20:19:31 +00:00
|
|
|
std::map<const GlobalValue*, void*>::iterator I = GlobalAddressMap.find(GV);
|
|
|
|
return I != GlobalAddressMap.end() ? I->second : 0;
|
2003-05-09 03:29:03 +00:00
|
|
|
}
|
|
|
|
|
2003-12-12 06:31:42 +00:00
|
|
|
/// getPointerToGlobal - This returns the address of the specified global
|
|
|
|
/// value. This may involve code generation if it's a function.
|
|
|
|
///
|
2002-12-24 00:01:05 +00:00
|
|
|
void *getPointerToGlobal(const GlobalValue *GV);
|
|
|
|
|
2003-12-12 06:31:42 +00:00
|
|
|
/// getPointerToFunction - The different EE's represent function bodies in
|
|
|
|
/// different ways. They should each implement this to say what a function
|
|
|
|
/// pointer should look like.
|
|
|
|
///
|
2003-08-13 18:17:54 +00:00
|
|
|
virtual void *getPointerToFunction(Function *F) = 0;
|
2002-12-24 00:01:05 +00:00
|
|
|
|
2003-12-12 06:31:42 +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.
|
|
|
|
///
|
2003-12-08 08:22:01 +00:00
|
|
|
virtual void *getPointerToFunctionOrStub(Function *F) {
|
|
|
|
// Default implementation, just codegen the function.
|
|
|
|
return getPointerToFunction(F);
|
|
|
|
}
|
|
|
|
|
2003-12-31 20:19:31 +00:00
|
|
|
/// getGlobalValueAtAddress - Return the LLVM global value object that starts
|
|
|
|
/// at the specified address.
|
|
|
|
///
|
|
|
|
const GlobalValue *getGlobalValueAtAddress(void *Addr);
|
|
|
|
|
|
|
|
|
2003-09-05 18:55:03 +00:00
|
|
|
void StoreValueToMemory(GenericValue Val, GenericValue *Ptr, const Type *Ty);
|
|
|
|
void InitializeMemory(const Constant *Init, void *Addr);
|
|
|
|
|
2003-12-08 08:22:01 +00:00
|
|
|
/// recompileAndRelinkFunction - This method is used to force a function
|
2003-12-12 06:31:42 +00:00
|
|
|
/// which has already been compiled to be compiled again, possibly
|
2003-12-08 08:22:01 +00:00
|
|
|
/// 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
|
|
|
|
/// just like VM::getPointerToFunction().
|
|
|
|
///
|
|
|
|
virtual void *recompileAndRelinkFunction(Function *F) = 0;
|
|
|
|
|
2004-11-07 23:58:02 +00:00
|
|
|
/// freeMachineCodeForFunction - Release memory in the ExecutionEngine
|
|
|
|
/// corresponding to the machine code emitted to execute this function, useful
|
|
|
|
/// for garbage-collecting generated code.
|
|
|
|
///
|
|
|
|
virtual void freeMachineCodeForFunction(Function *F) = 0;
|
|
|
|
|
2003-12-20 03:35:50 +00:00
|
|
|
/// getOrEmitGlobalVariable - Return the address of the specified global
|
|
|
|
/// variable, possibly emitting it to memory if needed. This is used by the
|
|
|
|
/// Emitter.
|
|
|
|
virtual void *getOrEmitGlobalVariable(const GlobalVariable *GV) {
|
|
|
|
return getPointerToGlobal((GlobalValue*)GV);
|
|
|
|
}
|
|
|
|
|
2003-05-12 02:14:34 +00:00
|
|
|
protected:
|
2002-12-24 00:01:05 +00:00
|
|
|
void emitGlobals();
|
2003-12-20 02:45:16 +00:00
|
|
|
|
|
|
|
// EmitGlobalVariable - This method emits the specified global variable to the
|
|
|
|
// address specified in GlobalAddresses, or allocates new memory if it's not
|
|
|
|
// already in the map.
|
2003-12-20 03:35:50 +00:00
|
|
|
void EmitGlobalVariable(const GlobalVariable *GV);
|
2003-12-20 02:45:16 +00:00
|
|
|
|
2002-12-24 00:01:05 +00:00
|
|
|
GenericValue getConstantValue(const Constant *C);
|
2003-05-08 16:52:16 +00:00
|
|
|
GenericValue LoadValueFromMemory(GenericValue *Ptr, const Type *Ty);
|
2002-12-24 00:01:05 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-12-24 00:01:05 +00:00
|
|
|
#endif
|