Lines Matching refs:op2_info

2675 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
2677 if ((op1_info & MAY_BE_UNDEF) || (op2_info & MAY_BE_UNDEF)) { in zend_jit_supported_binary_op()
2689 && (op2_info & (MAY_BE_LONG|MAY_BE_DOUBLE)); in zend_jit_supported_binary_op()
2696 return (op1_info & MAY_BE_LONG) && (op2_info & MAY_BE_LONG); in zend_jit_supported_binary_op()
2698 return (op1_info & MAY_BE_STRING) && (op2_info & MAY_BE_STRING); in zend_jit_supported_binary_op()
2716 uint32_t op1_info, op1_def_info, op2_info, res_info, res_use_info; in zend_jit() local
2988 op2_info = OP2_INFO(); in zend_jit()
2989 if ((op1_info & MAY_BE_UNDEF) || (op2_info & MAY_BE_UNDEF)) { in zend_jit()
2993 || !(op2_info & MAY_BE_LONG)) { in zend_jit()
3024 op2_info, OP2_RANGE(), OP2_REG_ADDR(), in zend_jit()
3038 op2_info = OP2_INFO(); in zend_jit()
3039 if ((op1_info & MAY_BE_UNDEF) || (op2_info & MAY_BE_UNDEF)) { in zend_jit()
3044 (op2_info & (MAY_BE_ANY|MAY_BE_UNDEF)) == MAY_BE_ARRAY) { in zend_jit()
3047 !(op2_info & (MAY_BE_LONG|MAY_BE_DOUBLE))) { in zend_jit()
3079 (op2_info & (MAY_BE_ANY|MAY_BE_UNDEF)) == MAY_BE_ARRAY) { in zend_jit()
3080 …if (!zend_jit_add_arrays(&dasm_state, opline, op1_info, OP1_REG_ADDR(), op2_info, OP2_REG_ADDR(), … in zend_jit()
3086 op2_info, OP2_REG_ADDR(), in zend_jit()
3088 …(op1_info & MAY_BE_LONG) && (op2_info & MAY_BE_LONG) && (res_info & MAY_BE_DOUBLE) && zend_may_ove… in zend_jit()
3100 op2_info = OP2_INFO(); in zend_jit()
3101 if ((op1_info & MAY_BE_UNDEF) || (op2_info & MAY_BE_UNDEF)) { in zend_jit()
3105 !(op2_info & MAY_BE_STRING)) { in zend_jit()
3118 op1_info, op2_info, res_addr, in zend_jit()
3131 op2_info = OP2_INFO(); in zend_jit()
3133 opline->extended_value, op1_info, op2_info)) { in zend_jit()
3139 op2_info, OP2_RANGE(), in zend_jit()
3140 …(op1_info & MAY_BE_LONG) && (op2_info & MAY_BE_LONG) && (op1_def_info & MAY_BE_DOUBLE) && zend_may… in zend_jit()
3965 op2_info = OP2_INFO(); in zend_jit()
3966 if ((op2_info & (MAY_BE_UNDEF|MAY_BE_ANY|MAY_BE_REF)) != MAY_BE_STRING) { in zend_jit()
3969 if (!zend_jit_rope(&dasm_state, opline, op2_info)) { in zend_jit()