OSDN Git Service

* cpppch.c (reset_ht): Remove.
[pf3gnuchains/gcc-fork.git] / gcc / ggc-common.c
index 57c193d..db8cbd0 100644 (file)
@@ -1,5 +1,6 @@
 /* Simple garbage collection for the GNU compiler.
-   Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001, 2002, 2003
+   Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -23,718 +24,693 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 #include "config.h"
 #include "system.h"
-#include "rtl.h"
-#include "tree.h"
-#include "tm_p.h"
-#include "hash.h"
+#include "coretypes.h"
 #include "hashtab.h"
-#include "varray.h"
 #include "ggc.h"
-#include "langhooks.h"
+#include "toplev.h"
+#include "params.h"
+
+#ifdef HAVE_SYS_RESOURCE_H
+# include <sys/resource.h>
+#endif
+
+#ifdef HAVE_MMAP_FILE
+# include <sys/mman.h>
+#endif
+
+#ifdef ENABLE_VALGRIND_CHECKING
+# ifdef HAVE_MEMCHECK_H
+# include <memcheck.h>
+# else
+# include <valgrind.h>
+# endif
+#else
+/* Avoid #ifdef:s when we can help it.  */
+#define VALGRIND_DISCARD(x)
+#endif
 
 /* Statistics about the allocation.  */
 static ggc_statistics *ggc_stats;
 
-/* Trees that have been marked, but whose children still need marking.  */
-varray_type ggc_pending_trees;
+struct traversal_state;
 
-static void ggc_mark_rtx_children_1 PARAMS ((rtx));
-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 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));
+static hashval_t saving_htab_hash PARAMS ((const PTR));
+static int saving_htab_eq PARAMS ((const PTR, const PTR));
+static int call_count PARAMS ((void **, void *));
+static int call_alloc PARAMS ((void **, void *));
+static int compare_ptr_data PARAMS ((const void *, const void *));
+static void relocate_ptrs PARAMS ((void *, void *));
+static void write_pch_globals PARAMS ((const struct ggc_root_tab * const *tab,
+                                      struct traversal_state *state));
+static double ggc_rlimit_bound PARAMS ((double));
 
 /* Maintain global roots that are preserved during GC.  */
 
-/* Global roots that are preserved during calls to gc.  */
-
-struct ggc_root
-{
-  struct ggc_root *next;
-  void *base;
-  int nelt;
-  int size;
-  void (*cb) PARAMS ((void *));
-};
-
-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 
-   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.  */
+/* Process a slot of an htab by deleting it if it has not been marked.  */
 
-void
-ggc_add_root (base, nelt, size, cb)
-     void *base;
-     int nelt, size;
-     void (*cb) PARAMS ((void *));
+static int
+ggc_htab_delete (slot, info)
+     void **slot;
+     void *info;
 {
-  struct ggc_root *x = (struct ggc_root *) xmalloc (sizeof (*x));
+  const struct ggc_cache_tab *r = (const struct ggc_cache_tab *) info;
 
-  x->next = roots;
-  x->base = base;
-  x->nelt = nelt;
-  x->size = size;
-  x->cb = cb;
+  if (! (*r->marked_p) (*slot))
+    htab_clear_slot (*r->base, slot);
+  else
+    (*r->cb) (*slot);
 
-  roots = x;
+  return 1;
 }
 
-/* Register an array of rtx as a GC root.  */
+/* Iterate through all registered roots and mark each element.  */
 
 void
-ggc_add_rtx_root (base, nelt)
-     rtx *base;
-     int nelt;
+ggc_mark_roots ()
 {
-  ggc_add_root (base, nelt, sizeof (rtx), ggc_mark_rtx_ptr);
-}
+  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;
 
-/* Register an array of trees as a GC root.  */
+  for (rt = gt_ggc_deletable_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      memset (rti->base, 0, rti->stride);
 
-void
-ggc_add_tree_root (base, nelt)
-     tree *base;
-     int nelt;
-{
-  ggc_add_root (base, nelt, sizeof (tree), ggc_mark_tree_ptr);
-}
+  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));
 
-/* Register a varray of rtxs as a GC root.  */
+  ggc_mark_stringpool ();
 
