LLVM  8.0.1
Public Types | Public Member Functions | Static Public Member Functions | List of all members
llvm::orc::DynamicLibrarySearchGenerator Class Reference

A utility class to expose symbols found via dlsym to the JIT. More...

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

Public Types

using SymbolPredicate = std::function< bool(SymbolStringPtr)>
 

Public Member Functions

 DynamicLibrarySearchGenerator (sys::DynamicLibrary Dylib, const DataLayout &DL, SymbolPredicate Allow=SymbolPredicate())
 Create a DynamicLibrarySearchGenerator that searches for symbols in the given sys::DynamicLibrary. More...
 
SymbolNameSet operator() (JITDylib &JD, const SymbolNameSet &Names)
 

Static Public Member Functions

static Expected< DynamicLibrarySearchGeneratorLoad (const char *FileName, const DataLayout &DL, SymbolPredicate Allow=SymbolPredicate())
 Permanently loads the library at the given path and, on success, returns a DynamicLibrarySearchGenerator that will search it for symbol definitions in the library. More...
 
static Expected< DynamicLibrarySearchGeneratorGetForCurrentProcess (const DataLayout &DL, SymbolPredicate Allow=SymbolPredicate())
 Creates a DynamicLibrarySearchGenerator that searches for symbols in the current process. More...
 

Detailed Description

A utility class to expose symbols found via dlsym to the JIT.

If an instance of this class is attached to a JITDylib as a fallback definition generator, then any symbol found in the given DynamicLibrary that passes the 'Allow' predicate will be added to the JITDylib.

Definition at line 215 of file ExecutionUtils.h.

Member Typedef Documentation

◆ SymbolPredicate

Definition at line 217 of file ExecutionUtils.h.

Constructor & Destructor Documentation

◆ DynamicLibrarySearchGenerator()

llvm::orc::DynamicLibrarySearchGenerator::DynamicLibrarySearchGenerator ( sys::DynamicLibrary  Dylib,
const DataLayout DL,
SymbolPredicate  Allow = SymbolPredicate() 
)

Create a DynamicLibrarySearchGenerator that searches for symbols in the given sys::DynamicLibrary.

If the Allow predicate is given then only symbols matching the predicate will be searched for in the DynamicLibrary. If the predicate is not given then all symbols will be searched for.

Definition at line 181 of file ExecutionUtils.cpp.

Referenced by Load().

Member Function Documentation

◆ GetForCurrentProcess()

static Expected<DynamicLibrarySearchGenerator> llvm::orc::DynamicLibrarySearchGenerator::GetForCurrentProcess ( const DataLayout DL,
SymbolPredicate  Allow = SymbolPredicate() 
)
inlinestatic

Creates a DynamicLibrarySearchGenerator that searches for symbols in the current process.

Definition at line 237 of file ExecutionUtils.h.

References GlobalPrefix, and llvm::SPII::Load.

◆ Load()

Expected< DynamicLibrarySearchGenerator > llvm::orc::DynamicLibrarySearchGenerator::Load ( const char FileName,
const DataLayout DL,
SymbolPredicate  Allow = SymbolPredicate() 
)
static

Permanently loads the library at the given path and, on success, returns a DynamicLibrarySearchGenerator that will search it for symbol definitions in the library.

On failure returns the reason the library failed to load.

Definition at line 187 of file ExecutionUtils.cpp.

References DynamicLibrarySearchGenerator(), llvm::sys::DynamicLibrary::getPermanentLibrary(), llvm::inconvertibleErrorCode(), and operator()().

◆ operator()()

SymbolNameSet llvm::orc::DynamicLibrarySearchGenerator::operator() ( JITDylib JD,
const SymbolNameSet Names 
)

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