mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-27 21:40:34 +02:00
Add conservative heap tracing (not just roots)
Also accelerate mark_space_live_object_granules.
This commit is contained in:
parent
053dbf0b61
commit
910b62af8f
13 changed files with 221 additions and 94 deletions
5
quads.c
5
quads.c
|
@ -5,9 +5,10 @@
|
|||
|
||||
#include "assert.h"
|
||||
#include "gc-api.h"
|
||||
#if GC_PRECISE
|
||||
#if GC_PRECISE_ROOTS
|
||||
#include "precise-roots-api.h"
|
||||
#else
|
||||
#endif
|
||||
#if GC_CONSERVATIVE_ROOTS
|
||||
#include "conservative-roots-api.h"
|
||||
#endif
|
||||
#include "quads-types.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue