LLVM: llvm::ExecutionEngine Class Reference (original) (raw)

Abstract interface for implementation execution of LLVM modules, designed to support both interpreter and just-in-time (JIT) compiler implementations. More...

#include "[llvm/ExecutionEngine/ExecutionEngine.h](llvm%5F2ExecutionEngine%5F2ExecutionEngine%5F8h%5Fsource.html)"

Public Member Functions
virtual ~ExecutionEngine ()
virtual void addModule (std::unique_ptr< Module > M)
Add a Module to the list of modules that we can JIT from.
virtual void addObjectFile (std::unique_ptr< object::ObjectFile > O)
addObjectFile - Add an ObjectFile to the execution engine.
virtual void addObjectFile (object::OwningBinary< object::ObjectFile > O)
virtual void addArchive (object::OwningBinary< object::Archive > A)
addArchive - Add an Archive to the execution engine.
const DataLayout & getDataLayout () const
virtual bool removeModule (Module *M)
removeModule - Removes a Module from the list of modules, but does not free the module's memory.
virtual Function * FindFunctionNamed (StringRef FnName)
FindFunctionNamed - Search all of the active modules to find the function that defines FnName.
virtual GlobalVariable * FindGlobalVariableNamed (StringRef Name, bool AllowInternal=false)
FindGlobalVariableNamed - Search all of the active modules to find the global variable that defines Name.
virtual GenericValue runFunction (Function *F, ArrayRef< GenericValue > ArgValues)=0
runFunction - Execute the specified function with the specified arguments, and return the result.
virtual void * getPointerToNamedFunction (StringRef Name, bool AbortOnFailure=true)=0
getPointerToNamedFunction - This method returns the address of the specified function by using the dlsym function call.
virtual void mapSectionAddress (const void *LocalAddress, uint64_t TargetAddress)
mapSectionAddress - map a section to its target address space value.
virtual void generateCodeForModule (Module *M)
generateCodeForModule - Run code generation for the specified module and load it into memory.
virtual void finalizeObject ()
finalizeObject - ensure the module is fully processed and is usable.
bool hasError () const
Returns true if an error has been recorded.
void clearErrorMessage ()
Clear the error message.
const std::string & getErrorMessage () const
Returns the most recent error message.
virtual void runStaticConstructorsDestructors (bool isDtors)
runStaticConstructorsDestructors - This method is used to execute all of the static constructors or destructors for a program.
void runStaticConstructorsDestructors (Module &module, bool isDtors)
This method is used to execute all of the static constructors or destructors for a particular module.
int runFunctionAsMain (Function *Fn, const std::vector< std::string > &argv, const char *const *envp)
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.
void addGlobalMapping (const GlobalValue *GV, void *Addr)
addGlobalMapping - Tell the execution engine that the specified global is at the specified location.
void addGlobalMapping (StringRef Name, uint64_t Addr)
void clearAllGlobalMappings ()
clearAllGlobalMappings - Clear all global mappings and start over again, for use in dynamic compilation scenarios to move globals.
void clearGlobalMappingsFromModule (Module *M)
clearGlobalMappingsFromModule - Clear all global mappings that came from a particular module, because it has been removed from the JIT.
uint64_t updateGlobalMapping (const GlobalValue *GV, void *Addr)
updateGlobalMapping - Replace an existing mapping for GV with a new address.
uint64_t updateGlobalMapping (StringRef Name, uint64_t Addr)
uint64_t getAddressToGlobalIfAvailable (StringRef S)
getAddressToGlobalIfAvailable - This returns the address of the specified global symbol.
void * getPointerToGlobalIfAvailable (StringRef S)
getPointerToGlobalIfAvailable - This returns the address of the specified global value if it is has already been codegen'd, otherwise it returns null.
void * getPointerToGlobalIfAvailable (const GlobalValue *GV)
void * getPointerToGlobal (const GlobalValue *GV)
getPointerToGlobal - This returns the address of the specified global value.
virtual void * getPointerToFunction (Function *F)=0
getPointerToFunction - The different EE's represent function bodies in different ways.
virtual void * getPointerToFunctionOrStub (Function *F)
getPointerToFunctionOrStub - If the specified function has been code-gen'd, return a pointer to the function.
virtual uint64_t getGlobalValueAddress (const std::string &Name)
getGlobalValueAddress - Return the address of the specified global value.
virtual uint64_t getFunctionAddress (const std::string &Name)
getFunctionAddress - Return the address of the specified function.
const GlobalValue * getGlobalValueAtAddress (void *Addr)
getGlobalValueAtAddress - Return the LLVM global value object that starts at the specified address.
void StoreValueToMemory (const GenericValue &Val, GenericValue *Ptr, Type *Ty)
StoreValueToMemory - Stores the data in Val of type Ty at address Ptr.
void InitializeMemory (const Constant *Init, void *Addr)
virtual void * getOrEmitGlobalVariable (const GlobalVariable *GV)
getOrEmitGlobalVariable - Return the address of the specified global variable, possibly emitting it to memory if needed.
virtual void RegisterJITEventListener (JITEventListener *)
Registers a listener to be called back on various events within the JIT.
virtual void UnregisterJITEventListener (JITEventListener *)
virtual void setObjectCache (ObjectCache *)
Sets the pre-compiled object cache.
virtual void setProcessAllSections (bool ProcessAllSections)
setProcessAllSections (MCJIT Only): By default, only sections that are "required for execution" are passed to the RTDyldMemoryManager, and other sections are discarded.
virtual TargetMachine * getTargetMachine ()
Return the target machine (if available).
void DisableLazyCompilation (bool Disabled=true)
DisableLazyCompilation - When lazy compilation is off (the default), the JIT will eagerly compile every function reachable from the argument to getPointerToFunction.
bool isCompilingLazily () const
void DisableGVCompilation (bool Disabled=true)
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.
bool isGVCompilationDisabled () const
void DisableSymbolSearching (bool Disabled=true)
DisableSymbolSearching - If called, the JIT will not try to lookup unknown symbols with dlsym.
bool isSymbolSearchingDisabled () const
void setVerifyModules (bool Verify)
Enable/Disable IR module verification.
bool getVerifyModules () const
void InstallLazyFunctionCreator (FunctionCreator C)
InstallLazyFunctionCreator - If an unknown function is needed, the specified function pointer is invoked to create it.
Protected Member Functions
virtual char * getMemoryForGV (const GlobalVariable *GV)
getMemoryforGV - Allocate memory for a global variable.
std::string getMangledName (const GlobalValue *GV)
getMangledName - Get mangled name.
ExecutionEngine (DataLayout DL)
ExecutionEngine (DataLayout DL, std::unique_ptr< Module > M)
ExecutionEngine (std::unique_ptr< Module > M)
void emitGlobals ()
EmitGlobals - Emit all of the global variables to memory, storing their addresses into GlobalAddress.
void emitGlobalVariable (const GlobalVariable *GV)
GenericValue getConstantValue (const Constant *C)
Converts a Constant* into a GenericValue, including handling of ConstantExpr values.
void LoadValueFromMemory (GenericValue &Result, GenericValue *Ptr, Type *Ty)
FIXME: document.
Protected Attributes
SmallVector< std::unique_ptr< Module >, 1 > Modules
The list of Modules that we are JIT'ing from.
FunctionCreator LazyFunctionCreator
LazyFunctionCreator - If an unknown function is needed, this function pointer is invoked to create it.
std::string ErrMsg

