Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetServer.h112 Allocator(Allocator &&Other) : Allocs(std::move(Other.Allocs)) {} in Allocator()
115 Allocs = std::move(Other.Allocs);
120 for (auto &Alloc : Allocs) in ~Allocator()
132 assert(Allocs.find(MB.base()) == Allocs.end() && "Duplicate alloc"); in allocate()
133 Allocs[MB.base()] = std::move(MB); in allocate()
138 auto I = Allocs.find(block); in setProtections()
139 if (I == Allocs.end()) in setProtections()
146 std::map<void *, sys::MemoryBlock> Allocs;
H A DOrcRemoteTargetClient.h270 void mapAllocsToRemoteAddrs(RuntimeDyld &Dyld, std::vector<Alloc> &Allocs, in mapAllocsToRemoteAddrs() argument
272 for (auto &Alloc : Allocs) { in mapAllocsToRemoteAddrs()
289 bool copyAndProtect(const std::vector<Alloc> &Allocs, in copyAndProtect() argument
293 assert(!Allocs.empty() && "No sections in allocated segment"); in copyAndProtect()
295 for (auto &Alloc : Allocs) { in copyAndProtect()
H A DObjectLinkingLayer.h200 DenseMap<ResourceKey, std::vector<AllocPtr>> Allocs; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp583 assert(Allocs.empty() && "Layer destroyed with resources still attached"); in ~ObjectLinkingLayer()
639 [&](ResourceKey K) { Allocs[K].push_back(std::move(Alloc)); }); in notifyEmitted()
651 auto I = Allocs.find(K); in handleRemoveResources()
652 if (I != Allocs.end()) { in handleRemoveResources()
654 Allocs.erase(I); in handleRemoveResources()
668 auto I = Allocs.find(SrcKey); in handleTransferResources()
669 if (I != Allocs.end()) { in handleTransferResources()
671 auto &DstAllocs = Allocs[DstKey]; in handleTransferResources()
678 Allocs.erase(SrcKey); in handleTransferResources()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DOrcRPCTPCServer.h473 orcrpctpc::ReserveMemResult Allocs; in reserveMemory() local
505 Allocs.push_back({E.Prot, in reserveMemory()
511 return Allocs; in reserveMemory()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp8326 enum MapKind { Present, Allocs, Other, Total }; in generateAllInfoForClauses() enumerator
8366 Kind = Allocs; in generateAllInfoForClauses()