Home
last modified time | relevance | path

Searched refs:Allocations (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DSimpleExecutorMemoryManager.cpp21 assert(Allocations.empty() && "shutdown not called?"); in ~SimpleExecutorMemoryManager()
31 assert(!Allocations.count(MB.base()) && "Duplicate allocation addr"); in allocate()
32 Allocations[MB.base()].Size = Size; in allocate()
62 auto I = Allocations.find(Base.toPtr<void *>()); in finalize()
63 if (I == Allocations.end()) in finalize()
81 auto I = Allocations.find(Base.toPtr<void *>()); in finalize()
84 if (I == Allocations.end()) in finalize()
92 Allocations.erase(I); in finalize()
161 auto I = Allocations.find(Base.toPtr<void *>()); in deallocate()
164 if (I != Allocations.end()) { in deallocate()
[all …]
H A DExecutorSharedMemoryMapperService.cpp192 Allocations[MinAddr].DeinitializationActions = in initialize()
194 Reservations[Reservation.toPtr<void *>()].Allocations.push_back(MinAddr); in initialize()
215 Allocations[Base].DeinitializationActions)) { in deinitialize()
221 auto AllocationIt = llvm::find(Reservation.second.Allocations, Base); in deinitialize()
222 if (AllocationIt != Reservation.second.Allocations.end()) { in deinitialize()
223 Reservation.second.Allocations.erase(AllocationIt); in deinitialize()
228 Allocations.erase(Base); in deinitialize()
257 AllocAddrs.swap(R.Allocations); in release()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DDynamicAllocator.cpp25 for (auto &Alloc : AllocSite.Allocations) { in cleanup()
84 It->second.Allocations.emplace_back(std::move(Memory)); in allocate()
101 auto AllocIt = llvm::find_if(Site.Allocations, [&](const Allocation &A) { in deallocate()
106 assert(AllocIt != Site.Allocations.end()); in deallocate()
112 Site.Allocations.erase(AllocIt); in deallocate()
H A DDynamicAllocator.h41 llvm::SmallVector<Allocation> Allocations; member
46 Allocations.push_back({std::move(Memory)}); in AllocationSite()
49 size_t size() const { return Allocations.size(); } in size()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMemoryMapper.h70 virtual void deinitialize(ArrayRef<ExecutorAddr> Allocations,
96 void deinitialize(ArrayRef<ExecutorAddr> Allocations,
113 std::vector<ExecutorAddr> Allocations; member
119 AllocationMap Allocations; variable
148 void deinitialize(ArrayRef<ExecutorAddr> Allocations,
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMemoryMapper.cpp102 Allocations[MinAddr].Size = MaxAddr - MinAddr; in initialize()
103 Allocations[MinAddr].DeinitializationActions = in initialize()
105 Reservations[AI.MappingBase.toPtr<void *>()].Allocations.push_back(MinAddr); in initialize()
122 Allocations[Base].DeinitializationActions)) { in deinitialize()
128 {Base.toPtr<void *>(), Allocations[Base].Size}, in deinitialize()
134 Allocations.erase(Base); in deinitialize()
152 AllocAddrs.swap(R.Allocations); in release()
370 ArrayRef<ExecutorAddr> Allocations, in deinitialize() argument
384 SAs.Instance, Allocations); in deinitialize()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DExecutorSharedMemoryMapperService.h50 std::vector<ExecutorAddr> Allocations; member
75 AllocationMap Allocations; variable
H A DSimpleExecutorMemoryManager.h63 AllocationsMap Allocations; variable
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h37 std::vector<void *> Allocations; variable
47 for (void *Allocation : Allocations) in ~AllocaHolder()
51 void add(void *Mem) { Allocations.push_back(Mem); } in add()
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c548 UINT32 Allocations; in AcpiDbExecute() local
650 Allocations = AcpiDbGetOutstandingAllocations () - PreviousAllocations; in AcpiDbExecute()
654 if (Allocations > 0) in AcpiDbExecute()
658 Allocations, AcpiGbl_DbMethodInfo.Pathname); in AcpiDbExecute()
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp514 struct Allocations { struct in __hwasan::__anon865875d10511::BaseReport
538 Allocations CopyAllocations();
556 const Allocations allocations;
646 BaseReport::Allocations BaseReport::CopyAllocations() { in CopyAllocations()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstring_view314 …// Allocations must fit in `ptrdiff_t` for pointer arithmetic to work. If `__len` exceeds it, the …
/freebsd/contrib/bc/
H A DNEWS.md1414 21. Allocations were reduced.