15#define DEBUG_TYPE "orc"
20Expected<std::unique_ptr<EPCDynamicLibrarySearchGenerator>>
27 return Handle.takeError();
29 return std::make_unique<EPCDynamicLibrarySearchGenerator>(
30 ES, *Handle, std::move(Allow), std::move(AddAbsoluteSymbols));
41 dbgs() <<
"EPCDynamicLibrarySearchGenerator trying to generate "
47 assert(Allow &&
"No handle or filter?");
49 for (
auto &[Name, LookupFlags] : Symbols) {
53 return addAbsolutes(JD, std::move(Nulls));
59 for (
auto &KV : Symbols) {
61 if (Allow && !Allow(KV.first))
68 EPC.getDylibMgr().lookupSymbolsAsync(Request, [
this, &JD, LS = std::move(LS),
73 dbgs() <<
"EPCDynamicLibrarySearchGenerator lookup failed due to error";
75 return LS.continueLookup(
Result.takeError());
78 assert(
Result->size() == 1 &&
"Results for more than one library returned");
80 "Result has incorrect number of elements");
83 auto ResultI =
Result->front().begin();
84 for (
auto &KV : LookupSymbols) {
85 if (ResultI->getAddress())
86 NewSymbols[KV.first] = *ResultI;
91 dbgs() <<
"EPCDynamicLibrarySearchGenerator lookup returned "
92 << NewSymbols <<
"\n";
96 if (NewSymbols.
empty())
100 Error Err = addAbsolutes(JD, std::move(NewSymbols));
102 LS.continueLookup(std::move(Err));
108Error EPCDynamicLibrarySearchGenerator::addAbsolutes(
JITDylib &JD,
110 return AddAbsoluteSymbols ? AddAbsoluteSymbols(JD, std::move(Symbols))
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
friend class ExecutionSession
virtual Expected< tpctypes::DylibHandle > loadDylib(const char *DylibPath)=0
Load the dynamic library at the given path and return a handle to it.
static Expected< std::unique_ptr< EPCDynamicLibrarySearchGenerator > > Load(ExecutionSession &ES, const char *LibraryPath, SymbolPredicate Allow=SymbolPredicate(), AddAbsoluteSymbolsFn AddAbsoluteSymbols=nullptr)
Permanently loads the library at the given path and, on success, returns an EPCDynamicLibrarySearchGe...
unique_function< bool(const SymbolStringPtr &)> SymbolPredicate
unique_function< Error(JITDylib &, SymbolMap)> AddAbsoluteSymbolsFn
Error tryToGenerate(LookupState &LS, LookupKind K, JITDylib &JD, JITDylibLookupFlags JDLookupFlags, const SymbolLookupSet &Symbols) override
DefinitionGenerators should override this method to insert new definitions into the parent JITDylib.
ExecutorProcessControl & getExecutorProcessControl()
Get the ExecutorProcessControl object associated with this ExecutionSession.
DylibManager & getDylibMgr() const
Return the DylibManager for the target process.
Represents a JIT'd dynamic library.
Wraps state for a lookup-in-progress.
A set of symbols to look up, each associated with a SymbolLookupFlags value.
UnderlyingVector::size_type size() const
SymbolLookupSet & add(SymbolStringPtr Name, SymbolLookupFlags Flags=SymbolLookupFlags::RequiredSymbol)
Add an element to the set.
std::unique_ptr< AbsoluteSymbolsMaterializationUnit > absoluteSymbols(SymbolMap Symbols)
Create an AbsoluteSymbolsMaterializationUnit with the given symbols.
JITDylibLookupFlags
Lookup flags that apply to each dylib in the search order for a lookup.
DenseMap< SymbolStringPtr, ExecutorSymbolDef > SymbolMap
A map from symbol names (as SymbolStringPtrs) to JITSymbols (address/flags pairs).
LookupKind
Describes the kind of lookup being performed.
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Implement std::hash so that hash_code can be used in STL containers.
A pair of a dylib and a set of symbols to be looked up.