Home
last modified time | relevance | path

Searched refs:RegisteredObjs (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugObjectManagerPlugin.cpp479 RegisteredObjs[K].push_back(std::move(PendingObjs[&MR])); in notifyEmitted()
500 auto SrcIt = RegisteredObjs.find(SrcKey); in notifyTransferringResources()
501 if (SrcIt != RegisteredObjs.end()) { in notifyTransferringResources()
505 RegisteredObjs[DstKey].push_back(std::move(DebugObj)); in notifyTransferringResources()
506 RegisteredObjs.erase(SrcIt); in notifyTransferringResources()
515 RegisteredObjs.erase(Key); in notifyRemovingResources()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DDebugObjectManagerPlugin.h94 std::map<ResourceKey, std::vector<OwnedDebugObject>> RegisteredObjs; variable