| 961 | } |
| 962 | |
| 963 | unsigned int nullcGetCurrentExecutor(void **exec) |
| 964 | { |
| 965 | using namespace NULLC; |
| 966 | |
| 967 | #ifdef NULLC_BUILD_X86_JIT |
| 968 | if(exec) |
| 969 | *exec = (currExec == NULLC_VM ? (void*)executor : (void*)executorX86); |
| 970 | #elif !defined(NULLC_NO_EXECUTOR) |
| 971 | if(exec) |
| 972 | *exec = executor; |
| 973 | #else |
| 974 | *exec = NULL; |
| 975 | #endif |
| 976 | return currExec; |
| 977 | } |
| 978 | |
| 979 | const void* nullcGetModule(const char* path) |
| 980 | { |
no outgoing calls
no test coverage detected