-
Notifications
You must be signed in to change notification settings - Fork 29
/
gc.lisp
133 lines (120 loc) · 5.07 KB
/
gc.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
(in-package :graph-db)
;;; Mapping graph nodes
(defun map-all-nodes (fn graph)
"Call FN for each node (vertex or edge) in GRAPH. "
(map-vertices fn graph)
(map-edges fn graph))
(defun map-node-addresses (fn graph)
"Call FN with the heap address of each node in GRAPH."
(map-all-nodes (lambda (node)
(let ((data-pointer (data-pointer node)))
(unless (zerop data-pointer)
(funcall fn data-pointer))))
graph))
;;; Mapping graph index lists
(defun map-index-list-addresses (fn index-list)
"Call FN with the heap address of each pcons in INDEX-LIST."
(let ((address (index-list-head index-list)))
(loop
(when (zerop address)
(return))
(funcall fn address)
(let ((pcons (deserialize-pcons index-list address)))
(setf address (%pcons-cdr pcons))))))
(defun map-edge-index-list-addresses (fn graph)
"Call FN with each index list heap address involved in the edge
indexes (ve-index-in, ve-index-out, vev-index) of GRAPH."
(let ((in (ve-index-table (ve-index-in graph)))
(out (ve-index-table (ve-index-out graph)))
(vev (vev-index-table (vev-index graph))))
(flet ((map-table (fn table)
(map-lhash (lambda (cons)
(let ((index-list (cdr cons)))
(map-index-list-addresses fn index-list)))
table)))
(map-table fn in)
(map-table fn out)
(map-table fn vev))))
(defun map-type-index-list-addresses (fn graph)
"Call FN with the heap address of the index lists of each type index
table index (edge-index, vertex-index) of GRAPH."
(let ((edge-table (type-index-cache (edge-index graph)))
(vertex-table (type-index-cache (vertex-index graph))))
(flet ((map-table (fn table)
(maphash (lambda (key index-list)
(declare (ignore key))
(map-index-list-addresses fn index-list))
table)))
(map-table fn edge-table)
(map-table fn vertex-table))))
(defun map-all-index-list-addresses (fn graph)
"Call FN with the heap address of the elements of all index lists
used for indexing in GRAPH."
(map-type-index-list-addresses fn graph)
(map-edge-index-list-addresses fn graph))
;;; Mapping graph view skip lists -- but view skip lists use their own
;;; heap, not GC'd for now.
(defun map-view-skip-lists (fn graph)
"Call FN for each view skip list in FN."
(let ((views-table (views graph)))
(maphash (lambda (class-name view-group)
(declare (ignore class-name))
(maphash (lambda (slot-name view)
(declare (ignore slot-name))
(let ((skip-list (view-skip-list view)))
(funcall fn skip-list)))
(view-group-table view-group)))
views-table)))
(defun map-all-view-skip-list-addresses (fn graph)
"Call FN for each heap address in each view skip list of GRAPH."
(map-view-skip-lists
(lambda (skip-list)
(map-skip-list (lambda (skip-list-node)
(funcall fn
(%sn-addr skip-list-node)))
skip-list))
graph))
;;; Putting it all together
(defun map-all-heap-allocations (fn graph)
"Call FN for each 'raw' heap address in GRAPH, determined only by
walking the heap."
(map-memory (lambda (allocation-data-offset size free?)
(declare (ignore size free?))
(funcall fn allocation-data-offset))
(heap graph)))
(defun map-all-graph-allocations (fn graph)
"Call FN for each heap address referenced through a data structure
within GRAPH."
(map-node-addresses fn graph)
(map-all-index-list-addresses fn graph))
(defun heap-allocation-table (graph)
"Return a hash table mapping each 'raw' heap address of GRAPH to T."
(let ((table (make-hash-table)))
(map-all-heap-allocations (lambda (address)
(setf (gethash address table) t))
graph)
table))
(defun graph-allocation-table (graph)
"Return a hash table mapping each heap address referenced through a
data structure in GRAPH to T. Used for debugging, not used in GC."
(let ((table (make-hash-table)))
(map-all-graph-allocations (lambda (address)
(setf (gethash address table) t))
graph)
table))
(defun gc-heap (graph)
"Garbage-collect the heap of GRAPH by calling FREE on any
allocations that are not referenced through any data structure in
GRAPH."
(log:debug "gc-ing graph database heap.")
(let ((allocation-table (heap-allocation-table graph))
(heap (heap graph)))
(map-all-graph-allocations (lambda (pointer)
(remhash pointer allocation-table))
graph)
(maphash (lambda (pointer _)
(declare (ignore _))
(log:debug "Freeing ~A" pointer)
(free heap pointer))
allocation-table))
(log:debug "gc complete"))