ggc.h 12.1 KB
Newer Older
1
/* Garbage collection for the GNU compiler.
2
   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008
3
   Free Software Foundation, Inc.
4

5
This file is part of GCC.
6

7 8
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
9
Software Foundation; either version 3, or (at your option) any later
10
version.
11

12 13
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 15 16 17
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
18 19
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
20

21 22
#ifndef GCC_GGC_H
#define GCC_GGC_H
23
#include "statistics.h"
24

25 26 27
/* Symbols are marked with `ggc' for `gcc gc' so as not to interfere with
   an external gc library that might be linked in.  */

28
/* Constants for general use.  */
29 30 31
extern const char empty_string[];	/* empty string */
extern const char digit_vector[];	/* "0" .. "9" */
#define digit_string(d) (digit_vector + ((d) * 2))
32

33 34 35 36
/* Internal functions and data structures used by the GTY
   machinery.  */

/* The first parameter is a pointer to a pointer, the second a cookie.  */
37
typedef void (*gt_pointer_operator) (void *, void *);
38 39 40 41 42 43

#include "gtype-desc.h"

/* One of these applies its third parameter (with cookie in the fourth
   parameter) to each pointer in the object pointed to by the first
   parameter, using the second parameter.  */
44 45
typedef void (*gt_note_pointers) (void *, void *, gt_pointer_operator,
				  void *);
46 47 48 49 50 51

/* One of these is called before objects are re-ordered in memory.
   The first parameter is the original object, the second is the
   subobject that has had its pointers reordered, the third parameter
   can compute the new values of a pointer when given the cookie in
   the fourth parameter.  */
52 53
typedef void (*gt_handle_reorder) (void *, void *, gt_pointer_operator,
				   void *);
54 55

/* Used by the gt_pch_n_* routines.  Register an object in the hash table.  */
56 57
extern int gt_pch_note_object (void *, void *, gt_note_pointers,
			       enum gt_types_enum);
58

59
/* Used by the gt_pch_n_* routines.  Register that an object has a reorder
60
   function.  */
61
extern void gt_pch_note_reorder (void *, void *, gt_handle_reorder);
62 63

/* Mark the object in the first parameter and anything it points to.  */
64
typedef void (*gt_pointer_walker) (void *);
65

66
/* Structures for the easy way to mark roots.
67
   In an array, terminated by having base == NULL.  */
68 69 70 71
struct ggc_root_tab {
  void *base;
  size_t nelt;
  size_t stride;
72 73
  gt_pointer_walker cb;
  gt_pointer_walker pchw;
74
};
75
#define LAST_GGC_ROOT_TAB { NULL, 0, 0, NULL, NULL }
76 77 78
/* Pointers to arrays of ggc_root_tab, terminated by NULL.  */
extern const struct ggc_root_tab * const gt_ggc_rtab[];
extern const struct ggc_root_tab * const gt_ggc_deletable_rtab[];
79 80
extern const struct ggc_root_tab * const gt_pch_cache_rtab[];
extern const struct ggc_root_tab * const gt_pch_scalar_rtab[];
81 82 83 84 85 86 87

/* Structure for hash table cache marking.  */
struct htab;
struct ggc_cache_tab {
  struct htab * *base;
  size_t nelt;
  size_t stride;
88 89
  gt_pointer_walker cb;
  gt_pointer_walker pchw;
90
  int (*marked_p) (const void *);
91
};
92
#define LAST_GGC_CACHE_TAB { NULL, 0, 0, NULL, NULL, NULL }
93 94 95
/* Pointers to arrays of ggc_cache_tab, terminated by NULL.  */
extern const struct ggc_cache_tab * const gt_ggc_cache_rtab[];

96 97 98
/* If EXPR is not NULL and previously unmarked, mark it and evaluate
   to true.  Otherwise evaluate to false.  */
#define ggc_test_and_set_mark(EXPR) \
99
  ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR))
100

101 102
#define ggc_mark(EXPR)				\
  do {						\
103
    const void *const a__ = (EXPR);		\
104
    if (a__ != NULL && a__ != (void *) 1)	\
105 106 107
      ggc_set_mark (a__);			\
  } while (0)

108 109
/* Actually set the mark on a particular region of memory, but don't
   follow pointers.  This function is called by ggc_mark_*.  It
110
   returns zero if the object was not previously marked; nonzero if
111 112
   the object was already marked, or if, for any other reason,
   pointers in this data structure should not be traversed.  */
113
extern int ggc_set_mark	(const void *);
114 115 116 117

/* Return 1 if P has been marked, zero otherwise.
   P must have been allocated by the GC allocator; it mustn't point to
   static objects, stack variables, or memory allocated with malloc.  */
118
extern int ggc_marked_p	(const void *);
119 120

/* Mark the entries in the string pool.  */
121
extern void ggc_mark_stringpool	(void);
122

123 124 125
/* Purge the entries in the string pool.  */
extern void ggc_purge_stringpool (void);