-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);
+  /* 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)
+       {
+         ggc_set_mark (*cti->base);
+         htab_traverse_noresize (*cti->base, ggc_htab_delete, (PTR) cti);
+         ggc_set_mark ((*cti->base)->entries);
+       }
 }
 
-/* Register a varray of trees as a GC root.  */
-
-void
-ggc_add_tree_varray_root (base, nelt)
-     varray_type *base;
-     int nelt;
+/* Allocate a block of memory, then clear it.  */
+void *
+ggc_alloc_cleared (size)
+     size_t size;
 {
-  ggc_add_root (base, nelt, sizeof (varray_type), 
-               ggc_mark_tree_varray_ptr);
+  void *buf = ggc_alloc (size);
+  memset (buf, 0, size);
+  return buf;
 }
 
-/* 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;
+/* Resize a block of memory, possibly re-allocating it.  */
+void *
+ggc_realloc (x, size)
+     void *x;
+     size_t size;
 {
-  ggc_add_root (base, nelt, sizeof (struct hash_table *), 
-               ggc_mark_tree_hash_table_ptr);
-}
+  void *r;
+  size_t old_size;
 
-/* Remove the previously registered GC root at BASE.  */
-
-void
-ggc_del_root (base)
-     void *base;
-{
-  struct ggc_root *x, **p;
+  if (x == NULL)
+    return ggc_alloc (size);
 
-  p = &roots, x = roots;
-  while (x)
+  old_size = ggc_get_size (x);
+  if (size <= old_size)
     {
-      if (x->base == base)
-       {
-         *p = x->next;
-         free (x);
-         return;
-       }
-      p = &x->next;
-      x = x->next;
+      /* Mark the unwanted memory as unaccessible.  We also need to make
+        the "new" size accessible, since ggc_get_size returns the size of
+        the pool, not the size of the individually allocated object, the
+        size which was previously made accessible.  Unfortunately, we
+        don't know that previously allocated size.  Without that
+        knowledge we have to lose some initialization-tracking for the
+        old parts of the object.  An alternative is to mark the whole
+        old_size as reachable, but that would lose tracking of writes 
+        after the end of the object (by small offsets).  Discard the
+        handle to avoid handle leak.  */
+      VALGRIND_DISCARD (VALGRIND_MAKE_NOACCESS ((char *) x + size,
+                                               old_size - size));
+      VALGRIND_DISCARD (VALGRIND_MAKE_READABLE (x, size));
+      return x;
     }
 
-  abort ();
-}
+  r = ggc_alloc (size);
 
-/* 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.  */
+  /* Since ggc_get_size returns the size of the pool, not the size of the
+     individually allocated object, we'd access parts of the old object
+     that were marked invalid with the memcpy below.  We lose a bit of the
+     initialization-tracking since some of it may be uninitialized.  */
+  VALGRIND_DISCARD (VALGRIND_MAKE_READABLE (x, old_size));
 
-struct d_htab_root
-{
-  struct d_htab_root *next;
-  htab_t htab;
-  ggc_htab_marked_p marked_p;
-  ggc_htab_mark mark;
-};
+  memcpy (r, x, old_size);
 
-static struct d_htab_root *d_htab_roots;
+  /* The old object is not supposed to be used anymore.  */
+  VALGRIND_DISCARD (VALGRIND_MAKE_NOACCESS (x, old_size));
 
-/* 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.
+  return r;
+}
 
-   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.
+/* Like ggc_alloc_cleared, but performs a multiplication.  */
+void *
+ggc_calloc (s1, s2)
+     size_t s1, s2;
+{
+  return ggc_alloc_cleared (s1 * s2);
+}
 
-   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.  */
+/* These are for splay_tree_new_ggc.  */
+PTR 
+ggc_splay_alloc (sz, nl)
+     int sz;
+     PTR nl;
+{
+  if (nl != NULL)
+    abort ();
+  return ggc_alloc (sz);
+}
 
 void
-ggc_add_deletable_htab (x, marked_p, mark)
-     PTR x;
-     ggc_htab_marked_p marked_p;
-     ggc_htab_mark mark;
+ggc_splay_dont_free (x, nl)
+     PTR x ATTRIBUTE_UNUSED;
+     PTR nl;
 {
-  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;
+  if (nl != NULL)
+    abort ();
 }
 
-/* Process a slot of an htab by deleting it if it has not been marked.  */
+/* 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'))
 
-static int
-ggc_htab_delete (slot, info)
-     void **slot;
-     void *info;
+void
+ggc_print_common_statistics (stream, stats)
+     FILE *stream ATTRIBUTE_UNUSED;
+     ggc_statistics *stats;
 {
-  struct d_htab_root *r = (struct d_htab_root *) info;
+  /* Set the pointer so that during collection we will actually gather
+     the statistics.  */
+  ggc_stats = stats;
 
