/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/llvm-project/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 | 701 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 D | DebugObjectManagerPlugin.cpp | 136 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 D | EPCGenericRTDyldMemoryManager.cpp | 295 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 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 | 210 DenseMap<ResourceKey, std::vector<FinalizedAlloc>> Allocs; variable
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ModuleSummaryAnalysis.cpp | 332 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 D | ModuleSummaryIndex.h | 912 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 D | JITLinkMemoryManager.cpp | 442 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 D | LLParser.h | 438 bool parseOptionalAllocs(std::vector<AllocInfo> &Allocs);
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 9393 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 D | CGOpenMPRuntime.cpp | 7799 enum MapKind { Present, Allocs, Other, Total }; in generateAllInfoForClauses() enumerator 7837 Kind = Allocs; in generateAllInfoForClauses()
|