lua/lgc.h

114 lines
3.2 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lgc.h,v 2.17 2007/10/29 16:51:20 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Garbage Collector
** See Copyright Notice in lua.h
*/
#ifndef lgc_h
#define lgc_h
#include "lobject.h"
2003-12-01 19:33:30 +03:00
/*
** Possible states of the Garbage Collector
*/
2004-08-30 17:44:44 +04:00
#define GCSpause 0
#define GCSpropagate 1
#define GCSsweepstring 2
#define GCSsweeptmu 3
#define GCSsweep 4
#define GCSfinalize 5
#define issweep(g) \
(GCSsweepstring <= (g)->gcstate && (g)->gcstate <= GCSsweep)
2003-12-01 19:33:30 +03:00
/*
** some userful bit tricks
*/
#define resetbits(x,m) ((x) &= cast(lu_byte, ~(m)))
#define setbits(x,m) ((x) |= (m))
#define testbits(x,m) ((x) & (m))
#define bitmask(b) (1<<(b))
#define bit2mask(b1,b2) (bitmask(b1) | bitmask(b2))
2005-02-23 20:30:22 +03:00
#define l_setbit(x,b) setbits(x, bitmask(b))
#define resetbit(x,b) resetbits(x, bitmask(b))
#define testbit(x,b) testbits(x, bitmask(b))
#define set2bits(x,b1,b2) setbits(x, (bit2mask(b1, b2)))
#define reset2bits(x,b1,b2) resetbits(x, (bit2mask(b1, b2)))
/*
** Layout for bit use in `marked' field:
** bit 0 - object is white (type 0)
** bit 1 - object is white (type 1)
** bit 2 - object is black
** bit 3 - for userdata: has been finalized
** bit 4 - for userdata: it's not in rootgc list (it's in tmudata or tobefnz)
** bit 5 - object is fixed (should not be collected)
2005-02-10 16:25:02 +03:00
** bit 6 - object is "super" fixed (only the main thread)
*/
2005-02-10 16:25:02 +03:00
#define WHITE0BIT 0
#define WHITE1BIT 1
#define BLACKBIT 2
#define FINALIZEDBIT 3
#define SEPARATED 4
#define FIXEDBIT 5
2005-02-10 16:25:02 +03:00
#define SFIXEDBIT 6
#define WHITEBITS bit2mask(WHITE0BIT, WHITE1BIT)
#define iswhite(x) testbits((x)->gch.marked, WHITEBITS)
2003-12-09 19:56:11 +03:00
#define isblack(x) testbit((x)->gch.marked, BLACKBIT)
2004-03-16 00:04:33 +03:00
#define isgray(x) (!isblack(x) && !iswhite(x))
2003-12-09 19:56:11 +03:00
2005-02-10 16:25:02 +03:00
#define otherwhite(g) (g->currentwhite ^ WHITEBITS)
#define isdead(g,v) ((v)->gch.marked & otherwhite(g) & WHITEBITS)
2003-12-09 19:56:11 +03:00
2005-02-10 16:25:02 +03:00
#define changewhite(x) ((x)->gch.marked ^= WHITEBITS)
2005-02-23 20:30:22 +03:00
#define gray2black(x) l_setbit((x)->gch.marked, BLACKBIT)
2003-12-09 19:56:11 +03:00
#define valiswhite(x) (iscollectable(x) && iswhite(gcvalue(x)))
2005-02-10 16:25:02 +03:00
#define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
#define luaC_checkGC(L) { \
condhardstacktests(luaD_reallocstack(L, L->stacksize - EXTRA_STACK - 1)); \
if (G(L)->totalbytes >= G(L)->GCthreshold) \
2003-12-09 19:56:11 +03:00
luaC_step(L); }
#define luaC_barrier(L,p,v) { if (valiswhite(v) && isblack(obj2gco(p))) \
luaC_barrierf(L,obj2gco(p),gcvalue(v)); }
2001-06-05 23:41:24 +04:00
2005-06-07 22:53:45 +04:00
#define luaC_barriert(L,t,v) { if (valiswhite(v) && isblack(obj2gco(t))) \
luaC_barrierback(L,t); }
2003-12-09 19:56:11 +03:00
#define luaC_objbarrier(L,p,o) \
{ if (iswhite(obj2gco(o)) && isblack(obj2gco(p))) \
luaC_barrierf(L,obj2gco(p),obj2gco(o)); }
2001-06-05 23:41:24 +04:00
2005-06-07 22:53:45 +04:00
#define luaC_objbarriert(L,t,o) \
{ if (iswhite(obj2gco(o)) && isblack(obj2gco(t))) luaC_barrierback(L,t); }
LUAI_FUNC size_t luaC_separateudata (lua_State *L, int all);
LUAI_FUNC void luaC_callGCTM (lua_State *L);
LUAI_FUNC void luaC_freeall (lua_State *L);
LUAI_FUNC void luaC_step (lua_State *L);
LUAI_FUNC void luaC_fullgc (lua_State *L, int isemergency);
LUAI_FUNC void luaC_link (lua_State *L, GCObject *o, lu_byte tt);
LUAI_FUNC void luaC_linkupval (lua_State *L, UpVal *uv);
LUAI_FUNC void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v);
2005-06-07 22:53:45 +04:00
LUAI_FUNC void luaC_barrierback (lua_State *L, Table *t);
LUAI_FUNC void luaC_checkfinalizer (lua_State *L, Udata *u);
1997-09-16 23:25:59 +04:00
#endif