MCPcopy Create free account
hub / github.com/decaf-emu/decaf-emu / stepInto

Function stepInto

src/libdecaf/src/debug_api/debug_api_controller.cpp:187–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187bool
188stepInto(int core)
189{
190 if (core < 0 || core > 2) {
191 return false;
192 }
193
194 auto next = calculateNextInstr(sController.pausedContexts[core], false);
195 cpu::addBreakpoint(next, cpu::Breakpoint::SingleFire);
196 resume();
197 return true;
198}
199
200bool
201stepOver(int core)

Callers 2

handleVContMethod · 0.85
debugStepIntoMethod · 0.85

Calls 3

calculateNextInstrFunction · 0.85
addBreakpointFunction · 0.70
resumeFunction · 0.70

Tested by

no test coverage detected