Abstract interface for implementation execution of LLVM modules, designed to support both interpreter and just-in-time (JIT) compiler implementations.

Definition at line 99 of file ExecutionEngine.h.

ExecutionEngine::~ExecutionEngine ( ) virtual

ExecutionEngine() [1/3]

llvm::ExecutionEngine::ExecutionEngine ( DataLayout DL) inlineprotected

ExecutionEngine() [2/3]

ExecutionEngine::ExecutionEngine ( DataLayout DL, std::unique_ptr< Module > M ) explicitprotected

ExecutionEngine() [3/3]

ExecutionEngine::ExecutionEngine ( std::unique_ptr< Module > M) explicitprotected

addArchive()

addArchive - Add an Archive to the execution engine.

This method is only supported by MCJIT. MCJIT will use the archive to resolve external symbols in objects it is loading. If a symbol is found in the Archive the contained object file will be extracted (in memory) and loaded for possible execution.

Reimplemented in llvm::MCJIT.

Definition at line 135 of file ExecutionEngine.cpp.

References llvm_unreachable.

addGlobalMapping() [1/2]

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 existing data in memory. Values to be mapped should be named, and have external or weak linkage. Mappings are automatically removed when their GlobalValue is destroyed.

Definition at line 202 of file ExecutionEngine.cpp.

