OSDN Git Service

2001-11-11 H.J. Lu <hjl@gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / ggc-common.c
index b73a359..5fdd5e1 100644 (file)
@@ -1,20 +1,20 @@
 /* Simple garbage collection for the GNU compiler.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
 
-This file is part of GNU CC.
+This file is part of GCC.
 
-GNU CC is free software; you can redistribute it and/or modify it
-under the terms of the GNU General Public License as published by the
-Free Software Foundation; either version 2, or (at your option) any
-later version.
+GCC is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free
+Software Foundation; either version 2, or (at your option) any later
+version.
 
-GNU CC is distributed in the hope that it will be useful, but WITHOUT
-ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+GCC is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or
 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 for more details.
 
 You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING.  If not, write to the Free
+along with GCC; see the file COPYING.  If not, write to the Free
 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.  */
 
@@ -27,20 +27,31 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "tree.h"
 #include "tm_p.h"
 #include "hash.h"
+#include "hashtab.h"
 #include "varray.h"
 #include "ggc.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_string_ptr PARAMS ((void *));
-static boolean ggc_mark_tree_hash_table_entry PARAMS ((struct hash_entry *,
-                                                      hash_table_key));
+static int ggc_htab_delete PARAMS ((void **, void *));
+static void ggc_mark_trees PARAMS ((void));
+static bool ggc_mark_tree_hash_table_entry PARAMS ((struct hash_entry *,
+                                                   hash_table_key));
 
 /* Maintain global roots that are preserved during GC.  */
 
@@ -87,7 +98,7 @@ ggc_add_rtx_root (base, nelt)
      rtx *base;
      int nelt;
 {
-  ggc_add_root (base, nelt, sizeof(rtx), ggc_mark_rtx_ptr);
+  ggc_add_root (base, nelt, sizeof (rtx), ggc_mark_rtx_ptr);
 }
 
 /* Register an array of trees as a GC root.  */
@@ -97,7 +108,7 @@ ggc_add_tree_root (base, nelt)
      tree *base;
      int nelt;
 {
-  ggc_add_root (base, nelt, sizeof(tree), ggc_mark_tree_ptr);
+  ggc_add_root (base, nelt, sizeof (tree), ggc_mark_tree_ptr);
 }
 
 /* Register a varray of rtxs as a GC root.  */
@@ -133,16 +144,6 @@ ggc_add_tree_hash_table_root (base, nelt)
                ggc_mark_tree_hash_table_ptr);
 }
 
-/* Register an array of strings as a GC root.  */
-
-void
-ggc_add_string_root (base, nelt)
-     char **base;
-     int nelt;
-{
-  ggc_add_root (base, nelt, sizeof (char *), ggc_mark_string_ptr);
-}
-
 /* Remove the previously registered GC root at BASE.  */
 
 void
@@ -167,13 +168,82 @@ ggc_del_root (base)
   abort();
 }
 
