Lines Matching defs:CBs
1081 const MCJITMemoryManagerLikeCallbacks &CBs)
1082 : CBs(CBs) {
1083 Opaque = CBs.CreateContext(CBs.CreateContextCtx);
1085 ~MCJITMemoryManagerLikeCallbacksMemMgr() override { CBs.Destroy(Opaque); }
1090 return CBs.AllocateCodeSection(Opaque, Size, Alignment, SectionID,
1097 return CBs.AllocateDataSection(Opaque, Size, Alignment, SectionID,
1103 bool Result = CBs.FinalizeMemory(Opaque, &ErrMsgCString);
1115 const MCJITMemoryManagerLikeCallbacks &CBs;
1127 MCJITMemoryManagerLikeCallbacks CBs(
1131 return wrap(new RTDyldObjectLinkingLayer(*unwrap(ES), [CBs = std::move(CBs)] {
1132 return std::make_unique<MCJITMemoryManagerLikeCallbacksMemMgr>(CBs);