References addGlobalMapping(), Addr, getMangledName(), and lock.

Referenced by addGlobalMapping(), emitGlobals(), and emitGlobalVariable().

addGlobalMapping() [2/2]

addModule()

virtual void llvm::ExecutionEngine::addModule ( std::unique_ptr< Module > M) inlinevirtual

addObjectFile() [1/2]

addObjectFile() [2/2]

addObjectFile - Add an ObjectFile to the execution engine.

This method is only supported by MCJIT. MCJIT will immediately load the object into memory and adds its symbols to the list used to resolve external symbols while preparing other objects for execution.

Objects added using this function will not be made executable until needed by another object.

MCJIT will take ownership of the ObjectFile.

Reimplemented in llvm::MCJIT.

Definition at line 126 of file ExecutionEngine.cpp.

References llvm_unreachable.

clearAllGlobalMappings()

void ExecutionEngine::clearAllGlobalMappings ( )

clearErrorMessage()

void llvm::ExecutionEngine::clearErrorMessage ( ) inline

clearGlobalMappingsFromModule()

void ExecutionEngine::clearGlobalMappingsFromModule ( Module * M )

DisableGVCompilation()

void llvm::ExecutionEngine::DisableGVCompilation ( bool Disabled = true) inline

DisableLazyCompilation()

void llvm::ExecutionEngine::DisableLazyCompilation ( bool Disabled = true) inline

DisableLazyCompilation - When lazy compilation is off (the default), the JIT will eagerly compile every function reachable from the argument to getPointerToFunction.

If lazy compilation is turned on, the JIT will only compile the one function and emit stubs to compile the rest when they're first called. If lazy compilation is turned off again while some lazy stubs are still around, and one of those stubs is called, the program will abort.

In order to safely compile lazily in a threaded program, the user must ensure that 1) only one thread at a time can call any particular lazy stub, and 2) any thread modifying LLVM IR must hold the JIT's lock (ExecutionEngine::lock) or otherwise ensure that no other thread calls a lazy stub. See http://llvm.org/PR5184 for details.

Definition at line 458 of file ExecutionEngine.h.

References llvm::Disabled.

DisableSymbolSearching()

void llvm::ExecutionEngine::DisableSymbolSearching ( bool Disabled = true) inline

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.

Definition at line 478 of file ExecutionEngine.h.

References llvm::Disabled.

emitGlobals()

void ExecutionEngine::emitGlobals ( ) protected

EmitGlobals - Emit all of the global variables to memory, storing their addresses into GlobalAddress.

This must make sure to copy the contents of their initializers into the memory.

Definition at line 1213 of file ExecutionEngine.cpp.

References addGlobalMapping(), assert(), emitGlobalVariable(), getMemoryForGV(), llvm::Value::getName(), getPointerToGlobalIfAvailable(), llvm::GlobalValue::getType(), llvm::GlobalValue::hasAppendingLinkage(), llvm::GlobalValue::hasExternalLinkage(), llvm::GlobalValue::hasExternalWeakLinkage(), llvm::GlobalValue::hasLocalLinkage(), llvm::Value::hasName(), llvm::GlobalValue::isDeclaration(), Modules, Ptr, llvm::report_fatal_error(), and llvm::sys::DynamicLibrary::SearchForAddressOfSymbol().

Referenced by llvm::Interpreter::Interpreter().

emitGlobalVariable()

finalizeObject()

virtual void llvm::ExecutionEngine::finalizeObject ( ) inlinevirtual

finalizeObject - ensure the module is fully processed and is usable.

It is the user-level function for completing the process of making the object usable for execution. It should be called after sections within an object have been relocated using mapSectionAddress. When this method is called the MCJIT execution engine will reapply relocations for a loaded object. This method has no effect for the interpreter.

Returns true on success, false on failure. Error messages can be retrieved by calling getError();

Reimplemented in llvm::MCJIT.

Definition at line 277 of file ExecutionEngine.h.

FindFunctionNamed()

FindFunctionNamed - Search all of the active modules to find the function that defines FnName.

This is very slow operation and shouldn't be used for general code.

Reimplemented in llvm::MCJIT.

