Lines Matching defs:MOPS
308 static MachOPlatformRuntimeState *MOPS;
370 MachOPlatformRuntimeState *MachOPlatformRuntimeState::MOPS = nullptr;
373 assert(!MOPS && "MachOPlatformRuntimeState should be null");
374 MOPS = new MachOPlatformRuntimeState();
375 return MOPS->initialize();
379 assert(MOPS && "MachOPlatformRuntimeState not initialized");
380 return *MOPS;
384 assert(MOPS && "MachOPlatformRuntimeState not initialized");
385 auto Err = MOPS->shutdown();
386 delete MOPS;