| 1093 | } |
| 1094 | |
| 1095 | unsigned 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 |
| 1115 | nullres nullcDebugSetBreakFunction(unsigned (*callback)(unsigned int)) |
no test coverage detected