mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 22:11:43 +00:00
Updated CanJit's supported opcodes list.
This commit is contained in:
parent
a8ce626708
commit
079391e5ac
1 changed files with 24 additions and 2 deletions
|
@ -126,8 +126,8 @@ static bool CanJit(VMScriptFunction *sfunc)
|
||||||
case OP_SV3_R:
|
case OP_SV3_R:
|
||||||
case OP_MOVE:
|
case OP_MOVE:
|
||||||
case OP_MOVEF:
|
case OP_MOVEF:
|
||||||
case OP_MOVES:
|
//case OP_MOVES:
|
||||||
case OP_MOVEA:
|
//case OP_MOVEA:
|
||||||
case OP_MOVEV2:
|
case OP_MOVEV2:
|
||||||
case OP_MOVEV3:
|
case OP_MOVEV3:
|
||||||
break;
|
break;
|
||||||
|
@ -187,6 +187,20 @@ static bool CanJit(VMScriptFunction *sfunc)
|
||||||
//case OP_ABS:
|
//case OP_ABS:
|
||||||
case OP_NEG:
|
case OP_NEG:
|
||||||
case OP_NOT:
|
case OP_NOT:
|
||||||
|
case OP_EQ_R:
|
||||||
|
case OP_EQ_K:
|
||||||
|
case OP_LT_RR:
|
||||||
|
case OP_LT_RK:
|
||||||
|
case OP_LT_KR:
|
||||||
|
case OP_LE_RR:
|
||||||
|
case OP_LE_RK:
|
||||||
|
case OP_LE_KR:
|
||||||
|
case OP_LTU_RR:
|
||||||
|
case OP_LTU_RK:
|
||||||
|
case OP_LTU_KR:
|
||||||
|
case OP_LEU_RR:
|
||||||
|
case OP_LEU_RK:
|
||||||
|
case OP_LEU_KR:
|
||||||
case OP_ADDF_RR:
|
case OP_ADDF_RR:
|
||||||
case OP_ADDF_RK:
|
case OP_ADDF_RK:
|
||||||
case OP_SUBF_RR:
|
case OP_SUBF_RR:
|
||||||
|
@ -197,6 +211,14 @@ static bool CanJit(VMScriptFunction *sfunc)
|
||||||
case OP_DIVF_RR:
|
case OP_DIVF_RR:
|
||||||
case OP_DIVF_RK:
|
case OP_DIVF_RK:
|
||||||
case OP_DIVF_KR:
|
case OP_DIVF_KR:
|
||||||
|
case OP_EQF_R:
|
||||||
|
case OP_EQF_K:
|
||||||
|
case OP_LTF_RR:
|
||||||
|
case OP_LTF_RK:
|
||||||
|
case OP_LTF_KR:
|
||||||
|
case OP_LEF_RR:
|
||||||
|
case OP_LEF_RK:
|
||||||
|
case OP_LEF_KR:
|
||||||
case OP_NEGV2:
|
case OP_NEGV2:
|
||||||
case OP_ADDV2_RR:
|
case OP_ADDV2_RR:
|
||||||
case OP_SUBV2_RR:
|
case OP_SUBV2_RR:
|
||||||
|
|
Loading…
Reference in a new issue