126 127
/* Call ggc_set_mark on all the roots.  */

128
extern void ggc_mark_roots (void);
129 130 131

/* Save and restore the string pool entries for PCH.  */

132 133 134
extern void gt_pch_save_stringpool (void);
extern void gt_pch_fixup_stringpool (void);
extern void gt_pch_restore_stringpool (void);
135 136 137

/* PCH and GGC handling for strings, mostly trivial.  */

138 139
extern void gt_pch_p_S (void *, void *, gt_pointer_operator, void *);
extern void gt_pch_n_S (const void *);
140
extern void gt_ggc_m_S (const void *);
141

142
/* Initialize the string pool.  */
143
extern void init_stringpool (void);
144 145 146

/* A GC implementation must provide these functions.  They are internal
   to the GC system.  */
147

148 149 150
/* Forward declare the zone structure.  Only ggc_zone implements this.  */
struct alloc_zone;

Kazu Hirata committed
151
/* Initialize the garbage collector.  */
152
extern void init_ggc (void);
153

154 155 156 157 158 159
/* Start a new GGC zone.  */
extern struct alloc_zone *new_ggc_zone (const char *);

/* Free a complete GGC zone, destroying everything in it.  */
extern void destroy_ggc_zone (struct alloc_zone *);

160 161 162
struct ggc_pch_data;

/* Return a new ggc_pch_data structure.  */
163
extern struct ggc_pch_data *init_ggc_pch (void);
164 165 166

/* The second parameter and third parameters give the address and size
   of an object.  Update the ggc_pch_data structure with as much of
167
   that information as is necessary. The bool argument should be true
168
   if the object is a string.  */
169 170
extern void ggc_pch_count_object (struct ggc_pch_data *, void *, size_t, bool,
				  enum gt_types_enum);
171

172
/* Return the total size of the data to be written to hold all
173
   the objects previously passed to ggc_pch_count_object.  */
174
extern size_t ggc_pch_total_size (struct ggc_pch_data *);
175 176 177

/* The objects, when read, will most likely be at the address
   in the second parameter.  */
178
extern void ggc_pch_this_base (struct ggc_pch_data *, void *);
179 180

/* Assuming that the objects really do end up at the address
181
   passed to ggc_pch_this_base, return the address of this object.
182 183 184
   The bool argument should be true if the object is a string.  */
extern char *ggc_pch_alloc_object (struct ggc_pch_data *, void *, size_t, bool,
				   enum gt_types_enum);
185 186

/* Write out any initial information required.  */
187
extern void ggc_pch_prepare_write (struct ggc_pch_data *, FILE *);
188 189
/* Write out this object, including any padding.  The last argument should be
   true if the object is a string.  */
190
extern void ggc_pch_write_object (struct ggc_pch_data *, FILE *, void *,
191
				  void *, size_t, bool);
192 193
/* All objects have been written, write out any final information
   required.  */
194
extern void ggc_pch_finish (struct ggc_pch_data *, FILE *);
195 196 197

/* A PCH file has just been read in at the address specified second
   parameter.  Set up the GC implementation for the new objects.  */
198
extern void ggc_pch_read (FILE *, void *);
199 200


201
/* Allocation.  */
202

203 204
/* When set, ggc_collect will do collection.  */
extern bool ggc_force_collect;
205

206 207 208 209 210 211
/* When true, identifier nodes are considered as GC roots.  When
   false, identifier nodes are treated like any other GC-allocated
   object, and the identifier hash table is treated as a weak
   hash.  */
extern bool ggc_protect_identifiers;

212
/* The internal primitive.  */
213 214
extern void *ggc_alloc_stat (size_t MEM_STAT_DECL);
#define ggc_alloc(s) ggc_alloc_stat (s MEM_STAT_INFO)
215
/* Allocate an object of the specified type and size.  */
216 217
extern void *ggc_alloc_typed_stat (enum gt_types_enum, size_t MEM_STAT_DECL);
#define ggc_alloc_typed(s,z) ggc_alloc_typed_stat (s,z MEM_STAT_INFO)
218
/* Like ggc_alloc, but allocates cleared memory.  */
219 220
extern void *ggc_alloc_cleared_stat (size_t MEM_STAT_DECL);
#define ggc_alloc_cleared(s) ggc_alloc_cleared_stat (s MEM_STAT_INFO)
221
/* Resize a block.  */
222 223
extern void *ggc_realloc_stat (void *, size_t MEM_STAT_DECL);
#define ggc_realloc(s,z) ggc_realloc_stat (s,z MEM_STAT_INFO)
224
/* Like ggc_alloc_cleared, but performs a multiplication.  */
225
extern void *ggc_calloc (size_t, size_t);
226 227
/* Free a block.  To be used when known for certain it's not reachable.  */
extern void ggc_free (void *);
228
 
229 230 231
extern void ggc_record_overhead (size_t, size_t, void * MEM_STAT_DECL);
extern void ggc_free_overhead (void *);
extern void ggc_prune_overhead_list (void);
232

