-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgc.c
More file actions
384 lines (381 loc) · 10.9 KB
/
Copy pathgc.c
File metadata and controls
384 lines (381 loc) · 10.9 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
#include "gc.h"
#include "runtime.h"
#include <stdlib.h>
#define GRAY_INITIAL_CAPACITY 8
#define ROOT_INITIAL_CAPACITY 8
static int ensureGrayCapacity(Runtime* runtime);
static int ensureRootCapacity(Runtime* runtime);
static void markObject(Runtime* runtime, GcObject* object);
static void markEnvironmentContents(Runtime* runtime, Environment* env);
static void blackenObject(Runtime* runtime, GcObject* object);
static void freeGcObject(GcObject* object);
static int ensureGrayCapacity(Runtime* runtime) {
GcObject** newStack;
int newCapacity;
if (runtime == NULL) {
return 0;
}
if (runtime->grayCount < runtime->grayCapacity) {
return 1;
}
newCapacity = runtime->grayCapacity < GRAY_INITIAL_CAPACITY
? GRAY_INITIAL_CAPACITY
: runtime->grayCapacity * 2;
newStack = (GcObject**)realloc(
runtime->grayStack,
sizeof(GcObject*) * (size_t)newCapacity
);
if (newStack == NULL) {
return 0;
}
runtime->grayStack = newStack;
runtime->grayCapacity = newCapacity;
return 1;
}
static int ensureRootCapacity(Runtime* runtime) {
Value* newRoots;
int newCapacity;
if (runtime == NULL) {
return 0;
}
if (runtime->tempRootCount < runtime->tempRootCapacity) {
return 1;
}
newCapacity = runtime->tempRootCapacity < ROOT_INITIAL_CAPACITY
? ROOT_INITIAL_CAPACITY
: runtime->tempRootCapacity * 2;
newRoots = (Value*)realloc(
runtime->tempRoots,
sizeof(Value) * (size_t)newCapacity
);
if (newRoots == NULL) {
return 0;
}
runtime->tempRoots = newRoots;
runtime->tempRootCapacity = newCapacity;
return 1;
}
void* gcAllocateObject(
Runtime* runtime,
size_t size,
GcObjectType type
) {
GcObject* object;
if (runtime == NULL || size < sizeof(GcObject)) {
return NULL;
}
object = (GcObject*)malloc(size);
if (object == NULL) {
return NULL;
}
object->type = type;
object->marked = 0;
object->size = size;
object->next = runtime->objects;
runtime->objects = object;
runtime->bytesAllocated += size;
return object;
}
int gcPushRoot(Runtime* runtime, Value value) {
if (runtime == NULL) {
return 0;
}
if (!ensureRootCapacity(runtime)) {
return 0;
}
runtime->tempRoots[runtime->tempRootCount] = value;
runtime->tempRootCount++;
return 1;
}
void gcPopRoot(Runtime* runtime) {
if (runtime == NULL || runtime->tempRootCount <= 0) {
return;
}
runtime->tempRootCount--;
runtime->tempRoots[runtime->tempRootCount] = makeNone();
}
static void markObject(Runtime* runtime, GcObject* object) {
if (runtime == NULL || object == NULL || object->marked) {
return;
}
object->marked = 1;
if (!ensureGrayCapacity(runtime)) {
runtimeError(runtime, "Out of memory while growing GC gray stack.");
return;
}
runtime->grayStack[runtime->grayCount] = object;
runtime->grayCount++;
}
void gcMarkValue(Runtime* runtime, const Value* value) {
if (runtime == NULL || value == NULL) {
return;
}
switch (value->type) {
case VAL_FUNCTION:
markObject(runtime, (GcObject*)value->as.function);
break;
case VAL_CLASS:
markObject(runtime, (GcObject*)value->as.classObject);
break;
case VAL_INSTANCE:
markObject(runtime, (GcObject*)value->as.instance);
break;
case VAL_BOUND_METHOD:
markObject(runtime, (GcObject*)value->as.boundMethod);
break;
case VAL_LIST:
markObject(runtime, (GcObject*)value->as.list);
break;
case VAL_DICT:
markObject(runtime, (GcObject*)value->as.dict);
break;
default:
break;
}
}
static void markEnvironmentContents(Runtime* runtime, Environment* env) {
int i;
if (runtime == NULL || env == NULL) {
return;
}
for (i = 0; i < env->count; i++) {
gcMarkValue(runtime, &env->bindings[i].value);
}
gcMarkEnvironment(runtime, env->parent);
}
void gcMarkEnvironment(Runtime* runtime, Environment* env) {
if (runtime == NULL || env == NULL) {
return;
}
/*
globals is embedded directly inside Runtime and is not part of
runtime->objects, so mark its contents without treating it as a
heap-allocated GcObject.
*/
if (env == &runtime->globals) {
markEnvironmentContents(runtime, env);
return;
}
markObject(runtime, (GcObject*)env);
}
void gcMarkRoots(Runtime* runtime) {
int i;
if (runtime == NULL) {
return;
}
markEnvironmentContents(runtime, &runtime->globals);
gcMarkEnvironment(runtime, runtime->current);
for (i = 0; i < runtime->tempRootCount; i++) {
gcMarkValue(runtime, &runtime->tempRoots[i]);
}
}
static void blackenObject(Runtime* runtime, GcObject* object) {
int i;
if (runtime == NULL || object == NULL) {
return;
}
switch (object->type) {
case GC_FUNCTION: {
FunctionObject* function = (FunctionObject*)object;
gcMarkEnvironment(runtime, function->closure);
break;
}
case GC_CLASS: {
ClassObject* classObject = (ClassObject*)object;
gcMarkEnvironment(runtime, classObject->closure);
for (i = 0; i < classObject->methodCount; i++) {
markObject(
runtime,
(GcObject*)classObject->methods[i].function
);
}
break;
}
case GC_INSTANCE: {
InstanceObject* instance = (InstanceObject*)object;
markObject(runtime, (GcObject*)instance->classObject);
for (i = 0; i < instance->fieldCount; i++) {
gcMarkValue(runtime, &instance->fields[i].value);
}
break;
}
case GC_BOUND_METHOD: {
BoundMethodObject* boundMethod = (BoundMethodObject*)object;
markObject(runtime, (GcObject*)boundMethod->receiver);
markObject(runtime, (GcObject*)boundMethod->method);
break;
}
case GC_LIST: {
ListObject* list = (ListObject*)object;
for (i = 0; i < list->count; i++) {
gcMarkValue(runtime, &list->items[i]);
}
break;
}
case GC_DICT: {
DictObject* dict = (DictObject*)object;
for (i = 0; i < dict->count; i++) {
gcMarkValue(runtime, &dict->entries[i].key);
gcMarkValue(runtime, &dict->entries[i].value);
}
break;
}
case GC_ENVIRONMENT: {
Environment* env = (Environment*)object;
markEnvironmentContents(runtime, env);
break;
}
default:
break;
}
}
void gcTraceReferences(Runtime* runtime) {
GcObject* object;
if (runtime == NULL) {
return;
}
while (runtime->grayCount > 0) {
runtime->grayCount--;
object = runtime->grayStack[runtime->grayCount];
blackenObject(runtime, object);
if (runtime->hadError) {
return;
}
}
}
static void sweep(Runtime* runtime) {
GcObject* previous;
GcObject* object;
if (runtime == NULL) {
return;
}
previous = NULL;
object = runtime->objects;
while (object != NULL) {
if (object->marked) {
object->marked = 0;
previous = object;
object = object->next;
} else {
GcObject* unreached = object;
object = object->next;
if (previous != NULL) {
previous->next = object;
} else {
runtime->objects = object;
}
if (runtime->bytesAllocated >= unreached->size) {
runtime->bytesAllocated -= unreached->size;
} else {
runtime->bytesAllocated = 0;
}
freeGcObject(unreached);
}
}
}
void gcCollect(Runtime* runtime) {
size_t minimumNextGc;
if (runtime == NULL) {
return;
}
runtime->grayCount = 0;
gcMarkRoots(runtime);
gcTraceReferences(runtime);
if (runtime->hadError) {
return;
}
sweep(runtime);
minimumNextGc = 16 * 1024;
if (runtime->bytesAllocated > minimumNextGc / 2) {
runtime->nextGc = runtime->bytesAllocated * 2;
} else {
runtime->nextGc = minimumNextGc;
}
}void gcSafePoint(Runtime* runtime) {
if (runtime == NULL) {
return;
}
#ifdef NEAROH_GC_STRESS
gcCollect(runtime);
#else
if (runtime->bytesAllocated >= runtime->nextGc) {
gcCollect(runtime);
}
#endif
}static void freeGcObject(GcObject* object) {
int i;
if (object == NULL) {
return;
}
switch (object->type) {
case GC_FUNCTION: {
FunctionObject* function = (FunctionObject*)object;
free(function->name);
free(function->params);
break;
}
case GC_CLASS: {
ClassObject* classObject = (ClassObject*)object;
free(classObject->name);
for (i = 0; i < classObject->methodCount; i++) {
free(classObject->methods[i].name);
}
free(classObject->methods);
break;
}
case GC_INSTANCE: {
InstanceObject* instance = (InstanceObject*)object;
for (i = 0; i < instance->fieldCount; i++) {
free(instance->fields[i].name);
freeValue(&instance->fields[i].value);
}
free(instance->fields);
break;
}
case GC_BOUND_METHOD:
break;
case GC_LIST: {
ListObject* list = (ListObject*)object;
for (i = 0; i < list->count; i++) {
freeValue(&list->items[i]);
}
free(list->items);
break;
}
case GC_DICT: {
DictObject* dict = (DictObject*)object;
for (i = 0; i < dict->count; i++) {
freeValue(&dict->entries[i].key);
freeValue(&dict->entries[i].value);
}
free(dict->entries);
break;
}
case GC_ENVIRONMENT: {
Environment* env = (Environment*)object;
for (i = 0; i < env->count; i++) {
free(env->bindings[i].name);
freeValue(&env->bindings[i].value);
}
free(env->bindings);
break;
}
default:
break;
}
free(object);
}
void gcFreeAllObjects(Runtime* runtime) {
GcObject* object;
if (runtime == NULL) {
return;
}
object = runtime->objects;
while (object != NULL) {
GcObject* next = object->next;
freeGcObject(object);
object = next;
}
runtime->objects = NULL;
runtime->bytesAllocated = 0;
}