Home
last modified time | relevance | path

Searched refs:ResolvedSymbols (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp169 ResolvedSymbols[KV.first] = nullptr; in AsynchronousSymbolQuery()
174 auto I = ResolvedSymbols.find(Name); in notifySymbolMetRequiredState()
175 assert(I != ResolvedSymbols.end() && in notifySymbolMetRequiredState()
182 ResolvedSymbols.erase(I); in notifySymbolMetRequiredState()
194 RunQueryCompleteTask(SymbolMap ResolvedSymbols, in handleComplete() argument
196 : ResolvedSymbols(std::move(ResolvedSymbols)), in handleComplete()
204 SymbolMap ResolvedSymbols; in handleComplete() member in llvm::orc::AsynchronousSymbolQuery::handleComplete::RunQueryCompleteTask
241 auto I = ResolvedSymbols.find(Name); in dropSymbol()
242 assert(I != ResolvedSymbols.end() && in dropSymbol()
244 ResolvedSymbols.erase(I); in dropSymbol()
[all …]
H A DRTDyldObjectLinkingLayer.cpp159 std::map<StringRef, JITEvaluatedSymbol> ResolvedSymbols) { in emit() argument
161 ResolvedSymbols, *InternalSymbols); in emit()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp1171 JITSymbolResolver::LookupSet ResolvedSymbols; in resolveExternalSymbols() local
1179 !ResolvedSymbols.count(Name)) in resolveExternalSymbols()
1209 assert(!ResolvedSymbols.count(RRKV.first) && "Redundant resolution?"); in resolveExternalSymbols()
1211 ResolvedSymbols.insert(RRKV.first); in resolveExternalSymbols()
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h878 SymbolMap ResolvedSymbols; variable