Lines Matching refs:AllocAddr
42 ExecutorAddr AllocAddr, SegInfoMap Segs) in InFlightAlloc() argument
43 : Parent(Parent), G(G), AllocAddr(AllocAddr), Segs(std::move(Segs)) {} in InFlightAlloc()
64 [OnFinalize = std::move(OnFinalize), AllocAddr = this->AllocAddr]( in finalize()
73 OnFinalize(FinalizedAlloc(AllocAddr)); in finalize()
91 Parent.SAs.Allocator, ArrayRef<ExecutorAddr>(AllocAddr)); in abandon()
97 ExecutorAddr AllocAddr; member in llvm::orc::EPCGenericJITLinkMemoryManager::InFlightAlloc
113 Error SerializationErr, Expected<ExecutorAddr> AllocAddr) mutable { in allocate() argument
115 cantFail(AllocAddr.takeError()); in allocate()
118 if (!AllocAddr) in allocate()
119 return OnAllocated(AllocAddr.takeError()); in allocate()
121 completeAllocation(*AllocAddr, std::move(BL), std::move(OnAllocated)); in allocate()
145 ExecutorAddr AllocAddr, BasicLayout BL, OnAllocatedFunction OnAllocated) { in completeAllocation() argument
149 ExecutorAddr NextSegAddr = AllocAddr; in completeAllocation()
169 OnAllocated(std::make_unique<InFlightAlloc>(*this, BL.getGraph(), AllocAddr, in completeAllocation()