2002-12-24 00:01:05 +00:00
|
|
|
//===- ExecutionEngine.h - Abstract Execution Engine Interface --*- C++ -*-===//
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-24 00:01:05 +00:00
|
|
|
//
|
|
|
|
// This file defines the abstract interface that implements execution support
|
|
|
|
// for LLVM.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-12-06 01:08:09 +00:00
|
|
|
#ifndef LLVM_EXECUTION_ENGINE_H
|
|
|
|
#define LLVM_EXECUTION_ENGINE_H
|
2002-12-24 00:01:05 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2004-09-03 18:19:51 +00:00
|
|
|
#include <string>
|
2006-08-16 01:24:12 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2009-04-29 23:29:43 +00:00
|
|
|
#include "llvm/System/Mutex.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2007-03-06 03:01:54 +00:00
|
|
|
struct 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;
|
2006-05-08 22:00:26 +00:00
|
|
|
class MutexGuard;
|
2007-12-06 01:08:09 +00:00
|
|
|
class JITMemoryManager;
|
2002-12-24 00:01:05 +00:00
|
|
|
|
2005-07-12 15:51:55 +00:00
|
|
|
class ExecutionEngineState {
|
|
|
|
private:
|
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;
|
2005-07-12 15:51:55 +00:00
|
|
|
|
|
|
|
public:
|
2006-03-22 06:06:37 +00:00
|
|
|
std::map<const GlobalValue*, void *> &
|
2008-05-19 20:15:12 +00:00
|
|
|
getGlobalAddressMap(const MutexGuard &) {
|
2005-07-12 15:51:55 +00:00
|
|
|
return GlobalAddressMap;
|
|
|
|
}
|
|
|
|
|
2006-03-22 06:06:37 +00:00
|
|
|
std::map<void*, const GlobalValue*> &
|
2008-05-19 20:15:12 +00:00
|
|
|
getGlobalAddressReverseMap(const MutexGuard &) {
|
2005-07-12 15:51:55 +00:00
|
|
|
return GlobalAddressReverseMap;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ExecutionEngine {
|
|
|
|
const TargetData *TD;
|
|
|
|
ExecutionEngineState state;
|
2006-11-09 19:30:47 +00:00
|
|
|
bool LazyCompilationDisabled;
|
2008-09-24 16:25:55 +00:00
|
|
|
bool GVCompilationDisabled;
|
2008-06-16 17:44:14 +00:00
|
|
|
bool SymbolSearchingDisabled;
|
2009-02-18 08:31:02 +00:00
|
|
|
bool DlsymStubsEnabled;
|
2007-10-22 02:50:12 +00:00
|
|
|
|
2003-12-20 03:35:50 +00:00
|
|
|
protected:
|
2006-08-16 01:24:12 +00:00
|
|
|
/// Modules - This is a list of ModuleProvider's that we are JIT'ing from. We
|
|
|
|
/// use a smallvector to optimize for the case where there is only one module.
|
|
|
|
SmallVector<ModuleProvider*, 1> Modules;
|
|
|
|
|
2006-05-03 01:29:57 +00:00
|
|
|
void setTargetData(const TargetData *td) {
|
|
|
|
TD = td;
|
2002-12-24 00:01:05 +00:00
|
|
|
}
|
2008-10-25 15:41:43 +00:00
|
|
|
|
|
|
|
/// getMemoryforGV - Allocate memory for a global variable.
|
|
|
|
virtual char* getMemoryForGV(const GlobalVariable* GV);
|
2003-10-14 21:35:52 +00:00
|
|
|
|
2006-03-22 06:06:37 +00:00
|
|
|
// To avoid having libexecutionengine depend on the JIT and interpreter
|
|
|
|
// libraries, the JIT and Interpreter set these functions to ctor pointers
|
|
|
|
// at startup time if they are linked in.
|
2008-08-08 08:11:34 +00:00
|
|
|
typedef ExecutionEngine *(*EECtorFn)(ModuleProvider*, std::string*,
|
2009-04-29 23:29:43 +00:00
|
|
|
CodeGenOpt::Level OptLevel);
|
2006-03-22 06:06:37 +00:00
|
|
|
static EECtorFn JITCtor, InterpCtor;
|
2007-10-22 02:50:12 +00:00
|
|
|
|
|
|
|
/// LazyFunctionCreator - If an unknown function is needed, this function
|
|
|
|
/// pointer is invoked to create it. If this returns null, the JIT will abort.
|
|
|
|
void* (*LazyFunctionCreator)(const std::string &);
|
|
|
|
|
2008-02-13 18:39:37 +00:00
|
|
|
/// ExceptionTableRegister - If Exception Handling is set, the JIT will
|
|
|
|
/// register dwarf tables with this function
|
|
|
|
typedef void (*EERegisterFn)(void*);
|
|
|
|
static EERegisterFn ExceptionTableRegister;
|
|
|
|
|
2002-12-24 00:01:05 +00:00
|
|
|
public:
|
2006-03-22 06:06:37 +00:00
|
|
|
/// lock - This lock is protects the ExecutionEngine, JIT, JITResolver and
|
|
|
|
/// JITEmitter classes. It must be held while changing the internal state of
|
|
|
|
/// any of those classes.
|
2005-07-12 15:51:55 +00:00
|
|
|
sys::Mutex lock; // Used to make this class and subclasses thread-safe
|
|
|
|
|
2008-04-04 04:47:41 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
2007-12-06 01:08:09 +00:00
|
|
|
// ExecutionEngine Startup
|
2008-04-04 04:47:41 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
2005-04-21 20:39:54 +00:00
|
|
|
|
2007-12-06 01:08:09 +00:00
|
|
|
virtual ~ExecutionEngine();
|
2002-12-24 00:01:05 +00:00
|
|
|
|
2007-12-06 01:08:09 +00:00
|
|
|
/// create - This is the factory method for creating an execution engine which
|
|
|
|
/// is appropriate for the current machine. This takes ownership of the
|
|
|
|
/// module provider.
|
|
|
|
static ExecutionEngine *create(ModuleProvider *MP,
|
|
|
|
bool ForceInterpreter = false,
|
2008-08-08 08:11:34 +00:00
|
|
|
std::string *ErrorStr = 0,
|
2009-04-29 23:29:43 +00:00
|
|
|
CodeGenOpt::Level OptLevel =
|
|
|
|
CodeGenOpt::Default);
|
2007-12-06 01:08:09 +00:00
|
|
|
|
|
|
|
/// create - This is the factory method for creating an execution engine which
|
|
|
|
/// is appropriate for the current machine. This takes ownership of the
|
|
|
|
/// module.
|
|
|
|
static ExecutionEngine *create(Module *M);
|
2007-12-06 01:34:04 +00:00
|
|
|
|
|
|
|
/// createJIT - This is the factory method for creating a JIT for the current
|
|
|
|
/// machine, it does not fall back to the interpreter. This takes ownership
|
|
|
|
/// of the ModuleProvider and JITMemoryManager if successful.
|
|
|
|
static ExecutionEngine *createJIT(ModuleProvider *MP,
|
|
|
|
std::string *ErrorStr = 0,
|
2008-08-08 08:11:34 +00:00
|
|
|
JITMemoryManager *JMM = 0,
|
2009-04-29 23:29:43 +00:00
|
|
|
CodeGenOpt::Level OptLevel =
|
|
|
|
CodeGenOpt::Default);
|
|
|
|
|
2006-08-16 02:53:27 +00:00
|
|
|
/// addModuleProvider - Add a ModuleProvider to the list of modules that we
|
|
|
|
/// can JIT from. Note that this takes ownership of the ModuleProvider: when
|
|
|
|
/// the ExecutionEngine is destroyed, it destroys the MP as well.
|
2008-05-21 16:34:48 +00:00
|
|
|
virtual void addModuleProvider(ModuleProvider *P) {
|
2006-08-16 02:53:27 +00:00
|
|
|
Modules.push_back(P);
|
|
|
|
}
|
2007-12-06 01:08:09 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
const TargetData *getTargetData() const { return TD; }
|
|
|
|
|
2007-10-15 19:56:32 +00:00
|
|
|
|
|
|
|
/// removeModuleProvider - Remove a ModuleProvider from the list of modules.
|
2009-01-23 19:27:28 +00:00
|
|
|
/// Relases the Module from the ModuleProvider, materializing it in the
|
|
|
|
/// process, and returns the materialized Module.
|
2008-05-21 16:34:48 +00:00
|
|
|
virtual Module* removeModuleProvider(ModuleProvider *P,
|
|
|
|
std::string *ErrInfo = 0);
|
2007-10-15 19:56:32 +00:00
|
|
|
|
2009-01-23 19:27:28 +00: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);
|
|
|
|
|
2006-08-16 01:24:12 +00:00
|
|
|
/// FindFunctionNamed - Search all of the active modules to find the one that
|
|
|
|
/// defines FnName. This is very slow operation and shouldn't be used for
|
|
|
|
/// general code.
|
|
|
|
Function *FindFunctionNamed(const char *FnName);
|
|
|
|
|
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;
|
|
|
|
|
2006-03-08 18:42:46 +00:00
|
|
|
/// runStaticConstructorsDestructors - This method is used to execute all of
|
2008-09-30 15:51:21 +00:00
|
|
|
/// the static constructors or destructors for a program, depending on the
|
2006-03-08 18:42:46 +00:00
|
|
|
/// value of isDtors.
|
|
|
|
void runStaticConstructorsDestructors(bool isDtors);
|
2008-09-30 15:51:21 +00:00
|
|
|
/// runStaticConstructorsDestructors - This method is used to execute all of
|
|
|
|
/// the static constructors or destructors for a module, depending on the
|
|
|
|
/// value of isDtors.
|
|
|
|
void runStaticConstructorsDestructors(Module *module, bool isDtors);
|
2006-03-08 18:42:46 +00:00
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
2006-05-08 22:00:26 +00:00
|
|
|
/// addGlobalMapping - Tell the execution engine that the specified global is
|
|
|
|
/// at the specified location. This is used internally as functions are JIT'd
|
|
|
|
/// and as global variables are laid out in memory. It can and should also be
|
|
|
|
/// used by clients of the EE that want to have an LLVM global overlay
|
2009-04-25 22:10:06 +00:00
|
|
|
/// existing data in memory. After adding a mapping for GV, you must not
|
|
|
|
/// destroy it until you've removed the mapping.
|
2006-05-08 22:00:26 +00:00
|
|
|
void addGlobalMapping(const GlobalValue *GV, void *Addr);
|
|
|
|
|
2004-12-13 16:22:32 +00:00
|
|
|
/// clearAllGlobalMappings - Clear all global mappings and start over again
|
|
|
|
/// use in dynamic compilation scenarios when you want to move globals
|
2006-05-08 22:00:26 +00:00
|
|
|
void clearAllGlobalMappings();
|
|
|
|
|
2008-05-21 16:34:48 +00:00
|
|
|
/// clearGlobalMappingsFromModule - Clear all global mappings that came from a
|
|
|
|
/// particular module, because it has been removed from the JIT.
|
|
|
|
void clearGlobalMappingsFromModule(Module *M);
|
|
|
|
|
2004-11-22 16:54:54 +00:00
|
|
|
/// updateGlobalMapping - Replace an existing mapping for GV with a new
|
2006-05-08 22:00:26 +00:00
|
|
|
/// address. This updates both maps as required. If "Addr" is null, the
|
2008-04-04 04:47:41 +00:00
|
|
|
/// entry for the global is removed from the mappings. This returns the old
|
|
|
|
/// value of the pointer, or null if it was not in the map.
|
|
|
|
void *updateGlobalMapping(const GlobalValue *GV, void *Addr);
|
2006-05-08 22:00:26 +00:00
|
|
|
|
2003-12-12 06:31:42 +00:00
|
|
|
/// getPointerToGlobalIfAvailable - This returns the address of the specified
|
2006-05-08 22:00:26 +00:00
|
|
|
/// global value if it is has already been codegen'd, otherwise it returns
|
|
|
|
/// null.
|
2003-12-12 06:31:42 +00:00
|
|
|
///
|
2006-05-08 22:00:26 +00:00
|
|
|
void *getPointerToGlobalIfAvailable(const GlobalValue *GV);
|
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
|
2009-04-25 22:10:06 +00:00
|
|
|
/// value. This may involve code generation if it's a function. After
|
|
|
|
/// getting a pointer to GV, it and all globals it transitively refers to have
|
|
|
|
/// been passed to addGlobalMapping. You must clear the mapping for each
|
|
|
|
/// referred-to global before destroying it. If a referred-to global RTG is a
|
|
|
|
/// function and this ExecutionEngine is a JIT compiler, calling
|
|
|
|
/// updateGlobalMapping(RTG, 0) will leak the function's machine code, so you
|
|
|
|
/// should call freeMachineCodeForFunction(RTG) instead. Note that
|
|
|
|
/// optimizations can move and delete non-external GlobalValues without
|
|
|
|
/// notifying the ExecutionEngine.
|
2003-12-12 06:31:42 +00:00
|
|
|
///
|
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
|
2009-04-25 22:10:06 +00:00
|
|
|
/// pointer should look like. See getPointerToGlobal for the requirements on
|
|
|
|
/// destroying F and any GlobalValues it refers to.
|
2003-12-12 06:31:42 +00:00
|
|
|
///
|
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
|
2009-04-25 22:10:06 +00:00
|
|
|
/// a stub to implement lazy compilation if available. See getPointerToGlobal
|
|
|
|
/// for the requirements on destroying F and any GlobalValues it refers to.
|
2003-12-12 06:31:42 +00:00
|
|
|
///
|
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);
|
|
|
|
|
|
|
|
|
2008-04-04 04:47:41 +00:00
|
|
|
void StoreValueToMemory(const GenericValue &Val, GenericValue *Ptr,
|
|
|
|
const Type *Ty);
|
2003-09-05 18:55:03 +00:00
|
|
|
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
|
2009-04-25 22:10:06 +00:00
|
|
|
/// Emitter. See getPointerToGlobal for the requirements on destroying GV and
|
|
|
|
/// any GlobalValues it refers to.
|
2003-12-20 03:35:50 +00:00
|
|
|
virtual void *getOrEmitGlobalVariable(const GlobalVariable *GV) {
|
|
|
|
return getPointerToGlobal((GlobalValue*)GV);
|
|
|
|
}
|
2006-11-09 19:30:47 +00:00
|
|
|
|
|
|
|
/// DisableLazyCompilation - If called, the JIT will abort if lazy compilation
|
2008-06-16 17:44:14 +00:00
|
|
|
/// is ever attempted.
|
|
|
|
void DisableLazyCompilation(bool Disabled = true) {
|
|
|
|
LazyCompilationDisabled = Disabled;
|
2006-11-09 19:30:47 +00:00
|
|
|
}
|
|
|
|
bool isLazyCompilationDisabled() const {
|
|
|
|
return LazyCompilationDisabled;
|
|
|
|
}
|
2008-09-24 16:25:55 +00:00
|
|
|
|
2008-12-09 07:31:49 +00:00
|
|
|
/// DisableGVCompilation - If called, the JIT will abort if it's asked to
|
|
|
|
/// allocate space and populate a GlobalVariable that is not internal to
|
|
|
|
/// the module.
|
2008-09-24 16:25:55 +00:00
|
|
|
void DisableGVCompilation(bool Disabled = true) {
|
|
|
|
GVCompilationDisabled = Disabled;
|
|
|
|
}
|
|
|
|
bool isGVCompilationDisabled() const {
|
|
|
|
return GVCompilationDisabled;
|
|
|
|
}
|
|
|
|
|
2008-06-16 17:44:14 +00:00
|
|
|
/// DisableSymbolSearching - If called, the JIT will not try to lookup unknown
|
|
|
|
/// symbols with dlsym. A client can still use InstallLazyFunctionCreator to
|
|
|
|
/// resolve symbols in a custom way.
|
|
|
|
void DisableSymbolSearching(bool Disabled = true) {
|
|
|
|
SymbolSearchingDisabled = Disabled;
|
|
|
|
}
|
|
|
|
bool isSymbolSearchingDisabled() const {
|
|
|
|
return SymbolSearchingDisabled;
|
|
|
|
}
|
2007-10-22 02:50:12 +00:00
|
|
|
|
2009-02-18 08:31:02 +00:00
|
|
|
/// EnableDlsymStubs -
|
|
|
|
void EnableDlsymStubs(bool Enabled = true) {
|
|
|
|
DlsymStubsEnabled = Enabled;
|
|
|
|
}
|
|
|
|
bool areDlsymStubsEnabled() const {
|
|
|
|
return DlsymStubsEnabled;
|
|
|
|
}
|
2007-10-22 02:50:12 +00:00
|
|
|
|
|
|
|
/// InstallLazyFunctionCreator - If an unknown function is needed, the
|
|
|
|
/// specified function pointer is invoked to create it. If it returns null,
|
|
|
|
/// the JIT will abort.
|
|
|
|
void InstallLazyFunctionCreator(void* (*P)(const std::string &)) {
|
|
|
|
LazyFunctionCreator = P;
|
|
|
|
}
|
2008-02-13 18:39:37 +00:00
|
|
|
|
|
|
|
/// InstallExceptionTableRegister - The JIT will use the given function
|
|
|
|
/// to register the exception tables it generates.
|
|
|
|
static void InstallExceptionTableRegister(void (*F)(void*)) {
|
|
|
|
ExceptionTableRegister = F;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// RegisterTable - Registers the given pointer as an exception table. It uses
|
|
|
|
/// the ExceptionTableRegister function.
|
|
|
|
static void RegisterTable(void* res) {
|
|
|
|
if (ExceptionTableRegister)
|
|
|
|
ExceptionTableRegister(res);
|
|
|
|
}
|
2003-12-20 03:35:50 +00:00
|
|
|
|
2003-05-12 02:14:34 +00:00
|
|
|
protected:
|
2007-12-14 15:41:34 +00:00
|
|
|
explicit ExecutionEngine(ModuleProvider *P);
|
2007-12-06 01:08:09 +00:00
|
|
|
|
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);
|
2007-03-03 08:35:14 +00:00
|
|
|
void LoadValueFromMemory(GenericValue &Result, 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
|