diff options
author | Janus Weil <janus@gcc.gnu.org> | 2013-01-29 22:40:51 +0100 |
---|---|---|
committer | Janus Weil <janus@gcc.gnu.org> | 2013-01-29 22:40:51 +0100 |
commit | 4cbc9039962dd819f07ee1e3324696aea5114b00 (patch) | |
tree | 8a5b65f0f6e388374cf3665d4df237dbe7704a75 /gcc/fortran/trans-decl.c | |
parent | d6f2922e91928b5191a5c5f1b3a6b320712b5ce3 (diff) | |
download | gcc-4cbc9039962dd819f07ee1e3324696aea5114b00.zip gcc-4cbc9039962dd819f07ee1e3324696aea5114b00.tar.gz gcc-4cbc9039962dd819f07ee1e3324696aea5114b00.tar.bz2 |
re PR fortran/54107 ([F03] Memory hog with abstract interface)
2013-01-29 Janus Weil <janus@gcc.gnu.org>
Mikael Morin <mikael@gcc.gnu.org>
PR fortran/54107
* gfortran.h (gfc_component): Delete members 'formal' and 'formal_ns'.
(gfc_copy_formal_args,gfc_copy_formal_args_ppc,gfc_expr_replace_symbols,
gfc_expr_replace_comp): Delete.
(gfc_sym_get_dummy_args): New prototype.
* dependency.c (gfc_check_fncall_dependency): Use
'gfc_sym_get_dummy_args'.
* expr.c (gfc_is_constant_expr): Ditto.
(replace_symbol,gfc_expr_replace_symbols,replace_comp,
gfc_expr_replace_comp): Deleted.
* frontend-passes.c (doloop_code,do_function): Use
'gfc_sym_get_dummy_args'.
* interface.c (gfc_check_operator_interface,gfc_compare_interfaces,
gfc_procedure_use,gfc_ppc_use,gfc_arglist_matches_symbol,
gfc_check_typebound_override): Ditto.
* module.c (MOD_VERSION): Bump module version.
(mio_component): Do not read/write 'formal' and 'formal_ns'.
* resolve.c (resolve_procedure_interface,resolve_fl_derived0): Do not
copy formal args, but just keep a pointer to the interface.
(resolve_function,resolve_call,resolve_typebound_generic_call,
resolve_ppc_call,resolve_expr_ppc,generate_component_assignments,
resolve_fl_procedure,gfc_resolve_finalizers,check_generic_tbp_ambiguity,
resolve_typebound_procedure,check_uop_procedure): Use
'gfc_sym_get_dummy_args'.
* symbol.c (free_components): Do not free 'formal' and 'formal_ns'.
(gfc_copy_formal_args,gfc_copy_formal_args_ppc): Deleted.
(gfc_sym_get_dummy_args): New function.
* trans-array.c (get_array_charlen,gfc_walk_elemental_function_args):
Use 'gfc_sym_get_dummy_args'.
* trans-decl.c (build_function_decl,create_function_arglist,
build_entry_thunks,init_intent_out_dt,gfc_trans_deferred_vars,
add_argument_checking): Ditto.
* trans-expr.c (gfc_map_fcn_formal_to_actual,gfc_conv_procedure_call,
gfc_conv_statement_function): Ditto.
* trans-stmt.c (gfc_conv_elemental_dependencies): Ditto.
* trans-types.c (create_fn_spec,gfc_get_function_type): Ditto.
2013-01-29 Janus Weil <janus@gcc.gnu.org>
Mikael Morin <mikael@gcc.gnu.org>
PR fortran/54107
* gfortran.dg/proc_ptr_comp_36.f90: New.
Co-Authored-By: Mikael Morin <mikael@gcc.gnu.org>
From-SVN: r195562
Diffstat (limited to 'gcc/fortran/trans-decl.c')
-rw-r--r-- | gcc/fortran/trans-decl.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c index 26103a3..1d0919d 100644 --- a/gcc/fortran/trans-decl.c +++ b/gcc/fortran/trans-decl.c @@ -1906,7 +1906,7 @@ build_function_decl (gfc_symbol * sym, bool global) { /* Look for alternate return placeholders. */ int has_alternate_returns = 0; - for (f = sym->formal; f; f = f->next) + for (f = gfc_sym_get_dummy_args (sym); f; f = f->next) { if (f->sym == NULL) { @@ -2074,11 +2074,11 @@ create_function_arglist (gfc_symbol * sym) } hidden_typelist = typelist; - for (f = sym->formal; f; f = f->next) + for (f = gfc_sym_get_dummy_args (sym); f; f = f->next) if (f->sym != NULL) /* Ignore alternate returns. */ hidden_typelist = TREE_CHAIN (hidden_typelist); - for (f = sym->formal; f; f = f->next) + for (f = gfc_sym_get_dummy_args (sym); f; f = f->next) { char name[GFC_MAX_SYMBOL_LEN + 2]; @@ -2344,7 +2344,8 @@ build_entry_thunks (gfc_namespace * ns, bool global) } } - for (formal = ns->proc_name->formal; formal; formal = formal->next) + for (formal = gfc_sym_get_dummy_args (ns->proc_name); formal; + formal = formal->next) { /* Ignore alternate returns. */ if (formal->sym == NULL) @@ -2352,7 +2353,7 @@ build_entry_thunks (gfc_namespace * ns, bool global) /* We don't have a clever way of identifying arguments, so resort to a brute-force search. */ - for (thunk_formal = thunk_sym->formal; + for (thunk_formal = gfc_sym_get_dummy_args (thunk_sym); thunk_formal; thunk_formal = thunk_formal->next) { @@ -2459,7 +2460,8 @@ build_entry_thunks (gfc_namespace * ns, bool global) /* We share the symbols in the formal argument list with other entry points and the master function. Clear them so that they are recreated for each function. */ - for (formal = thunk_sym->formal; formal; formal = formal->next) + for (formal = gfc_sym_get_dummy_args (thunk_sym); formal; + formal = formal->next) if (formal->sym != NULL) /* Ignore alternate returns. */ { formal->sym->backend_decl = NULL_TREE; @@ -3458,7 +3460,7 @@ init_intent_out_dt (gfc_symbol * proc_sym, gfc_wrapped_block * block) tree present; gfc_init_block (&init); - for (f = proc_sym->formal; f; f = f->next) + for (f = gfc_sym_get_dummy_args (proc_sym); f; f = f->next) if (f->sym && f->sym->attr.intent == INTENT_OUT && !f->sym->attr.pointer && f->sym->ts.type == BT_DERIVED) @@ -3911,7 +3913,7 @@ gfc_trans_deferred_vars (gfc_symbol * proc_sym, gfc_wrapped_block * block) gfc_init_block (&tmpblock); - for (f = proc_sym->formal; f; f = f->next) + for (f = gfc_sym_get_dummy_args (proc_sym); f; f = f->next) { if (f->sym && f->sym->tlink == NULL && f->sym->ts.type == BT_CHARACTER) { @@ -4804,7 +4806,7 @@ add_argument_checking (stmtblock_t *block, gfc_symbol *sym) { gfc_formal_arglist *formal; - for (formal = sym->formal; formal; formal = formal->next) + for (formal = gfc_sym_get_dummy_args (sym); formal; formal = formal->next) if (formal->sym && formal->sym->ts.type == BT_CHARACTER && !formal->sym->ts.deferred) { |