gc_backptr.h 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Copyright (c) 1994 by Xerox Corporation. All rights reserved.
  3. * Copyright (c) 1996 by Silicon Graphics. All rights reserved.
  4. * Copyright (c) 1998 by Fergus Henderson. All rights reserved.
  5. * Copyright (c) 2000-2009 by Hewlett-Packard Development Company.
  6. * All rights reserved.
  7. *
  8. * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
  9. * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
  10. *
  11. * Permission is hereby granted to use or copy this program
  12. * for any purpose, provided the above notices are retained on all copies.
  13. * Permission to modify the code and to distribute modified code is granted,
  14. * provided the above notices are retained, and a notice that the code was
  15. * modified is included with the above copyright notice.
  16. */
  17. /*
  18. * This is a simple API to implement pointer back tracing, i.e.
  19. * to answer questions such as "who is pointing to this" or
  20. * "why is this object being retained by the collector"
  21. *
  22. * This API assumes that we have an ANSI C compiler.
  23. *
  24. * Most of these calls yield useful information on only after
  25. * a garbage collection. Usually the client will first force
  26. * a full collection and then gather information, preferably
  27. * before much intervening allocation.
  28. *
  29. * The implementation of the interface is only about 99.9999%
  30. * correct. It is intended to be good enough for profiling,
  31. * but is not intended to be used with production code.
  32. *
  33. * Results are likely to be much more useful if all allocation is
  34. * accomplished through the debugging allocators.
  35. *
  36. * The implementation idea is due to A. Demers.
  37. */
  38. #ifndef GC_BACKPTR_H
  39. #define GC_BACKPTR_H
  40. #ifndef GC_H
  41. # include "gc.h"
  42. #endif
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46. /* Store information about the object referencing dest in *base_p */
  47. /* and *offset_p. */
  48. /* If multiple objects or roots point to dest, the one reported */
  49. /* will be the last on used by the garbage collector to trace the */
  50. /* object. */
  51. /* source is root ==> *base_p = address, *offset_p = 0 */
  52. /* source is heap object ==> *base_p != 0, *offset_p = offset */
  53. /* Returns 1 on success, 0 if source couldn't be determined. */
  54. /* Dest can be any address within a heap object. */
  55. typedef enum {
  56. GC_UNREFERENCED, /* No reference info available. */
  57. GC_NO_SPACE, /* Dest not allocated with debug alloc. */
  58. GC_REFD_FROM_ROOT, /* Referenced directly by root *base_p. */
  59. GC_REFD_FROM_REG, /* Referenced from a register, i.e. */
  60. /* a root without an address. */
  61. GC_REFD_FROM_HEAP, /* Referenced from another heap obj. */
  62. GC_FINALIZER_REFD /* Finalizable and hence accessible. */
  63. } GC_ref_kind;
  64. GC_API GC_ref_kind GC_CALL GC_get_back_ptr_info(void * /* dest */,
  65. void ** /* base_p */, size_t * /* offset_p */)
  66. GC_ATTR_NONNULL(1);
  67. /* Generate a random heap address. */
  68. /* The resulting address is in the heap, but */
  69. /* not necessarily inside a valid object. */
  70. GC_API void * GC_CALL GC_generate_random_heap_address(void);
  71. /* Generate a random address inside a valid marked heap object. */
  72. GC_API void * GC_CALL GC_generate_random_valid_address(void);
  73. /* Force a garbage collection and generate a backtrace from a */
  74. /* random heap address. */
  75. /* This uses the GC logging mechanism (GC_printf) to produce */
  76. /* output. It can often be called from a debugger. The */
  77. /* source in dbg_mlc.c also serves as a sample client. */
  78. GC_API void GC_CALL GC_generate_random_backtrace(void);
  79. /* Print a backtrace from a specific address. Used by the */
  80. /* above. The client should call GC_gcollect() immediately */
  81. /* before invocation. */
  82. GC_API void GC_CALL GC_print_backtrace(void *) GC_ATTR_NONNULL(1);
  83. #ifdef __cplusplus
  84. } /* end of extern "C" */
  85. #endif
  86. #endif /* GC_BACKPTR_H */