Definition at line 152 of file ExecutionEngine.cpp.

References F, and Modules.

FindGlobalVariableNamed()

generateCodeForModule()

virtual void llvm::ExecutionEngine::generateCodeForModule ( Module * M) inlinevirtual

generateCodeForModule - Run code generation for the specified module and load it into memory.

When this function has completed, all code and data for the specified module, and any module on which this module depends, will be generated and loaded into memory, but relocations will not yet have been applied and all memory will be readable and writable but not executable.

This function is primarily useful when generating code for an external target, allowing the client an opportunity to remap section addresses before relocations are applied. Clients that intend to execute code locally can use the getFunctionAddress call, which will generate code and apply final preparations all in one step.

This method has no effect for the interpreter.

Reimplemented in llvm::MCJIT.

Definition at line 265 of file ExecutionEngine.h.

getAddressToGlobalIfAvailable()

getConstantValue()

Converts a Constant* into a GenericValue, including handling of ConstantExpr values.

Definition at line 584 of file ExecutionEngine.cpp.

References A, llvm::APFloat::add(), llvm::Type::ArrayTyID, assert(), llvm::APFloat::bitcastToAPInt(), llvm::APInt::bitsToDouble(), llvm::APInt::bitsToFloat(), llvm::BitWidth, llvm::CallingConv::C, llvm::APFloat::convertFromAPInt(), llvm::APFloat::convertToInteger(), llvm::APFloat::divide(), llvm::APInt::doubleToBits(), llvm::Type::DoubleTyID, llvm::GenericValue::DoubleVal, F, llvm::Type::FixedVectorTyID, llvm::APInt::floatToBits(), llvm::Type::FloatTyID, llvm::GenericValue::FloatVal, llvm::Type::FP128TyID, llvm::UndefValue::get(), llvm::APInt::getBitWidth(), getConstantValue(), llvm::ConstantDataSequential::getElementAsDouble(), llvm::ConstantDataSequential::getElementAsFloat(), llvm::ConstantDataSequential::getElementAsInteger(), llvm::ConstantDataSequential::getElementType(), llvm::Constant::getNullValue(), llvm::ConstantDataSequential::getNumElements(), llvm::User::getOperand(), getOrEmitGlobalVariable(), llvm::DataLayout::getPointerSizeInBits(), getPointerToFunctionOrStub(), llvm::Type::getPrimitiveSizeInBits(), llvm::Type::getScalarSizeInBits(), llvm::Value::getType(), llvm::Type::getTypeID(), llvm::DataLayout::getTypeSizeInBits(), llvm::APFloat::getZero(), llvm::APInt::getZExtValue(), llvm::TargetExtType::HasZeroInit, ignored(), llvm::Type::IntegerTyID, llvm::GenericValue::IntVal, llvm::Type::isAggregateType(), llvm::Type::isDoubleTy(), llvm::Type::isFloatingPointTy(), llvm::Type::isFloatTy(), llvm::Type::isIntegerTy(), llvm::Type::isPointerTy(), llvm::Type::isX86_FP80Ty(), LHS, llvm_unreachable, llvm::APFloat::mod(), llvm::APFloat::multiply(), llvm::Offset, OS, llvm::Type::PointerTyID, llvm::GenericValue::PointerVal, llvm::Type::PPC_FP128TyID, llvm::PTOGV(), llvm::report_fatal_error(), RHS, llvm::APFloatBase::rmNearestTiesToEven, llvm::APFloatBase::rmTowardZero, llvm::APIntOps::RoundDoubleToAPInt(), llvm::APIntOps::RoundFloatToAPInt(), llvm::APInt::roundToDouble(), llvm::Type::ScalableVectorTyID, llvm::APInt::sext(), llvm::APInt::signedRoundToDouble(), llvm::Type::StructTyID, llvm::APFloat::subtract(), llvm::APInt::trunc(), llvm::Type::X86_FP80TyID, llvm::APFloatBase::x87DoubleExtended(), llvm::APInt::zext(), and llvm::APInt::zextOrTrunc().

Referenced by getConstantValue(), and InitializeMemory().

getDataLayout()

Definition at line 196 of file ExecutionEngine.h.

References DL.

