1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2015-10-20 20:56:21 +03:00
|
|
|
** $Id: lgc.h,v 2.87 2015/08/03 19:40:42 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"
|
2010-04-30 01:43:36 +04:00
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2010-04-30 22:36:45 +04:00
|
|
|
/*
|
|
|
|
** Collectable objects may have one of three colors: white, which
|
|
|
|
** means the object is not marked; gray, which means the
|
|
|
|
** object is marked, but its references may be not marked; and
|
|
|
|
** black, which means that the object and all its references are marked.
|
|
|
|
** The main invariant of the garbage collector, while marking objects,
|
|
|
|
** is that a black object can never point to a white one. Moreover,
|
|
|
|
** any gray object must be in a "gray list" (gray, grayagain, weak,
|
|
|
|
** allweak, ephemeron) so that it can be visited again before finishing
|
2012-05-23 19:43:14 +04:00
|
|
|
** the collection cycle. These lists have no meaning when the invariant
|
|
|
|
** is not being enforced (e.g., sweep phase).
|
2010-04-30 22:36:45 +04:00
|
|
|
*/
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2012-05-23 19:43:14 +04:00
|
|
|
|
|
|
|
/* how much to allocate before next GC step */
|
|
|
|
#if !defined(GCSTEPSIZE)
|
|
|
|
/* ~100 small strings */
|
|
|
|
#define GCSTEPSIZE (cast_int(100 * sizeof(TString)))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2003-12-01 19:33:30 +03:00
|
|
|
/*
|
|
|
|
** Possible states of the Garbage Collector
|
|
|
|
*/
|
2010-05-03 15:24:30 +04:00
|
|
|
#define GCSpropagate 0
|
|
|
|
#define GCSatomic 1
|
2014-02-13 16:11:34 +04:00
|
|
|
#define GCSswpallgc 2
|
2014-02-18 17:46:26 +04:00
|
|
|
#define GCSswpfinobj 3
|
|
|
|
#define GCSswptobefnz 4
|
|
|
|
#define GCSswpend 5
|
|
|
|
#define GCScallfin 6
|
|
|
|
#define GCSpause 7
|
2008-02-19 21:55:09 +03:00
|
|
|
|
|
|
|
|
2010-04-29 21:32:40 +04:00
|
|
|
#define issweepphase(g) \
|
2014-02-13 16:11:34 +04:00
|
|
|
(GCSswpallgc <= (g)->gcstate && (g)->gcstate <= GCSswpend)
|
2010-04-29 21:32:40 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2013-08-05 20:58:28 +04:00
|
|
|
** macro to tell when main invariant (white objects cannot point to black
|
|
|
|
** ones) must be kept. During a collection, the sweep
|
2010-06-30 18:11:17 +04:00
|
|
|
** phase may break the invariant, as objects turned white may point to
|
2010-04-29 21:32:40 +04:00
|
|
|
** still-black objects. The invariant is restored when sweep ends and
|
2013-08-05 20:58:28 +04:00
|
|
|
** all objects are white again.
|
2010-04-29 21:32:40 +04:00
|
|
|
*/
|
2012-09-11 16:53:08 +04:00
|
|
|
|
2013-08-27 22:53:35 +04:00
|
|
|
#define keepinvariant(g) ((g)->gcstate <= GCSatomic)
|
2010-04-29 21:32:40 +04:00
|
|
|
|
|
|
|
|
2003-11-17 22:50:05 +03:00
|
|
|
/*
|
2009-11-26 14:39:20 +03:00
|
|
|
** some useful bit tricks
|
2003-12-03 23:03:07 +03:00
|
|
|
*/
|
2008-06-26 23:42:45 +04:00
|
|
|
#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))
|
|
|
|
#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))
|
2003-11-17 22:50:05 +03:00
|
|
|
|
|
|
|
|
2014-10-25 15:50:46 +04:00
|
|
|
/* Layout for bit use in 'marked' field: */
|
2010-05-06 22:17:22 +04:00
|
|
|
#define WHITE0BIT 0 /* object is white (type 0) */
|
|
|
|
#define WHITE1BIT 1 /* object is white (type 1) */
|
|
|
|
#define BLACKBIT 2 /* object is black */
|
2013-08-20 21:46:34 +04:00
|
|
|
#define FINALIZEDBIT 3 /* object has been marked for finalization */
|
2010-05-10 20:46:49 +04:00
|
|
|
/* bit 7 is currently used by tests (luaL_checkmemory) */
|
2010-03-24 16:07:01 +03:00
|
|
|
|
2005-02-10 16:25:02 +03:00
|
|
|
#define WHITEBITS bit2mask(WHITE0BIT, WHITE1BIT)
|
2003-12-03 23:03:07 +03:00
|
|
|
|
2003-11-17 22:50:05 +03:00
|
|
|
|
2014-07-17 21:27:49 +04:00
|
|
|
#define iswhite(x) testbits((x)->marked, WHITEBITS)
|
|
|
|
#define isblack(x) testbit((x)->marked, BLACKBIT)
|
2010-05-07 22:43:51 +04:00
|
|
|
#define isgray(x) /* neither white nor black */ \
|
2014-07-17 21:27:49 +04:00
|
|
|
(!testbits((x)->marked, WHITEBITS | bitmask(BLACKBIT)))
|
2003-12-09 19:56:11 +03:00
|
|
|
|
2014-07-17 21:27:49 +04:00
|
|
|
#define tofinalize(x) testbit((x)->marked, FINALIZEDBIT)
|
2010-05-07 22:08:05 +04:00
|
|
|
|
2013-08-27 22:53:35 +04:00
|
|
|
#define otherwhite(g) ((g)->currentwhite ^ WHITEBITS)
|
2010-05-07 22:08:05 +04:00
|
|
|
#define isdeadm(ow,m) (!(((m) ^ WHITEBITS) & (ow)))
|
2014-07-17 21:27:49 +04:00
|
|
|
#define isdead(g,v) isdeadm(otherwhite(g), (v)->marked)
|
2003-12-09 19:56:11 +03:00
|
|
|
|
2014-07-17 21:27:49 +04:00
|
|
|
#define changewhite(x) ((x)->marked ^= WHITEBITS)
|
|
|
|
#define gray2black(x) l_setbit((x)->marked, BLACKBIT)
|
2003-12-09 19:56:11 +03:00
|
|
|
|
2005-02-10 16:25:02 +03:00
|
|
|
#define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
|
2003-11-17 22:50:05 +03:00
|
|
|
|
|
|
|
|
2015-10-20 20:56:21 +03:00
|
|
|
#define luaC_condGC(L,pre,pos) \
|
|
|
|
{if (G(L)->GCdebt > 0) { pre; luaC_step(L); pos;}; condchangemem(L);}
|
|
|
|
|
|
|
|
#define luaC_checkGC(L) luaC_condGC(L,,)
|
2003-12-09 19:56:11 +03:00
|
|
|
|
|
|
|
|
2015-08-03 22:40:42 +03:00
|
|
|
#define luaC_barrier(L,p,v) ( \
|
|
|
|
(iscollectable(v) && isblack(p) && iswhite(gcvalue(v))) ? \
|
|
|
|
luaC_barrier_(L,obj2gco(p),gcvalue(v)) : cast_void(0))
|
2001-06-05 23:41:24 +04:00
|
|
|
|
2015-08-03 22:40:42 +03:00
|
|
|
#define luaC_barrierback(L,p,v) ( \
|
|
|
|
(iscollectable(v) && isblack(p) && iswhite(gcvalue(v))) ? \
|
|
|
|
luaC_barrierback_(L,p) : cast_void(0))
|
2004-08-10 23:17:23 +04:00
|
|
|
|
2015-08-03 22:40:42 +03:00
|
|
|
#define luaC_objbarrier(L,p,o) ( \
|
|
|
|
(isblack(p) && iswhite(o)) ? \
|
|
|
|
luaC_barrier_(L,obj2gco(p),obj2gco(o)) : cast_void(0))
|
2001-06-05 23:41:24 +04:00
|
|
|
|
2015-08-03 22:40:42 +03:00
|
|
|
#define luaC_upvalbarrier(L,uv) ( \
|
|
|
|
(iscollectable((uv)->v) && !upisopen(uv)) ? \
|
|
|
|
luaC_upvalbarrier_(L,uv) : cast_void(0))
|
2013-08-27 22:53:35 +04:00
|
|
|
|
2013-08-22 00:09:51 +04:00
|
|
|
LUAI_FUNC void luaC_fix (lua_State *L, GCObject *o);
|
2009-11-18 16:13:47 +03:00
|
|
|
LUAI_FUNC void luaC_freeallobjects (lua_State *L);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC void luaC_step (lua_State *L);
|
2009-12-12 00:31:14 +03:00
|
|
|
LUAI_FUNC void luaC_runtilstate (lua_State *L, int statesmask);
|
2006-07-11 19:53:29 +04:00
|
|
|
LUAI_FUNC void luaC_fullgc (lua_State *L, int isemergency);
|
2013-09-11 16:26:14 +04:00
|
|
|
LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz);
|
2010-06-04 17:25:10 +04:00
|
|
|
LUAI_FUNC void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v);
|
2014-07-19 19:09:37 +04:00
|
|
|
LUAI_FUNC void luaC_barrierback_ (lua_State *L, Table *o);
|
2013-08-27 22:53:35 +04:00
|
|
|
LUAI_FUNC void luaC_upvalbarrier_ (lua_State *L, UpVal *uv);
|
2010-11-26 17:32:31 +03:00
|
|
|
LUAI_FUNC void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt);
|
2013-08-27 22:53:35 +04:00
|
|
|
LUAI_FUNC void luaC_upvdeccount (lua_State *L, UpVal *uv);
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#endif
|