Searched refs:ret_info (Results 1 – 5 of 5) sorted by relevance
/PHP-7.2/Zend/ |
H A D | zend_execute.c | 989 zend_internal_arg_info *ret_info = zf->internal_function.arg_info - 1; in zend_verify_internal_return_type() local 993 if (ZEND_TYPE_CODE(ret_info->type) == IS_VOID) { in zend_verify_internal_return_type() 1001 if (UNEXPECTED(!zend_check_type(ret_info->type, ret, &ce, &dummy_cache_slot, NULL, NULL, 1))) { in zend_verify_internal_return_type() 1012 zend_arg_info *ret_info = zf->common.arg_info - 1; in zend_verify_return_type() local 1015 if (UNEXPECTED(!zend_check_type(ret_info->type, ret, &ce, cache_slot, NULL, NULL, 1))) { in zend_verify_return_type() 1022 zend_arg_info *ret_info = zf->common.arg_info - 1; in zend_verify_missing_return_type() local 1024 if (ZEND_TYPE_IS_SET(ret_info->type) && UNEXPECTED(ZEND_TYPE_CODE(ret_info->type) != IS_VOID)) { in zend_verify_missing_return_type() 1026 if (ZEND_TYPE_IS_CLASS(ret_info->type)) { in zend_verify_missing_return_type() 1030 …ce = zend_fetch_class(ZEND_TYPE_NAME(ret_info->type), (ZEND_FETCH_CLASS_AUTO | ZEND_FETCH_CLASS_NO… in zend_verify_missing_return_type()
|
H A D | zend_vm_def.h | 3755 zend_arg_info *ret_info = EX(func)->common.arg_info - 1; variable 3771 if (UNEXPECTED(!ZEND_TYPE_IS_CLASS(ret_info->type) 3772 && ZEND_TYPE_CODE(ret_info->type) != IS_CALLABLE 3773 && ZEND_TYPE_CODE(ret_info->type) != IS_ITERABLE 3774 && !ZEND_SAME_FAKE_TYPE(ZEND_TYPE_CODE(ret_info->type), Z_TYPE_P(retval_ptr))
|
H A D | zend_vm_execute.h | 7552 if (UNEXPECTED(!ZEND_TYPE_IS_CLASS(ret_info->type) 7553 && ZEND_TYPE_CODE(ret_info->type) != IS_CALLABLE 7554 && ZEND_TYPE_CODE(ret_info->type) != IS_ITERABLE 14434 && ZEND_TYPE_CODE(ret_info->type) != IS_CALLABLE 14435 && ZEND_TYPE_CODE(ret_info->type) != IS_ITERABLE 21438 && ZEND_TYPE_CODE(ret_info->type) != IS_CALLABLE 21439 && ZEND_TYPE_CODE(ret_info->type) != IS_ITERABLE 29238 && ZEND_TYPE_CODE(ret_info->type) != IS_CALLABLE 29239 && ZEND_TYPE_CODE(ret_info->type) != IS_ITERABLE 40649 && ZEND_TYPE_CODE(ret_info->type) != IS_CALLABLE [all …]
|
/PHP-7.2/ext/opcache/Optimizer/ |
H A D | zend_optimizer.c | 683 zend_arg_info *ret_info = op_array->arg_info - 1; in zend_optimizer_replace_by_const() local 684 if (ZEND_TYPE_IS_CLASS(ret_info->type) in zend_optimizer_replace_by_const() 685 || ZEND_TYPE_CODE(ret_info->type) == IS_CALLABLE in zend_optimizer_replace_by_const() 686 || !ZEND_SAME_FAKE_TYPE(ZEND_TYPE_CODE(ret_info->type), Z_TYPE_P(val)) in zend_optimizer_replace_by_const()
|
H A D | zend_inference.c | 3384 zend_arg_info *ret_info = op_array->arg_info - 1; in zend_update_type_info() local 3386 tmp = zend_fetch_arg_info(script, ret_info, &ce); in zend_update_type_info() 3795 zend_arg_info *ret_info = op_array->arg_info - 1; in zend_init_func_return_info() local 3798 ret->type = zend_fetch_arg_info(script, ret_info, &ret->ce); in zend_init_func_return_info()
|
Completed in 158 milliseconds