| 894 | #endif |
| 895 | |
| 896 | U8* JitCodeGen::createEmulateSingleOp() { |
| 897 | std::vector<DynParam> params; |
| 898 | params.push_back(DynParam(JitCallParamType::CPU)); |
| 899 | callHostFunction((void*)jitRunSingleOp, params); |
| 900 | blockExit(); |
| 901 | |
| 902 | return createDynamicExecutableMemory(); |
| 903 | } |
| 904 | |
| 905 | void JitCodeGen::commitJIT(DecodedOp* op) { |
| 906 | if (!blockOpCount) { |
no test coverage detected