+/* Add a hash table to be scanned when all roots have been processed.  We
+   delete any entry in the table that has not been marked.  */
+
+struct d_htab_root
+{
+  struct d_htab_root *next;
+  htab_t htab;
+  ggc_htab_marked_p marked_p;
+  ggc_htab_mark mark;
+};
+
+static struct d_htab_root *d_htab_roots;
+
+/* Add X, an htab, to a list of htabs that contain objects which are allocated
+   from GC memory.  Once all other roots are marked, we check each object in
+   the htab to see if it has already been marked.  If not, it is deleted.
+
+   MARKED_P, if specified, is a function that returns 1 if the entry is to
+   be considered as "marked".  If not present, the data structure pointed to
+   by the htab slot is tested.  This function should be supplied if some
+   other object (such as something pointed to by that object) should be tested
+   in which case the function tests whether that object (or objects) are
+   marked (using ggc_marked_p) and returns nonzero if it is.
+
+   MARK, if specified, is a function that is passed the contents of a slot
+   that has been determined to have been "marked" (via the above function)
+   and marks any other objects pointed to by that object.  For example,
+   we might have a hash table of memory attribute blocks, which are pointed
+   to by a MEM RTL but have a pointer to a DECL.  MARKED_P in that case will
+   not be specified because we want to know if the attribute block is pointed
+   to by the MEM, but MARK must be specified because if the block has been
+   marked, we need to mark the DECL.  */
+
+void
+ggc_add_deletable_htab (x, marked_p, mark)
+     PTR x;
+     ggc_htab_marked_p marked_p;
+     ggc_htab_mark mark;
+{
+  struct d_htab_root *r
+    = (struct d_htab_root *) xmalloc (sizeof (struct d_htab_root));
+
+  r->next = d_htab_roots;
+  r->htab = (htab_t) x;
+  r->marked_p = marked_p ? marked_p : ggc_marked_p;
+  r->mark = mark;
+  d_htab_roots = r;
+}
+
+/* Process a slot of an htab by deleting it if it has not been marked.  */
+
+static int
+ggc_htab_delete (slot, info)
+     void **slot;
+     void *info;
+{
+  struct d_htab_root *r = (struct d_htab_root *) info;
+
+  if (! (*r->marked_p) (*slot))
+    htab_clear_slot (r->htab, slot);
+  else if (r->mark)
+    (*r->mark) (*slot);
+
+  return 1;
+}
+
 /* Iterate through all registered roots and mark each element.  */
 
 void
 ggc_mark_roots ()
 {
-  struct ggc_root* x;
+  struct ggc_root *x;
+  struct d_htab_root *y;
   
+  VARRAY_TREE_INIT (ggc_pending_trees, 4096, "ggc_pending_trees");
+
   for (x = roots; x != NULL; x = x->next)
     {
       char *elt = x->base;
@@ -184,6 +254,20 @@ ggc_mark_roots ()
       for (i = 0; i < n; ++i, elt += s)
        (*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.  Since these may mark more trees, we need
+     to reinitialize that varray.  */
+  VARRAY_TREE_INIT (ggc_pending_trees, 1024, "ggc_pending_trees");
+
+  for (y = d_htab_roots; y != NULL; y = y->next)
+    htab_traverse (y->htab, ggc_htab_delete, (PTR) y);
+  ggc_mark_trees ();
+  VARRAY_FREE (ggc_pending_trees);
 }
 
 /* R had not been previously marked, but has now been marked via
@@ -210,16 +294,18 @@ ggc_mark_rtx_children (r)
          ggc_stats->size_rtxs[(int) code] += ggc_get_size (r);
        }
 
-      /* ??? If (some of) these are really pass-dependant info, do we
+      /* ??? If (some of) these are really pass-dependent info, do we
         have any right poking our noses in?  */
       switch (code)
        {
+       case MEM:
+         ggc_mark (MEM_ATTRS (r));
+         break;
        case JUMP_INSN:
          ggc_mark_rtx (JUMP_LABEL (r));
          break;
        case CODE_LABEL:
          ggc_mark_rtx (LABEL_REFS (r));
-         ggc_mark_string (LABEL_ALTERNATE_NAME (r));
          break;
        case LABEL_REF:
          ggc_mark_rtx (LABEL_NEXTREF (r));
@@ -234,9 +320,10 @@ ggc_mark_rtx_children (r)
        case NOTE:
          switch (NOTE_LINE_NUMBER (r))
            {
-           case NOTE_INSN_RANGE_START:
+           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));
              break;
 
@@ -246,8 +333,6 @@ ggc_mark_rtx_children (r)
              break;
 
            default:
-             if (NOTE_LINE_NUMBER (r) >= 0)
-               ggc_mark_string (NOTE_SOURCE_FILE (r));
              break;
            }
          break;
@@ -274,9 +359,6 @@ ggc_mark_rtx_children (r)
            case 'V': case 'E':
              ggc_mark_rtvec (XVEC (r, i));
              break;
-           case 'S': case 's':
-             ggc_mark_if_gcable (XSTR (r, i));
-             break;
            }
        }
     }
@@ -297,148 +379,148 @@ ggc_mark_rtvec_children (v)
     ggc_mark_rtx (RTVEC_ELT (v, i));
 }
 
-/* T had not been previously marked, but has now been marked via
-   ggc_set_mark.  Now recurse and process the children.  */
+/* Recursively set marks on all of the children of the
+   GCC_PENDING_TREES.  */
 
