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
|
/*
** Garbage Collector
** See Copyright Notice in lua.h
*/
#define FORBIDDEN_SYMBOL_EXCEPTION_setjmp
#define FORBIDDEN_SYMBOL_EXCEPTION_longjmp
#include "engines/grim/lua/ldo.h"
#include "engines/grim/lua/lfunc.h"
#include "engines/grim/lua/lgc.h"
#include "engines/grim/lua/lmem.h"
#include "engines/grim/lua/lobject.h"
#include "engines/grim/lua/lstate.h"
#include "engines/grim/lua/lstring.h"
#include "engines/grim/lua/ltable.h"
#include "engines/grim/lua/ltm.h"
#include "engines/grim/lua/lua.h"
namespace Grim {
static int32 markobject (TObject *o);
/*
** =======================================================
** REF mechanism
** =======================================================
*/
int32 luaC_ref(TObject *o, int32 lock) {
int32 ref;
if (ttype(o) == LUA_T_NIL)
ref = -1; // special ref for nil
else {
for (ref = 0; ref < refSize; ref++)
if (refArray[ref].status == FREE)
goto found;
// no more empty spaces
{
int32 oldSize = refSize;
refSize = luaM_growvector(&refArray, refSize, struct ref, refEM, MAX_WORD);
for (ref = oldSize; ref < refSize; ref++) {
refArray[ref].status = FREE;
refArray[ref].o.ttype = LUA_T_NIL;
refArray[ref].o.value.ts = nullptr;
}
ref = oldSize;
}
found:
refArray[ref].o = *o;
refArray[ref].status = lock ? LOCK : HOLD;
}
return ref;
}
void lua_unref(int32 r) {
if (r >= 0 && r < refSize) {
refArray[r].status = FREE;
refArray[r].o.ttype = LUA_T_NIL;
refArray[r].o.value.ts = nullptr;
}
}
TObject* luaC_getref(int32 r) {
if (r == -1)
return &luaO_nilobject;
if (r >= 0 && r < refSize && (refArray[r].status == LOCK || refArray[r].status == HOLD))
return &refArray[r].o;
else
return nullptr;
}
static void travlock() {
int32 i;
for (i = 0; i < refSize; i++) {
if (refArray[i].status == LOCK) {
markobject(&refArray[i].o);
}
}
}
static int32 ismarked(TObject *o) {
// valid only for locked objects
switch (o->ttype) {
case LUA_T_STRING:
return o->value.ts->head.marked;
case LUA_T_ARRAY:
return o->value.a->head.marked;
case LUA_T_CLOSURE:
return o->value.cl->head.marked;
case LUA_T_PROTO:
return o->value.tf->head.marked;
#ifdef LUA_DEBUG
case LUA_T_LINE:
case LUA_T_CLMARK:
case LUA_T_CMARK:
case LUA_T_PMARK:
LUA_INTERNALERROR("internal error");
#endif
default: // nil, number or cproto
return 1;
}
}
static void invalidaterefs() {
int32 i;
for (i = 0; i < refSize; i++)
if (refArray[i].status == HOLD && !ismarked(&refArray[i].o))
refArray[i].status = COLLECTED;
}
void luaC_hashcallIM(Hash *l) {
TObject t;
ttype(&t) = LUA_T_ARRAY;
for (; l; l = (Hash *)l->head.next) {
avalue(&t) = l;
luaD_gcIM(&t);
}
}
void luaC_strcallIM(TaggedString *l) {
TObject o;
ttype(&o) = LUA_T_USERDATA;
for (; l; l=(TaggedString *)l->head.next) {
if (l->constindex == -1) { // is userdata?
tsvalue(&o) = l;
luaD_gcIM(&o);
}
}
}
static GCnode *listcollect(GCnode *l) {
GCnode *frees = nullptr;
while (l) {
GCnode *next = l->next;
l->marked = 0;
while (next && !next->marked) {
l->next = next->next;
next->next = frees;
frees = next;
next = l->next;
}
l = next;
}
return frees;
}
static void strmark(TaggedString *s) {
if (!s->head.marked)
s->head.marked = 1;
}
static void protomark(TProtoFunc *f) {
if (!f->head.marked) {
LocVar *v = f->locvars;
int32 i;
f->head.marked = 1;
if (f->fileName)
strmark(f->fileName);
for (i = 0; i < f->nconsts; i++)
markobject(&f->consts[i]);
if (v) {
for (; v->line != -1; v++) {
if (v->varname)
strmark(v->varname);
}
}
}
}
static void closuremark(Closure *f) {
if (!f->head.marked) {
int32 i;
f->head.marked = 1;
for (i = f->nelems; i >= 0; i--)
markobject(&f->consts[i]);
}
}
static void hashmark(Hash *h) {
if (!h->head.marked) {
int32 i;
h->head.marked = 1;
for (i = 0; i < nhash(h); i++) {
Node *n = node(h, i);
if (ttype(ref(n)) != LUA_T_NIL) {
markobject(&n->ref);
markobject(&n->val);
}
}
}
}
static void globalmark() {
TaggedString *g;
for (g = (TaggedString *)rootglobal.next; g; g = (TaggedString *)g->head.next){
if (g->globalval.ttype != LUA_T_NIL) {
markobject(&g->globalval);
strmark(g); // cannot collect non nil global variables
}
}
}
static int32 markobject(TObject *o) {
switch (ttype(o)) {
case LUA_T_STRING:
strmark(tsvalue(o));
break;
case LUA_T_ARRAY:
hashmark(avalue(o));
break;
case LUA_T_CLOSURE:
case LUA_T_CLMARK:
closuremark(o->value.cl);
break;
case LUA_T_PROTO:
case LUA_T_PMARK:
protomark(o->value.tf);
break;
default:
break; // numbers, cprotos, etc
}
return 0;
}
static void markall() {
luaD_travstack(markobject); // mark stack objects
globalmark(); // mark global variable values and names
travlock(); // mark locked objects
luaT_travtagmethods(markobject); // mark fallbacks
}
int32 lua_collectgarbage(int32 limit) {
int32 recovered = nblocks; // to subtract nblocks after gc
Hash *freetable;
TaggedString *freestr;
TProtoFunc *freefunc;
Closure *freeclos;
markall();
invalidaterefs();
freestr = luaS_collector();
freetable = (Hash *)listcollect(&roottable);
freefunc = (TProtoFunc *)listcollect(&rootproto);
freeclos = (Closure *)listcollect(&rootcl);
GCthreshold *= 4; // to avoid GC during GC
luaC_hashcallIM(freetable); // GC tag methods for tables
luaC_strcallIM(freestr); // GC tag methods for userdata
luaD_gcIM(&luaO_nilobject); // GC tag method for nil (signal end of GC)
luaH_free(freetable);
luaS_free(freestr);
luaF_freeproto(freefunc);
luaF_freeclosure(freeclos);
recovered = recovered - nblocks;
GCthreshold = (limit == 0) ? 2 * nblocks : nblocks + limit;
return recovered;
}
void luaC_checkGC() {
if (nblocks >= GCthreshold)
lua_collectgarbage(0);
}
} // end of namespace Grim
|