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()
63 [OnFinalize = std::move(OnFinalize), AllocAddr = this->AllocAddr]( in finalize()
72 OnFinalize(FinalizedAlloc(AllocAddr)); in finalize()
90 Parent.SAs.Allocator, ArrayRef<ExecutorAddr>(AllocAddr)); in abandon()
96 ExecutorAddr AllocAddr; member in llvm::orc::EPCGenericJITLinkMemoryManager::InFlightAlloc
112 Error SerializationErr, Expected<ExecutorAddr> AllocAddr) mutable { in allocate() argument
114 cantFail(AllocAddr.takeError()); in allocate()
117 if (!AllocAddr) in allocate()
118 return OnAllocated(AllocAddr.takeError()); in allocate()
120 completeAllocation(*AllocAddr, std::move(BL), std::move(OnAllocated)); in allocate()
144 ExecutorAddr AllocAddr, BasicLayout BL, OnAllocatedFunction OnAllocated) { in completeAllocation() argument
148 ExecutorAddr NextSegAddr = AllocAddr; in completeAllocation()
168 OnAllocated(std::make_unique<InFlightAlloc>(*this, BL.getGraph(), AllocAddr, in completeAllocation()