Referenced by llvm::MCJIT::addModule(), llvm::Interpreter::callExternalFunction(), emitGlobalVariable(), llvm::MCJIT::findModuleForSymbol(), llvm::MCJIT::generateCodeForModule(), getMangledName(), getMemoryForGV(), llvm::MCJIT::getSymbolAddress(), InitializeMemory(), llvm::Interpreter::Interpreter(), isTargetNullPtr(), lle_X_sprintf(), LoadValueFromMemory(), StoreValueToMemory(), and llvm::Interpreter::visitAllocaInst().

getErrorMessage()

const std::string & llvm::ExecutionEngine::getErrorMessage ( ) const inline

getFunctionAddress()

virtual uint64_t llvm::ExecutionEngine::getFunctionAddress ( const std::string & Name) inlinevirtual

getFunctionAddress - Return the address of the specified function.

This may involve code generation.

Reimplemented in llvm::MCJIT.

Definition at line 384 of file ExecutionEngine.h.

getGlobalValueAddress()

virtual uint64_t llvm::ExecutionEngine::getGlobalValueAddress ( const std::string & Name) inlinevirtual

getGlobalValueAddress - Return the address of the specified global value.

This may involve code generation.

This function should not be called with the interpreter engine.

Reimplemented in llvm::MCJIT.

Definition at line 376 of file ExecutionEngine.h.

getGlobalValueAtAddress()

getGlobalValueAtAddress - Return the LLVM global value object that starts at the specified address.

Definition at line 296 of file ExecutionEngine.cpp.

References Addr, llvm::StringMap< ValueTy, AllocatorTy >::begin(), llvm::StringMap< ValueTy, AllocatorTy >::end(), llvm::ExecutionEngineState::getGlobalAddressMap(), llvm::ExecutionEngineState::getGlobalAddressReverseMap(), I, lock, Modules, and Name.

getMangledName()

getMangledName - Get mangled name.

Definition at line 187 of file ExecutionEngine.cpp.

References assert(), DL, getDataLayout(), llvm::GlobalValue::getDataLayout(), llvm::Value::getName(), llvm::Mangler::getNameWithPrefix(), llvm::Value::hasName(), llvm::DataLayout::isDefault(), and lock.

Referenced by addGlobalMapping(), clearGlobalMappingsFromModule(), getPointerToGlobalIfAvailable(), and updateGlobalMapping().

getMemoryForGV()

getOrEmitGlobalVariable()

virtual void * llvm::ExecutionEngine::getOrEmitGlobalVariable ( const GlobalVariable * GV) inlinevirtual

getOrEmitGlobalVariable - Return the address of the specified global variable, possibly emitting it to memory if needed.

This is used by the Emitter.

This function is deprecated for the MCJIT execution engine. Use getGlobalValueAddress instead.

Definition at line 410 of file ExecutionEngine.h.

References getPointerToGlobal().

Referenced by getConstantValue().

getPointerToFunction()

virtual void * llvm::ExecutionEngine::getPointerToFunction ( Function * F) pure virtual

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. When F is destroyed, the ExecutionEngine will remove its global mapping and free any machine code. Be sure no threads are running inside F when that happens.

This function is deprecated for the MCJIT execution engine. Use getFunctionAddress instead.

Implemented in llvm::MCJIT.

Referenced by getPointerToFunctionOrStub(), and getPointerToGlobal().

getPointerToFunctionOrStub()

virtual void * llvm::ExecutionEngine::getPointerToFunctionOrStub ( Function * F) inlinevirtual

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. See getPointerToFunction for the requirements on destroying F.

This function is deprecated for the MCJIT execution engine. Use getFunctionAddress instead.

Definition at line 367 of file ExecutionEngine.h.

References F, and getPointerToFunction().

Referenced by getConstantValue().

getPointerToGlobal()

getPointerToGlobalIfAvailable() [1/2]

getPointerToGlobalIfAvailable() [2/2]

void * ExecutionEngine::getPointerToGlobalIfAvailable ( StringRef S )

getPointerToNamedFunction()

virtual void * llvm::ExecutionEngine::getPointerToNamedFunction ( StringRef Name, bool AbortOnFailure = true ) pure virtual

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.

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.

This function is deprecated for the MCJIT execution engine.

Implemented in llvm::Interpreter, and llvm::MCJIT.

getTargetMachine()

virtual TargetMachine * llvm::ExecutionEngine::getTargetMachine ( ) inlinevirtual

getVerifyModules()

