MCPcopy Create free account
hub / github.com/WheretIB/nullc / nullcDebugGetStackFrame

Function nullcDebugGetStackFrame

NULLC/nullc.cpp:1095–1112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1093}
1094
1095unsigned int nullcDebugGetStackFrame()
1096{
1097 using namespace NULLC;
1098
1099 unsigned int address = 0;
1100 // Get next address from call stack
1101 if(currExec == NULLC_VM)
1102 {
1103#ifndef NULLC_NO_EXECUTOR
1104 address = executor->GetNextAddress();
1105#endif
1106 }else{
1107#ifdef NULLC_BUILD_X86_JIT
1108 address = executorX86->GetNextAddress();
1109#endif
1110 }
1111 return address;
1112}
1113
1114#ifndef NULLC_NO_EXECUTOR
1115nullres nullcDebugSetBreakFunction(unsigned (*callback)(unsigned int))

Callers 3

IDEDebugBreakExFunction · 0.85
FillVariableInfoTreeFunction · 0.85
PipeDebugBreakFunction · 0.85

Calls 1

GetNextAddressMethod · 0.45

Tested by

no test coverage detected