lua/lstate.c

281 lines
6.4 KiB
C
Raw Normal View History

1997-11-19 20:31:19 +03:00
/*
2010-04-30 22:36:22 +04:00
** $Id: lstate.c,v 2.84 2010/04/30 14:22:23 roberto Exp roberto $
1997-11-19 20:31:19 +03:00
** Global State
** See Copyright Notice in lua.h
*/
#include <stddef.h>
2002-12-04 20:38:31 +03:00
#define lstate_c
#define LUA_CORE
2002-12-04 20:38:31 +03:00
#include "lua.h"
#include "lapi.h"
2002-06-18 19:19:27 +04:00
#include "ldebug.h"
1997-11-19 20:31:19 +03:00
#include "ldo.h"
#include "lfunc.h"
1997-12-01 23:31:25 +03:00
#include "lgc.h"
1997-11-19 20:31:19 +03:00
#include "llex.h"
#include "lmem.h"
#include "lstate.h"
#include "lstring.h"
#include "ltable.h"
1997-11-19 20:31:19 +03:00
#include "ltm.h"
#if !defined(LUAI_GCPAUSE)
#define LUAI_GCPAUSE 200 /* 200% */
#endif
#if !defined(LUAI_GCMUL)
#define LUAI_GCMUL 200 /* GC runs 'twice the speed' of memory allocation */
#endif
#define MEMERRMSG "not enough memory"
/*
** thread state + extra space
*/
typedef struct LX {
#if defined(LUAI_EXTRASPACE)
char buff[LUAI_EXTRASPACE];
#endif
lua_State l;
} LX;
/*
** Main thread combines a thread state and the global state
*/
typedef struct LG {
LX l;
global_State g;
} LG;
2006-09-11 18:07:24 +04:00
#define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
/*
** maximum number of nested calls made by error-handling function
*/
#define LUAI_EXTRACALLS 10
CallInfo *luaE_extendCI (lua_State *L) {
CallInfo *ci = luaM_new(L, CallInfo);
lua_assert(L->ci->next == NULL);
L->ci->next = ci;
ci->previous = L->ci;
ci->next = NULL;
return ci;
}
void luaE_freeCI (lua_State *L) {
CallInfo *ci = L->ci;
CallInfo *next = ci->next;
ci->next = NULL;
while ((ci = next) != NULL) {
next = ci->next;
luaM_free(L, ci);
}
}
static void stack_init (lua_State *L1, lua_State *L) {
2010-04-29 21:35:10 +04:00
int i; CallInfo *ci;
2005-04-05 19:57:59 +04:00
/* initialize stack array */
L1->stack = luaM_newvector(L, BASIC_STACK_SIZE, TValue);
L1->stacksize = BASIC_STACK_SIZE;
for (i = 0; i < BASIC_STACK_SIZE; i++)
setnilvalue(L1->stack + i); /* erase new stack */
L1->top = L1->stack;
L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK;
2005-04-05 19:57:59 +04:00
/* initialize first ci */
2010-04-29 21:35:10 +04:00
ci = &L1->base_ci;
ci->next = ci->previous = NULL;
ci->callstatus = 0;
ci->func = L1->top;
setnilvalue(L1->top++); /* 'function' entry for this 'ci' */
2010-04-29 21:35:10 +04:00
ci->top = L1->top + LUA_MINSTACK;
L1->ci = ci;
}
static void freestack (lua_State *L) {
if (L->stack == NULL)
return; /* stack not completely built yet */
L->ci = &L->base_ci; /* free the entire 'ci' list */
luaE_freeCI(L);
2010-04-29 21:35:10 +04:00
luaM_freearray(L, L->stack, L->stacksize); /* free stack array */
}
/*
** Create registry table and its predefined values
*/
static void init_registry (lua_State *L, global_State *g) {
TValue mt;
/* create registry */
Table *registry = luaH_new(L);
sethvalue(L, &g->l_registry, registry);
luaH_resize(L, registry, LUA_RIDX_LAST, 0);
/* registry[LUA_RIDX_MAINTHREAD] = L */
setthvalue(L, &mt, L);
setobj2t(L, luaH_setint(L, registry, LUA_RIDX_MAINTHREAD), &mt);
/* registry[LUA_RIDX_GLOBALS] = table of globals */
sethvalue(L, &mt, luaH_new(L));
setobj2t(L, luaH_setint(L, registry, LUA_RIDX_GLOBALS), &mt);
}
2000-09-25 20:22:42 +04:00
/*
** open parts of the state that may cause memory-allocation errors
2000-09-25 20:22:42 +04:00
*/
static void f_luaopen (lua_State *L, void *ud) {
2004-08-30 17:44:44 +04:00
global_State *g = G(L);
UNUSED(ud);
2002-02-15 00:47:29 +03:00
stack_init(L, L); /* init stack */
init_registry(L, g);
luaS_resize(L, MINSTRTABSIZE); /* initial size of string table */
luaT_init(L);
luaX_init(L);
/* pre-create memory-error message */
g->memerrmsg = luaS_newliteral(L, MEMERRMSG);
luaS_fix(g->memerrmsg); /* it should never be collected */
2010-04-29 21:35:10 +04:00
g->GCdebt = 0;
}
/*
** preinitialize a state with consistent values without allocating
** any memory (to avoid errors)
*/
2004-03-16 00:04:33 +03:00
static void preinit_state (lua_State *L, global_State *g) {
2005-06-04 00:16:16 +04:00
G(L) = g;
L->stack = NULL;
2010-04-29 21:35:10 +04:00
L->ci = NULL;
L->stacksize = 0;
L->errorJmp = NULL;
2002-07-08 22:21:33 +04:00
L->hook = NULL;
L->hookmask = 0;
L->basehookcount = 0;
L->allowhook = 1;
2002-07-08 22:21:33 +04:00
resethookcount(L);
L->openupval = NULL;
L->nny = 1;
2006-10-10 21:40:17 +04:00
L->status = LUA_OK;
2002-08-06 19:32:22 +04:00
L->errfunc = 0;
2000-09-25 20:22:42 +04:00
}
static void close_state (lua_State *L) {
global_State *g = G(L);
luaF_close(L, L->stack); /* close all upvalues for this thread */
2009-11-18 16:13:47 +03:00
luaC_freeallobjects(L); /* collect all objects */
luaM_freearray(L, G(L)->strt.hash, G(L)->strt.size);
luaZ_freebuffer(L, &g->buff);
freestack(L);
2004-08-30 17:44:44 +04:00
lua_assert(g->totalbytes == sizeof(LG));
(*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0);
}
LUA_API lua_State *lua_newthread (lua_State *L) {
lua_State *L1;
lua_lock(L);
luaC_checkGC(L);
L1 = &luaC_newobj(L, LUA_TTHREAD, sizeof(LX), NULL, offsetof(LX, l))->th;
setthvalue(L, L->top, L1);
api_incr_top(L);
2004-03-16 00:04:33 +03:00
preinit_state(L1, G(L));
L1->hookmask = L->hookmask;
L1->basehookcount = L->basehookcount;
L1->hook = L->hook;
resethookcount(L1);
luai_userstatethread(L, L1);
stack_init(L1, L); /* init stack */
lua_unlock(L);
return L1;
}
void luaE_freethread (lua_State *L, lua_State *L1) {
LX *l = fromstate(L1);
luaF_close(L1, L1->stack); /* close all upvalues for this thread */
lua_assert(L1->openupval == NULL);
luai_userstatefree(L, L1);
freestack(L1);
luaM_free(L, l);
}
LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
2005-05-05 19:34:03 +04:00
int i;
lua_State *L;
global_State *g;
LG *l = cast(LG *, (*f)(ud, NULL, LUA_TTHREAD, sizeof(LG)));
if (l == NULL) return NULL;
L = &l->l.l;
g = &l->g;
2004-03-16 00:04:33 +03:00
L->next = NULL;
2005-01-18 20:18:09 +03:00
L->tt = LUA_TTHREAD;
2005-02-10 16:25:02 +03:00
g->currentwhite = bit2mask(WHITE0BIT, FIXEDBIT);
L->marked = luaC_white(g);
g->gckind = KGC_NORMAL;
g->nCcalls = 0;
2004-03-16 00:04:33 +03:00
preinit_state(L, g);
2005-02-23 20:30:22 +03:00
g->frealloc = f;
g->ud = ud;
g->mainthread = L;
2005-01-18 20:18:09 +03:00
g->uvhead.u.l.prev = &g->uvhead;
g->uvhead.u.l.next = &g->uvhead;
2010-04-29 21:35:10 +04:00
stopgc(g); /* no GC while building state */
2010-03-25 22:37:23 +03:00
g->lastmajormem = 0;
g->strt.size = 0;
g->strt.nuse = 0;
g->strt.hash = NULL;
setnilvalue(&g->l_registry);
luaZ_initbuffer(L, &g->buff);
g->panic = NULL;
g->version = lua_version(NULL);
2004-08-30 17:44:44 +04:00
g->gcstate = GCSpause;
g->allgc = NULL;
g->udgc = NULL;
g->tobefnz = NULL;
2010-04-30 22:36:22 +04:00
g->gray = g->grayagain = NULL;
2010-04-29 21:35:10 +04:00
g->weak = g->ephemeron = g->allweak = NULL;
2009-11-18 16:13:47 +03:00
g->totalbytes = sizeof(LG);
2005-03-22 19:04:29 +03:00
g->gcpause = LUAI_GCPAUSE;
g->gcstepmul = LUAI_GCMUL;
2010-04-12 20:07:29 +04:00
for (i=0; i < LUA_NUMTAGS; i++) g->mt[i] = NULL;
2006-10-10 21:40:17 +04:00
if (luaD_rawrunprotected(L, f_luaopen, NULL) != LUA_OK) {
/* memory allocation error: free partial state */
close_state(L);
L = NULL;
}
2004-06-02 23:09:36 +04:00
else
luai_userstateopen(L);
2000-09-25 20:22:42 +04:00
return L;
1997-11-19 20:31:19 +03:00
}
1997-12-01 23:31:25 +03:00
LUA_API void lua_close (lua_State *L) {
L = G(L)->mainthread; /* only the main thread can be closed */
2005-10-07 00:46:25 +04:00
lua_lock(L);
luaF_close(L, L->stack); /* close all upvalues for this thread */
luaC_separateudata(L, 1); /* separate all udata with GC metamethods */
lua_assert(L->next == NULL);
luai_userstateclose(L);
close_state(L);
1997-12-01 23:31:25 +03:00
}