support for multiple stacks sharing the same global environment

This commit is contained in:
Roberto Ierusalimschy 2001-01-22 16:01:38 -02:00
parent 4ac58853dc
commit 6fda6a5302
6 changed files with 134 additions and 83 deletions

74
lgc.c
View File

@ -1,5 +1,5 @@
/* /*
** $Id: lgc.c,v 1.76 2001/01/18 15:59:09 roberto Exp roberto $ ** $Id: lgc.c,v 1.77 2001/01/19 13:20:30 roberto Exp roberto $
** Garbage Collector ** Garbage Collector
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -47,22 +47,6 @@ static void protomark (Proto *f) {
} }
static void markstack (lua_State *L, GCState *st) {
StkId o;
for (o=L->stack; o<L->top; o++)
markobject(st, o);
}
static void marklock (global_State *G, GCState *st) {
int i;
for (i=0; i<G->nref; i++) {
if (G->refArray[i].st == LOCK)
markobject(st, &G->refArray[i].o);
}
}
static void markclosure (GCState *st, Closure *cl) { static void markclosure (GCState *st, Closure *cl) {
if (!ismarked(cl)) { if (!ismarked(cl)) {
if (!cl->isC) if (!cl->isC)
@ -73,14 +57,10 @@ static void markclosure (GCState *st, Closure *cl) {
} }
static void marktagmethods (global_State *G, GCState *st) { static void marktable (GCState *st, Hash *h) {
int e; if (!ismarked(h)) {
for (e=0; e<TM_N; e++) { h->mark = st->tmark; /* chain it in list of marked */
int t; st->tmark = h;
for (t=0; t<G->ntag; t++) {
Closure *cl = luaT_gettm(G, t, e);
if (cl) markclosure(st, cl);
}
} }
} }
@ -97,10 +77,7 @@ static void markobject (GCState *st, TObject *o) {
markclosure(st, clvalue(o)); markclosure(st, clvalue(o));
break; break;
case LUA_TTABLE: { case LUA_TTABLE: {
if (!ismarked(hvalue(o))) { marktable(st, hvalue(o));
hvalue(o)->mark = st->tmark; /* chain it in list of marked */
st->tmark = hvalue(o);
}
break; break;
} }
default: break; /* numbers, etc */ default: break; /* numbers, etc */
@ -108,13 +85,46 @@ static void markobject (GCState *st, TObject *o) {
} }
static void markstacks (lua_State *L, GCState *st) {
lua_State *L1 = L;
do { /* for each thread */
StkId o;
marktable(st, L1->gt); /* mark table of globals */
for (o=L1->stack; o<L1->top; o++)
markobject(st, o);
lua_assert(L->previous->next == L && L->next->previous == L);
L1 = L1->next;
} while (L1 != L);
}
static void marklock (global_State *G, GCState *st) {
int i;
for (i=0; i<G->nref; i++) {
if (G->refArray[i].st == LOCK)
markobject(st, &G->refArray[i].o);
}
}
static void marktagmethods (global_State *G, GCState *st) {
int e;
for (e=0; e<TM_N; e++) {
int t;
for (t=0; t<G->ntag; t++) {
Closure *cl = luaT_gettm(G, t, e);
if (cl) markclosure(st, cl);
}
}
}
static void markall (lua_State *L) { static void markall (lua_State *L) {
GCState st; GCState st;
st.cmark = NULL; st.cmark = NULL;
st.tmark = L->gt; /* put table of globals in mark list */ st.tmark = NULL;
L->gt->mark = NULL;
marktagmethods(G(L), &st); /* mark tag methods */ marktagmethods(G(L), &st); /* mark tag methods */
markstack(L, &st); /* mark stack objects */ markstacks(L, &st); /* mark all stacks */
marklock(G(L), &st); /* mark locked objects */ marklock(G(L), &st); /* mark locked objects */
for (;;) { /* mark tables and closures */ for (;;) { /* mark tables and closures */
if (st.cmark) { if (st.cmark) {

111
lstate.c
View File

@ -1,5 +1,5 @@
/* /*
** $Id: lstate.c,v 1.50 2000/12/28 12:55:41 roberto Exp roberto $ ** $Id: lstate.c,v 1.51 2001/01/19 13:20:30 roberto Exp roberto $
** Global State ** Global State
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -38,52 +38,70 @@ static int errormessage (lua_State *L) {
} }
struct Sopen {
int stacksize;
lua_State *L;
};
/* /*
** open parts that may cause memory-allocation errors ** open parts that may cause memory-allocation errors
*/ */
static void f_luaopen (lua_State *L, void *ud) { static void f_luaopen (lua_State *L, void *ud) {
int stacksize = *(int *)ud; struct Sopen *so = (struct Sopen *)ud;
if (stacksize == 0) if (so->stacksize == 0)
stacksize = DEFAULT_STACK_SIZE; so->stacksize = DEFAULT_STACK_SIZE;
else else
stacksize += LUA_MINSTACK; so->stacksize += LUA_MINSTACK;
L->G = luaM_new(L, global_State); if (so->L != NULL) { /* shared global state? */
G(L)->strt.size = G(L)->udt.size = 0; L->G = G(so->L);
G(L)->strt.nuse = G(L)->udt.nuse = 0; L->gt = so->L->gt; /* share table of globals */
G(L)->strt.hash = G(L)->udt.hash = NULL; so->L->next->previous = L; /* insert L into linked list */
G(L)->Mbuffer = NULL; L->next = so->L->next;
G(L)->Mbuffsize = 0; so->L->next = L;
G(L)->rootproto = NULL; L->previous = so->L;
G(L)->rootcl = NULL; luaD_init(L, so->stacksize); /* init stack */
G(L)->roottable = NULL; }
G(L)->TMtable = NULL; else { /* create a new global state */
G(L)->sizeTM = 0; L->G = luaM_new(L, global_State);
G(L)->ntag = 0; G(L)->strt.size = G(L)->udt.size = 0;
G(L)->refArray = NULL; G(L)->strt.nuse = G(L)->udt.nuse = 0;
G(L)->nref = 0; G(L)->strt.hash = G(L)->udt.hash = NULL;
G(L)->sizeref = 0; G(L)->Mbuffer = NULL;
G(L)->refFree = NONEXT; G(L)->Mbuffsize = 0;
G(L)->nblocks = sizeof(lua_State) + sizeof(global_State); G(L)->rootproto = NULL;
G(L)->GCthreshold = MAX_INT; /* to avoid GC during pre-definitions */ G(L)->rootcl = NULL;
L->gt = luaH_new(L, 10); /* table of globals */ G(L)->roottable = NULL;
luaD_init(L, stacksize); G(L)->TMtable = NULL;
luaS_init(L); G(L)->sizeTM = 0;
luaX_init(L); G(L)->ntag = 0;
luaT_init(L); G(L)->refArray = NULL;
lua_newtable(L); G(L)->nref = 0;
lua_ref(L, 1); /* create registry */ G(L)->sizeref = 0;
lua_register(L, LUA_ERRORMESSAGE, errormessage); G(L)->refFree = NONEXT;
G(L)->nblocks = sizeof(lua_State) + sizeof(global_State);
G(L)->GCthreshold = MAX_INT; /* to avoid GC during pre-definitions */
luaD_init(L, so->stacksize); /* init stack */
L->gt = luaH_new(L, 10); /* table of globals */
luaS_init(L);
luaX_init(L);
luaT_init(L);
lua_newtable(L);
lua_ref(L, 1); /* create registry */
lua_register(L, LUA_ERRORMESSAGE, errormessage);
#ifdef LUA_DEBUG #ifdef LUA_DEBUG
luaB_opentests(L); luaB_opentests(L);
if (lua_state == NULL) lua_state = L; /* keep first state to be opened */ if (lua_state == NULL) lua_state = L; /* keep first state to be opened */
lua_assert(lua_gettop(L) == 0); lua_assert(lua_gettop(L) == 0);
#endif #endif
G(L)->GCthreshold = 2*G(L)->nblocks;
}
} }
LUA_API lua_State *lua_open (int stacksize) { LUA_API lua_State *lua_open (lua_State *OL, int stacksize) {
lua_State *L; struct Sopen so;
L = luaM_new(NULL, lua_State); lua_State *L = luaM_new(OL, lua_State);
if (L == NULL) return NULL; /* memory allocation error */ if (L == NULL) return NULL; /* memory allocation error */
L->G = NULL; L->G = NULL;
L->stack = NULL; L->stack = NULL;
@ -92,19 +110,28 @@ LUA_API lua_State *lua_open (int stacksize) {
L->callhook = NULL; L->callhook = NULL;
L->linehook = NULL; L->linehook = NULL;
L->allowhooks = 1; L->allowhooks = 1;
if (luaD_runprotected(L, f_luaopen, &stacksize) != 0) { L->next = L->previous = L;
so.stacksize = stacksize;
so.L = OL;
if (luaD_runprotected(L, f_luaopen, &so) != 0) {
/* memory allocation error: free partial state */ /* memory allocation error: free partial state */
lua_close(L); lua_close(L);
return NULL; return NULL;
} }
G(L)->GCthreshold = 2*G(L)->nblocks;
return L; return L;
} }
LUA_API void lua_close (lua_State *L) { LUA_API void lua_close (lua_State *L) {
lua_State *L1 = L->next; /* any surviving thread (if there is one) */
lua_assert(L != lua_state || lua_gettop(L) == 0); lua_assert(L != lua_state || lua_gettop(L) == 0);
if (G(L)) { /* close global state */ if (L1 == L) L1 = NULL; /* no surviving threads */
if (L1 != NULL) { /* are there other threads? */
lua_assert(L->previous != L);
L->previous->next = L->next;
L->next->previous = L->previous;
}
else if (G(L)) { /* last thread; close global state */
luaC_collect(L, 1); /* collect all elements */ luaC_collect(L, 1); /* collect all elements */
lua_assert(G(L)->rootproto == NULL); lua_assert(G(L)->rootproto == NULL);
lua_assert(G(L)->rootcl == NULL); lua_assert(G(L)->rootcl == NULL);
@ -115,8 +142,8 @@ LUA_API void lua_close (lua_State *L) {
luaM_freearray(L, G(L)->Mbuffer, G(L)->Mbuffsize, char); luaM_freearray(L, G(L)->Mbuffer, G(L)->Mbuffsize, char);
luaM_freelem(NULL, L->G, global_State); luaM_freelem(NULL, L->G, global_State);
} }
luaM_freearray(NULL, L->stack, L->stacksize, TObject); luaM_freearray(L1, L->stack, L->stacksize, TObject);
luaM_freelem(NULL, L, lua_State); luaM_freelem(L1, L, lua_State);
lua_assert(L != lua_state || memdebug_numblocks == 0); lua_assert(L != lua_state || memdebug_numblocks == 0);
lua_assert(L != lua_state || memdebug_total == 0); lua_assert(L != lua_state || memdebug_total == 0);
} }

View File

@ -1,5 +1,5 @@
/* /*
** $Id: lstate.h,v 1.43 2000/12/26 18:46:09 roberto Exp roberto $ ** $Id: lstate.h,v 1.44 2001/01/19 13:20:30 roberto Exp roberto $
** Global State ** Global State
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -74,12 +74,14 @@ struct lua_State {
StkId stack_last; /* last free slot in the stack */ StkId stack_last; /* last free slot in the stack */
int stacksize; int stacksize;
StkId Cbase; /* base for current C function */ StkId Cbase; /* base for current C function */
struct lua_longjmp *errorJmp; /* current error recover point */
Hash *gt; /* table for globals */ Hash *gt; /* table for globals */
global_State *G;
lua_Hook callhook; lua_Hook callhook;
lua_Hook linehook; lua_Hook linehook;
int allowhooks; int allowhooks;
global_State *G; struct lua_longjmp *errorJmp; /* current error recover point */
lua_State *next; /* circular double linked list of states */
lua_State *previous;
}; };

View File

@ -1,5 +1,5 @@
/* /*
** $Id: ltests.c,v 1.57 2001/01/18 15:59:09 roberto Exp roberto $ ** $Id: ltests.c,v 1.58 2001/01/19 13:20:30 roberto Exp roberto $
** Internal Module for Debugging of the Lua Implementation ** Internal Module for Debugging of the Lua Implementation
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -270,8 +270,19 @@ static int udataval (lua_State *L) {
return 1; return 1;
} }
static int doonnewstack (lua_State *L) {
lua_State *L1 = lua_open(L, luaL_check_int(L, 1));
if (L1 == NULL) return 0;
lua_dostring(L1, luaL_check_string(L, 2));
lua_pushnumber(L, 1);
lua_close(L1);
return 1;
}
static int newstate (lua_State *L) { static int newstate (lua_State *L) {
lua_State *L1 = lua_open(luaL_check_int(L, 1)); lua_State *L1 = lua_open(NULL, luaL_check_int(L, 1));
if (L1) if (L1)
lua_pushuserdata(L, L1); lua_pushuserdata(L, L1);
else else
@ -518,6 +529,7 @@ static const struct luaL_reg tests_funcs[] = {
{"unref", unref}, {"unref", unref},
{"newuserdata", newuserdata}, {"newuserdata", newuserdata},
{"udataval", udataval}, {"udataval", udataval},
{"doonnewstack", doonnewstack},
{"newstate", newstate}, {"newstate", newstate},
{"closestate", closestate}, {"closestate", closestate},
{"doremote", doremote}, {"doremote", doremote},

4
lua.c
View File

@ -1,5 +1,5 @@
/* /*
** $Id: lua.c,v 1.55 2000/10/20 16:36:32 roberto Exp roberto $ ** $Id: lua.c,v 1.56 2001/01/10 16:58:11 roberto Exp roberto $
** Lua stand-alone interpreter ** Lua stand-alone interpreter
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -311,7 +311,7 @@ int main (int argc, char *argv[]) {
int status; int status;
opt.toclose = 0; opt.toclose = 0;
getstacksize(argc, argv, &opt); /* handle option `-s' */ getstacksize(argc, argv, &opt); /* handle option `-s' */
L = lua_open(opt.stacksize); /* create state */ L = lua_open(NULL, opt.stacksize); /* create state */
userinit(); /* open libraries */ userinit(); /* open libraries */
register_getargs(argv); /* create `getargs' function */ register_getargs(argv); /* create `getargs' function */
status = handle_argv(argv+1, &opt); status = handle_argv(argv+1, &opt);

4
lua.h
View File

@ -1,5 +1,5 @@
/* /*
** $Id: lua.h,v 1.81 2000/12/22 16:58:41 roberto Exp roberto $ ** $Id: lua.h,v 1.82 2001/01/10 16:58:11 roberto Exp roberto $
** Lua - An Extensible Extension Language ** Lua - An Extensible Extension Language
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
** e-mail: lua@tecgraf.puc-rio.br ** e-mail: lua@tecgraf.puc-rio.br
@ -81,7 +81,7 @@ typedef int (*lua_CFunction) (lua_State *L);
/* /*
** state manipulation ** state manipulation
*/ */
LUA_API lua_State *lua_open (int stacksize); LUA_API lua_State *lua_open (lua_State *L, int stacksize);
LUA_API void lua_close (lua_State *L); LUA_API void lua_close (lua_State *L);