bool llvm::ExecutionEngine::getVerifyModules ( ) const inline

hasError()

bool llvm::ExecutionEngine::hasError ( ) const inline

InitializeMemory()

void ExecutionEngine::InitializeMemory ( const Constant * Init,
void * Addr
)

Definition at line 1157 of file ExecutionEngine.cpp.

References Addr, llvm::Data, llvm::dbgs(), llvm::Init::dump(), getConstantValue(), getDataLayout(), llvm::StructLayout::getElementOffset(), llvm::DataLayout::getStructLayout(), llvm::DataLayout::getTypeAllocSize(), InitializeMemory(), LLVM_DEBUG, llvm_unreachable, and StoreValueToMemory().

Referenced by emitGlobalVariable(), and InitializeMemory().

InstallLazyFunctionCreator()

void llvm::ExecutionEngine::InstallLazyFunctionCreator ( FunctionCreator C) inline

isCompilingLazily()

bool llvm::ExecutionEngine::isCompilingLazily ( ) const inline

isGVCompilationDisabled()

bool llvm::ExecutionEngine::isGVCompilationDisabled ( ) const inline

isSymbolSearchingDisabled()

bool llvm::ExecutionEngine::isSymbolSearchingDisabled ( ) const inline

LoadValueFromMemory()

FIXME: document.

Definition at line 1090 of file ExecutionEngine.cpp.

References llvm::Type::DoubleTyID, llvm::Type::FixedVectorTyID, llvm::Type::FloatTyID, getBitWidth(), getDataLayout(), llvm::Type::getTypeID(), llvm::DataLayout::getTypeStoreSize(), llvm::Type::IntegerTyID, llvm::GenericValue::IntVal, llvm::Type::isDoubleTy(), llvm::Type::isFloatTy(), llvm::Type::isIntegerTy(), llvm::LoadIntFromMemory(), OS, llvm::Type::PointerTyID, Ptr, llvm::report_fatal_error(), llvm::Type::ScalableVectorTyID, and llvm::Type::X86_FP80TyID.

Referenced by llvm::Interpreter::visitLoadInst().

mapSectionAddress()

virtual void llvm::ExecutionEngine::mapSectionAddress ( const void * LocalAddress, uint64_t TargetAddress ) inlinevirtual

mapSectionAddress - map a section to its target address space value.

Map the address of a JIT section as returned from the memory manager to the address in the target process as the running code will see it. This is the address which will be used for relocation resolution.

Reimplemented in llvm::MCJIT.

Definition at line 244 of file ExecutionEngine.h.

References llvm_unreachable.

RegisterJITEventListener()

virtual void llvm::ExecutionEngine::RegisterJITEventListener ( JITEventListener * ) inlinevirtual

Registers a listener to be called back on various events within the JIT.

See JITEventListener.h for more details. Does not take ownership of the argument. The argument may be NULL, in which case these functions do nothing.

Reimplemented in llvm::MCJIT.

Definition at line 418 of file ExecutionEngine.h.

removeModule()

bool ExecutionEngine::removeModule ( Module * M) virtual

runFunction()

runFunction - Execute the specified function with the specified arguments, and return the result.

For MCJIT execution engines, clients are encouraged to use the "GetFunctionAddress" method (rather than runFunction) and cast the returned uint64_t to the desired function pointer type. However, for backwards compatibility MCJIT's implementation can execute 'main-like' function (i.e. those returning void or int, and taking either no arguments or (int, char*[])).

Implemented in llvm::Interpreter, and llvm::MCJIT.

Referenced by runFunctionAsMain(), and runStaticConstructorsDestructors().

runFunctionAsMain()

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.

Definition at line 422 of file ExecutionEngine.cpp.

References assert(), llvm::PointerType::get(), llvm::Function::getContext(), llvm::Function::getFunctionType(), llvm::FunctionType::getNumParams(), llvm::FunctionType::getParamType(), llvm::FunctionType::getReturnType(), llvm::APInt::getZExtValue(), llvm::GVTOP(), llvm::GenericValue::IntVal, llvm::Type::isIntegerTy(), isTargetNullPtr(), llvm::Type::isVoidTy(), llvm::PTOGV(), llvm::report_fatal_error(), and runFunction().

runStaticConstructorsDestructors() [1/2]

void ExecutionEngine::runStaticConstructorsDestructors ( bool isDtors) virtual

