OSDN Git Service

* ChangeLog: Follow spelling conventions.
[pf3gnuchains/gcc-fork.git] / gcc / ggc-common.c
index fe7cbe5..dcff461 100644 (file)
@@ -1,5 +1,5 @@
 /* Simple garbage collection for the GNU compiler.
-   Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -26,30 +26,16 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "rtl.h"
 #include "tree.h"
 #include "tm_p.h"
-#include "hash.h"
+#include "hashtab.h"
 #include "varray.h"
 #include "ggc.h"
+#include "langhooks.h"
 
 /* Statistics about the allocation.  */
 static ggc_statistics *ggc_stats;
 
-/* The FALSE_LABEL_STACK, declared in except.h, has language-dependent
-   semantics.  If a front-end needs to mark the false label stack, it
-   should set this pointer to a non-NULL value.  Otherwise, no marking
-   will be done.  */
-void (*lang_mark_false_label_stack) PARAMS ((struct label_node *));
-
-/* Trees that have been marked, but whose children still need marking.  */
-varray_type ggc_pending_trees;
-
-static void ggc_mark_rtx_ptr PARAMS ((void *));
-static void ggc_mark_tree_ptr PARAMS ((void *));
-static void ggc_mark_rtx_varray_ptr PARAMS ((void *));
-static void ggc_mark_tree_varray_ptr PARAMS ((void *));
-static void ggc_mark_tree_hash_table_ptr PARAMS ((void *));
-static void ggc_mark_trees PARAMS ((void));
-static bool ggc_mark_tree_hash_table_entry PARAMS ((struct hash_entry *,
-                                                      hash_table_key));
+static void ggc_mark_rtx_children_1 PARAMS ((rtx));
+static int ggc_htab_delete PARAMS ((void **, void *));
 
 /* Maintain global roots that are preserved during GC.  */
 
@@ -67,7 +53,7 @@ struct ggc_root
 static struct ggc_root *roots;
 
 /* Add BASE as a new garbage collection root.  It is an array of
-   length NELT with each element SIZE bytes long.  CB is a 
+   length NELT with each element SIZE bytes long.  CB is a
    function that will be called with a pointer to each element
    of the array; it is the intention that CB call the appropriate
    routine to mark gc-able memory for that element.  */
@@ -89,81 +75,21 @@ ggc_add_root (base, nelt, size, cb)
   roots = x;
 }
 
-/* Register an array of rtx as a GC root.  */
+/* Process a slot of an htab by deleting it if it has not been marked.  */
 
-void
-ggc_add_rtx_root (base, nelt)
-     rtx *base;
-     int nelt;
+static int
+ggc_htab_delete (slot, info)
+     void **slot;
+     void *info;
 {
-  ggc_add_root (base, nelt, sizeof (rtx), ggc_mark_rtx_ptr);
-}
+  const struct ggc_cache_tab *r = (const struct ggc_cache_tab *) info;
 
-/* Register an array of trees as a GC root.  */
+  if (! (*r->marked_p) (*slot))
+    htab_clear_slot (*r->base, slot);
+  else
+    (*r->cb) (*slot);
 
-void
-ggc_add_tree_root (base, nelt)
-     tree *base;
-     int nelt;
-{
-  ggc_add_root (base, nelt, sizeof (tree), ggc_mark_tree_ptr);
-}
-
-/* Register a varray of rtxs as a GC root.  */
-
-void
-ggc_add_rtx_varray_root (base, nelt)
-     varray_type *base;
-     int nelt;
-{
-  ggc_add_root (base, nelt, sizeof (varray_type), 
-               ggc_mark_rtx_varray_ptr);
-}
-
-/* Register a varray of trees as a GC root.  */
-
-void
-ggc_add_tree_varray_root (base, nelt)
-     varray_type *base;
-     int nelt;
-{
-  ggc_add_root (base, nelt, sizeof (varray_type), 
-               ggc_mark_tree_varray_ptr);
-}
-
-/* Register a hash table of trees as a GC root.  */
-
-void
-ggc_add_tree_hash_table_root (base, nelt)
-     struct hash_table **base;
-     int nelt;
-{
-  ggc_add_root (base, nelt, sizeof (struct hash_table *), 
-               ggc_mark_tree_hash_table_ptr);
-}
-
-/* Remove the previously registered GC root at BASE.  */
-
-void
-ggc_del_root (base)
-     void *base;
-{
-  struct ggc_root *x, **p;
-
-  p = &roots, x = roots;
-  while (x)
-    {
-      if (x->base == base)
-       {
-         *p = x->next;
-         free (x);
-         return;
-       }
-      p = &x->next;
-      x = x->next;
-    }
-
-  abort();
+  return 1;
 }
 
 /* Iterate through all registered roots and mark each element.  */
