Lines Matching defs:CBs
1082 const MCJITMemoryManagerLikeCallbacks &CBs)
1083 : CBs(CBs) {
1084 Opaque = CBs.CreateContext(CBs.CreateContextCtx);
1086 ~MCJITMemoryManagerLikeCallbacksMemMgr() override { CBs.Destroy(Opaque); }
1091 return CBs.AllocateCodeSection(Opaque, Size, Alignment, SectionID,
1098 return CBs.AllocateDataSection(Opaque, Size, Alignment, SectionID,
1104 bool Result = CBs.FinalizeMemory(Opaque, &ErrMsgCString);
1116 const MCJITMemoryManagerLikeCallbacks &CBs;
1128 MCJITMemoryManagerLikeCallbacks CBs(
1132 return wrap(new RTDyldObjectLinkingLayer(*unwrap(ES), [CBs = std::move(CBs)] {
1133 return std::make_unique<MCJITMemoryManagerLikeCallbacksMemMgr>(CBs);