Lines Matching refs:op2_type

424 	ADD_OP_GUARD(tssa->ops[idx].op2_use, op2_type)
431 CHECK_OP_TRACE_TYPE(opline->op2.var, ssa_op->op2_use, op2_info, op2_type)
992 if ((opline->op2_type & (IS_VAR|IS_CV)) in is_checked_guard()
1000 if (opline->op2_type == IS_CONST) { in is_checked_guard()
1021 if ((opline->op2_type & (IS_VAR|IS_CV)) in is_checked_guard()
1034 if (opline->op2_type == IS_CONST) { in is_checked_guard()
1543 uint8_t orig_op1_type, orig_op2_type, op1_type, op2_type, op3_type; in zend_jit_trace_build_tssa() local
1551 op2_type = orig_op2_type = p->op2_type; in zend_jit_trace_build_tssa()
1559 if (op2_type & (IS_TRACE_REFERENCE|IS_TRACE_INDIRECT)) { in zend_jit_trace_build_tssa()
1560 op2_type = IS_UNKNOWN; in zend_jit_trace_build_tssa()
1637 if (opline->op2_type != IS_CONST in zend_jit_trace_build_tssa()
1656 && (opline->op2_type == IS_CONST || orig_op2_type == IS_STRING)) { in zend_jit_trace_build_tssa()
1774 && ((opline->op2_type == IS_CONST in zend_jit_trace_build_tssa()
1776 || (opline->op2_type != IS_CONST in zend_jit_trace_build_tssa()
1777 && op2_type == IS_LONG))) { in zend_jit_trace_build_tssa()
1809 if (opline->op2_type == IS_CONST) { in zend_jit_trace_build_tssa()
1821 if (opline->op2_type == IS_CONST) { in zend_jit_trace_build_tssa()
1895 if (opline->op2_type == IS_CONST in zend_jit_trace_build_tssa()
1918 if (opline->op2_type != IS_CONST in zend_jit_trace_build_tssa()
1926 if (opline->op2_type != IS_CONST in zend_jit_trace_build_tssa()
2587 if (opline->op2_type != IS_CV) { in zend_jit_trace_allocate_registers()
2957 if (opline->op2_type == IS_CONST) { in zend_jit_trace_allocate_registers()
3231 return (opline->op2_type == IS_CONST && in zend_jit_may_delay_fetch_this()
3252 if (opline->op2_type != IS_CONST in zend_jit_may_delay_fetch_this()
3608 } else if (opline->op2_type == IS_CONST in zend_jit_may_skip_comparison()
3976 uint8_t op2_type = p->op2_type; in zend_jit_trace() local
3979 uint8_t orig_op2_type = op2_type; in zend_jit_trace()
3991 if (op2_type & (IS_TRACE_REFERENCE|IS_TRACE_INDIRECT)) { in zend_jit_trace()
3992 op2_type = IS_UNKNOWN; in zend_jit_trace()
4115 && (opline+1)->op2_type != IS_CONST /* Named parameters not supported in JIT */ in zend_jit_trace()
4195 && (opline+1)->op2_type != IS_CONST /* Named parameters not supported in JIT */ in zend_jit_trace()
4286 && (opline+1)->op2_type != IS_CONST /* Named parameters not supported in JIT */ in zend_jit_trace()
4405 if (opline->op2_type != IS_CONST in zend_jit_trace()
4475 if (opline->op2_type != IS_CONST in zend_jit_trace()
4554 if (opline->op2_type != IS_CONST in zend_jit_trace()
4718 … if (!zend_jit_assign_to_typed_ref(&dasm_state, opline, opline->op2_type, op2_addr, res_addr, 1)) { in zend_jit_trace()
4748 && (opline+1)->op2_type != IS_CONST /* Named parameters not supported in JIT */ in zend_jit_trace()
4781 if (opline->op2_type == IS_CV in zend_jit_trace()
4839 if (opline->op2_type == IS_CONST) { in zend_jit_trace()
4867 if (opline->op2_type == IS_CONST) { in zend_jit_trace()
4886 if (opline->op2_type == IS_CONST) { in zend_jit_trace()
4936 if (opline->op2_type == IS_CONST in zend_jit_trace()
5388 ((opline->op2_type & (IS_TMP_VAR|IS_VAR)) != 0 && in zend_jit_trace()
5435 || opline->op2_type == IS_UNUSED in zend_jit_trace()
5540 if (opline->op2_type != IS_CONST in zend_jit_trace()
5787 if (opline->op2_type != IS_CONST in zend_jit_trace()
5858 || opline->op2_type != IS_CONST) in zend_jit_trace()
5869 if (opline->op2_type != IS_CONST in zend_jit_trace()
5967 if (opline->op2_type != IS_CONST in zend_jit_trace()
6028 if (opline->op2_type != IS_CONST) { in zend_jit_trace()
6920 uint8_t op1_type, op2_type, op3_type; in zend_jit_dump_trace() local
6929 op2_type = p->op2_type; in zend_jit_dump_trace()
6931 if (op1_type != IS_UNKNOWN || op2_type != IS_UNKNOWN || op3_type != IS_UNKNOWN) { in zend_jit_dump_trace()
6946 if (op2_type != IS_UNKNOWN) { in zend_jit_dump_trace()
6947 const char *ref = (op2_type & IS_TRACE_INDIRECT) ? in zend_jit_dump_trace()
6948 ((op2_type & IS_TRACE_REFERENCE) ? "*&" : "*") : in zend_jit_dump_trace()
6949 ((op2_type & IS_TRACE_REFERENCE) ? "&" : ""); in zend_jit_dump_trace()
6955 …const char *type = (op2_type == 0) ? "undef" : zend_get_type_by_const(op2_type & ~(IS_TRACE_REFERE… in zend_jit_dump_trace()