Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp171 ResolvedSymbols[KV.first] = ExecutorSymbolDef(); in AsynchronousSymbolQuery()
176 auto I = ResolvedSymbols.find(Name); in notifySymbolMetRequiredState()
177 assert(I != ResolvedSymbols.end() && in notifySymbolMetRequiredState()
185 ResolvedSymbols.erase(I); in notifySymbolMetRequiredState()
197 RunQueryCompleteTask(SymbolMap ResolvedSymbols, in handleComplete() argument
199 : ResolvedSymbols(std::move(ResolvedSymbols)), in handleComplete()
207 SymbolMap ResolvedSymbols; in handleComplete() member in llvm::orc::AsynchronousSymbolQuery::handleComplete::RunQueryCompleteTask
244 auto I = ResolvedSymbols.find(Name); in dropSymbol()
245 assert(I != ResolvedSymbols.end() && in dropSymbol()
247 ResolvedSymbols.erase(I); in dropSymbol()
[all …]
H A DRTDyldObjectLinkingLayer.cpp195 std::map<StringRef, JITEvaluatedSymbol> ResolvedSymbols) { in emit() argument
197 ResolvedSymbols, *InternalSymbols); in emit()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp1167 JITSymbolResolver::LookupSet ResolvedSymbols; in resolveExternalSymbols() local
1175 !ResolvedSymbols.count(Name)) in resolveExternalSymbols()
1205 assert(!ResolvedSymbols.count(RRKV.first) && "Redundant resolution?"); in resolveExternalSymbols()
1207 ResolvedSymbols.insert(RRKV.first); in resolveExternalSymbols()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h882 SymbolMap ResolvedSymbols; variable