Lines Matching refs:ClientMM
35 std::shared_ptr<MCJITMemoryManager> ClientMM) in MCJITReplacementMemMgr() argument
36 : M(M), ClientMM(std::move(ClientMM)) {} in MCJITReplacementMemMgr()
42 ClientMM->allocateCodeSection(Size, Alignment, SectionID, in allocateCodeSection()
51 uint8_t *Addr = ClientMM->allocateDataSection(Size, Alignment, SectionID, in allocateDataSection()
61 return ClientMM->reserveAllocationSpace(CodeSize, CodeAlign, in reserveAllocationSpace()
67 return ClientMM->needsToReserveAllocationSpace(); in needsToReserveAllocationSpace()
72 return ClientMM->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
77 return ClientMM->deregisterEHFrames(Addr, LoadAddr, Size); in deregisterEHFrames()
82 return ClientMM->notifyObjectLoaded(RTDyld, O); in notifyObjectLoaded()
87 return ClientMM->notifyObjectLoaded(EE, O); in notifyObjectLoaded()
105 return ClientMM->finalizeMemory(ErrMsg);
111 std::shared_ptr<MCJITMemoryManager> ClientMM; variable