-  if (! (*r->marked_p) (*slot))
-    htab_clear_slot (r->htab, slot);
-  else if (r->mark)
-    (*r->mark) (*slot);
+  /* Then do one collection to fill in the statistics.  */
+  ggc_collect ();
 
-  return 1;
+  /* At present, we don't really gather any interesting statistics.  */
+
+  /* Don't gather statistics any more.  */
+  ggc_stats = NULL;
 }
+\f
+/* Functions for saving and restoring GCable memory to disk.  */
 
-/* Iterate through all registered roots and mark each element.  */
+static htab_t saving_htab;
 
-void
-ggc_mark_roots ()
+struct ptr_data 
 {
-  struct ggc_root *x;
-  struct d_htab_root *y;
-  
-  VARRAY_TREE_INIT (ggc_pending_trees, 4096, "ggc_pending_trees");
+  void *obj;
+  void *note_ptr_cookie;
+  gt_note_pointers note_ptr_fn;
+  gt_handle_reorder reorder_fn;
+  size_t size;
+  void *new_addr;
+};
 
-  for (x = roots; x != NULL; x = x->next)
-    {
-      char *elt = x->base;
-      int s = x->size, n = x->nelt;
-      void (*cb) PARAMS ((void *)) = x->cb;
-      int i;
+#define POINTER_HASH(x) (hashval_t)((long)x >> 3)
 
-      for (i = 0; i < n; ++i, elt += s)
-       (*cb)(elt);
-    }
+/* Register an object in the hash table.  */
 
