ggc-internal.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* Garbage collection for the GNU compiler. Internal definitions
  2. for ggc-*.c and stringpool.c.
  3. Copyright (C) 2009-2019 Free Software Foundation, Inc.
  4. This file is part of GCC.
  5. GCC is free software; you can redistribute it and/or modify it under
  6. the terms of the GNU General Public License as published by the Free
  7. Software Foundation; either version 3, or (at your option) any later
  8. version.
  9. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  12. for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GCC; see the file COPYING3. If not see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifndef GCC_GGC_INTERNAL_H
  17. #define GCC_GGC_INTERNAL_H
  18. /* Call ggc_set_mark on all the roots. */
  19. extern void ggc_mark_roots (void);
  20. /* Stringpool. */
  21. /* Mark the entries in the string pool. */
  22. extern void ggc_mark_stringpool (void);
  23. /* Purge the entries in the string pool. */
  24. extern void ggc_purge_stringpool (void);
  25. /* Save and restore the string pool entries for PCH. */
  26. extern void gt_pch_save_stringpool (void);
  27. extern void gt_pch_fixup_stringpool (void);
  28. extern void gt_pch_restore_stringpool (void);
  29. /* PCH and GGC handling for strings, mostly trivial. */
  30. extern void gt_pch_p_S (void *, void *, gt_pointer_operator, void *);
  31. /* PCH. */
  32. struct ggc_pch_data;
  33. /* Return a new ggc_pch_data structure. */
  34. extern struct ggc_pch_data *init_ggc_pch (void);
  35. /* The second parameter and third parameters give the address and size
  36. of an object. Update the ggc_pch_data structure with as much of
  37. that information as is necessary. The bool argument should be true
  38. if the object is a string. */
  39. extern void ggc_pch_count_object (struct ggc_pch_data *, void *, size_t, bool);
  40. /* Return the total size of the data to be written to hold all
  41. the objects previously passed to ggc_pch_count_object. */
  42. extern size_t ggc_pch_total_size (struct ggc_pch_data *);
  43. /* The objects, when read, will most likely be at the address
  44. in the second parameter. */
  45. extern void ggc_pch_this_base (struct ggc_pch_data *, void *);
  46. /* Assuming that the objects really do end up at the address
  47. passed to ggc_pch_this_base, return the address of this object.
  48. The bool argument should be true if the object is a string. */
  49. extern char *ggc_pch_alloc_object (struct ggc_pch_data *, void *, size_t, bool);
  50. /* Write out any initial information required. */
  51. extern void ggc_pch_prepare_write (struct ggc_pch_data *, FILE *);
  52. /* Write out this object, including any padding. The last argument should be
  53. true if the object is a string. */
  54. extern void ggc_pch_write_object (struct ggc_pch_data *, FILE *, void *,
  55. void *, size_t, bool);
  56. /* All objects have been written, write out any final information
  57. required. */
  58. extern void ggc_pch_finish (struct ggc_pch_data *, FILE *);
  59. /* A PCH file has just been read in at the address specified second
  60. parameter. Set up the GC implementation for the new objects. */
  61. extern void ggc_pch_read (FILE *, void *);
  62. /* Allocation and collection. */
  63. /* When set, ggc_collect will do collection. */
  64. extern bool ggc_force_collect;
  65. extern void ggc_record_overhead (size_t, size_t, void * FINAL_MEM_STAT_DECL);
  66. extern void ggc_free_overhead (void *);
  67. extern void ggc_prune_overhead_list (void);
  68. /* Return the number of bytes allocated at the indicated address. */
  69. extern size_t ggc_get_size (const void *);
  70. /* Statistics. */
  71. /* This structure contains the statistics common to all collectors.
  72. Particular collectors can extend this structure. */
  73. struct ggc_statistics
  74. {
  75. /* At present, we don't really gather any interesting statistics. */
  76. int unused;
  77. };
  78. /* Used by the various collectors to gather and print statistics that
  79. do not depend on the collector in use. */
  80. extern void ggc_print_common_statistics (FILE *, ggc_statistics *);
  81. #endif