LLVM: llvm::orc::Platform Class Reference (original) (raw)

Platforms set up standard symbols and mediate interactions between dynamic initializers (e.g. More...

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

Public Member Functions
virtual ~Platform ()
virtual Error setupJITDylib (JITDylib &JD)=0
This method will be called outside the session lock each time a JITDylib is created (unless it is created with EmptyJITDylib set) to allow the Platform to install any JITDylib specific standard symbols (e.g __dso_handle).
virtual Error teardownJITDylib (JITDylib &JD)=0
This method will be called outside the session lock each time a JITDylib is removed to allow the Platform to remove any JITDylib-specific data.
virtual Error notifyAdding (ResourceTracker &RT, const MaterializationUnit &MU)=0
This method will be called under the ExecutionSession lock each time a MaterializationUnit is added to a JITDylib.
virtual Error notifyRemoving (ResourceTracker &RT)=0
This method will be called under the ExecutionSession lock when a ResourceTracker is removed.

Platforms set up standard symbols and mediate interactions between dynamic initializers (e.g.

C++ static constructors) and ExecutionSession state. Note that Platforms do not automatically run initializers: clients are still responsible for doing this.

Definition at line 1269 of file Core.h.

llvm::orc::Platform::~Platform ( ) virtualdefault

lookupInitSymbols()

A utility function for looking up initializer symbols.

Performs a blocking lookup for the given symbols in each of the given JITDylibs.

Note: This function is deprecated and will be removed in the near future.

Definition at line 1455 of file Core.cpp.

References assert(), llvm::Count, llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::count(), llvm::dbgs(), llvm::joinErrors(), LLVM_DEBUG, llvm::orc::ExecutionSession::lookup(), llvm::orc::MatchAllSymbols, llvm::orc::NoDependenciesToRegister, llvm::orc::Ready, llvm::orc::Result, llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::size(), llvm::orc::Static, and llvm::Error::success().

Referenced by notifyRemoving().

lookupInitSymbolsAsync()

Performs an async lookup for the given symbols in each of the given JITDylibs, calling the given handler once all lookups have completed.

Definition at line 1504 of file Core.cpp.

References llvm::dbgs(), llvm::joinErrors(), LLVM_DEBUG, llvm::orc::ExecutionSession::lookup(), llvm::orc::MatchAllSymbols, llvm::orc::NoDependenciesToRegister, llvm::orc::Ready, llvm::orc::Result, llvm::orc::Static, and llvm::Error::success().

Referenced by notifyRemoving().

notifyAdding()

notifyRemoving()

setupJITDylib()

virtual Error llvm::orc::Platform::setupJITDylib ( JITDylib & JD) pure virtual

teardownJITDylib()

virtual Error llvm::orc::Platform::teardownJITDylib ( JITDylib & JD) pure virtual

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