aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-alias.c
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2007-07-29 20:53:29 +0000
committerDaniel Berlin <dberlin@gcc.gnu.org>2007-07-29 20:53:29 +0000
commit603802e7431ff5c174e17dc04d49181945f997e1 (patch)
treeb9ba3ee252fc7f2141658b03a827197cb0314795 /gcc/tree-ssa-alias.c
parentd8163f5cc068347dfd74cb03c9e7b6cfcd3a8460 (diff)
downloadgcc-603802e7431ff5c174e17dc04d49181945f997e1.zip
gcc-603802e7431ff5c174e17dc04d49181945f997e1.tar.gz
gcc-603802e7431ff5c174e17dc04d49181945f997e1.tar.bz2
Makefile.in (tree-ssa-alias.o): Add alloc-pool.h
2007-07-28 Daniel Berlin <dberlin@dberlin.org> * Makefile.in (tree-ssa-alias.o): Add alloc-pool.h * tree-ssa-alias.c: Add alloc-pool.h. (init_alias_info): Free alias_bitmap_obstack. (delete_alias_info): Call delete_mem_ref_stats. (get_mem_sym_stats_for): Use alloc_pool. (init_mem_ref_stats): Do not delete mem_ref_stats here. (delete_mem_sym_stats): Removed. From-SVN: r127050
Diffstat (limited to 'gcc/tree-ssa-alias.c')
-rw-r--r--gcc/tree-ssa-alias.c35
1 files changed, 11 insertions, 24 deletions
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c
index 31130ac..0f3351e 100644
--- a/gcc/tree-ssa-alias.c
+++ b/gcc/tree-ssa-alias.c
@@ -47,6 +47,7 @@ along with GCC; see the file COPYING3. If not see
#include "bitmap.h"
#include "vecprim.h"
#include "pointer-set.h"
+#include "alloc-pool.h"
/* Broad overview of how aliasing works:
@@ -212,7 +213,7 @@ static void set_pt_anything (tree);
void debug_mp_info (VEC(mem_sym_stats_t,heap) *);
-
+static alloc_pool mem_sym_stats_pool;
/* Return memory reference stats for symbol VAR. Create a new slot in
cfun->gimple_df->mem_sym_stats if needed. */
@@ -229,7 +230,8 @@ get_mem_sym_stats_for (tree var)
slot = pointer_map_insert (map, var);
if (*slot == NULL)
{
- stats = XCNEW (struct mem_sym_stats_d);
+ stats = pool_alloc (mem_sym_stats_pool);
+ memset (stats, 0, sizeof (*stats));
stats->var = var;
*slot = (void *) stats;
}
@@ -1876,20 +1878,6 @@ count_uses_and_derefs (tree ptr, tree stmt, unsigned *num_uses_p,
gcc_assert (*num_uses_p >= *num_loads_p + *num_stores_p);
}
-
-/* Helper for delete_mem_ref_stats. Free all the slots in the
- mem_sym_stats map. */
-
-static bool
-delete_mem_sym_stats (void *key ATTRIBUTE_UNUSED, void **value,
- void *data ATTRIBUTE_UNUSED)
-{
- XDELETE (*value);
- *value = NULL;
- return false;
-}
-
-
/* Remove memory references stats for function FN. */
void
@@ -1897,11 +1885,9 @@ delete_mem_ref_stats (struct function *fn)
{
if (gimple_mem_ref_stats (fn)->mem_sym_stats)
{
- pointer_map_traverse (gimple_mem_ref_stats (fn)->mem_sym_stats,
- delete_mem_sym_stats, NULL);
+ free_alloc_pool (mem_sym_stats_pool);
pointer_map_destroy (gimple_mem_ref_stats (fn)->mem_sym_stats);
}
-
gimple_mem_ref_stats (fn)->mem_sym_stats = NULL;
}
@@ -1913,9 +1899,9 @@ init_mem_ref_stats (void)
{
struct mem_ref_stats_d *mem_ref_stats = gimple_mem_ref_stats (cfun);
- if (mem_ref_stats->mem_sym_stats)
- delete_mem_ref_stats (cfun);
-
+ mem_sym_stats_pool = create_alloc_pool ("Mem sym stats",
+ sizeof (struct mem_sym_stats_d),
+ 100);
memset (mem_ref_stats, 0, sizeof (struct mem_ref_stats_d));
mem_ref_stats->mem_sym_stats = pointer_map_create ();
}
@@ -1946,8 +1932,6 @@ init_alias_info (void)
{
unsigned i;
- bitmap_obstack_release (&alias_bitmap_obstack);
-
/* Similarly, clear the set of addressable variables. In this
case, we can just clear the set because addressability is
only computed here. */
@@ -2021,6 +2005,8 @@ init_alias_info (void)
/* Next time, we will need to reset alias information. */
cfun->gimple_df->aliases_computed_p = true;
+ if (alias_bitmap_obstack.elements != NULL)
+ bitmap_obstack_release (&alias_bitmap_obstack);
bitmap_obstack_initialize (&alias_bitmap_obstack);
return ai;
@@ -2051,6 +2037,7 @@ delete_alias_info (struct alias_info *ai)
pointer_set_destroy (ai->dereferenced_ptrs_load);
free (ai);
+ delete_mem_ref_stats (cfun);
delete_points_to_sets ();
}