-  /* Mark all the queued up trees, and their children.  */
-  ggc_mark_trees ();
-  VARRAY_FREE (ggc_pending_trees);
+int
+gt_pch_note_object (obj, note_ptr_cookie, note_ptr_fn)
+     void *obj;
+     void *note_ptr_cookie;
+     gt_note_pointers note_ptr_fn;
+{
+  struct ptr_data **slot;
+  
+  if (obj == NULL || obj == (void *) 1)
+    return 0;
 
-  /* 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);
+  slot = (struct ptr_data **)
+    htab_find_slot_with_hash (saving_htab, obj, POINTER_HASH (obj),
+                             INSERT);
+  if (*slot != NULL)
+    {
+      if ((*slot)->note_ptr_fn != note_ptr_fn
+         || (*slot)->note_ptr_cookie != note_ptr_cookie)
+       abort ();
+      return 0;
+    }
+  
+  *slot = xcalloc (sizeof (struct ptr_data), 1);
+  (*slot)->obj = obj;
+  (*slot)->note_ptr_fn = note_ptr_fn;
+  (*slot)->note_ptr_cookie = note_ptr_cookie;
+  if (note_ptr_fn == gt_pch_p_S)
+    (*slot)->size = strlen (obj) + 1;
+  else
+    (*slot)->size = ggc_get_size (obj);
+  return 1;
 }
 
-/* R had not been previously marked, but has now been marked via
-   ggc_set_mark.  Now recurse and process the children.  */
+/* Register an object in the hash table.  */
 
 void
-ggc_mark_rtx_children (r)
-     rtx r;
+gt_pch_note_reorder (obj, note_ptr_cookie, reorder_fn)
+     void *obj;
+     void *note_ptr_cookie;
+     gt_handle_reorder reorder_fn;
 {
-  rtx i, last;
+  struct ptr_data *data;
+  
+  if (obj == NULL || obj == (void *) 1)
+    return;
 
-  /* 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.
+  data = htab_find_with_hash (saving_htab, obj, POINTER_HASH (obj));
+  if (data == NULL
+      || data->note_ptr_cookie != note_ptr_cookie)
+    abort ();
+  
+  data->reorder_fn = reorder_fn;
+}
 
-     Combat this by marking all of the instructions in the chain before
-     marking the contents of those instructions.  */
+/* Hash and equality functions for saving_htab, callbacks for htab_create.  */
 
-  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 hashval_t
+saving_htab_hash (p)
+     const PTR p;
+{
+  return POINTER_HASH (((struct ptr_data *)p)->obj);
 }
 
-static void
-ggc_mark_rtx_children_1 (r)
-     rtx r;
+static int
+saving_htab_eq (p1, p2)
+     const PTR p1;
+     const PTR p2;
 {
-  const char *fmt;
-  int i;
-  rtx next_rtx;
+  return ((struct ptr_data *)p1)->obj == p2;
+}
 
-  do 
-    {
-      enum rtx_code code = GET_CODE (r);
-      /* This gets set to a child rtx to eliminate tail recursion.  */
-      next_rtx = NULL;
+/* Handy state for the traversal functions.  */
 
-      /* Collect statistics, if appropriate.  */
-      if (ggc_stats)
-       {
-         ++ggc_stats->num_rtxs[(int) code];
-         ggc_stats->size_rtxs[(int) code] += ggc_get_size (r);
-       }
+struct traversal_state 
+{
+  FILE *f;
+  struct ggc_pch_data *d;
+  size_t count;
+  struct ptr_data **ptrs;
+  size_t ptrs_i;
+};
 
-      /* ??? 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));
-         break;
-       case LABEL_REF:
-         ggc_mark_rtx (LABEL_NEXTREF (r));
-         ggc_mark_rtx (CONTAINING_INSN (r));
-         break;
-       case ADDRESSOF:
-         ggc_mark_tree (ADDRESSOF_DECL (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));
-             break;
-
-           case NOTE_INSN_BLOCK_BEG:
-           case NOTE_INSN_BLOCK_END:
-             ggc_mark_tree (NOTE_BLOCK (r));
-             break;
-
-           default:
-             break;
-           }
-         break;
+/* Callbacks for htab_traverse.  */
 
-       default:
-         break;
-       }
+static int
+call_count (slot, state_p)
+     void **slot;
+     void *state_p;
+{
+  struct ptr_data *d = (struct ptr_data *)*slot;
+  struct traversal_state *state = (struct traversal_state *)state_p;
+  
+  ggc_pch_count_object (state->d, d->obj, d->size);
+  state->count++;
+  return 1;
+}
 
-      for (fmt = GET_RTX_FORMAT (GET_CODE (r)), i = 0; *fmt ; ++fmt, ++i)
-       {
-         rtx exp;
-         switch (*fmt)
-           {
-           case 'e': case 'u':
-             exp = XEXP (r, i);
-             if (ggc_test_and_set_mark (exp))
-               { 
-                 if (next_rtx == NULL) 
-                   next_rtx = exp; 
-                 else 
-                   ggc_mark_rtx_children (exp);
-               } 
-             break;
-           case 'V': case 'E':
-             ggc_mark_rtvec (XVEC (r, i));
-             break;
-           }
-       }
-    }
-  while ((r = next_rtx) != NULL);
+static int
+call_alloc (slot, state_p)
+     void **slot;
+     void *state_p;
+{
+  struct ptr_data *d = (struct ptr_data *)*slot;
+  struct traversal_state *state = (struct traversal_state *)state_p;
+  
+  d->new_addr = ggc_pch_alloc_object (state->d, d->obj, d->size);
+  state->ptrs[state->ptrs_i++] = d;
+  return 1;
 }
 
-/* V had not been previously marked, but has now been marked via
-   ggc_set_mark.  Now recurse and process the children.  */
+/* Callback for qsort.  */
 
-void
-ggc_mark_rtvec_children (v)
-     rtvec v;
+static int
+compare_ptr_data (p1_p, p2_p)
+     const void *p1_p;
+     const void *p2_p;
 {
-  int i;
-
-  i = GET_NUM_ELEM (v);
-  while (--i >= 0)
-    ggc_mark_rtx (RTVEC_ELT (v, i));
+  struct ptr_data *p1 = *(struct ptr_data *const *)p1_p;
+  struct ptr_data *p2 = *(struct ptr_data *const *)p2_p;
+  return (((size_t)p1->new_addr > (size_t)p2->new_addr)
+         - ((size_t)p1->new_addr < (size_t)p2->new_addr));
 }
 
-/* Recursively set marks on all of the children of the
-   GCC_PENDING_TREES.  */
+/* Callbacks for note_ptr_fn.  */
 
 static void
-ggc_mark_trees ()
+relocate_ptrs (ptr_p, state_p)
+     void *ptr_p;
+     void *state_p;
 {
-  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);
+  void **ptr = (void **)ptr_p;
+  struct traversal_state *state ATTRIBUTE_UNUSED 
+    = (struct traversal_state *)state_p;
+  struct ptr_data *result;
 
-      /* Collect statistics, if appropriate.  */
-      if (ggc_stats)
-       {
-         ++ggc_stats->num_trees[(int) code];
-         ggc_stats->size_trees[(int) code] += ggc_get_size (t);
-       }
+  if (*ptr == NULL || *ptr == (void *)1)
+    return;
+  
+  result = htab_find_with_hash (saving_htab, *ptr, POINTER_HASH (*ptr));
+  if (result == NULL)
+    abort ();
+  *ptr = result->new_addr;
+}
 
