LLVM 22.0.0git
llvm::orc::JITDylib Class Reference

Represents a JIT'd dynamic library. More...

#include "llvm/ExecutionEngine/Orc/Core.h"

Inheritance diagram for llvm::orc::JITDylib:
[legend]

Public Member Functions

 JITDylib (const JITDylib &)=delete
JITDyliboperator= (const JITDylib &)=delete
 JITDylib (JITDylib &&)=delete
JITDyliboperator= (JITDylib &&)=delete
LLVM_ABI ~JITDylib ()
ExecutionSessiongetExecutionSession () const
 Get a reference to the ExecutionSession for this JITDylib.
LLVM_ABI void dump (raw_ostream &OS)
 Dump current JITDylib state to OS.
LLVM_ABI Error clear ()
 Calls remove on all trackers currently associated with this JITDylib.
LLVM_ABI ResourceTrackerSP getDefaultResourceTracker ()
 Get the default resource tracker for this JITDylib.
LLVM_ABI ResourceTrackerSP createResourceTracker ()
 Create a resource tracker for this JITDylib.
template<typename GeneratorT>
GeneratorT & addGenerator (std::unique_ptr< GeneratorT > DefGenerator)
 Adds a definition generator to this JITDylib and returns a referenece to it.
LLVM_ABI void removeGenerator (DefinitionGenerator &G)
 Remove a definition generator from this JITDylib.
LLVM_ABI void setLinkOrder (JITDylibSearchOrder NewSearchOrder, bool LinkAgainstThisJITDylibFirst=true)
 Set the link order to be used when fixing up definitions in JITDylib.