233
extern void dump_ggc_loc_statistics (bool);
234

235 236 237 238 239
/* Type-safe, C++-friendly versions of ggc_alloc() and gcc_calloc().  */
#define GGC_NEW(T)		((T *) ggc_alloc (sizeof (T)))
#define GGC_CNEW(T)		((T *) ggc_alloc_cleared (sizeof (T)))
#define GGC_NEWVEC(T, N)	((T *) ggc_alloc ((N) * sizeof(T)))
#define GGC_CNEWVEC(T, N)	((T *) ggc_alloc_cleared ((N) * sizeof(T)))
240
#define GGC_RESIZEVEC(T, P, N)  ((T *) ggc_realloc ((P), (N) * sizeof (T)))
241 242
#define GGC_NEWVAR(T, S)	((T *) ggc_alloc ((S)))
#define GGC_CNEWVAR(T, S)	((T *) ggc_alloc_cleared ((S)))
243
#define GGC_RESIZEVAR(T, P, N)  ((T *) ggc_realloc ((P), (N)))
244

245 246 247
#define ggc_alloc_rtvec(NELT)						 \
  ((rtvec) ggc_alloc_zone (sizeof (struct rtvec_def) + ((NELT) - 1)	 \
			   * sizeof (rtx), &rtl_zone))
248

249
#define ggc_alloc_tree(LENGTH) ((tree) ggc_alloc_zone (LENGTH, &tree_zone))
250

251 252 253
#define htab_create_ggc(SIZE, HASH, EQ, DEL) \
  htab_create_alloc (SIZE, HASH, EQ, DEL, ggc_calloc, NULL)

254 255 256 257
#define splay_tree_new_ggc(COMPARE)					 \
  splay_tree_new_with_allocator (COMPARE, NULL, NULL,			 \
                                 &ggc_splay_alloc, &ggc_splay_dont_free, \
				 NULL)
258 259
extern void *ggc_splay_alloc (int, void *);
extern void ggc_splay_dont_free (void *, void *);
260

Zack Weinberg committed
261 262 263
/* Allocate a gc-able string, and fill it with LENGTH bytes from CONTENTS.
   If LENGTH is -1, then CONTENTS is assumed to be a
   null-terminated string and the memory sized accordingly.  */
264
extern const char *ggc_alloc_string (const char *contents, int length);
265

266 267 268
/* Make a copy of S, in GC-able memory.  */
#define ggc_strdup(S) ggc_alloc_string((S), -1)

269 270
/* Invoke the collector.  Garbage collection occurs only when this
   function is called, not during allocations.  */
271
extern void ggc_collect	(void);
272

273
/* Return the number of bytes allocated at the indicated address.  */
274
extern size_t ggc_get_size (const void *);
275

276
/* Write out all GCed objects to F.  */
277
extern void gt_pch_save (FILE *f);
278

279
/* Read objects previously saved with gt_pch_save from F.  */
280
extern void gt_pch_restore (FILE *f);
281

282 283 284 285
/* Statistics.  */

/* This structure contains the statistics common to all collectors.
   Particular collectors can extend this structure.  */
286
typedef struct ggc_statistics
287
{
288 289
  /* At present, we don't really gather any interesting statistics.  */
  int unused;
290 291 292 293
} ggc_statistics;

/* Used by the various collectors to gather and print statistics that
   do not depend on the collector in use.  */
294
extern void ggc_print_common_statistics (FILE *, ggc_statistics *);
295 296

/* Print allocation statistics.  */
297 298
extern void ggc_print_statistics (void);
extern void stringpool_statistics (void);
299 300

/* Heuristics.  */
301 302 303
extern int ggc_min_expand_heuristic (void);
extern int ggc_min_heapsize_heuristic (void);
extern void init_ggc_heuristics (void);
304

305 306 307 308 309 310 311 312 313 314 315 316 317
/* Zone collection.  */
#if defined (GGC_ZONE) && !defined (GENERATOR_FILE)

/* For regular rtl allocations.  */
extern struct alloc_zone rtl_zone;
/* For regular tree allocations.  */
extern struct alloc_zone tree_zone;
/* For IDENTIFIER_NODE allocations.  */
extern struct alloc_zone tree_id_zone;

/* Allocate an object into the specified allocation zone.  */
extern void *ggc_alloc_zone_stat (size_t, struct alloc_zone * MEM_STAT_DECL);
# define ggc_alloc_zone(s,z) ggc_alloc_zone_stat (s,z MEM_STAT_INFO)
318
# define ggc_alloc_zone_pass_stat(s,z) ggc_alloc_zone_stat (s,z PASS_MEM_STAT)
319 320 321
#else

# define ggc_alloc_zone(s, z) ggc_alloc (s)
322
# define ggc_alloc_zone_pass_stat(s, z) ggc_alloc_stat (s PASS_MEM_STAT)
323 324 325

#endif

326
#endif