@@ -171,9 +97,21 @@ ggc_del_root (base)
 void
 ggc_mark_roots ()
 {
-  struct ggc_root* x;
-  
-  VARRAY_TREE_INIT (ggc_pending_trees, 4096, "ggc_pending_trees");
+  struct ggc_root *x;
+  const struct ggc_root_tab *const *rt;
+  const struct ggc_root_tab *rti;
+  const struct ggc_cache_tab *const *ct;
+  const struct ggc_cache_tab *cti;
+  size_t i;
+
+  for (rt = gt_ggc_deletable_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      memset (rti->base, 0, rti->stride);
+
+  for (rt = gt_ggc_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      for (i = 0; i < rti->nelt; i++)
+       (*rti->cb)(*(void **)((char *)rti->base + rti->stride * i));
 
   for (x = roots; x != NULL; x = x->next)
     {
@@ -186,9 +124,12 @@ ggc_mark_roots ()
        (*cb)(elt);
     }
 
-  /* Mark all the queued up trees, and their children.  */
-  ggc_mark_trees ();
-  VARRAY_FREE (ggc_pending_trees);
+  /* Now scan all hash tables that have objects which are to be deleted if
+     they are not already marked.  */
+  for (ct = gt_ggc_cache_rtab; *ct; ct++)
+    for (cti = *ct; cti->base != NULL; cti++)
+      if (*cti->base)
+       htab_traverse (*cti->base, ggc_htab_delete, (PTR) cti);
 }
 
 /* R had not been previously marked, but has now been marked via
@@ -198,11 +139,48 @@ void
 ggc_mark_rtx_children (r)
      rtx r;
 {
+  rtx i, last;
+
+  /* Special case the instruction chain.  This is a data structure whose
+     chain length is potentially unbounded, and which contain references
+     within the chain (e.g. label_ref and insn_list).  If do nothing here,
+     we risk blowing the stack recursing through a long chain of insns.
+
+     Combat this by marking all of the instructions in the chain before
+     marking the contents of those instructions.  */
+
+  switch (GET_CODE (r))
+    {
+    case INSN:
+    case JUMP_INSN:
+    case CALL_INSN:
+    case NOTE:
+    case CODE_LABEL:
+    case BARRIER:
+      for (i = NEXT_INSN (r); ; i = NEXT_INSN (i))
+       if (! ggc_test_and_set_mark (i))
+         break;
+      last = i;
+
+      for (i = NEXT_INSN (r); i != last; i = NEXT_INSN (i))
+       ggc_mark_rtx_children_1 (i);
+
+    default:
+      break;
+    }
+
+  ggc_mark_rtx_children_1 (r);
+}
+
+static void
+ggc_mark_rtx_children_1 (r)
+     rtx r;
+{
   const char *fmt;
   int i;
   rtx next_rtx;
 
-  do 
+  do
     {
       enum rtx_code code = GET_CODE (r);
       /* This gets set to a child rtx to eliminate tail recursion.  */
@@ -219,6 +197,9 @@ ggc_mark_rtx_children (r)
         have any right poking our noses in?  */
       switch (code)
        {
+       case MEM:
+         gt_ggc_m_mem_attrs (MEM_ATTRS (r));
+         break;
        case JUMP_INSN:
          ggc_mark_rtx (JUMP_LABEL (r));
          break;
@@ -232,17 +213,11 @@ ggc_mark_rtx_children (r)
        case ADDRESSOF:
          ggc_mark_tree (ADDRESSOF_DECL (r));
          break;
-       case CONST_DOUBLE:
-         ggc_mark_rtx (CONST_DOUBLE_CHAIN (r));
-         break;
        case NOTE:
          switch (NOTE_LINE_NUMBER (r))
            {
-           case NOTE_INSN_RANGE_BEG:
-           case NOTE_INSN_RANGE_END:
-           case NOTE_INSN_LIVE:
            case NOTE_INSN_EXPECTED_VALUE:
-             ggc_mark_rtx (NOTE_RANGE_INFO (r));
+             ggc_mark_rtx (NOTE_EXPECTED_VALUE (r));
              break;
 
            case NOTE_INSN_BLOCK_BEG:
@@ -267,15 +242,15 @@ ggc_mark_rtx_children (r)
            case 'e': case 'u':
              exp = XEXP (r, i);
              if (ggc_test_and_set_mark (exp))
-               { 
-                 if (next_rtx == NULL) 
-                   next_rtx = exp; 
-                 else 
+               {
+                 if (next_rtx == NULL)
+                   next_rtx = exp;
+                 else
                    ggc_mark_rtx_children (exp);
-               } 
+               }
              break;
            case 'V': case 'E':
-             ggc_mark_rtvec (XVEC (r, i));
+             gt_ggc_m_rtvec_def (XVEC (r, i));
              break;
            }
        }
@@ -283,265 +258,51 @@ ggc_mark_rtx_children (r)
   while ((r = next_rtx) != NULL);
 }
 
-/* V had not been previously marked, but has now been marked via
-   ggc_set_mark.  Now recurse and process the children.  */
-
+/* Various adaptor functions.  */
 void
-ggc_mark_rtvec_children (v)
-     rtvec v;
+gt_ggc_mx_rtx_def (x)
+     void *x;
 {
-  int i;
-
-  i = GET_NUM_ELEM (v);
-  while (--i >= 0)
-    ggc_mark_rtx (RTVEC_ELT (v, i));
+  ggc_mark_rtx((rtx)x);
 }
 
-/* Recursively set marks on all of the children of the
-   GCC_PENDING_TREES.  */
-
-static void
-ggc_mark_trees ()
-{
-  while (ggc_pending_trees->elements_used)
-    {
-      tree t;
-      enum tree_code code;
-
-      t = VARRAY_TOP_TREE (ggc_pending_trees);
-      VARRAY_POP (ggc_pending_trees);
-      code = TREE_CODE (t);
-
-      /* Collect statistics, if appropriate.  */
-      if (ggc_stats)
-       {
-         ++ggc_stats->num_trees[(int) code];
-         ggc_stats->size_trees[(int) code] += ggc_get_size (t);
-       }
-
-      /* Bits from common.  */
-      ggc_mark_tree (TREE_TYPE (t));
-      ggc_mark_tree (TREE_CHAIN (t));
-
-      /* Some nodes require special handling.  */
-      switch (code)
-       {
-       case TREE_LIST:
-         ggc_mark_tree (TREE_PURPOSE (t));
-         ggc_mark_tree (TREE_VALUE (t));
-         continue;
-
-       case TREE_VEC:
-         {
-           int i = TREE_VEC_LENGTH (t);
-
-           while (--i >= 0)
-             ggc_mark_tree (TREE_VEC_ELT (t, i));
-           continue;
-         }
-
-       case COMPLEX_CST:
-         ggc_mark_tree (TREE_REALPART (t));
-         ggc_mark_tree (TREE_IMAGPART (t));
-         break;
-
-       case PARM_DECL:
-         ggc_mark_rtx (DECL_INCOMING_RTL (t));
-         break;
-
-       case FIELD_DECL:
-         ggc_mark_tree (DECL_FIELD_BIT_OFFSET (t));
-         break;
-
-       case IDENTIFIER_NODE:
-         lang_mark_tree (t);
-         continue;
-
-       default:
-         break;
-       }
-  
-      /* But in general we can handle them by class.  */
-      switch (TREE_CODE_CLASS (code))
-       {
-       case 'd': /* A decl node.  */
-         ggc_mark_tree (DECL_SIZE (t));
-         ggc_mark_tree (DECL_SIZE_UNIT (t));
-         ggc_mark_tree (DECL_NAME (t));
-         ggc_mark_tree (DECL_CONTEXT (t));
-         ggc_mark_tree (DECL_ARGUMENTS (t));
-         ggc_mark_tree (DECL_RESULT_FLD (t));
-         ggc_mark_tree (DECL_INITIAL (t));
-         ggc_mark_tree (DECL_ABSTRACT_ORIGIN (t));
-         ggc_mark_tree (DECL_SECTION_NAME (t));
-         ggc_mark_tree (DECL_MACHINE_ATTRIBUTES (t));
-         if (DECL_RTL_SET_P (t))
-           ggc_mark_rtx (DECL_RTL (t));
-         ggc_mark_rtx (DECL_LIVE_RANGE_RTL (t));
-         ggc_mark_tree (DECL_VINDEX (t));
-         if (DECL_ASSEMBLER_NAME_SET_P (t))
-           ggc_mark_tree (DECL_ASSEMBLER_NAME (t));
-         if (TREE_CODE (t) == FUNCTION_DECL && DECL_SAVED_INSNS (t))
-           ggc_mark_struct_function (DECL_SAVED_INSNS (t));
-         lang_mark_tree (t);
-         break;
-
-       case 't': /* A type node.  */
-         ggc_mark_tree (TYPE_SIZE (t));
-         ggc_mark_tree (TYPE_SIZE_UNIT (t));
-         ggc_mark_tree (TYPE_ATTRIBUTES (t));
-         ggc_mark_tree (TYPE_VALUES (t));
-         ggc_mark_tree (TYPE_POINTER_TO (t));
-         ggc_mark_tree (TYPE_REFERENCE_TO (t));
-         ggc_mark_tree (TYPE_NAME (t));
-         ggc_mark_tree (TYPE_MIN_VALUE (t));
-         ggc_mark_tree (TYPE_MAX_VALUE (t));
-         ggc_mark_tree (TYPE_NEXT_VARIANT (t));
-         ggc_mark_tree (TYPE_MAIN_VARIANT (t));
-         ggc_mark_tree (TYPE_BINFO (t));
-         ggc_mark_tree (TYPE_CONTEXT (t));
-         lang_mark_tree (t);
-         break;
-
-       case 'b': /* A lexical block.  */
-         ggc_mark_tree (BLOCK_VARS (t));
-         ggc_mark_tree (BLOCK_SUBBLOCKS (t));
-         ggc_mark_tree (BLOCK_SUPERCONTEXT (t));
-         ggc_mark_tree (BLOCK_ABSTRACT_ORIGIN (t));
-         break;
-
-       case 'c': /* A constant.  */
-         ggc_mark_rtx (TREE_CST_RTL (t));
-         break;
-
-       case 'r': case '<': case '1':
-       case '2': case 'e': case 's': /* Expressions.  */
-         {
-           int i = TREE_CODE_LENGTH (TREE_CODE (t));
-           int first_rtl = first_rtl_op (TREE_CODE (t));
-
-           while (--i >= 0)
-             {
-               if (i >= first_rtl)
-                 ggc_mark_rtx ((rtx) TREE_OPERAND (t, i));
-               else
-                 ggc_mark_tree (TREE_OPERAND (t, i));
-             }
-           break;      
-         }
-
-       case 'x':
-         lang_mark_tree (t);
-         break;
-       }
-    }
-}
-
-/* Mark all the elements of the varray V, which contains rtxs.  */
-
-void
-ggc_mark_rtx_varray (v)
-     varray_type v;
-{
-  int i;
-
-  if (v)
-    for (i = v->num_elements - 1; i >= 0; --i) 
-      ggc_mark_rtx (VARRAY_RTX (v, i));
-}
-
-/* Mark all the elements of the varray V, which contains trees.  */
-
-void
-ggc_mark_tree_varray (v)
-     varray_type v;
-{
-  int i;
-
-  if (v)
-    for (i = v->num_elements - 1; i >= 0; --i) 
-      ggc_mark_tree (VARRAY_TREE (v, i));
-}
-
-/* Mark the hash table-entry HE.  It's key field is really a tree.  */
-
-static bool
-ggc_mark_tree_hash_table_entry (he, k)
-     struct hash_entry *he;
-     hash_table_key k ATTRIBUTE_UNUSED;
-{
-  ggc_mark_tree ((tree) he->key);
-  return true;
-}
-
-/* Mark all the elements of the hash-table H, which contains trees.  */
-
-void
-ggc_mark_tree_hash_table (ht)
-     struct hash_table *ht;
-{
-  hash_traverse (ht, ggc_mark_tree_hash_table_entry, /*info=*/0);
-}
-
-/* Type-correct function to pass to ggc_add_root.  It just forwards
-   *ELT (which is an rtx) to ggc_mark_rtx.  */
-
-static void
-ggc_mark_rtx_ptr (elt)
-     void *elt;
-{
-  ggc_mark_rtx (*(rtx *) elt);
-}
-
-/* Type-correct function to pass to ggc_add_root.  It just forwards
-   *ELT (which is a tree) to ggc_mark_tree.  */
-
-static void
-ggc_mark_tree_ptr (elt)
-     void *elt;
+/* Allocate a block of memory, then clear it.  */
+void *
+ggc_alloc_cleared (size)
+     size_t size;
 {
-  ggc_mark_tree (*(tree *) elt);
+  void *buf = ggc_alloc (size);
+  memset (buf, 0, size);
+  return buf;
 }
 
-/* Type-correct function to pass to ggc_add_root.  It just forwards
-   ELT (which is really a varray_type *) to ggc_mark_rtx_varray.  */
-
-static void
-ggc_mark_rtx_varray_ptr (elt)
-     void *elt;
+/* Resize a block of memory, possibly re-allocating it.  */
+void *
+ggc_realloc (x, size)
+     void *x;
+     size_t size;
 {
-  ggc_mark_rtx_varray (*(varray_type *) elt);
-}
-
-/* Type-correct function to pass to ggc_add_root.  It just forwards
-   ELT (which is really a varray_type *) to ggc_mark_tree_varray.  */
+  void *r;
+  size_t old_size;
 
-static void
-ggc_mark_tree_varray_ptr (elt)
-     void *elt;
-{
-  ggc_mark_tree_varray (*(varray_type *) elt);
-}
+  if (x == NULL)
+    return ggc_alloc (size);
 
-/* Type-correct function to pass to ggc_add_root.  It just forwards
-   ELT (which is really a struct hash_table **) to
-   ggc_mark_tree_hash_table.  */
+  old_size = ggc_get_size (x);
+  if (size <= old_size)
+    return x;
 
-static void
-ggc_mark_tree_hash_table_ptr (elt)
-     void *elt;
-{
-  ggc_mark_tree_hash_table (*(struct hash_table **) elt);
+  r = ggc_alloc (size);
+  memcpy (r, x, old_size);
+  return r;
 }
 
-/* Allocate a block of memory, then clear it.  */
+/* Like ggc_alloc_cleared, but performs a multiplication.  */
 void *
-ggc_alloc_cleared (size)
-     size_t size;
+ggc_calloc (s1, s2)
+     size_t s1, s2;
 {
-  void *buf = ggc_alloc (size);
-  memset (buf, 0, size);
-  return buf;
+  return ggc_alloc_cleared (s1 * s2);
 }
 
 /* Print statistics that are independent of the collector in use.  */
@@ -579,17 +340,17 @@ ggc_print_common_statistics (stream, stats)
     }
 
   /* Print the statistics for trees.  */
-  fprintf (stream, "\n%-17s%10s %16s %10s\n", "Tree", 
+  fprintf (stream, "\n%-17s%10s %16s %10s\n", "Tree",
           "Number", "Bytes", "% Total");
   for (code = 0; code < MAX_TREE_CODES; ++code)
-    if (ggc_stats->num_trees[code]) 
+    if (ggc_stats->num_trees[code])
       {
        fprintf (stream, "%-17s%10u%16ld%c %10.3f\n",
                 tree_code_name[code],
                 ggc_stats->num_trees[code],
                 SCALE (ggc_stats->size_trees[code]),
                 LABEL (ggc_stats->size_trees[code]),
-                (100 * ((double) ggc_stats->size_trees[code]) 
+                (100 * ((double) ggc_stats->size_trees[code])
                  / ggc_stats->total_size_trees));
       }
   fprintf (stream,
@@ -599,17 +360,17 @@ ggc_print_common_statistics (stream, stats)
           LABEL (ggc_stats->total_size_trees));
 
   /* Print the statistics for RTL.  */
-  fprintf (stream, "\n%-17s%10s %16s %10s\n", "RTX", 
+  fprintf (stream, "\n%-17s%10s %16s %10s\n", "RTX",
           "Number", "Bytes", "% Total");
   for (code = 0; code < NUM_RTX_CODE; ++code)
-    if (ggc_stats->num_rtxs[code]) 
+    if (ggc_stats->num_rtxs[code])
       {
        fprintf (stream, "%-17s%10u%16ld%c %10.3f\n",
                 rtx_name[code],
                 ggc_stats->num_rtxs[code],
                 SCALE (ggc_stats->size_rtxs[code]),
                 LABEL (ggc_stats->size_rtxs[code]),
-                (100 * ((double) ggc_stats->size_rtxs[code]) 
+                (100 * ((double) ggc_stats->size_rtxs[code])
                  / ggc_stats->total_size_rtxs));
       }
   fprintf (stream,