Lines Matching refs:args_ast

3958 static bool zend_compile_call_common(znode *result, zend_ast *args_ast, zend_function *fbc, uint32_…  in zend_compile_call_common()  argument
3963 if (args_ast->kind == ZEND_AST_CALLABLE_CONVERT) { in zend_compile_call_common()
3980 uint32_t arg_count = zend_compile_args(args_ast, fbc, &may_have_extra_named_args); in zend_compile_call_common()
4014 static void zend_compile_dynamic_call(znode *result, znode *name_node, zend_ast *args_ast, uint32_t… in zend_compile_dynamic_call() argument
4044 zend_compile_call_common(result, args_ast, NULL, lineno); in zend_compile_dynamic_call()
4724 static void zend_compile_ns_call(znode *result, znode *name_node, zend_ast *args_ast, uint32_t line… in zend_compile_ns_call() argument
4730 if (args_ast->kind != ZEND_AST_CALLABLE_CONVERT in zend_compile_ns_call()
4731 && !zend_args_contain_unpack_or_named(zend_ast_get_list(args_ast)) in zend_compile_ns_call()
4742 …frameless_function_info = find_frameless_function_info(zend_ast_get_list(args_ast), frameless_func… in zend_compile_ns_call()
4759 zend_compile_call_common(result, args_ast, NULL, lineno); in zend_compile_ns_call()
4768 …uint32_t flf_icall_opnum = zend_compile_frameless_icall_ex(NULL, zend_ast_get_list(args_ast), fram… in zend_compile_ns_call()
5096 zend_ast *args_ast = ast->child[2]; in zend_compile_parent_property_hook_call() local
5097 if (args_ast->kind == ZEND_AST_CALLABLE_CONVERT) { in zend_compile_parent_property_hook_call()
5130 zend_compile_call_common(result, args_ast, fbc, zend_ast_get_lineno(method_ast)); in zend_compile_parent_property_hook_call()
5138 zend_ast *args_ast = ast->child[1]; in zend_compile_call() local
5139 bool is_callable_convert = args_ast->kind == ZEND_AST_CALLABLE_CONVERT; in zend_compile_call()
5145 zend_compile_dynamic_call(result, &name_node, args_ast, ast->lineno); in zend_compile_call()
5154 …zend_compile_assert(result, zend_ast_get_list(args_ast), Z_STR(name_node.u.constant), NULL, ast->l… in zend_compile_call()
5156 zend_compile_ns_call(result, &name_node, args_ast, ast->lineno, type); in zend_compile_call()
5174 zend_compile_assert(result, zend_ast_get_list(args_ast), lcname, fbc, ast->lineno); in zend_compile_call()
5184 zend_compile_dynamic_call(result, &name_node, args_ast, ast->lineno); in zend_compile_call()
5190 zend_ast_get_list(args_ast), fbc, type) == SUCCESS in zend_compile_call()
5209 zend_compile_call_common(result, args_ast, fbc, ast->lineno); in zend_compile_call()
5218 zend_ast *args_ast = ast->child[2]; in zend_compile_method_call() local
5273 if (zend_compile_call_common(result, args_ast, fbc, zend_ast_get_lineno(method_ast))) { in zend_compile_method_call()
5310 zend_ast *args_ast = ast->child[2]; in zend_compile_static_call() local
5378 zend_compile_call_common(result, args_ast, fbc, zend_ast_get_lineno(method_ast)); in zend_compile_static_call()
5387 zend_ast *args_ast = ast->child[1]; in zend_compile_new() local
5410 zend_compile_call_common(&ctor_result, args_ast, NULL, ast->lineno); in zend_compile_new()
10621 zend_ast *name_ast, *args_ast, *call_ast; in zend_compile_shell_exec() local
10625 args_ast = zend_ast_create_list(1, ZEND_AST_ARG_LIST, expr_ast); in zend_compile_shell_exec()
10626 call_ast = zend_ast_create(ZEND_AST_CALL, name_ast, args_ast); in zend_compile_shell_exec()