source: src/examples/gc_no_raii/src/internal/state.h @ df4aea7

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since df4aea7 was df4aea7, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

all implemented files compile

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[e47f529]1#pragma once
2
3#include <stddef.h>
4#include <stdint.h>
5
6#include "tools.h"
[df4aea7]7#include "vector.h"
8
9typedef vector(struct gc_memory_pool*, heap_allocator(struct gc_memory_pool*)) pools_table_t;
[e47f529]10
11struct gc_state
12{
13        bool is_initialized;
14        uint8_t from_code;
15        struct gc_memory_pool* to_space;
16        struct gc_memory_pool* from_space;
17
18        size_t total_space;
19        size_t used_space;
20
[df4aea7]21        pools_table_t   pools_table;
22        size_t          pools_table_count;
[e47f529]23};
24
[df4aea7]25void ctor(struct gc_state* state);
[e47f529]26
[385c130]27gc_state* gc_get_state();
[e47f529]28
[6be0cf9]29inline bool gc_needs_collect(gc_state* state)
[e47f529]30{
31        return state->used_space * 2 > state->total_space;
32}
33
34void gc_collect(gc_state* state);
35
36void* gc_try_allocate(gc_state* state, size_t size);
37
38void gc_allocate_pool(gc_state* state);
39
40bool gc_is_in_heap(const gc_state* state, void* address);
41
42bool gc_is_in_to_space(const gc_state* state, void* address);
43
[df4aea7]44inline uint8_t gc_from_space_code(const gc_state *const this)
[e47f529]45{
[df4aea7]46        return this->from_code;
[e47f529]47}
48
49struct gc_object_header* gc_get_object_for_ref(gc_state* state, void*);
50
51inline void gc_register_allocation(gc_state* state, size_t size)
52{
53        state->used_space += size;
54}
Note: See TracBrowser for help on using the repository browser.