Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/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.cpp624 assert(Allocs.empty() && "Layer destroyed with resources still attached"); in ~ObjectLinkingLayer()
680 [&](ResourceKey K) { Allocs[K].push_back(std::move(FA)); }); in notifyEmitted()
695 auto I = Allocs.find(K); in handleRemoveResources()
696 if (I != Allocs.end()) { in handleRemoveResources()
698 Allocs.erase(I); in handleRemoveResources()
711 auto I = Allocs.find(SrcKey); in handleTransferResources()
712 if (I != Allocs.end()) { in handleTransferResources()
714 auto &DstAllocs = Allocs[DstKey]; in handleTransferResources()
721 Allocs.erase(SrcKey); in handleTransferResources()
H A DDebugObjectManagerPlugin.cpp141 std::vector<FinalizedAlloc> Allocs; in ~DebugObject() local
142 Allocs.push_back(std::move(Alloc)); in ~DebugObject()
143 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()
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dcommon_test.cpp83 std::vector<std::unique_ptr<char[]>> Allocs(Runs); in TEST() local
84 for (auto &Alloc : Allocs) { in TEST()
/openbsd/gnu/llvm/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.h201 DenseMap<ResourceKey, std::vector<FinalizedAlloc>> Allocs; variable
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp420 void InProcessMemoryManager::deallocate(std::vector<FinalizedAlloc> Allocs, in deallocate() argument
427 for (auto &Alloc : Allocs) { in deallocate()
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp283 std::vector<AllocInfo> Allocs; in computeFunctionSummary() local
465 Allocs.push_back(AllocInfo(std::move(MIBs))); in computeFunctionSummary()
570 std::move(Callsites), std::move(Allocs)); in computeFunctionSummary()
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h802 std::unique_ptr<AllocsTy> Allocs;
831 Allocs = std::make_unique<AllocsTy>(std::move(AllocList));
942 if (Allocs)
943 return *Allocs;
/openbsd/gnu/llvm/llvm/include/llvm/AsmParser/
H A DLLParser.h411 bool parseOptionalAllocs(std::vector<AllocInfo> &Allocs);
/openbsd/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp8773 std::vector<AllocInfo> Allocs; in parseFunctionSummary() local
8809 if (parseOptionalAllocs(Allocs)) in parseFunctionSummary()
8831 std::move(ParamAccesses), std::move(Callsites), std::move(Allocs)); in parseFunctionSummary()
9789 bool LLParser::parseOptionalAllocs(std::vector<AllocInfo> &Allocs) { in parseOptionalAllocs() argument
9821 Allocs.push_back({Versions, MIBs}); in parseOptionalAllocs()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp8051 enum MapKind { Present, Allocs, Other, Total }; in generateAllInfoForClauses() enumerator
8089 Kind = Allocs; in generateAllInfoForClauses()