/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.h | 176 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 D | MapperJITLinkMemoryManager.cpp | 148 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 D | EPCGenericJITLinkMemoryManager.cpp | 126 std::vector<FinalizedAlloc> Allocs, OnDeallocatedFunction OnDeallocated) { in deallocate() argument 138 SAs.Allocator, Allocs); in deallocate() 139 for (auto &A : Allocs) in deallocate()
|
H A D | ObjectLinkingLayer.cpp | 624 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 D | DebugObjectManagerPlugin.cpp | 141 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 D | EPCGenericRTDyldMemoryManager.cpp | 295 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 D | common_test.cpp | 83 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 D | MapperJITLinkMemoryManager.h | 44 void deallocate(std::vector<FinalizedAlloc> Allocs,
|
H A D | EPCGenericJITLinkMemoryManager.h | 48 void deallocate(std::vector<FinalizedAlloc> Allocs,
|
H A D | ObjectLinkingLayer.h | 201 DenseMap<ResourceKey, std::vector<FinalizedAlloc>> Allocs; variable
|
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.cpp | 420 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 D | ModuleSummaryAnalysis.cpp | 283 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 D | ModuleSummaryIndex.h | 802 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 D | LLParser.h | 411 bool parseOptionalAllocs(std::vector<AllocInfo> &Allocs);
|
/openbsd/gnu/llvm/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 8773 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 D | CGOpenMPRuntime.cpp | 8051 enum MapKind { Present, Allocs, Other, Total }; in generateAllInfoForClauses() enumerator 8089 Kind = Allocs; in generateAllInfoForClauses()
|