-      /* Bits from common.  */
-      ggc_mark_tree (TREE_TYPE (t));
-      ggc_mark_tree (TREE_CHAIN (t));
+/* Write out, after relocation, the pointers in TAB.  */
+static void
+write_pch_globals (tab, state)
+     const struct ggc_root_tab * const *tab;
+     struct traversal_state *state;
+{
+  const struct ggc_root_tab *const *rt;
+  const struct ggc_root_tab *rti;
+  size_t i;
 
-      /* Some nodes require special handling.  */
-      switch (code)
+  for (rt = tab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      for (i = 0; i < rti->nelt; i++)
        {
-       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_hooks.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_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)
+         void *ptr = *(void **)((char *)rti->base + rti->stride * i);
+         struct ptr_data *new_ptr;
+         if (ptr == NULL || ptr == (void *)1)
+           {
+             if (fwrite (&ptr, sizeof (void *), 1, state->f) 
+                 != 1)
+               fatal_io_error ("can't write PCH file");
+           }
+         else
            {
-             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));
+             new_ptr = htab_find_with_hash (saving_htab, ptr, 
+                                            POINTER_HASH (ptr));
+             if (fwrite (&new_ptr->new_addr, sizeof (void *), 1, state->f) 
+                 != 1)
+               fatal_io_error ("can't write PCH file");
            }
-         (*lang_hooks.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_hooks.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_hooks.mark_tree) (t);
-         break;
        }
-    }
 }
 
-/* Mark all the elements of the varray V, which contains rtxs.  */
+/* Hold the information we need to mmap the file back in.  */
 
-void
-ggc_mark_rtx_varray (v)
-     varray_type v;
+struct mmap_info 
 {
-  int i;
-
-  if (v)
-    for (i = v->num_elements - 1; i >= 0; --i) 
-      ggc_mark_rtx (VARRAY_RTX (v, i));
-}
+  size_t offset;
+  size_t size;
+  void *preferred_base;
+};
 
-/* Mark all the elements of the varray V, which contains trees.  */
+/* Write out the state of the compiler to F.  */
 
 void
