public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Guenther <richard.guenther@gmail.com>
To: Nathan Froyd <froydnj@codesourcery.com>
Cc: gcc-patches@gcc.gnu.org
Subject: Re: [PATCH 04/18] remove TREE_CHAIN from SSA_NAME nodes
Date: Fri, 11 Mar 2011 13:06:00 -0000	[thread overview]
Message-ID: <AANLkTikSe8ZYCBgn3WOgEJs7u6rPCMWRqnAJiiCzDjxw@mail.gmail.com> (raw)
In-Reply-To: <1299817406-16745-5-git-send-email-froydnj@codesourcery.com>

On Fri, Mar 11, 2011 at 5:23 AM, Nathan Froyd <froydnj@codesourcery.com> wrote:
> This conversion is straightforward.  The tricky part is converting
> FREE_SSANAMES into a VEC to eliminate the only use of TREE_CHAIN on
> SSA_NAMEs.

Ok for 4.7.

Thanks,
Richard.

> -Nathan
>
> gcc/
>        * tree-flow.h (struct gimple_df): Make free_ssanames a VEC.
>        * tree-ssanames.c (fini_ssanames): VEC_free it.
>        (make_ssa_name_fn): Update for VECness of free_ssanames.
>        (release_ssa_name, release_dead_ssa_names): Likewise.
>        * tree.h (struct tree_ssa_name): Include typed_tree instead of
>        tree_common.
>        * tree.c (initialize_tree_contains_struct): Mark TS_SSA_NAME as
>        TS_TYPED instead of TS_COMMON.
>
> diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
> index 14c8827..6b48697 100644
> --- a/gcc/tree-flow.h
> +++ b/gcc/tree-flow.h
> @@ -61,7 +61,7 @@ struct GTY(()) gimple_df {
>   struct pointer_map_t * GTY((skip(""))) decls_to_pointers;
>
>   /* Free list of SSA_NAMEs.  */
> -  tree free_ssanames;
> +  VEC(tree,gc) *free_ssanames;
>
>   /* Hashtable holding definition for symbol.  If this field is not NULL, it
>      means that the first reference to this variable in the function is a
> diff --git a/gcc/tree-ssanames.c b/gcc/tree-ssanames.c
> index c76dba5..06cdbee 100644
> --- a/gcc/tree-ssanames.c
> +++ b/gcc/tree-ssanames.c
> @@ -96,7 +96,7 @@ void
>  fini_ssanames (void)
>  {
>   VEC_free (tree, gc, SSANAMES (cfun));
> -  FREE_SSANAMES (cfun) = NULL;
> +  VEC_free (tree, gc, FREE_SSANAMES (cfun));
>  }
>
>  /* Dump some simple statistics regarding the re-use of SSA_NAME nodes.  */
> @@ -124,10 +124,9 @@ make_ssa_name_fn (struct function *fn, tree var, gimple stmt)
>   gcc_assert (DECL_P (var));
>
>   /* If our free list has an element, then use it.  */
> -  if (FREE_SSANAMES (fn))
> +  if (!VEC_empty (tree, FREE_SSANAMES (fn)))
>     {
> -      t = FREE_SSANAMES (fn);
> -      FREE_SSANAMES (fn) = TREE_CHAIN (FREE_SSANAMES (fn));
> +      t = VEC_pop (tree, FREE_SSANAMES (fn));
>  #ifdef GATHER_STATISTICS
>       ssa_name_nodes_reused++;
>  #endif
> @@ -234,9 +233,8 @@ release_ssa_name (tree var)
>       /* Note this SSA_NAME is now in the first list.  */
>       SSA_NAME_IN_FREE_LIST (var) = 1;
>
> -      /* And finally link it into the free list.  */
> -      TREE_CHAIN (var) = FREE_SSANAMES (cfun);
> -      FREE_SSANAMES (cfun) = var;
> +      /* And finally put it on the free list.  */
> +      VEC_safe_push (tree, gc, FREE_SSANAMES (cfun), var);
>     }
>  }
>
> @@ -334,8 +332,8 @@ replace_ssa_name_symbol (tree ssa_name, tree sym)
>  static unsigned int
>  release_dead_ssa_names (void)
>  {
> -  tree t, next;
> -  int n = 0;
> +  tree t;
> +  int n = VEC_length (tree, FREE_SSANAMES (cfun));
>   referenced_var_iterator rvi;
>
>   /* Current defs point to various dead SSA names that in turn point to
> @@ -343,17 +341,7 @@ release_dead_ssa_names (void)
>   FOR_EACH_REFERENCED_VAR (cfun, t, rvi)
>     set_current_def (t, NULL);
>   /* Now release the freelist.  */
> -  for (t = FREE_SSANAMES (cfun); t; t = next)
> -    {
> -      next = TREE_CHAIN (t);
> -      /* Dangling pointers might make GGC to still see dead SSA names, so it is
> -        important to unlink the list and avoid GGC from seeing all subsequent
> -        SSA names.  In longer run we want to have all dangling pointers here
> -        removed (since they usually go through dead statements that consume
> -        considerable amounts of memory).  */
> -      TREE_CHAIN (t) = NULL_TREE;
> -      n++;
> -    }
> +  VEC_free (tree, gc, FREE_SSANAMES (cfun));
>   FREE_SSANAMES (cfun) = NULL;
>
>   statistics_counter_event (cfun, "SSA names released", n);
> diff --git a/gcc/tree.c b/gcc/tree.c
> index 7d73c74..072ff19 100644
> --- a/gcc/tree.c
> +++ b/gcc/tree.c
> @@ -376,6 +376,7 @@ initialize_tree_contains_struct (void)
>        case TS_VECTOR:
>        case TS_STRING:
>        case TS_COMPLEX:
> +       case TS_SSA_NAME:
>          MARK_TS_TYPED (code);
>          break;
>
> @@ -385,7 +386,6 @@ initialize_tree_contains_struct (void)
>        case TS_LIST:
>        case TS_VEC:
>        case TS_EXP:
> -       case TS_SSA_NAME:
>        case TS_BLOCK:
>        case TS_BINFO:
>        case TS_STATEMENT_LIST:
> diff --git a/gcc/tree.h b/gcc/tree.h
> index 11c2f83..80888bc 100644
> --- a/gcc/tree.h
> +++ b/gcc/tree.h
> @@ -1970,7 +1970,7 @@ typedef struct GTY(()) ssa_use_operand_d {
>  #define SSA_NAME_IMM_USE_NODE(NODE) SSA_NAME_CHECK (NODE)->ssa_name.imm_uses
>
>  struct GTY(()) tree_ssa_name {
> -  struct tree_common common;
> +  struct typed_tree typed;
>
>   /* _DECL wrapped by this SSA name.  */
>   tree var;
> --
> 1.7.0.4
>
>

  reply	other threads:[~2011-03-11 13:06 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-11  4:23 [4.7 PATCH 00/18] slim down a number of tree nodes Nathan Froyd
2011-03-11  4:23 ` [PATCH 04/18] remove TREE_CHAIN from SSA_NAME nodes Nathan Froyd
2011-03-11 13:06   ` Richard Guenther [this message]
2011-03-11  4:23 ` [PATCH 05/18] remove TREE_CHAIN from CONSTRUCTOR nodes Nathan Froyd
2011-03-11 13:05   ` Richard Guenther
2011-03-11  4:24 ` [PATCH 16/18] make TS_IDENTIFIER be a substructure of TS_BASE Nathan Froyd
2011-03-11 13:12   ` Richard Guenther
2011-03-11 17:21     ` Nathan Froyd
2011-03-11  4:24 ` [PATCH 03/18] remove TREE_CHAIN from *_CST nodes Nathan Froyd
2011-03-11 13:05   ` Richard Guenther
2011-03-11  4:24 ` [PATCH 07/18] generalize build_case_label to the rest of the compiler Nathan Froyd
2011-03-11 13:01   ` Joseph S. Myers
2011-03-11 13:10     ` Richard Guenther
2011-03-11 14:56   ` Tom Tromey
2011-03-11  4:24 ` [PATCH 14/18] move TS_STATEMENT_LIST to be a substructure of TS_TYPED Nathan Froyd
2011-03-11  6:01   ` Jason Merrill
2011-03-11 12:23     ` Nathan Froyd
2011-03-11  4:24 ` [PATCH 06/18] define CASE_CHAIN accessor for CASE_LABEL_EXPR Nathan Froyd
2011-03-11 13:07   ` Richard Guenther
2011-03-11  4:24 ` [PATCH 08/18] convert cp *FOR_STMTs to use private scope fields Nathan Froyd
2011-03-11  4:24 ` [PATCH 13/18] move TS_EXP to be a substructure of TS_TYPED Nathan Froyd
2011-05-11  0:34   ` Nathan Froyd
2011-05-17 17:51     ` [PING][PATCH " Nathan Froyd
2011-05-23 14:58       ` Nathan Froyd
2011-05-23 15:34         ` Richard Guenther
2011-05-24 18:52           ` Nathan Froyd
2011-05-25  9:59             ` Richard Guenther
2011-03-11  4:24 ` [PATCH 01/18] add typed_tree structure Nathan Froyd
2011-03-11 13:05   ` Richard Guenther
2011-03-11 15:21   ` Michael Matz
2011-03-11  4:24 ` [PATCH 15/18] move REAL_IDENTIFIER_TYPE_VALUE to be a field of lang_identifier Nathan Froyd
2011-03-11 13:40   ` Jason Merrill
2011-03-11 14:04     ` Nathan Froyd
2011-03-11 14:20       ` Nathan Froyd
2011-03-11 15:04         ` Jason Merrill
2011-03-11 16:23           ` Nathan Froyd
2011-03-11 17:17             ` Jason Merrill
2011-03-11 14:41     ` Joseph S. Myers
2011-03-11  4:24 ` [PATCH 10/18] convert cp SWITCH_STMTs to use private scope fields Nathan Froyd
2011-03-11  4:30 ` [PATCH 11/18] mark EXPR_PACK_EXPANSION as typed only Nathan Froyd
2011-03-11  4:30 ` [PATCH 09/18] convert cp IF_STMTs to use private scope fields Nathan Froyd
2011-03-11  4:31 ` [PATCH 02/18] enforce TREE_CHAIN and TREE_TYPE accesses Nathan Froyd
2011-03-11  8:12   ` Mike Stump
2011-03-11 13:21   ` Richard Guenther
2011-03-11 15:24   ` Tom Tromey
2011-03-12 12:13   ` Eric Botcazou
2011-03-21 13:50     ` Nathan Froyd
2011-03-21 17:50       ` Eric Botcazou
2011-04-13  2:43   ` Nathan Froyd
2011-04-13  2:57     ` Diego Novillo
2011-04-13  4:02     ` Ian Lance Taylor
2011-03-11  4:31 ` [PATCH 18/18] make TS_BLOCK a substructure of TS_BASE Nathan Froyd
2011-05-26 18:30   ` Nathan Froyd
2011-03-11  4:31 ` [PATCH 17/18] introduce block_chainon and use BLOCK_CHAIN more Nathan Froyd
2011-03-11 13:15   ` Richard Guenther
2011-03-11 13:19     ` Nathan Froyd
2011-03-11 15:14   ` Tom Tromey
2011-03-12 12:23   ` Eric Botcazou
2011-03-11  4:50 ` [PATCH 12/18] make CASE_LABEL_EXPR not abuse TREE_CHAIN Nathan Froyd
2011-03-11 13:19   ` Richard Guenther
2011-05-10 20:08     ` Nathan Froyd
2011-05-10 20:19     ` Diego Novillo
2011-05-11  9:21       ` Richard Guenther
2011-05-11 19:22   ` H.J. Lu
2011-03-11  8:18 ` [4.7 PATCH 00/18] slim down a number of tree nodes Mike Stump
2011-03-11 16:00   ` Nathan Froyd
2011-03-11 13:25 ` Richard Guenther
2011-03-11 13:42   ` Nathan Froyd

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=AANLkTikSe8ZYCBgn3WOgEJs7u6rPCMWRqnAJiiCzDjxw@mail.gmail.com \
    --to=richard.guenther@gmail.com \
    --cc=froydnj@codesourcery.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).