2017-04-18 02:40:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Calvin Rose
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
#include <dst/dst.h>
|
2017-11-27 19:03:34 +00:00
|
|
|
#include "symcache.h"
|
2017-11-06 03:05:47 +00:00
|
|
|
|
|
|
|
/* GC State */
|
|
|
|
void *dst_vm_blocks;
|
|
|
|
uint32_t dst_vm_memory_interval;
|
|
|
|
uint32_t dst_vm_next_collection;
|
2017-11-01 21:53:43 +00:00
|
|
|
|
|
|
|
/* Helpers for marking the various gc types */
|
|
|
|
static void dst_mark_funcenv(DstFuncEnv *env);
|
2017-11-06 03:05:47 +00:00
|
|
|
static void dst_mark_funcdef(DstFuncDef *def);
|
2017-11-01 21:53:43 +00:00
|
|
|
static void dst_mark_function(DstFunction *func);
|
|
|
|
static void dst_mark_array(DstArray *array);
|
|
|
|
static void dst_mark_table(DstTable *table);
|
|
|
|
static void dst_mark_struct(const DstValue *st);
|
|
|
|
static void dst_mark_tuple(const DstValue *tuple);
|
|
|
|
static void dst_mark_buffer(DstBuffer *buffer);
|
|
|
|
static void dst_mark_string(const uint8_t *str);
|
2017-11-06 03:05:47 +00:00
|
|
|
static void dst_mark_fiber(DstFiber *fiber);
|
2017-11-01 21:53:43 +00:00
|
|
|
static void dst_mark_udata(void *udata);
|
|
|
|
|
|
|
|
/* Mark a value */
|
|
|
|
void dst_mark(DstValue x) {
|
2017-11-28 23:27:55 +00:00
|
|
|
switch (dst_type(x)) {
|
2017-11-01 21:53:43 +00:00
|
|
|
default: break;
|
|
|
|
case DST_STRING:
|
2017-11-28 23:27:55 +00:00
|
|
|
case DST_SYMBOL: dst_mark_string(dst_unwrap_string(x)); break;
|
|
|
|
case DST_FUNCTION: dst_mark_function(dst_unwrap_function(x)); break;
|
|
|
|
case DST_ARRAY: dst_mark_array(dst_unwrap_array(x)); break;
|
|
|
|
case DST_TABLE: dst_mark_table(dst_unwrap_table(x)); break;
|
|
|
|
case DST_STRUCT: dst_mark_struct(dst_unwrap_struct(x)); break;
|
|
|
|
case DST_TUPLE: dst_mark_tuple(dst_unwrap_tuple(x)); break;
|
|
|
|
case DST_BUFFER: dst_mark_buffer(dst_unwrap_buffer(x)); break;
|
|
|
|
case DST_FIBER: dst_mark_fiber(dst_unwrap_fiber(x)); break;
|
|
|
|
case DST_USERDATA: dst_mark_udata(dst_unwrap_pointer(x)); break;
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-23 22:21:13 +00:00
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
/* Pin a value. This prevents a value from being garbage collected.
|
|
|
|
* Needed if the valueis not accesible to the garbage collector, but
|
|
|
|
* still in use by the program. For example, a c function that
|
|
|
|
* creates a table, and then runs the garbage collector without
|
|
|
|
* ever saving the table anywhere (except on the c stack, which
|
|
|
|
* the gc cannot inspect). */
|
2017-11-01 21:53:43 +00:00
|
|
|
void dst_pin(DstValue x) {
|
2017-11-28 23:27:55 +00:00
|
|
|
switch (dst_type(x)) {
|
2017-11-01 21:53:43 +00:00
|
|
|
default: break;
|
|
|
|
case DST_STRING:
|
2017-11-28 23:27:55 +00:00
|
|
|
case DST_SYMBOL: dst_pin_string(dst_unwrap_string(x)); break;
|
|
|
|
case DST_FUNCTION: dst_pin_function(dst_unwrap_function(x)); break;
|
|
|
|
case DST_ARRAY: dst_pin_array(dst_unwrap_array(x)); break;
|
|
|
|
case DST_TABLE: dst_pin_table(dst_unwrap_table(x)); break;
|
|
|
|
case DST_STRUCT: dst_pin_struct(dst_unwrap_struct(x)); break;
|
|
|
|
case DST_TUPLE: dst_pin_tuple(dst_unwrap_tuple(x)); break;
|
|
|
|
case DST_BUFFER: dst_pin_buffer(dst_unwrap_buffer(x)); break;
|
|
|
|
case DST_FIBER: dst_pin_fiber(dst_unwrap_fiber(x)); break;
|
|
|
|
case DST_USERDATA: dst_pin_userdata(dst_unwrap_pointer(x)); break;
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-21 02:39:44 +00:00
|
|
|
/* Unpin a value. This enables the GC to collect the value's
|
|
|
|
* memory again. */
|
|
|
|
void dst_unpin(DstValue x) {
|
2017-11-28 23:27:55 +00:00
|
|
|
switch (dst_type(x)) {
|
2017-11-21 02:39:44 +00:00
|
|
|
default: break;
|
|
|
|
case DST_STRING:
|
2017-11-28 23:27:55 +00:00
|
|
|
case DST_SYMBOL: dst_unpin_string(dst_unwrap_string(x)); break;
|
|
|
|
case DST_FUNCTION: dst_unpin_function(dst_unwrap_function(x)); break;
|
|
|
|
case DST_ARRAY: dst_unpin_array(dst_unwrap_array(x)); break;
|
|
|
|
case DST_TABLE: dst_unpin_table(dst_unwrap_table(x)); break;
|
|
|
|
case DST_STRUCT: dst_unpin_struct(dst_unwrap_struct(x)); break;
|
|
|
|
case DST_TUPLE: dst_unpin_tuple(dst_unwrap_tuple(x)); break;
|
|
|
|
case DST_BUFFER: dst_unpin_buffer(dst_unwrap_buffer(x)); break;
|
|
|
|
case DST_FIBER: dst_unpin_fiber(dst_unwrap_fiber(x)); break;
|
|
|
|
case DST_USERDATA: dst_unpin_userdata(dst_unwrap_pointer(x)); break;
|
2017-11-21 02:39:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
static void dst_mark_string(const uint8_t *str) {
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(dst_string_raw(str));
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
2017-02-23 22:21:13 +00:00
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
static void dst_mark_buffer(DstBuffer *buffer) {
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(buffer);
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void dst_mark_udata(void *udata) {
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(dst_userdata_header(udata));
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Mark a bunch of items in memory */
|
2017-11-28 23:27:55 +00:00
|
|
|
static void dst_mark_many(const DstValue *values, int32_t n) {
|
2017-11-01 21:53:43 +00:00
|
|
|
const DstValue *end = values + n;
|
|
|
|
while (values < end) {
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_mark(*values);
|
|
|
|
values += 1;
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dst_mark_array(DstArray *array) {
|
2017-11-06 03:05:47 +00:00
|
|
|
if (dst_gc_reachable(array))
|
2017-11-01 21:53:43 +00:00
|
|
|
return;
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(array);
|
2017-11-01 21:53:43 +00:00
|
|
|
dst_mark_many(array->data, array->count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dst_mark_table(DstTable *table) {
|
2017-11-06 03:05:47 +00:00
|
|
|
if (dst_gc_reachable(table))
|
2017-11-01 21:53:43 +00:00
|
|
|
return;
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(table);
|
2017-11-01 21:53:43 +00:00
|
|
|
dst_mark_many(table->data, table->capacity);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dst_mark_struct(const DstValue *st) {
|
2017-11-06 03:05:47 +00:00
|
|
|
if (dst_gc_reachable(dst_struct_raw(st)))
|
2017-11-01 21:53:43 +00:00
|
|
|
return;
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(dst_struct_raw(st));
|
2017-11-01 21:53:43 +00:00
|
|
|
dst_mark_many(st, dst_struct_capacity(st));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dst_mark_tuple(const DstValue *tuple) {
|
2017-11-06 03:05:47 +00:00
|
|
|
if (dst_gc_reachable(dst_tuple_raw(tuple)))
|
2017-11-01 21:53:43 +00:00
|
|
|
return;
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(dst_tuple_raw(tuple));
|
|
|
|
dst_mark_many(tuple, dst_tuple_length(tuple));
|
2017-05-03 23:57:06 +00:00
|
|
|
}
|
|
|
|
|
2017-02-23 22:21:13 +00:00
|
|
|
/* Helper to mark function environments */
|
2017-11-01 21:53:43 +00:00
|
|
|
static void dst_mark_funcenv(DstFuncEnv *env) {
|
2017-11-06 03:05:47 +00:00
|
|
|
if (dst_gc_reachable(env))
|
2017-11-01 21:53:43 +00:00
|
|
|
return;
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(env);
|
|
|
|
if (env->offset) {
|
|
|
|
/* On stack */
|
|
|
|
dst_mark_fiber(env->as.fiber);
|
|
|
|
} else {
|
|
|
|
/* Not on stack */
|
|
|
|
dst_mark_many(env->as.values, env->length);
|
2017-02-23 22:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GC helper to mark a FuncDef */
|
2017-11-01 21:53:43 +00:00
|
|
|
static void dst_mark_funcdef(DstFuncDef *def) {
|
2017-11-28 23:27:55 +00:00
|
|
|
int32_t count, i;
|
2017-11-06 03:05:47 +00:00
|
|
|
if (dst_gc_reachable(def))
|
2017-11-01 21:53:43 +00:00
|
|
|
return;
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(def);
|
|
|
|
if (def->constants) {
|
|
|
|
count = def->constants_length;
|
2017-11-01 21:53:43 +00:00
|
|
|
for (i = 0; i < count; ++i) {
|
2017-11-06 03:05:47 +00:00
|
|
|
DstValue v = def->constants[i];
|
2017-11-28 23:27:55 +00:00
|
|
|
/* Funcdefs use nil literals to store other funcdefs */
|
2017-11-29 20:17:56 +00:00
|
|
|
if (dst_checktype(v, DST_NIL)) {
|
2017-11-28 23:27:55 +00:00
|
|
|
dst_mark_funcdef((DstFuncDef *) dst_unwrap_pointer(v));
|
2017-11-01 21:53:43 +00:00
|
|
|
} else {
|
|
|
|
dst_mark(v);
|
|
|
|
}
|
2017-02-23 22:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
static void dst_mark_function(DstFunction *func) {
|
2017-11-28 23:27:55 +00:00
|
|
|
int32_t i;
|
|
|
|
int32_t numenvs;
|
2017-11-06 03:05:47 +00:00
|
|
|
if (dst_gc_reachable(func))
|
2017-11-01 21:53:43 +00:00
|
|
|
return;
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(func);
|
|
|
|
numenvs = func->def->environments_length;
|
2017-11-21 02:39:44 +00:00
|
|
|
if (NULL != func->envs)
|
|
|
|
for (i = 0; i < numenvs; ++i)
|
|
|
|
if (NULL != func->envs[i])
|
|
|
|
dst_mark_funcenv(func->envs[i]);
|
2017-11-01 21:53:43 +00:00
|
|
|
dst_mark_funcdef(func->def);
|
|
|
|
}
|
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
static void dst_mark_fiber(DstFiber *fiber) {
|
2017-11-28 23:27:55 +00:00
|
|
|
int32_t i, j;
|
2017-11-06 03:05:47 +00:00
|
|
|
DstStackFrame *frame;
|
|
|
|
if (dst_gc_reachable(fiber))
|
2017-11-01 21:53:43 +00:00
|
|
|
return;
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_gc_mark(fiber);
|
|
|
|
|
|
|
|
i = fiber->frame;
|
|
|
|
j = fiber->frametop;
|
2017-11-28 23:27:55 +00:00
|
|
|
while (i > 0) {
|
2017-11-06 03:05:47 +00:00
|
|
|
frame = (DstStackFrame *)(fiber->data + i - DST_FRAME_SIZE);
|
|
|
|
if (NULL != frame->func)
|
|
|
|
dst_mark_function(frame->func);
|
|
|
|
/* Mark all values in the stack frame */
|
|
|
|
dst_mark_many(fiber->data + i, j - i);
|
|
|
|
j = i - DST_FRAME_SIZE;
|
|
|
|
i = frame->prevframe;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NULL != fiber->parent)
|
|
|
|
dst_mark_fiber(fiber->parent);
|
|
|
|
|
|
|
|
dst_mark(fiber->ret);
|
2017-04-12 14:31:50 +00:00
|
|
|
}
|
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
/* Deinitialize a block of memory */
|
2017-11-06 03:05:47 +00:00
|
|
|
static void dst_deinit_block(DstGCMemoryHeader *block) {
|
2017-11-01 21:53:43 +00:00
|
|
|
void *mem = ((char *)(block + 1));
|
|
|
|
DstUserdataHeader *h = (DstUserdataHeader *)mem;
|
2017-11-06 03:05:47 +00:00
|
|
|
switch (block->flags & DST_MEM_TYPEBITS) {
|
2017-07-02 01:51:16 +00:00
|
|
|
default:
|
2017-11-01 21:53:43 +00:00
|
|
|
break; /* Do nothing for non gc types */
|
2017-11-27 19:03:34 +00:00
|
|
|
case DST_MEMORY_SYMBOL:
|
2017-11-28 23:27:55 +00:00
|
|
|
dst_symbol_deinit((const uint8_t *)mem + 2 * sizeof(int32_t));
|
2017-02-23 22:21:13 +00:00
|
|
|
break;
|
2017-11-01 21:53:43 +00:00
|
|
|
case DST_MEMORY_ARRAY:
|
2017-11-27 19:03:34 +00:00
|
|
|
dst_array_deinit((DstArray*) mem);
|
2017-02-23 22:21:13 +00:00
|
|
|
break;
|
2017-11-01 21:53:43 +00:00
|
|
|
case DST_MEMORY_TABLE:
|
2017-11-27 19:03:34 +00:00
|
|
|
dst_table_deinit((DstTable*) mem);
|
2017-03-07 20:29:40 +00:00
|
|
|
break;
|
2017-11-06 03:05:47 +00:00
|
|
|
case DST_MEMORY_FIBER:
|
|
|
|
free(((DstFiber *) mem)->data);
|
2017-04-15 20:05:59 +00:00
|
|
|
break;
|
2017-11-01 21:53:43 +00:00
|
|
|
case DST_MEMORY_BUFFER:
|
2017-11-27 19:03:34 +00:00
|
|
|
dst_buffer_deinit((DstBuffer *) mem);
|
2017-11-01 21:53:43 +00:00
|
|
|
break;
|
|
|
|
case DST_MEMORY_FUNCTION:
|
2017-11-06 03:05:47 +00:00
|
|
|
free(((DstFunction *)mem)->envs);
|
2017-02-23 22:21:13 +00:00
|
|
|
break;
|
2017-11-01 21:53:43 +00:00
|
|
|
case DST_MEMORY_USERDATA:
|
|
|
|
if (h->type->finalize)
|
2017-11-06 03:05:47 +00:00
|
|
|
h->type->finalize((void *)(h + 1), h->size);
|
2017-02-23 22:21:13 +00:00
|
|
|
break;
|
2017-11-01 21:53:43 +00:00
|
|
|
case DST_MEMORY_FUNCENV:
|
|
|
|
{
|
|
|
|
DstFuncEnv *env = (DstFuncEnv *)mem;
|
2017-11-06 03:05:47 +00:00
|
|
|
if (0 == env->offset)
|
|
|
|
free(env->as.values);
|
2017-02-23 22:21:13 +00:00
|
|
|
}
|
|
|
|
break;
|
2017-11-01 21:53:43 +00:00
|
|
|
case DST_MEMORY_FUNCDEF:
|
2017-09-09 18:39:51 +00:00
|
|
|
{
|
2017-11-06 03:05:47 +00:00
|
|
|
DstFuncDef *def = (DstFuncDef *)mem;
|
2017-11-01 21:53:43 +00:00
|
|
|
/* TODO - get this all with one alloc and one free */
|
2017-11-06 03:05:47 +00:00
|
|
|
free(def->environments);
|
|
|
|
free(def->constants);
|
|
|
|
free(def->bytecode);
|
2017-03-09 18:49:46 +00:00
|
|
|
}
|
2017-04-26 14:21:03 +00:00
|
|
|
break;
|
2017-02-23 22:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Iterate over all allocated memory, and free memory that is not
|
|
|
|
* marked as reachable. Flip the gc color flag for next sweep. */
|
2017-11-06 03:05:47 +00:00
|
|
|
void dst_sweep() {
|
|
|
|
DstGCMemoryHeader *previous = NULL;
|
|
|
|
DstGCMemoryHeader *current = dst_vm_blocks;
|
|
|
|
DstGCMemoryHeader *next;
|
2017-11-27 19:03:34 +00:00
|
|
|
while (NULL != current) {
|
2017-02-23 22:21:13 +00:00
|
|
|
next = current->next;
|
2017-11-01 21:53:43 +00:00
|
|
|
if (current->flags & (DST_MEM_REACHABLE | DST_MEM_DISABLED)) {
|
|
|
|
previous = current;
|
2017-11-27 19:03:34 +00:00
|
|
|
current->flags &= ~DST_MEM_REACHABLE;
|
2017-11-01 21:53:43 +00:00
|
|
|
} else {
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_deinit_block(current);
|
2017-11-27 19:03:34 +00:00
|
|
|
if (NULL != previous) {
|
2017-02-23 22:21:13 +00:00
|
|
|
previous->next = next;
|
|
|
|
} else {
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_vm_blocks = next;
|
2017-02-23 22:21:13 +00:00
|
|
|
}
|
2017-11-01 21:53:43 +00:00
|
|
|
free(current);
|
2017-02-23 22:21:13 +00:00
|
|
|
}
|
|
|
|
current = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
/* Allocate some memory that is tracked for garbage collection */
|
2017-11-06 03:05:47 +00:00
|
|
|
void *dst_alloc(DstMemoryType type, size_t size) {
|
|
|
|
DstGCMemoryHeader *mdata;
|
|
|
|
size_t total = size + sizeof(DstGCMemoryHeader);
|
2017-11-06 14:44:10 +00:00
|
|
|
|
|
|
|
/* Make sure everything is inited */
|
|
|
|
if (NULL == dst_vm_cache) {
|
|
|
|
DST_PLEASE_INIT;
|
|
|
|
}
|
2017-11-06 03:05:47 +00:00
|
|
|
void *mem = malloc(total);
|
2017-11-01 21:53:43 +00:00
|
|
|
|
|
|
|
/* Check for bad malloc */
|
|
|
|
if (NULL == mem) {
|
|
|
|
DST_OUT_OF_MEMORY;
|
2017-02-23 22:21:13 +00:00
|
|
|
}
|
2017-11-01 21:53:43 +00:00
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
mdata = (DstGCMemoryHeader *)mem;
|
2017-02-23 22:21:13 +00:00
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
/* Configure block */
|
|
|
|
mdata->flags = type;
|
2017-02-23 22:21:13 +00:00
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
/* Prepend block to heap list */
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_vm_next_collection += size;
|
|
|
|
mdata->next = dst_vm_blocks;
|
|
|
|
dst_vm_blocks = mdata;
|
2017-02-23 22:21:13 +00:00
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
return mem + sizeof(DstGCMemoryHeader);
|
2017-03-22 04:27:18 +00:00
|
|
|
}
|
|
|
|
|
2017-02-23 22:21:13 +00:00
|
|
|
/* Run garbage collection */
|
2017-11-06 03:05:47 +00:00
|
|
|
void dst_collect() {
|
|
|
|
if (dst_vm_fiber)
|
|
|
|
dst_mark_fiber(dst_vm_fiber);
|
|
|
|
dst_sweep();
|
|
|
|
dst_vm_next_collection = 0;
|
2017-02-23 22:21:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Free all allocated memory */
|
2017-11-06 03:05:47 +00:00
|
|
|
void dst_clear_memory() {
|
|
|
|
DstGCMemoryHeader *current = dst_vm_blocks;
|
2017-02-23 22:21:13 +00:00
|
|
|
while (current) {
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_deinit_block(current);
|
|
|
|
DstGCMemoryHeader *next = current->next;
|
2017-11-01 21:53:43 +00:00
|
|
|
free(current);
|
2017-02-23 22:21:13 +00:00
|
|
|
current = next;
|
|
|
|
}
|
2017-11-06 03:05:47 +00:00
|
|
|
dst_vm_blocks = NULL;
|
2017-03-01 01:20:29 +00:00
|
|
|
}
|