mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-27 13:30:31 +02:00
Instead of the card table, use metadata bytes for field-logging. More precision should lead to less work during the pause.
81 lines
1.9 KiB
C
81 lines
1.9 KiB
C
#ifndef ROOT_H
|
|
#define ROOT_H
|
|
|
|
#include "gc-edge.h"
|
|
#include "extents.h"
|
|
|
|
struct gc_ephemeron;
|
|
struct gc_heap;
|
|
struct gc_mutator;
|
|
struct gc_edge_buffer;
|
|
|
|
enum gc_root_kind {
|
|
GC_ROOT_KIND_NONE,
|
|
GC_ROOT_KIND_HEAP,
|
|
GC_ROOT_KIND_MUTATOR,
|
|
GC_ROOT_KIND_CONSERVATIVE_EDGES,
|
|
GC_ROOT_KIND_CONSERVATIVE_POSSIBLY_INTERIOR_EDGES,
|
|
GC_ROOT_KIND_RESOLVED_EPHEMERONS,
|
|
GC_ROOT_KIND_EDGE,
|
|
GC_ROOT_KIND_EDGE_BUFFER,
|
|
};
|
|
|
|
struct gc_root {
|
|
enum gc_root_kind kind;
|
|
union {
|
|
struct gc_heap *heap;
|
|
struct gc_mutator *mutator;
|
|
struct gc_ephemeron *resolved_ephemerons;
|
|
struct extent_range range;
|
|
struct gc_edge edge;
|
|
struct gc_edge_buffer *edge_buffer;
|
|
};
|
|
};
|
|
|
|
static inline struct gc_root
|
|
gc_root_heap(struct gc_heap* heap) {
|
|
struct gc_root ret = { GC_ROOT_KIND_HEAP };
|
|
ret.heap = heap;
|
|
return ret;
|
|
}
|
|
|
|
static inline struct gc_root
|
|
gc_root_mutator(struct gc_mutator* mutator) {
|
|
struct gc_root ret = { GC_ROOT_KIND_MUTATOR };
|
|
ret.mutator = mutator;
|
|
return ret;
|
|
}
|
|
|
|
static inline struct gc_root
|
|
gc_root_conservative_edges(uintptr_t lo_addr, uintptr_t hi_addr,
|
|
int possibly_interior) {
|
|
enum gc_root_kind kind = possibly_interior
|
|
? GC_ROOT_KIND_CONSERVATIVE_POSSIBLY_INTERIOR_EDGES
|
|
: GC_ROOT_KIND_CONSERVATIVE_EDGES;
|
|
struct gc_root ret = { kind };
|
|
ret.range = (struct extent_range) {lo_addr, hi_addr};
|
|
return ret;
|
|
}
|
|
|
|
static inline struct gc_root
|
|
gc_root_resolved_ephemerons(struct gc_ephemeron* resolved) {
|
|
struct gc_root ret = { GC_ROOT_KIND_RESOLVED_EPHEMERONS };
|
|
ret.resolved_ephemerons = resolved;
|
|
return ret;
|
|
}
|
|
|
|
static inline struct gc_root
|
|
gc_root_edge(struct gc_edge edge) {
|
|
struct gc_root ret = { GC_ROOT_KIND_EDGE };
|
|
ret.edge = edge;
|
|
return ret;
|
|
}
|
|
|
|
static inline struct gc_root
|
|
gc_root_edge_buffer(struct gc_edge_buffer *buf) {
|
|
struct gc_root ret = { GC_ROOT_KIND_EDGE_BUFFER };
|
|
ret.edge_buffer = buf;
|
|
return ret;
|
|
}
|
|
|
|
#endif // ROOT_H
|