| 140 | |
| 141 | #ifdef NULLC_BUILD_X86_JIT |
| 142 | nullres nullcSetJiTStack(void* start, void* end, unsigned int flagMemoryAllocated) |
| 143 | { |
| 144 | using namespace NULLC; |
| 145 | NULLC_CHECK_INITIALIZED(false); |
| 146 | |
| 147 | if(!executorX86->SetStackPlacement(start, end, flagMemoryAllocated)) |
| 148 | { |
| 149 | nullcLastError = executorX86->GetExecError(); |
| 150 | return 0; |
| 151 | } |
| 152 | return 1; |
| 153 | } |
| 154 | #endif |
| 155 | |
| 156 | #ifndef NULLC_NO_EXECUTOR |