LLVM_ABI void addToLinkOrder (const JITDylibSearchOrder &NewLinks)
 Append the given JITDylibSearchOrder to the link order for this JITDylib (discarding any elements already present in this JITDylib's link order).
LLVM_ABI void addToLinkOrder (JITDylib &JD, JITDylibLookupFlags JDLookupFlags=JITDylibLookupFlags::MatchExportedSymbolsOnly)
 Add the given JITDylib to the link order for definitions in this JITDylib.
LLVM_ABI void replaceInLinkOrder (JITDylib &OldJD, JITDylib &NewJD, JITDylibLookupFlags JDLookupFlags=JITDylibLookupFlags::MatchExportedSymbolsOnly)
 Replace OldJD with NewJD in the link order if OldJD is present.
LLVM_ABI void removeFromLinkOrder (JITDylib &JD)
 Remove the given JITDylib from the link order for this JITDylib if it is present.
template<typename Func>
auto withLinkOrderDo (Func &&F) -> decltype(F(std::declval< const JITDylibSearchOrder & >()))
 Do something with the link order (run under the session lock).
template<typename MaterializationUnitType>
Error define (std::unique_ptr< MaterializationUnitType > &&MU, ResourceTrackerSP RT=nullptr)
 Define all symbols provided by the materialization unit to be part of this JITDylib.
template<typename MaterializationUnitType>
Error define (std::unique_ptr< MaterializationUnitType > &MU, ResourceTrackerSP RT=nullptr)
 Define all symbols provided by the materialization unit to be part of this JITDylib.
LLVM_ABI Error remove (const SymbolNameSet &Names)
 Tries to remove the given symbols.
LLVM_ABI Expected< std::vector< JITDylibSP > > getDFSLinkOrder ()
 Return this JITDylib and its transitive dependencies in DFS order based on linkage relationships.
LLVM_ABI Expected< std::vector< JITDylibSP > > getReverseDFSLinkOrder ()
 Rteurn this JITDylib and its transitive dependencies in reverse DFS order based on linkage relationships.
Public Member Functions inherited from llvm::ThreadSafeRefCountedBase< JITDylib >
unsigned UseCount () const
void Retain () const
void Release () const

Static Public Member Functions

static LLVM_ABI Expected< std::vector< JITDylibSP > > getDFSLinkOrder (ArrayRef< JITDylibSP > JDs)
 Returns the given JITDylibs and all of their transitive dependencies in DFS order (based on linkage relationships).
static LLVM_ABI Expected< std::vector< JITDylibSP > > getReverseDFSLinkOrder (ArrayRef< JITDylibSP > JDs)
 Returns the given JITDylibs and all of their transitive dependencies in reverse DFS order (based on linkage relationships).

Friends

class AsynchronousSymbolQuery
class ExecutionSession
class Platform
class MaterializationResponsibility

Additional Inherited Members

Protected Member Functions inherited from llvm::ThreadSafeRefCountedBase< JITDylib >
 ThreadSafeRefCountedBase ()=default
ThreadSafeRefCountedBaseoperator= (const ThreadSafeRefCountedBase &)=delete
 ~ThreadSafeRefCountedBase ()

Detailed Description

Represents a JIT'd dynamic library.

This class aims to mimic the behavior of a regular dylib or shared object, but without requiring the contained program representations to be compiled up-front. The JITDylib's content is defined by adding MaterializationUnits, and contained MaterializationUnits will typically rely on the JITDylib's links-against order to resolve external references (similar to a regular dylib).

The JITDylib object is a thin wrapper that references state held by the ExecutionSession. JITDylibs can be removed, clearing this underlying state and leaving the JITDylib object in a defunct state. In this state the JITDylib's name is guaranteed to remain accessible. If the ExecutionSession is still alive then other operations are callable but will return an Error or null result (depending on the API). It is illegal to call any operation other than getName on a JITDylib after the ExecutionSession has been torn down.

JITDylibs cannot be moved or copied. Their address is stable, and useful as a key in some JIT data structures.

Definition at line 901 of file Core.h.

Constructor & Destructor Documentation

◆ JITDylib() [1/2]

llvm::orc::JITDylib::JITDylib ( const JITDylib & )
delete

◆ JITDylib() [2/2]

llvm::orc::JITDylib::JITDylib ( JITDylib && )
delete

References JITDylib().

◆ ~JITDylib()

llvm::orc::JITDylib::~JITDylib ( )

Definition at line 652 of file Core.cpp.

References llvm::dbgs(), llvm::jitlink::JITLinkDylib::getName(), and LLVM_DEBUG.

Member Function Documentation

◆ addGenerator()

template<typename GeneratorT>
GeneratorT & llvm::orc::JITDylib::addGenerator ( std::unique_ptr< GeneratorT > DefGenerator)

Adds a definition generator to this JITDylib and returns a referenece to it.

When JITDylibs are searched during lookup, if no existing definition of a symbol is found, then any generators that have been added are run (in the order that they were added) to potentially generate a definition.

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 1865 of file Core.h.

References assert(), and G.

Referenced by llvm::orc::LLJIT::linkStaticLibraryInto(), llvm::orc::LLJIT::linkStaticLibraryInto(), llvm::orc::LLJIT::loadPlatformDynamicLibrary(), llvm::orc::LLJITBuilderState::prepareForConstruction(), and llvm::orc::COFFPlatform::setupJITDylib().

◆ addToLinkOrder() [1/2]

void llvm::orc::JITDylib::addToLinkOrder ( const JITDylibSearchOrder & NewLinks)

◆ addToLinkOrder() [2/2]

void llvm::orc::JITDylib::addToLinkOrder ( JITDylib & JD,
JITDylibLookupFlags JDLookupFlags = JITDylibLookupFlags::MatchExportedSymbolsOnly )

Add the given JITDylib to the link order for definitions in this JITDylib.

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 1031 of file Core.cpp.

References addToLinkOrder(), and JITDylib().

◆ clear()

Error llvm::orc::JITDylib::clear ( )

Calls remove on all trackers currently associated with this JITDylib.

Does not run static deinits.

Note that removal happens outside the session lock, so new code may be added concurrently while the clear is underway, and the newly added code will not be cleared. Adding new code concurrently with a clear is usually a bug and should be avoided.

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 656 of file Core.cpp.

References assert(), getDefaultResourceTracker(), llvm::joinErrors(), and llvm::Error::success().

◆ createResourceTracker()

ResourceTrackerSP llvm::orc::JITDylib::createResourceTracker ( )

Create a resource tracker for this JITDylib.

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 680 of file Core.cpp.

References assert().

◆ define() [1/2]

template<typename MaterializationUnitType>
Error llvm::orc::JITDylib::define ( std::unique_ptr< MaterializationUnitType > && MU,
ResourceTrackerSP RT = nullptr )

◆ define() [2/2]

template<typename MaterializationUnitType>
Error llvm::orc::JITDylib::define ( std::unique_ptr< MaterializationUnitType > & MU,
ResourceTrackerSP RT = nullptr )

Define all symbols provided by the materialization unit to be part of this JITDylib.

This overload only takes ownership of the MaterializationUnit no error is generated. If an error occurs, ownership remains with the caller. This may allow the caller to modify the MaterializationUnit to correct the issue, then re-call define.

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 1925 of file Core.h.

References assert(), llvm::dbgs(), DEBUG_WITH_TYPE, llvm::IntrusiveRefCntPtr< T >::get(), getDefaultResourceTracker(), llvm::jitlink::JITLinkDylib::getName(), P, and llvm::Error::success().

◆ dump()

void llvm::orc::JITDylib::dump ( raw_ostream & OS)

Dump current JITDylib state to OS.

It is legal to call this method on a defunct JITDylib.

Definition at line 1120 of file Core.cpp.

References assert(), dump(), llvm::format(), getName(), I, and llvm::orc::Ready.

Referenced by dump().

◆ getDefaultResourceTracker()

ResourceTrackerSP llvm::orc::JITDylib::getDefaultResourceTracker ( )

Get the default resource tracker for this JITDylib.

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 671 of file Core.cpp.

References assert().

Referenced by llvm::orc::IRLayer::add(), llvm::orc::LinkGraphLayer::add(), llvm::orc::LinkGraphLayer::add(), llvm::orc::ObjectLayer::add(), llvm::orc::LLJIT::addIRModule(), llvm::orc::LLJIT::addObjectFile(), clear(), define(), and define().

◆ getDFSLinkOrder() [1/2]

Expected< std::vector< JITDylibSP > > llvm::orc::JITDylib::getDFSLinkOrder ( )

Return this JITDylib and its transitive dependencies in DFS order based on linkage relationships.

If any JITDylib in the order is defunct then this method will return an error, otherwise returns the order.

Definition at line 1769 of file Core.cpp.

References getDFSLinkOrder().

Referenced by getDFSLinkOrder(), and getReverseDFSLinkOrder().

◆ getDFSLinkOrder() [2/2]

Expected< std::vector< JITDylibSP > > llvm::orc::JITDylib::getDFSLinkOrder ( ArrayRef< JITDylibSP > JDs)
static

◆ getExecutionSession()

ExecutionSession & llvm::orc::JITDylib::getExecutionSession ( ) const
inline

Get a reference to the ExecutionSession for this JITDylib.

It is legal to call this method on a defunct JITDylib, however the result will only usable if the ExecutionSession is still alive. If this JITDylib is held by an error that may have torn down the JIT then the result should not be used.

Definition at line 921 of file Core.h.

References ExecutionSession.

Referenced by llvm::orc::buildSimpleReexportsAliasMap(), llvm::orc::LazyReexportsManager::handleRemoveResources(), llvm::orc::LLJITBuilderState::prepareForConstruction(), llvm::orc::ResourceTracker::remove(), llvm::orc::ResourceTracker::transferTo(), llvm::orc::ReexportsGenerator::tryToGenerate(), llvm::orc::ResourceTracker::withResourceKeyDo(), and llvm::orc::ResourceTracker::~ResourceTracker().

◆ getReverseDFSLinkOrder() [1/2]

Expected< std::vector< JITDylibSP > > llvm::orc::JITDylib::getReverseDFSLinkOrder ( )

Rteurn this JITDylib and its transitive dependencies in reverse DFS order based on linkage relationships.

If any JITDylib in the order is defunct then this method will return an error, otherwise returns the order.

Definition at line 1773 of file Core.cpp.

References getReverseDFSLinkOrder().

Referenced by getReverseDFSLinkOrder().

◆ getReverseDFSLinkOrder() [2/2]

Expected< std::vector< JITDylibSP > > llvm::orc::JITDylib::getReverseDFSLinkOrder ( ArrayRef< JITDylibSP > JDs)
static

Returns the given JITDylibs and all of their transitive dependencies in reverse DFS order (based on linkage relationships).

Each JITDylib will appear only once.

If any JITDylib in the order is defunct then this method will return an error, otherwise returns the order.

Definition at line 1762 of file Core.cpp.

References getDFSLinkOrder(), and llvm::orc::Result.

◆ operator=() [1/2]

JITDylib & llvm::orc::JITDylib::operator= ( const JITDylib & )
delete

References JITDylib().

◆ operator=() [2/2]

JITDylib & llvm::orc::JITDylib::operator= ( JITDylib && )
delete

References JITDylib(), and LLVM_ABI.

◆ remove()

Error llvm::orc::JITDylib::remove ( const SymbolNameSet & Names)

Tries to remove the given symbols.

If any symbols are not defined in this JITDylib this method will return a SymbolsNotFound error covering the missing symbols.

If all symbols are found but some symbols are in the process of being materialized this method will return a SymbolsCouldNotBeRemoved error.

On success, all symbols are removed. On failure, the JITDylib state is left unmodified (no symbols are removed).

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 1059 of file Core.cpp.

References assert(), I, llvm::make_error(), llvm::orc::Materializing, llvm::orc::NeverSearched, llvm::orc::Ready, remove(), and llvm::Error::success().

Referenced by remove().

◆ removeFromLinkOrder()

void llvm::orc::JITDylib::removeFromLinkOrder ( JITDylib & JD)

Remove the given JITDylib from the link order for this JITDylib if it is present.

Otherwise this operation is a no-op.

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 1047 of file Core.cpp.

References assert(), llvm::find_if(), I, JITDylib(), and removeFromLinkOrder().

Referenced by removeFromLinkOrder().

◆ removeGenerator()

void llvm::orc::JITDylib::removeGenerator ( DefinitionGenerator & G)

Remove a definition generator from this JITDylib.

The given generator must exist in this JITDylib's generators list (i.e. have been added and not yet removed).

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 688 of file Core.cpp.

References assert(), llvm::find_if(), G, H, and I.

◆ replaceInLinkOrder()

void llvm::orc::JITDylib::replaceInLinkOrder ( JITDylib & OldJD,
JITDylib & NewJD,
JITDylibLookupFlags JDLookupFlags = JITDylibLookupFlags::MatchExportedSymbolsOnly )

Replace OldJD with NewJD in the link order if OldJD is present.

Otherwise this operation is a no-op.

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 1035 of file Core.cpp.

References assert(), JITDylib(), and replaceInLinkOrder().

Referenced by replaceInLinkOrder().

◆ setLinkOrder()

void llvm::orc::JITDylib::setLinkOrder ( JITDylibSearchOrder NewSearchOrder,
bool LinkAgainstThisJITDylibFirst = true )

Set the link order to be used when fixing up definitions in JITDylib.

This will replace the previous link order, and apply to any symbol resolutions made for definitions in this JITDylib after the call to setLinkOrder (even if the definition itself was added before the call).

If LinkAgainstThisJITDylibFirst is true (the default) then this JITDylib will add itself to the beginning of the LinkOrder (Clients should not put this JITDylib in the list in this case, to avoid redundant lookups).

If LinkAgainstThisJITDylibFirst is false then the link order will be used as-is. The primary motivation for this feature is to support deliberate shadowing of symbols in this JITDylib by a facade JITDylib. For example, the facade may resolve function names to stubs, and the stubs may compile lazily by looking up symbols in this dylib. Adding the facade dylib as the first in the link order (instead of this dylib) ensures that definitions within this dylib resolve to the lazy-compiling stubs, rather than immediately materializing the definitions in this dylib.

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 1004 of file Core.cpp.

References llvm::append_range(), assert(), llvm::orc::MatchAllSymbols, and setLinkOrder().

Referenced by setLinkOrder().

◆ withLinkOrderDo()

template<typename Func>
auto llvm::orc::JITDylib::withLinkOrderDo ( Func && F) -> decltype(F(std::declval<const JITDylibSearchOrder &>()))

Do something with the link order (run under the session lock).

It is illegal to call this method on a defunct JITDylib and the client is responsible for ensuring that they do not do so.

Definition at line 1875 of file Core.h.

References assert(), and F.

Referenced by llvm::orc::DLLImportDefinitionGenerator::tryToGenerate().

◆ AsynchronousSymbolQuery

friend class AsynchronousSymbolQuery
friend

Definition at line 903 of file Core.h.

References AsynchronousSymbolQuery.

Referenced by AsynchronousSymbolQuery.

◆ ExecutionSession

friend class ExecutionSession
friend

Definition at line 904 of file Core.h.

References ExecutionSession.

Referenced by ExecutionSession, and getExecutionSession().

◆ MaterializationResponsibility

friend class MaterializationResponsibility
friend

Definition at line 906 of file Core.h.

References MaterializationResponsibility.

Referenced by MaterializationResponsibility.

◆ Platform

friend class Platform
friend

Definition at line 905 of file Core.h.

References Platform.

Referenced by Platform.


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