runStaticConstructorsDestructors() [2/2]

void ExecutionEngine::runStaticConstructorsDestructors ( Module & module,
bool isDtors
)

setObjectCache()

virtual void llvm::ExecutionEngine::setObjectCache ( ObjectCache * ) inlinevirtual

setProcessAllSections()

virtual void llvm::ExecutionEngine::setProcessAllSections ( bool ProcessAllSections) inlinevirtual

setProcessAllSections (MCJIT Only): By default, only sections that are "required for execution" are passed to the RTDyldMemoryManager, and other sections are discarded.

Passing 'true' to this method will cause RuntimeDyld to pass all sections to its RTDyldMemoryManager regardless of whether they are "required to execute" in the usual sense.

Rationale: Some MCJIT clients want to be able to inspect metadata sections (e.g. Dwarf, Stack-maps) to enable functionality or analyze performance. Passing these sections to the memory manager allows the client to make policy about the relevant sections, rather than having MCJIT do it.

Reimplemented in llvm::MCJIT.

Definition at line 438 of file ExecutionEngine.h.

References llvm_unreachable.

setVerifyModules()

void llvm::ExecutionEngine::setVerifyModules ( bool Verify) inline

StoreValueToMemory()

StoreValueToMemory - Stores the data in Val of type Ty at address Ptr.

Ptr is the address of the memory at which to store Val, cast to GenericValue *. It is not a pointer to a GenericValue containing the address at which to store Val.

Definition at line 1035 of file ExecutionEngine.cpp.

References llvm::GenericValue::AggregateVal, llvm::dbgs(), llvm::Type::DoubleTyID, llvm::GenericValue::DoubleVal, llvm::Type::FixedVectorTyID, llvm::Type::FloatTyID, llvm::GenericValue::FloatVal, getDataLayout(), llvm::APInt::getRawData(), llvm::Type::getTypeID(), llvm::DataLayout::getTypeStoreSize(), llvm::Type::IntegerTyID, llvm::GenericValue::IntVal, llvm::sys::IsLittleEndianHost, llvm::Type::PointerTyID, llvm::GenericValue::PointerVal, Ptr, llvm::Type::ScalableVectorTyID, llvm::StoreIntToMemory(), and llvm::Type::X86_FP80TyID.

Referenced by InitializeMemory(), and llvm::Interpreter::visitStoreInst().

UnregisterJITEventListener()

virtual void llvm::ExecutionEngine::UnregisterJITEventListener ( JITEventListener * ) inlinevirtual

updateGlobalMapping() [1/2]

updateGlobalMapping() [2/2]

EngineBuilder

ErrMsg

std::string llvm::ExecutionEngine::ErrMsg protected

InterpCtor

ExecutionEngine *(* ExecutionEngine::InterpCtor)(std::unique_ptr< Module > M, std::string *ErrorStr) =nullptr staticprotected

LazyFunctionCreator

lock

lock - This lock protects the ExecutionEngine and MCJIT classes.

It must be held while changing the internal state of any of those classes.

Definition at line 160 of file ExecutionEngine.h.

Referenced by addGlobalMapping(), llvm::MCJIT::addModule(), clearAllGlobalMappings(), clearGlobalMappingsFromModule(), llvm::MCJIT::emitObject(), llvm::MCJIT::finalizeLoadedModules(), llvm::MCJIT::finalizeModule(), llvm::MCJIT::finalizeObject(), llvm::MCJIT::findModuleForSymbol(), llvm::MCJIT::findSymbol(), llvm::MCJIT::generateCodeForModule(), getAddressToGlobalIfAvailable(), llvm::MCJIT::getFunctionAddress(), llvm::MCJIT::getGlobalValueAddress(), getGlobalValueAtAddress(), getMangledName(), llvm::MCJIT::getPointerToFunction(), getPointerToGlobal(), getPointerToGlobalIfAvailable(), llvm::MCJIT::notifyFreeingObject(), llvm::MCJIT::notifyObjectLoaded(), llvm::MCJIT::RegisterJITEventListener(), llvm::MCJIT::removeModule(), llvm::MCJIT::setObjectCache(), llvm::MCJIT::UnregisterJITEventListener(), updateGlobalMapping(), and llvm::MCJIT::~MCJIT().

MCJITCtor

Modules


The documentation for this class was generated from the following files: