Lines Matching refs:fn_flags

1151 	if (CG(active_op_array)->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) {  in zend_mark_function_as_generator()
1167 CG(active_op_array)->fn_flags |= ZEND_ACC_GENERATOR; in zend_mark_function_as_generator()
1303 if (CG(active_op_array)->fn_flags & ZEND_ACC_CLOSURE) { in zend_is_scope_known()
2080 zend_bool returns_reference = (CG(active_op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) != 0; in zend_emit_final_return()
2082 if (CG(active_op_array)->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { in zend_emit_final_return()
2845 …!(fbc->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED|ZEND_ACC_HAS_TYPE_HINTS|ZEND_ACC_R… in zend_get_call_op()
2850 !(fbc->common.fn_flags & ZEND_ACC_GENERATOR)) { in zend_get_call_op()
3630 zend_bool by_ref = (CG(active_op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) != 0; in zend_compile_return()
3651 …if (!(CG(active_op_array)->fn_flags & ZEND_ACC_GENERATOR) && CG(active_op_array)->fn_flags & ZEND_… in zend_compile_return()
4191 if (!(CG(active_op_array)->fn_flags & ZEND_ACC_HAS_FINALLY_BLOCK)) { in zend_compile_try()
4192 CG(active_op_array)->fn_flags |= ZEND_ACC_HAS_FINALLY_BLOCK; in zend_compile_try()
4408 CG(active_op_array)->fn_flags |= ZEND_ACC_STRICT_TYPES; in zend_compile_declare()
4448 …if (UNEXPECTED(func->common.fn_flags & ZEND_ACC_VARIADIC && func->common.arg_info[i].pass_by_refer… in zend_set_function_arg_flags()
4502 arg_infos->pass_by_reference = (op_array->fn_flags & ZEND_ACC_RETURN_REFERENCE) != 0; in zend_compile_params()
4511 op_array->fn_flags |= ZEND_ACC_HAS_RETURN_TYPE; in zend_compile_params()
4545 if ((op_array->scope || (op_array->fn_flags & ZEND_ACC_CLOSURE)) in zend_compile_params()
4546 && (op_array->fn_flags & ZEND_ACC_STATIC) == 0) { in zend_compile_params()
4552 if (op_array->fn_flags & ZEND_ACC_VARIADIC) { in zend_compile_params()
4559 op_array->fn_flags |= ZEND_ACC_VARIADIC; in zend_compile_params()
4597 op_array->fn_flags |= ZEND_ACC_HAS_TYPE_HINTS; in zend_compile_params()
4670 if (op_array->fn_flags & ZEND_ACC_VARIADIC) { in zend_compile_params()
4705 zend_bool is_public = (op_array->fn_flags & ZEND_ACC_PUBLIC) != 0; in zend_begin_method_decl()
4706 zend_bool is_static = (op_array->fn_flags & ZEND_ACC_STATIC) != 0; in zend_begin_method_decl()
4711 if (!is_public || (op_array->fn_flags & (ZEND_ACC_FINAL|ZEND_ACC_ABSTRACT))) { in zend_begin_method_decl()
4715 op_array->fn_flags |= ZEND_ACC_ABSTRACT; in zend_begin_method_decl()
4718 if (op_array->fn_flags & ZEND_ACC_ABSTRACT) { in zend_begin_method_decl()
4719 if (op_array->fn_flags & ZEND_ACC_PRIVATE) { in zend_begin_method_decl()
4862 op_array->fn_flags |= ZEND_ACC_ALLOW_STATIC; in zend_begin_method_decl()
4896 if (op_array->fn_flags & ZEND_ACC_CLOSURE) { in zend_begin_func_decl()
4933 op_array->fn_flags |= (orig_op_array->fn_flags & ZEND_ACC_STRICT_TYPES); in zend_compile_func_decl()
4934 op_array->fn_flags |= decl->flags; in zend_compile_func_decl()
4941 op_array->fn_flags |= ZEND_ACC_CLOSURE; in zend_compile_func_decl()
5387 ce->constructor->common.fn_flags |= ZEND_ACC_CTOR; in zend_compile_class_decl()
5388 if (ce->constructor->common.fn_flags & ZEND_ACC_STATIC) { in zend_compile_class_decl()
5392 if (ce->constructor->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { in zend_compile_class_decl()
5399 ce->destructor->common.fn_flags |= ZEND_ACC_DTOR; in zend_compile_class_decl()
5400 if (ce->destructor->common.fn_flags & ZEND_ACC_STATIC) { in zend_compile_class_decl()
5403 } else if (ce->destructor->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { in zend_compile_class_decl()
5410 ce->clone->common.fn_flags |= ZEND_ACC_CLONE; in zend_compile_class_decl()
5411 if (ce->clone->common.fn_flags & ZEND_ACC_STATIC) { in zend_compile_class_decl()
5414 } else if (ce->clone->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { in zend_compile_class_decl()
5821 …if ((op_array && !op_array->scope && op_array->function_name) || (op_array->fn_flags & ZEND_ACC_CL… in zend_try_ct_eval_magic_const()
6345 zend_bool returns_by_ref = (CG(active_op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) != 0; in zend_compile_yield()
6378 if (CG(active_op_array)->fn_flags & ZEND_ACC_RETURN_REFERENCE) { in zend_compile_yield_from()