Home
last modified time | relevance | path

Searched refs:MAY_BE_ANY (Results 1 – 11 of 11) sorted by relevance

/PHP-7.3/Zend/
H A Dzend_type_info.h34 #define MAY_BE_ANY (MAY_BE_NULL|MAY_BE_FALSE|MAY_BE_TRUE|MAY_BE_LONG|MAY_BE_DOUBLE… macro
48 #define MAY_BE_ARRAY_OF_ANY (MAY_BE_ANY << MAY_BE_ARRAY_SHIFT)
H A Dzend_vm_def.h8686 …S_CONST) ? !Z_REFCOUNTED_P(RT_CONSTANT(op, op->op1)) : (!(op1_info & ((MAY_BE_ANY|MAY_BE_UNDEF)-(M…
8819 …ER(ZEND_FE_FETCH_R, op->op2_type == IS_CV && (op1_info & (MAY_BE_UNDEF|MAY_BE_ANY|MAY_BE_REF)) == …
H A Dzend_vm_execute.h65387 …S_CONST) ? !Z_REFCOUNTED_P(RT_CONSTANT(op, op->op1)) : (!(op1_info & ((MAY_BE_ANY|MAY_BE_UNDEF)-(M…
65443 if (op->op2_type == IS_CV && (op1_info & (MAY_BE_UNDEF|MAY_BE_ANY|MAY_BE_REF)) == MAY_BE_ARRAY) {
/PHP-7.3/ext/opcache/Optimizer/
H A Dzend_inference.c2360 if (t1 & (MAY_BE_ANY-MAY_BE_STRING)) { in zend_update_type_info()
2418 if ((tmp & MAY_BE_ANY) == (t1 & MAY_BE_ANY)) { in zend_update_type_info()
2439 … tmp |= ((t1 & MAY_BE_ANY) << MAY_BE_ARRAY_SHIFT) | ((t1 & MAY_BE_ANY)? MAY_BE_ARRAY_KEY_LONG : 0); in zend_update_type_info()
2718 if (tmp & (MAY_BE_ANY | MAY_BE_REF)) { in zend_update_type_info()
2748 if (tmp & (MAY_BE_ANY | MAY_BE_REF)) { in zend_update_type_info()
2841 tmp = MAY_BE_REF | MAY_BE_ANY in zend_update_type_info()
4289 if ((t1 & MAY_BE_ANY) == MAY_BE_ARRAY in zend_may_throw()
4321 if ((t1 & MAY_BE_ANY) == MAY_BE_STRING in zend_may_throw()
4350 if ((t1 & MAY_BE_ANY) == MAY_BE_NULL in zend_may_throw()
4359 if ((t1 & MAY_BE_ANY) == MAY_BE_ARRAY in zend_may_throw()
[all …]
H A Dzend_inference.h163 return MAY_BE_RC1 | MAY_BE_RCN | MAY_BE_ANY | MAY_BE_ARRAY_KEY_ANY | MAY_BE_ARRAY_OF_ANY; in DEFINE_SSA_OP_MIN_RANGE()
202 …return MAY_BE_UNDEF | MAY_BE_RC1 | MAY_BE_RCN | MAY_BE_REF | MAY_BE_ANY | MAY_BE_ARRAY_KEY_ANY | M… in get_ssa_var_info()
H A Ddfa_pass.c328 if ((use_info->type & (MAY_BE_ANY|MAY_BE_UNDEF)) & ~(def_info->type & MAY_BE_ANY)) { in can_elide_return_type_check()
359 return !((type & MAY_BE_ANY) & ~simple); in opline_supports_assign_contraction()
1028 && (OP2_INFO() & MAY_BE_ANY) == MAY_BE_DOUBLE in zend_dfa_optimize_op_array()
1040 && (OP1_INFO() & MAY_BE_ANY) == MAY_BE_DOUBLE in zend_dfa_optimize_op_array()
H A Dsccp.c1066 } else if (!(type & ((MAY_BE_ANY|MAY_BE_UNDEF) - expected_type_mask)) in sccp_visit_instr()
1079 if ((ctx->scdf.ssa->var_info[ssa_op->op1_use].type & MAY_BE_ANY) == 0) { in sccp_visit_instr()
1174 if ((ctx->scdf.ssa->var_info[ssa_op->op1_use].type & MAY_BE_ANY) == 0) { in sccp_visit_instr()
2077 if (!(info->type & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_NULL))) { in value_from_type_and_range()
2081 if (!(info->type & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_FALSE))) { in value_from_type_and_range()
2085 if (!(info->type & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_TRUE))) { in value_from_type_and_range()
2090 if (!(info->type & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_LONG)) in value_from_type_and_range()
H A Dzend_optimizer.c1354 …uint32_t op1_info = opline->op1_type == IS_UNUSED ? 0 : (OP1_INFO() & (MAY_BE_UNDEF|MAY_BE_ANY|MAY… in zend_redo_pass_two_ex()
1355 …uint32_t op2_info = opline->op1_type == IS_UNUSED ? 0 : (OP2_INFO() & (MAY_BE_UNDEF|MAY_BE_ANY|MAY… in zend_redo_pass_two_ex()
1361 … 0) ? (OP1_DEF_INFO() & (MAY_BE_UNDEF|MAY_BE_ANY|MAY_BE_REF|MAY_BE_ARRAY_OF_ANY|MAY_BE_ARRAY_KEY_A… in zend_redo_pass_two_ex()
1362 …(opline->result_type == IS_UNUSED ? 0 : (RES_INFO() & (MAY_BE_UNDEF|MAY_BE_ANY|MAY_BE_REF|MAY_BE_A… in zend_redo_pass_two_ex()
H A Dzend_func_info.c122 …if ((t1 & (MAY_BE_ANY-(MAY_BE_STRING|MAY_BE_DOUBLE))) && (t2 & (MAY_BE_ANY-(MAY_BE_STRING|MAY_BE_D… in zend_range_info()
123 if ((t3 & MAY_BE_ANY) != MAY_BE_DOUBLE) { in zend_range_info()
214 #define UNKNOWN_INFO (MAY_BE_ANY | MAY_BE_ARRAY_KEY_ANY | MAY_BE_ARRAY_OF_ANY | MAY_BE_ARRAY_OF_REF)
1230 …F1("json_decode", MAY_BE_ANY | MAY_BE_ARRAY_KEY_ANY | MAY_BE_ARRAY_OF_AN…
1728 ret = MAY_BE_ANY | MAY_BE_ARRAY_KEY_ANY | MAY_BE_ARRAY_OF_ANY | MAY_BE_ARRAY_OF_REF; in zend_get_func_info()
H A Dzend_dump.c203 } else if ((info & MAY_BE_ANY) == MAY_BE_ANY) { in zend_dump_type_info()
H A Dzend_ssa.c159 uint32_t relevant = MAY_BE_ANY|MAY_BE_ARRAY_KEY_ANY|MAY_BE_ARRAY_OF_ANY|MAY_BE_ARRAY_OF_REF; in pi_not_type_mask()

Completed in 265 milliseconds