@@ -11105,7 +11105,7 @@ static zend_bool zend_jit_may_be_in_reg(const zend_op_array *op_array, zend_ssa
11105
11105
return 1;
11106
11106
}
11107
11107
11108
- static zend_bool zend_needs_extra_reg_for_const(const zend_op_array *op_array, const zend_op *opline, zend_uchar op_type, znode_op op)
11108
+ static zend_bool zend_needs_extra_reg_for_const(const zend_op *opline, zend_uchar op_type, znode_op op)
11109
11109
{
11110
11110
|.if X64
11111
11111
|| if (op_type == IS_CONST) {
@@ -11259,8 +11259,8 @@ static zend_regset zend_jit_get_scratch_regset(const zend_op *opline, const zend
11259
11259
ZEND_REGSET_INCL(regset, ZREG_XMM0);
11260
11260
}
11261
11261
}
11262
- if (zend_needs_extra_reg_for_const(op_array, opline, opline->op1_type, opline->op1) ||
11263
- zend_needs_extra_reg_for_const(op_array, opline, opline->op1_type, opline->op2)) {
11262
+ if (zend_needs_extra_reg_for_const(opline, opline->op1_type, opline->op1) ||
11263
+ zend_needs_extra_reg_for_const(opline, opline->op1_type, opline->op2)) {
11264
11264
ZEND_REGSET_INCL(regset, ZREG_R0);
11265
11265
}
11266
11266
}
@@ -11345,8 +11345,8 @@ static zend_regset zend_jit_get_scratch_regset(const zend_op *opline, const zend
11345
11345
ZEND_REGSET_INCL(regset, ZREG_XMM0);
11346
11346
}
11347
11347
}
11348
- if (zend_needs_extra_reg_for_const(op_array, opline, opline->op1_type, opline->op1) ||
11349
- zend_needs_extra_reg_for_const(op_array, opline, opline->op1_type, opline->op2)) {
11348
+ if (zend_needs_extra_reg_for_const(opline, opline->op1_type, opline->op1) ||
11349
+ zend_needs_extra_reg_for_const(opline, opline->op1_type, opline->op2)) {
11350
11350
ZEND_REGSET_INCL(regset, ZREG_R0);
11351
11351
}
11352
11352
}
0 commit comments