Lines Matching refs:op2_info

1230 static bool zend_jit_supported_binary_op(uint8_t op, uint32_t op1_info, uint32_t op2_info)  in zend_jit_supported_binary_op()  argument
1232 if ((op1_info & MAY_BE_UNDEF) || (op2_info & MAY_BE_UNDEF)) { in zend_jit_supported_binary_op()
1244 && (op2_info & (MAY_BE_LONG|MAY_BE_DOUBLE)); in zend_jit_supported_binary_op()
1251 return (op1_info & MAY_BE_LONG) && (op2_info & MAY_BE_LONG); in zend_jit_supported_binary_op()
1253 return (op1_info & MAY_BE_STRING) && (op2_info & MAY_BE_STRING); in zend_jit_supported_binary_op()
1271 uint32_t op1_info, op1_def_info, op2_info, res_info, res_use_info; in zend_jit() local
1520 op2_info = OP2_INFO(); in zend_jit()
1522 || !(op2_info & MAY_BE_LONG)) { in zend_jit()
1553 op2_info, OP2_RANGE(), OP2_REG_ADDR(), in zend_jit()
1567 op2_info = OP2_INFO(); in zend_jit()
1568 if ((op1_info & MAY_BE_UNDEF) || (op2_info & MAY_BE_UNDEF)) { in zend_jit()
1573 (op2_info & (MAY_BE_ANY|MAY_BE_UNDEF)) == MAY_BE_ARRAY) { in zend_jit()
1576 !(op2_info & (MAY_BE_LONG|MAY_BE_DOUBLE))) { in zend_jit()
1608 (op2_info & (MAY_BE_ANY|MAY_BE_UNDEF)) == MAY_BE_ARRAY) { in zend_jit()
1609 …if (!zend_jit_add_arrays(&ctx, opline, op1_info, OP1_REG_ADDR(), op2_info, OP2_REG_ADDR(), res_add… in zend_jit()
1615 op2_info, OP2_REG_ADDR(), in zend_jit()
1617 …(op1_info & MAY_BE_LONG) && (op2_info & MAY_BE_LONG) && (res_info & MAY_BE_DOUBLE) && zend_may_ove… in zend_jit()
1629 op2_info = OP2_INFO(); in zend_jit()
1630 if ((op1_info & MAY_BE_UNDEF) || (op2_info & MAY_BE_UNDEF)) { in zend_jit()
1634 !(op2_info & MAY_BE_STRING)) { in zend_jit()
1647 op1_info, op2_info, res_addr, in zend_jit()
1660 op2_info = OP2_INFO(); in zend_jit()
1662 opline->extended_value, op1_info, op2_info)) { in zend_jit()
1668 op2_info, OP2_RANGE(), in zend_jit()
1669 …(op1_info & MAY_BE_LONG) && (op2_info & MAY_BE_LONG) && (op1_def_info & MAY_BE_DOUBLE) && zend_may… in zend_jit()
2463 op2_info = OP2_INFO(); in zend_jit()
2464 if ((op2_info & (MAY_BE_UNDEF|MAY_BE_ANY|MAY_BE_REF)) != MAY_BE_STRING) { in zend_jit()
2467 if (!zend_jit_rope(&ctx, opline, op2_info)) { in zend_jit()
2613 op2_info = OP2_INFO(); in zend_jit()
2614 jit_frameless_icall2(jit, opline, op1_info, op2_info); in zend_jit()
2618 op2_info = OP2_INFO(); in zend_jit()
2619 jit_frameless_icall3(jit, opline, op1_info, op2_info, OP1_DATA_INFO()); in zend_jit()