-void
-ggc_mark_tree_children (t)
-     tree t;
+static void
+ggc_mark_trees ()
 {
-  enum tree_code code = TREE_CODE (t);
-
-  /* Collect statistics, if appropriate.  */
-  if (ggc_stats)
+  while (ggc_pending_trees->elements_used)
     {
-      ++ggc_stats->num_trees[(int) code];
-      ggc_stats->size_trees[(int) code] += ggc_get_size (t);
-    }
+      tree t;
+      enum tree_code code;
 
-  /* Bits from common.  */
-  ggc_mark_tree (TREE_TYPE (t));
-  ggc_mark_tree (TREE_CHAIN (t));
+      t = VARRAY_TOP_TREE (ggc_pending_trees);
+      VARRAY_POP (ggc_pending_trees);
+      code = TREE_CODE (t);
 
-  /* Some nodes require special handling.  */
-  switch (code)
-    {
-    case TREE_LIST:
-      ggc_mark_tree (TREE_PURPOSE (t));
-      ggc_mark_tree (TREE_VALUE (t));
-      return;
+      /* Collect statistics, if appropriate.  */
+      if (ggc_stats)
+       {
+         ++ggc_stats->num_trees[(int) code];
+         ggc_stats->size_trees[(int) code] += ggc_get_size (t);
+       }
 
-    case TREE_VEC:
-      {
-       int i = TREE_VEC_LENGTH (t);
-       while (--i >= 0)
-         ggc_mark_tree (TREE_VEC_ELT (t, i));
-       return;
-      }
+      /* Bits from common.  */
+      ggc_mark_tree (TREE_TYPE (t));
+      ggc_mark_tree (TREE_CHAIN (t));
 
-    case SAVE_EXPR:
-      ggc_mark_tree (TREE_OPERAND (t, 0));
-      ggc_mark_tree (SAVE_EXPR_CONTEXT (t));
-      ggc_mark_rtx (SAVE_EXPR_RTL (t));
-      return;
-
-    case RTL_EXPR:
-      ggc_mark_rtx (RTL_EXPR_SEQUENCE (t));
-      ggc_mark_rtx (RTL_EXPR_RTL (t));
-      return;
-
-    case CALL_EXPR:
-      ggc_mark_tree (TREE_OPERAND (t, 0));
-      ggc_mark_tree (TREE_OPERAND (t, 1));
-      ggc_mark_rtx (CALL_EXPR_RTL (t));
-      return;
-
-    case COMPLEX_CST:
-      ggc_mark_tree (TREE_REALPART (t));
-      ggc_mark_tree (TREE_IMAGPART (t));
-      break;
-
-    case STRING_CST:
-      ggc_mark_string (TREE_STRING_POINTER (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:
-      ggc_mark_string (IDENTIFIER_POINTER (t));
-      lang_mark_tree (t);
-      return;
-
-    default:
-      break;
-    }
+      /* 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_string (DECL_SOURCE_FILE (t));
-      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_ASSEMBLER_NAME (t));
-      ggc_mark_tree (DECL_SECTION_NAME (t));
-      ggc_mark_tree (DECL_MACHINE_ATTRIBUTES (t));
-      ggc_mark_rtx (DECL_RTL (t));
-      ggc_mark_rtx (DECL_LIVE_RANGE_RTL (t));
-      ggc_mark_tree (DECL_VINDEX (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_NONCOPIED_PARTS (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)];
-       while (--i >= 0)
-         ggc_mark_tree (TREE_OPERAND (t, i));
-       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_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)
+           {
+             ggc_mark_tree (DECL_SAVED_TREE (t));
+             ggc_mark_tree (DECL_INLINED_FNS (t));
+             if (DECL_SAVED_INSNS (t))
+               ggc_mark_struct_function (DECL_SAVED_INSNS (t));
+           }
+         lang_mark_tree (t);
+         break;
 
-    case 'x':
-      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;
+       }
     }
 }
 
@@ -468,9 +550,9 @@ ggc_mark_tree_varray (v)
       ggc_mark_tree (VARRAY_TREE (v, i));
 }
 
-/* Mark the hash table-entry HE.  It's key field is really a tree.  */
+/* Mark the hash table-entry HE.  Its key field is really a tree.  */
 
-static boolean
+static bool
 ggc_mark_tree_hash_table_entry (he, k)
      struct hash_entry *he;
      hash_table_key k ATTRIBUTE_UNUSED;
@@ -539,47 +621,26 @@ ggc_mark_tree_hash_table_ptr (elt)
   ggc_mark_tree_hash_table (*(struct hash_table **) elt);
 }
 
-/* Type-correct function to pass to ggc_add_root.  It just forwards
-   ELT (which is really a char **) to ggc_mark_string.  */
-
-static void
-ggc_mark_string_ptr (elt)
-     void *elt;
+/* Allocate a block of memory, then clear it.  */
+void *
+ggc_alloc_cleared (size)
+     size_t size;
 {
-  ggc_mark_string (*(char **) elt);
-}
-
-/* Allocate a gc-able string.  If CONTENTS is null, then the memory will
-   be uninitialized.  If LENGTH is -1, then CONTENTS is assumed to be a
-   null-terminated string and the memory sized accordingly.  Otherwise,
-   the memory is filled with LENGTH bytes from CONTENTS.  */
-
-char *
-ggc_alloc_string (contents, length)
-     const char *contents;
-     int length;
-{
-  char *string;
-
-  if (length < 0)
-    {
-      if (contents == NULL)
-       return NULL;
-      length = strlen (contents);
-    }
-
-  string = (char *) ggc_alloc_obj (length + 1, 0);
-  if (contents != NULL)
-    memcpy (string, contents, length);
-  string[length] = 0;
-
-  return string;
+  void *buf = ggc_alloc (size);
+  memset (buf, 0, size);
+  return buf;
 }
 
 /* Print statistics that are independent of the collector in use.  */
+#define SCALE(x) ((unsigned long) ((x) < 1024*10 \
+                 ? (x) \
+                 : ((x) < 1024*1024*10 \
+                    ? (x) / 1024 \
+                    : (x) / (1024*1024))))
+#define LABEL(x) ((x) < 1024*10 ? ' ' : ((x) < 1024*1024*10 ? 'k' : 'M'))
 
 void