-ggc_mark_tree_varray (v)
-     varray_type v;
+gt_pch_save (f)
+     FILE *f;
 {
-  int i;
+  const struct ggc_root_tab *const *rt;
+  const struct ggc_root_tab *rti;
+  size_t i;
+  struct traversal_state state;
+  char *this_object = NULL;
+  size_t this_object_size = 0;
+  struct mmap_info mmi;
+  size_t page_size = getpagesize();
+
+  gt_pch_save_stringpool ();
+
+  saving_htab = htab_create (50000, saving_htab_hash, saving_htab_eq, free);
+
+  for (rt = gt_ggc_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      for (i = 0; i < rti->nelt; i++)
+       (*rti->pchw)(*(void **)((char *)rti->base + rti->stride * i));
+
+  for (rt = gt_pch_cache_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      for (i = 0; i < rti->nelt; i++)
+       (*rti->pchw)(*(void **)((char *)rti->base + rti->stride * i));
+
+  /* Prepare the objects for writing, determine addresses and such.  */
+  state.f = f;
+  state.d = init_ggc_pch();
+  state.count = 0;
+  htab_traverse (saving_htab, call_count, &state);
+
+  mmi.size = ggc_pch_total_size (state.d);
+
+  /* Try to arrange things so that no relocation is necessary,
+     but don't try very hard.  On most platforms, this will always work,
+     and on the rest it's a lot of work to do better.  */
+#if HAVE_MMAP_FILE
+  mmi.preferred_base = mmap (NULL, mmi.size, 
+                            PROT_READ | PROT_WRITE, MAP_PRIVATE,
+                            fileno (state.f), 0);
+  if (mmi.preferred_base == (void *)-1)
+    mmi.preferred_base = NULL;
+  else
+    munmap (mmi.preferred_base, mmi.size);
+#else /* HAVE_MMAP_FILE */
+  mmi.preferred_base = NULL;
+#endif /* HAVE_MMAP_FILE */
+
+  ggc_pch_this_base (state.d, mmi.preferred_base);
+
+  state.ptrs = xmalloc (state.count * sizeof (*state.ptrs));
+  state.ptrs_i = 0;
+  htab_traverse (saving_htab, call_alloc, &state);
+  qsort (state.ptrs, state.count, sizeof (*state.ptrs), compare_ptr_data);
+
+  /* Write out all the scalar variables.  */
+  for (rt = gt_pch_scalar_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      if (fwrite (rti->base, rti->stride, 1, f) != 1)
+       fatal_io_error ("can't write PCH file");
+
+  /* Write out all the global pointers, after translation.  */
+  write_pch_globals (gt_ggc_rtab, &state);
+  write_pch_globals (gt_pch_cache_rtab, &state);
+
+  ggc_pch_prepare_write (state.d, state.f);
+  
+  /* Pad the PCH file so that the mmaped area starts on a page boundary.  */
+  {
+    long o;
+    o = ftell (state.f) + sizeof (mmi);
+    if (o == -1)
+      fatal_io_error ("can't get position in PCH file");
+    mmi.offset = page_size - o % page_size;
+    if (mmi.offset == page_size)
+      mmi.offset = 0;
+    mmi.offset += o;
+  }
+  if (fwrite (&mmi, sizeof (mmi), 1, state.f) != 1)
+    fatal_io_error ("can't write PCH file");
+  if (mmi.offset != 0
+      && fseek (state.f, mmi.offset, SEEK_SET) != 0)
+    fatal_io_error ("can't write padding to PCH file");
+
+  /* Actually write out the objects.  */
+  for (i = 0; i < state.count; i++)
+    {
+      if (this_object_size < state.ptrs[i]->size)
+       {
+         this_object_size = state.ptrs[i]->size;
+         this_object = xrealloc (this_object, this_object_size);
+       }
+      memcpy (this_object, state.ptrs[i]->obj, state.ptrs[i]->size);
+      if (state.ptrs[i]->reorder_fn != NULL)
+       state.ptrs[i]->reorder_fn (state.ptrs[i]->obj, 
+                                  state.ptrs[i]->note_ptr_cookie,
+                                  relocate_ptrs, &state);
+      state.ptrs[i]->note_ptr_fn (state.ptrs[i]->obj, 
+                                 state.ptrs[i]->note_ptr_cookie,
+                                 relocate_ptrs, &state);
+      ggc_pch_write_object (state.d, state.f, state.ptrs[i]->obj,
+                           state.ptrs[i]->new_addr, state.ptrs[i]->size);
+      if (state.ptrs[i]->note_ptr_fn != gt_pch_p_S)
+       memcpy (state.ptrs[i]->obj, this_object, state.ptrs[i]->size);
+    }
+  ggc_pch_finish (state.d, state.f);
+  gt_pch_fixup_stringpool ();
 
-  if (v)
-    for (i = v->num_elements - 1; i >= 0; --i) 
-      ggc_mark_tree (VARRAY_TREE (v, i));
+  free (state.ptrs);
+  htab_delete (saving_htab);
 }
 
-/* Mark the hash table-entry HE.  Its key field is really a tree.  */
+/* Read the state of the compiler back in from F.  */
 
-static bool
-ggc_mark_tree_hash_table_entry (he, k)
-     struct hash_entry *he;
-     hash_table_key k ATTRIBUTE_UNUSED;
+void
+gt_pch_restore (f)
+     FILE *f;
 {
-  ggc_mark_tree ((tree) he->key);
-  return true;
-}
+  const struct ggc_root_tab *const *rt;
+  const struct ggc_root_tab *rti;
+  size_t i;
+  struct mmap_info mmi;
+  void *addr;
+
+  /* Delete any deletable objects.  This makes ggc_pch_read much
+     faster, as it can be sure that no GCable objects remain other
+     than the ones just read in.  */
+  for (rt = gt_ggc_deletable_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      memset (rti->base, 0, rti->stride);
+
+  /* Read in all the scalar variables.  */
+  for (rt = gt_pch_scalar_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      if (fread (rti->base, rti->stride, 1, f) != 1)
+       fatal_io_error ("can't read PCH file");
+
+  /* Read in all the global pointers, in 6 easy loops.  */
+  for (rt = gt_ggc_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      for (i = 0; i < rti->nelt; i++)
+       if (fread ((char *)rti->base + rti->stride * i,
+                  sizeof (void *), 1, f) != 1)
+         fatal_io_error ("can't read PCH file");
+
+  for (rt = gt_pch_cache_rtab; *rt; rt++)
+    for (rti = *rt; rti->base != NULL; rti++)
+      for (i = 0; i < rti->nelt; i++)
+       if (fread ((char *)rti->base + rti->stride * i,
+                  sizeof (void *), 1, f) != 1)
+         fatal_io_error ("can't read PCH file");
+
+  if (fread (&mmi, sizeof (mmi), 1, f) != 1)
+    fatal_io_error ("can't read PCH file");
+  
+#if HAVE_MMAP_FILE
+  addr = mmap (mmi.preferred_base, mmi.size, 
+              PROT_READ | PROT_WRITE, MAP_PRIVATE,
+              fileno (f), mmi.offset);
+#else
+  addr = (void *)-1;
+#endif
+  if (addr == (void *)-1)
+    {
+      addr = xmalloc (mmi.size);
+      if (fseek (f, mmi.offset, SEEK_SET) != 0
+         || fread (&mmi, mmi.size, 1, f) != 1)
+       fatal_io_error ("can't read PCH file");
+    }
+  else if (fseek (f, mmi.offset + mmi.size, SEEK_SET) != 0)
+    fatal_io_error ("can't read PCH file");
 
-/* Mark all the elements of the hash-table H, which contains trees.  */
+  ggc_pch_read (f, addr);
 
-void
-ggc_mark_tree_hash_table (ht)
-     struct hash_table *ht;
-{
-  hash_traverse (ht, ggc_mark_tree_hash_table_entry, /*info=*/0);
-}
+  if (addr != mmi.preferred_base)
+    {
+      for (rt = gt_ggc_rtab; *rt; rt++)
+       for (rti = *rt; rti->base != NULL; rti++)
+         for (i = 0; i < rti->nelt; i++)
+           {
+             char **ptr = (char **)((char *)rti->base + rti->stride * i);
+             if (*ptr != NULL)
+               *ptr += (size_t)addr - (size_t)mmi.preferred_base;
+           }
+      
+      for (rt = gt_pch_cache_rtab; *rt; rt++)
+       for (rti = *rt; rti->base != NULL; rti++)
+         for (i = 0; i < rti->nelt; i++)
+           {
+             char **ptr = (char **)((char *)rti->base + rti->stride * i);
+             if (*ptr != NULL)
+               *ptr += (size_t)addr - (size_t)mmi.preferred_base;
+           }
 
-/* Type-correct function to pass to ggc_add_root.  It just forwards
-   *ELT (which is an rtx) to ggc_mark_rtx.  */
+      sorry ("had to relocate PCH");
+    }
 
-static void
-ggc_mark_rtx_ptr (elt)
-     void *elt;
-{
-  ggc_mark_rtx (*(rtx *) elt);
+  gt_pch_restore_stringpool ();
 }
 
-/* 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;
+/* Modify the bound based on rlimits.  Keep the smallest number found.  */
+static double
+ggc_rlimit_bound (limit)
+     double limit;
 {
-  ggc_mark_tree (*(tree *) elt);
+#if defined(HAVE_GETRLIMIT)
+  struct rlimit rlim;
+# ifdef RLIMIT_RSS
+  if (getrlimit (RLIMIT_RSS, &rlim) == 0
+      && rlim.rlim_cur != (rlim_t) RLIM_INFINITY
+      && rlim.rlim_cur < limit)
+    limit = rlim.rlim_cur;
+# endif
+# ifdef RLIMIT_DATA
+  if (getrlimit (RLIMIT_DATA, &rlim) == 0
+      && rlim.rlim_cur != (rlim_t) RLIM_INFINITY
+      && rlim.rlim_cur < limit)
+    limit = rlim.rlim_cur;
+# endif
+# ifdef RLIMIT_AS
+  if (getrlimit (RLIMIT_AS, &rlim) == 0
+      && rlim.rlim_cur != (rlim_t) RLIM_INFINITY
+      && rlim.rlim_cur < limit)
+    limit = rlim.rlim_cur;
+# endif
+#endif /* HAVE_GETRLIMIT */
+
+  return limit;
 }
 
-/* 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;
+/* Heuristic to set a default for GGC_MIN_EXPAND.  */
+int
+ggc_min_expand_heuristic()
 {
-  ggc_mark_rtx_varray (*(varray_type *) elt);
-}
+  double min_expand = physmem_total();
 
-/* Type-correct function to pass to ggc_add_root.  It just forwards
-   ELT (which is really a varray_type *) to ggc_mark_tree_varray.  */
+  /* Adjust for rlimits.  */
+  min_expand = ggc_rlimit_bound (min_expand);
+  
+  /* The heuristic is a percentage equal to 30% + 70%*(RAM/1GB), yielding
+     a lower bound of 30% and an upper bound of 100% (when RAM >= 1GB).  */
+  min_expand /= 1024*1024*1024;
+  min_expand *= 70;
+  min_expand = MIN (min_expand, 70);
+  min_expand += 30;
+
+  return min_expand;
+}
 
-static void
-ggc_mark_tree_varray_ptr (elt)
-     void *elt;
+/* Heuristic to set a default for GGC_MIN_HEAPSIZE.  */
+int
+ggc_min_heapsize_heuristic()
 {
-  ggc_mark_tree_varray (*(varray_type *) elt);
-}
+  double min_heap_kbytes = physmem_total();
 
-/* 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.  */
+  /* Adjust for rlimits.  */
+  min_heap_kbytes = ggc_rlimit_bound (min_heap_kbytes);
 
-static void
-ggc_mark_tree_hash_table_ptr (elt)
-     void *elt;
-{
-  ggc_mark_tree_hash_table (*(struct hash_table **) elt);
-}
+  min_heap_kbytes /= 1024; /* convert to Kbytes.  */
+  
+  /* The heuristic is RAM/8, with a lower bound of 4M and an upper
+     bound of 128M (when RAM >= 1GB).  */
+  min_heap_kbytes /= 8;
+  min_heap_kbytes = MAX (min_heap_kbytes, 4 * 1024);
+  min_heap_kbytes = MIN (min_heap_kbytes, 128 * 1024);
 
-/* Allocate a block of memory, then clear it.  */
-void *
-ggc_alloc_cleared (size)
-     size_t size;
-{
-  void *buf = ggc_alloc (size);
-  memset (buf, 0, size);
-  return buf;
+  return min_heap_kbytes;
 }
 
-/* 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_common_statistics (stream, stats)
-     FILE *stream;
-     ggc_statistics *stats;
+init_ggc_heuristics ()
 {
-  int code;
-
-  /* Set the pointer so that during collection we will actually gather
-     the statistics.  */
-  ggc_stats = stats;
-
-  /* Then do one collection to fill in the statistics.  */
-  ggc_collect ();
-
-  /* Total the statistics.  */
-  for (code = 0; code < MAX_TREE_CODES; ++code)
-    {
-      stats->total_num_trees += stats->num_trees[code];
-      stats->total_size_trees += stats->size_trees[code];
-    }
-  for (code = 0; code < NUM_RTX_CODE; ++code)
-    {
-      stats->total_num_rtxs += stats->num_rtxs[code];
-      stats->total_size_rtxs += stats->size_rtxs[code];
-    }
-
-  /* Print the statistics for trees.  */
-  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, "%-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]) 
-                 / ggc_stats->total_size_trees));
-      }
-  fprintf (stream,
-          "%-17s%10u%16ld%c\n", "Total",
-          ggc_stats->total_num_trees,
-          SCALE (ggc_stats->total_size_trees),
-          LABEL (ggc_stats->total_size_trees));
-
-  /* Print the statistics for RTL.  */
-  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, "%-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]) 
-                 / ggc_stats->total_size_rtxs));
-      }
-  fprintf (stream,
-          "%-17s%10u%16ld%c\n", "Total",
-          ggc_stats->total_num_rtxs,
-          SCALE (ggc_stats->total_size_rtxs),
-          LABEL (ggc_stats->total_size_rtxs));
-
-  /* Don't gather statistics any more.  */
-  ggc_stats = NULL;
+#ifndef ENABLE_GC_ALWAYS_COLLECT
+  set_param_value ("ggc-min-expand", ggc_min_expand_heuristic());
+  set_param_value ("ggc-min-heapsize", ggc_min_heapsize_heuristic());
+#endif
 }