| 1077 | #endif |
| 1078 | |
| 1079 | void nullcDebugBeginCallStack() |
| 1080 | { |
| 1081 | using namespace NULLC; |
| 1082 | |
| 1083 | if(currExec == NULLC_VM) |
| 1084 | { |
| 1085 | #ifndef NULLC_NO_EXECUTOR |
| 1086 | executor->BeginCallStack(); |
| 1087 | #endif |
| 1088 | }else{ |
| 1089 | #ifdef NULLC_BUILD_X86_JIT |
| 1090 | executorX86->BeginCallStack(); |
| 1091 | #endif |
| 1092 | } |
| 1093 | } |
| 1094 | |
| 1095 | unsigned int nullcDebugGetStackFrame() |
| 1096 | { |
no test coverage detected