-ggc_print_statistics (stream, stats)
+ggc_print_common_statistics (stream, stats)
      FILE *stream;
      ggc_statistics *stats;
 {
@@ -605,43 +666,44 @@ ggc_print_statistics (stream, stats)
     }
 
   /* Print the statistics for trees.  */
-  fprintf (stream, "%-22s%-16s%-16s%-7s\n", "Code", 
+  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]) 
       {
-       fprintf (stream, "%s%*s%-15u %-15lu %7.3f\n", 
+       fprintf (stream, "%-17s%10u%16ld%c %10.3f\n",
                 tree_code_name[code],
-                22 - (int) strlen (tree_code_name[code]), "",
                 ggc_stats->num_trees[code],
-                (unsigned long) ggc_stats->size_trees[code],
+                SCALE (ggc_stats->size_trees[code]),
+                LABEL (ggc_stats->size_trees[code]),
                 (100 * ((double) ggc_stats->size_trees[code]) 
                  / ggc_stats->total_size_trees));
       }
   fprintf (stream,
-          "%-22s%-15u %-15lu\n", "Total",
+          "%-17s%10u%16ld%c\n", "Total",
           ggc_stats->total_num_trees,
-          (unsigned long) ggc_stats->total_size_trees);
+          SCALE (ggc_stats->total_size_trees),
+          LABEL (ggc_stats->total_size_trees));
 
   /* Print the statistics for RTL.  */
-  fprintf (stream, "\n%-22s%-16s%-16s%-7s\n", "Code", 
+  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]) 
       {
-       fprintf (stream, "%s%*s%-15u %-15lu %7.3f\n", 
+       fprintf (stream, "%-17s%10u%16ld%c %10.3f\n",
                 rtx_name[code],
-                22 - (int) strlen (rtx_name[code]), "",
                 ggc_stats->num_rtxs[code],
-                (unsigned long) ggc_stats->size_rtxs[code],
+                SCALE (ggc_stats->size_rtxs[code]),
+                LABEL (ggc_stats->size_rtxs[code]),
                 (100 * ((double) ggc_stats->size_rtxs[code]) 
                  / ggc_stats->total_size_rtxs));
       }
   fprintf (stream,
-          "%-22s%-15u %-15lu\n", "Total",
+          "%-17s%10u%16ld%c\n", "Total",
           ggc_stats->total_num_rtxs,
-          (unsigned long) ggc_stats->total_size_rtxs);
-
+          SCALE (ggc_stats->total_size_rtxs),
+          LABEL (ggc_stats->total_size_rtxs));
 
   /* Don't gather statistics any more.  */
   ggc_stats = NULL;