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

Symbol resolution interface. More...

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

Public Member Functions
virtual ~JITSymbolResolver ()=default
virtual void lookup (const LookupSet &Symbols, OnResolvedFunction OnResolved)=0
Returns the fully resolved address and flags for each of the given symbols.
virtual Expected< LookupSet > getResponsibilitySet (const LookupSet &Symbols)=0
Returns the subset of the given symbols that should be materialized by the caller.
virtual bool allowsZeroSymbols ()
Specify if this resolver can return valid symbols with zero value.

Symbol resolution interface.

Allows symbol flags and addresses to be looked up by name. Symbol queries are done in bulk (i.e. you request resolution of a set of symbols, rather than a single one) to reduce IPC overhead in the case of remote JITing, and expose opportunities for parallel compilation.

Definition at line 373 of file JITSymbol.h.

LookupResult

LookupSet

OnResolvedFunction

virtual llvm::JITSymbolResolver::~JITSymbolResolver ( ) virtualdefault

allowsZeroSymbols()

virtual bool llvm::JITSymbolResolver::allowsZeroSymbols ( ) inlinevirtual

Specify if this resolver can return valid symbols with zero value.

Definition at line 396 of file JITSymbol.h.

getResponsibilitySet()

virtual Expected< LookupSet > llvm::JITSymbolResolver::getResponsibilitySet ( const LookupSet & Symbols) pure virtual

Returns the subset of the given symbols that should be materialized by the caller.

Only weak/common symbols should be looked up, as strong definitions are implicitly always part of the caller's responsibility.

Implemented in llvm::LegacyJITSymbolResolver.

lookup()

virtual void llvm::JITSymbolResolver::lookup ( const LookupSet & Symbols, OnResolvedFunction OnResolved ) pure virtual

Returns the fully resolved address and flags for each of the given symbols.

This method will return an error if any of the given symbols can not be resolved, or if the resolution process itself triggers an error.

Implemented in llvm::LegacyJITSymbolResolver.


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