22 lines
702 B
C
22 lines
702 B
C
#pragma once
|
|
|
|
#include "kuroko.h"
|
|
#include "object.h"
|
|
#include "table.h"
|
|
|
|
#define GROW_CAPACITY(c) ((c) < 8 ? 8 : (c) * 2)
|
|
#define GROW_ARRAY(t,p,o,n) (t*)krk_reallocate(p,sizeof(t)*o,sizeof(t)*n)
|
|
|
|
#define FREE_ARRAY(t,a,c) krk_reallocate(a,sizeof(t) * c, 0)
|
|
#define FREE(t,p) krk_reallocate(p,sizeof(t),0)
|
|
|
|
#define ALLOCATE(type, count) (type*)krk_reallocate(NULL,0,sizeof(type)*(count))
|
|
|
|
extern void * krk_reallocate(void *, size_t, size_t);
|
|
extern void krk_freeObjects(void);
|
|
extern void krk_collectGarbage(void);
|
|
extern void krk_markValue(KrkValue value);
|
|
extern void krk_markObject(KrkObj * object);
|
|
extern void krk_markTable(KrkTable * table);
|
|
extern void krk_tableRemoveWhite(KrkTable * table);
|