Home
last modified time | relevance | path

Searched refs:Allocs (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.h176 virtual void deallocate(std::vector<FinalizedAlloc> Allocs,
181 std::vector<FinalizedAlloc> Allocs; in deallocate() local
182 Allocs.push_back(std::move(Alloc)); in deallocate()
183 deallocate(std::move(Allocs), std::move(OnDeallocated)); in deallocate()
187 Error deallocate(std::vector<FinalizedAlloc> Allocs) { in deallocate() argument
190 deallocate(std::move(Allocs), in deallocate()
197 std::vector<FinalizedAlloc> Allocs; in deallocate() local
198 Allocs.push_back(std::move(Alloc)); in deallocate()
199 return deallocate(std::move(Allocs)); in deallocate()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMapperJITLinkMemoryManager.cpp148 std::vector<FinalizedAlloc> Allocs, OnDeallocatedFunction OnDeallocated) { in deallocate() argument
150 Bases.reserve(Allocs.size()); in deallocate()
151 for (auto &FA : Allocs) { in deallocate()
156 Mapper->deinitialize(Bases, [this, Allocs = std::move(Allocs), in deallocate()
164 for (auto &FA : Allocs) in deallocate()
173 for (auto &FA : Allocs) { in deallocate()
H A DEPCGenericJITLinkMemoryManager.cpp126 std::vector<FinalizedAlloc> Allocs, OnDeallocatedFunction OnDeallocated) { in deallocate() argument
138 SAs.Allocator, Allocs); in deallocate()
139 for (auto &A : Allocs) in deallocate()
H A DObjectLinkingLayer.cpp701 assert(Allocs.empty() && "Layer destroyed with resources still attached"); in ~ObjectLinkingLayer()
738 [&](ResourceKey K) { Allocs[K].push_back(std::move(FA)); }); in recordFinalizedAlloc()
758 auto I = Allocs.find(K); in handleRemoveResources()
759 if (I != Allocs.end()) { in handleRemoveResources()
761 Allocs.erase(I); in handleRemoveResources()
774 auto I = Allocs.find(SrcKey); in handleTransferResources()
775 if (I != Allocs.end()) { in handleTransferResources()
777 auto &DstAllocs = Allocs[DstKey]; in handleTransferResources()
784 Allocs.erase(SrcKey); in handleTransferResources()
H A DDebugObjectManagerPlugin.cpp136 std::vector<FinalizedAlloc> Allocs; in ~DebugObject() local
137 Allocs.push_back(std::move(Alloc)); in ~DebugObject()
138 if (Error Err = MemMgr.deallocate(std::move(Allocs))) in ~DebugObject()
H A DEPCGenericRTDyldMemoryManager.cpp295 RuntimeDyld &Dyld, std::vector<SectionAlloc> &Allocs, in mapAllocsToRemoteAddrs() argument
297 for (auto &Alloc : Allocs) { in mapAllocsToRemoteAddrs()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMapperJITLinkMemoryManager.h44 void deallocate(std::vector<FinalizedAlloc> Allocs,
H A DEPCGenericJITLinkMemoryManager.h48 void deallocate(std::vector<FinalizedAlloc> Allocs,
H A DObjectLinkingLayer.h210 DenseMap<ResourceKey, std::vector<FinalizedAlloc>> Allocs; variable
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp332 std::vector<AllocInfo> Allocs; in computeFunctionSummary() local
548 Allocs.push_back(AllocInfo(std::move(MIBs))); in computeFunctionSummary()
550 assert(Allocs.back().MIBs.size() == TotalSizes.size()); in computeFunctionSummary()
551 Allocs.back().TotalSizes = std::move(TotalSizes); in computeFunctionSummary()
679 std::move(Callsites), std::move(Allocs)); in computeFunctionSummary()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h912 std::unique_ptr<AllocsTy> Allocs;
941 Allocs = std::make_unique<AllocsTy>(std::move(AllocList));
1063 if (Allocs)
1064 return *Allocs;
1069 assert(Allocs);
1070 return *Allocs;
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp442 void InProcessMemoryManager::deallocate(std::vector<FinalizedAlloc> Allocs, in deallocate() argument
449 for (auto &Alloc : Allocs) { in deallocate()
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h438 bool parseOptionalAllocs(std::vector<AllocInfo> &Allocs);
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp9393 std::vector<AllocInfo> Allocs; in parseFunctionSummary() local
9429 if (parseOptionalAllocs(Allocs)) in parseFunctionSummary()
9451 std::move(ParamAccesses), std::move(Callsites), std::move(Allocs)); in parseFunctionSummary()
10436 bool LLParser::parseOptionalAllocs(std::vector<AllocInfo> &Allocs) { in parseOptionalAllocs() argument
10468 Allocs.push_back({Versions, MIBs}); in parseOptionalAllocs()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp7799 enum MapKind { Present, Allocs, Other, Total }; in generateAllInfoForClauses() enumerator
7837 Kind = Allocs; in generateAllInfoForClauses()