MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / Run

Method Run

FEXCore/Source/Interface/IR/PassManager.cpp:88–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88void PassManager::Run(IREmitter* IREmit) {
89 FEXCORE_PROFILE_SCOPED("PassManager::Run");
90
91 for (const auto& Pass : Passes) {
92 Pass->Run(IREmit);
93 }
94
95#if defined(ASSERTIONS_ENABLED) && ASSERTIONS_ENABLED
96 for (const auto& Pass : ValidationPasses) {
97 Pass->Run(IREmit);
98 }
99#endif
100}
101} // namespace FEXCore::IR

Callers 1

GenerateIRMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected