From: Mikael Morin Date: Wed, 23 Feb 2011 22:38:27 +0000 (+0000) Subject: re PR fortran/40850 (double free in nested types with allocatable components) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=46b2c44027f8972329b6f602b57c9fdf1a8e4007;p=gcc.git re PR fortran/40850 (double free in nested types with allocatable components) 2011-02-23 Mikael Morin PR fortran/40850 * trans.c (gfc_prepend_expr_to_block): New function. * trans.h (gfc_prepend_expr_to_block): Declare. * trans-array.c (gfc_conv_array_parameter): Replace gfc_add_expr_to_block with gfc_prepend_expr_to_block. 2011-02-23 Mikael Morin PR fortran/40850 * gfortran.dg/nested_allocatables_1.f90: New. From-SVN: r170445 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 159b1be15c9..96c5411e922 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,11 @@ +2011-02-23 Mikael Morin + + PR fortran/40850 + * trans.c (gfc_prepend_expr_to_block): New function. + * trans.h (gfc_prepend_expr_to_block): Declare. + * trans-array.c (gfc_conv_array_parameter): Replace + gfc_add_expr_to_block with gfc_prepend_expr_to_block. + 2011-02-22 Paul Thomas PR fortran/45743 diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c index 4e901f27680..ac08c42c944 100644 --- a/gcc/fortran/trans-array.c +++ b/gcc/fortran/trans-array.c @@ -6097,10 +6097,11 @@ gfc_conv_array_parameter (gfc_se * se, gfc_expr * expr, gfc_ss * ss, bool g77, && expr->ts.u.derived->attr.alloc_comp && expr->expr_type != EXPR_VARIABLE) { - tmp = build_fold_indirect_ref_loc (input_location, - se->expr); + tmp = build_fold_indirect_ref_loc (input_location, se->expr); tmp = gfc_deallocate_alloc_comp (expr->ts.u.derived, tmp, expr->rank); - gfc_add_expr_to_block (&se->post, tmp); + + /* The components shall be deallocated before their containing entity. */ + gfc_prepend_expr_to_block (&se->post, tmp); } if (g77 || (fsym && fsym->attr.contiguous diff --git a/gcc/fortran/trans.c b/gcc/fortran/trans.c index 1fd0dc13013..27a352ab3bd 100644 --- a/gcc/fortran/trans.c +++ b/gcc/fortran/trans.c @@ -1090,7 +1090,8 @@ add_expr_to_chain (tree* chain, tree expr, bool front) *chain = expr; } -/* Add a statement to a block. */ + +/* Add a statement at the end of a block. */ void gfc_add_expr_to_block (stmtblock_t * block, tree expr) @@ -1100,6 +1101,16 @@ gfc_add_expr_to_block (stmtblock_t * block, tree expr) } +/* Add a statement at the beginning of a block. */ + +void +gfc_prepend_expr_to_block (stmtblock_t * block, tree expr) +{ + gcc_assert (block); + add_expr_to_chain (&block->head, expr, true); +} + + /* Add a block the end of a block. */ void diff --git a/gcc/fortran/trans.h b/gcc/fortran/trans.h index 40097a9f820..1536f2e806a 100644 --- a/gcc/fortran/trans.h +++ b/gcc/fortran/trans.h @@ -396,6 +396,8 @@ void gfc_trans_vla_type_sizes (gfc_symbol *, stmtblock_t *); /* Add an expression to the end of a block. */ void gfc_add_expr_to_block (stmtblock_t *, tree); +/* Add an expression to the beginning of a block. */ +void gfc_prepend_expr_to_block (stmtblock_t *, tree); /* Add a block to the end of a block. */ void gfc_add_block_to_block (stmtblock_t *, stmtblock_t *); /* Add a MODIFY_EXPR to a block. */ diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 20e9eed34ad..b2abbe70961 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-02-23 Mikael Morin + + PR fortran/40850 + * gfortran.dg/nested_allocatables_1.f90: New. + 2011-02-23 Nathan Froyd PR c++/46868 diff --git a/gcc/testsuite/gfortran.dg/nested_allocatables_1.f90 b/gcc/testsuite/gfortran.dg/nested_allocatables_1.f90 new file mode 100644 index 00000000000..607a883b707 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/nested_allocatables_1.f90 @@ -0,0 +1,28 @@ +! { dg-do run } +! +! PR fortran/40850 +! The code freeing allocatable components used to be put after the code +! freeing the containing entity. +! +! Original test case by Marco Restelli +! Reduced by Daniel Franke +! and Janus Weil + + + type t + integer, allocatable :: d(:) + end type + type(t), allocatable :: a(:) + + ! Big enough to make it fail + allocate(a(2 * 1024)) + call sub( (/ a /) ) + +contains + + subroutine sub(b) + type(t) :: b(:) + end subroutine + +end +