Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
DObjectLinkingLayer.cpp766 [&](ResourceKey K) { EHFrameRanges[K].push_back(EmittedRange); })) in notifyEmitted()
783 auto I = EHFrameRanges.find(K); in notifyRemovingResources()
784 if (I != EHFrameRanges.end()) { in notifyRemovingResources()
786 EHFrameRanges.erase(I); in notifyRemovingResources()
805 auto SI = EHFrameRanges.find(SrcKey); in notifyTransferringResources()
806 if (SI == EHFrameRanges.end()) in notifyTransferringResources()
809 auto DI = EHFrameRanges.find(DstKey); in notifyTransferringResources()
810 if (DI != EHFrameRanges.end()) { in notifyTransferringResources()
816 EHFrameRanges.erase(SI); in notifyTransferringResources()
821 EHFrameRanges.erase(SI); in notifyTransferringResources()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DObjectLinkingLayer.h233 DenseMap<ResourceKey, std::vector<EHFrameRange>> EHFrameRanges; variable