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()
59 return ClientMM->reserveAllocationSpace(CodeSize, DataSizeRO, in reserveAllocationSpace()
64 return ClientMM->needsToReserveAllocationSpace(); in needsToReserveAllocationSpace()
69 return ClientMM->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
74 return ClientMM->deregisterEHFrames(Addr, LoadAddr, Size); in deregisterEHFrames()
79 return ClientMM->notifyObjectLoaded(EE, O); in notifyObjectLoaded()
97 return ClientMM->finalizeMemory(ErrMsg);
103 std::shared_ptr<MCJITMemoryManager> ClientMM; variable