| 884 | void signalHandler(CPU* cpu); |
| 885 | |
| 886 | U8* JitCodeGen::createSignalHandler() { |
| 887 | std::vector<DynParam> params; |
| 888 | params.push_back(DynParam(JitCallParamType::CPU)); |
| 889 | callHostFunction((void*)signalHandler, params, true, false); |
| 890 | blockExit(); |
| 891 | |
| 892 | return createDynamicExecutableMemory(); |
| 893 | } |
| 894 | #endif |
| 895 | |
| 896 | U8* JitCodeGen::createEmulateSingleOp() { |
no test coverage detected