Home
last modified time | relevance | path

Searched refs:ResourceKey (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DObjectLinkingLayer.h82 virtual Error notifyRemovingResources(JITDylib &JD, ResourceKey K) = 0;
83 virtual void notifyTransferringResources(JITDylib &JD, ResourceKey DstKey,
84 ResourceKey SrcKey) = 0;
200 Error handleRemoveResources(JITDylib &JD, ResourceKey K) override;
201 void handleTransferResources(JITDylib &JD, ResourceKey DstKey,
202 ResourceKey SrcKey) override;
210 DenseMap<ResourceKey, std::vector<FinalizedAlloc>> Allocs;
224 Error notifyRemovingResources(JITDylib &JD, ResourceKey K) override;
225 void notifyTransferringResources(JITDylib &JD, ResourceKey DstKey,
226 ResourceKey SrcKey) override;
[all …]
H A DDebugObjectManagerPlugin.h80 Error notifyRemovingResources(JITDylib &JD, ResourceKey K) override;
82 void notifyTransferringResources(JITDylib &JD, ResourceKey DstKey,
83 ResourceKey SrcKey) override;
94 std::map<ResourceKey, std::vector<OwnedDebugObject>> RegisteredObjs;
H A DRTDyldObjectLinkingLayer.h142 Error handleRemoveResources(JITDylib &JD, ResourceKey K) override;
143 void handleTransferResources(JITDylib &JD, ResourceKey DstKey,
144 ResourceKey SrcKey) override;
153 DenseMap<ResourceKey, std::vector<MemoryManagerUP>> MemMgrs;
H A DDebuggerSupportPlugin.h
H A DCOFFPlatform.h111 Error notifyRemovingResources(JITDylib &JD, ResourceKey K) override { in notifyRemovingResources()
115 void notifyTransferringResources(JITDylib &JD, ResourceKey DstKey, in notifyTransferringResources()
116 ResourceKey SrcKey) override {} in notifyTransferringResources()
H A DELFNixPlatform.h149 Error notifyRemovingResources(JITDylib &JD, ResourceKey K) override { in notifyRemovingResources()
153 void notifyTransferringResources(JITDylib &JD, ResourceKey DstKey, in notifyTransferringResources()
154 ResourceKey SrcKey) override {} in notifyTransferringResources()
H A DMachOPlatform.h214 Error notifyRemovingResources(JITDylib &JD, ResourceKey K) override { in notifyRemovingResources()
218 void notifyTransferringResources(JITDylib &JD, ResourceKey DstKey, in notifyTransferringResources()
219 ResourceKey SrcKey) override {} in notifyTransferringResources()
H A DCore.h53 using ResourceKey = uintptr_t; variable
93 ResourceKey getKeyUnsafe() const { return reinterpret_cast<uintptr_t>(this); } in getKeyUnsafe()
107 virtual Error handleRemoveResources(JITDylib &JD, ResourceKey K) = 0;
108 virtual void handleTransferResources(JITDylib &JD, ResourceKey DstK,
109 ResourceKey SrcK) = 0;
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Debugging/
H A DVTuneSupportPlugin.h41 Error notifyRemovingResources(JITDylib &JD, ResourceKey K) override;
42 void notifyTransferringResources(JITDylib &JD, ResourceKey DstKey,
43 ResourceKey SrcKey) override;
57 DenseMap<ResourceKey, SmallVector<std::pair<uint64_t, uint64_t>>>
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DVTuneSupportPlugin.cpp113 if (auto Err = MR.withResourceKeyDo([this, MR = &MR](ResourceKey K) { in notifyEmitted()
133 Error VTuneSupportPlugin::notifyRemovingResources(JITDylib &JD, ResourceKey K) { in notifyRemovingResources()
156 ResourceKey DstKey, in notifyTransferringResources()
157 ResourceKey SrcKey) { in notifyTransferringResources()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp738 [&](ResourceKey K) { Allocs[K].push_back(std::move(FA)); }); in recordFinalizedAlloc()
746 Error ObjectLinkingLayer::handleRemoveResources(JITDylib &JD, ResourceKey K) { in handleRemoveResources()
772 ResourceKey DstKey, in handleTransferResources()
773 ResourceKey SrcKey) { in handleTransferResources()
827 [&](ResourceKey K) { EHFrameRanges[K].push_back(EmittedRange); })) in notifyEmitted()
841 ResourceKey K) { in notifyRemovingResources()
865 JITDylib &JD, ResourceKey DstKey, ResourceKey SrcKey) { in notifyTransferringResources()
H A DRTDyldObjectLinkingLayer.cpp394 [&](ResourceKey K) { MemMgrs[K].push_back(std::move(MemMgr)); })) { in onObjEmit()
401 ResourceKey K) { in handleRemoveResources()
426 ResourceKey DstKey, in handleTransferResources()
427 ResourceKey SrcKey) { in handleTransferResources()
H A DDebugObjectManagerPlugin.cpp476 FinalizePromise.set_value(MR.withResourceKeyDo([&](ResourceKey K) { in notifyEmitted()
495 ResourceKey DstKey, in notifyTransferringResources()
496 ResourceKey SrcKey) { in notifyTransferringResources()
511 ResourceKey Key) { in notifyRemovingResources()
H A DDebuggerSupportPlugin.cpp