1997-11-19 20:31:19 +03:00
|
|
|
/*
|
2010-03-26 23:58:11 +03:00
|
|
|
** $Id: lstate.c,v 2.74 2010/03/25 19:37:23 roberto Exp roberto $
|
1997-11-19 20:31:19 +03:00
|
|
|
** Global State
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-10-03 00:31:17 +04:00
|
|
|
#include <stddef.h>
|
2002-12-04 20:38:31 +03:00
|
|
|
|
|
|
|
#define lstate_c
|
2004-05-01 00:13:38 +04:00
|
|
|
#define LUA_CORE
|
2002-12-04 20:38:31 +03:00
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
2006-07-11 19:53:29 +04:00
|
|
|
#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"
|
2001-11-29 23:22:22 +03:00
|
|
|
#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"
|
2000-05-08 23:32:53 +04:00
|
|
|
#include "ltable.h"
|
1997-11-19 20:31:19 +03:00
|
|
|
#include "ltm.h"
|
|
|
|
|
|
|
|
|
2009-12-17 15:26:09 +03:00
|
|
|
#if !defined(LUAI_GCPAUSE)
|
2010-03-22 20:45:55 +03:00
|
|
|
#define LUAI_GCPAUSE 162 /* 162% */
|
2009-12-17 15:26:09 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(LUAI_GCMUL)
|
|
|
|
#define LUAI_GCMUL 200 /* GC runs 'twice the speed' of memory allocation */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-12-14 18:27:30 +03:00
|
|
|
/*
|
|
|
|
** thread state + extra space
|
|
|
|
*/
|
|
|
|
typedef struct LX {
|
|
|
|
#if defined(LUAI_EXTRASPACE)
|
|
|
|
char buff[LUAI_EXTRASPACE];
|
|
|
|
#endif
|
|
|
|
lua_State l;
|
|
|
|
} LX;
|
2003-10-03 00:31:17 +04:00
|
|
|
|
|
|
|
|
2003-09-05 00:19:07 +04:00
|
|
|
/*
|
|
|
|
** Main thread combines a thread state and the global state
|
|
|
|
*/
|
|
|
|
typedef struct LG {
|
2009-12-14 18:27:30 +03:00
|
|
|
LX l;
|
2003-09-05 00:19:07 +04:00
|
|
|
global_State g;
|
|
|
|
} LG;
|
2006-09-11 18:07:24 +04:00
|
|
|
|
2003-09-05 00:19:07 +04:00
|
|
|
|
2002-01-11 23:26:52 +03:00
|
|
|
|
2009-12-14 18:27:30 +03:00
|
|
|
#define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-17 18:28:06 +04:00
|
|
|
/*
|
|
|
|
** 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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-26 00:05:28 +04:00
|
|
|
static void stack_init (lua_State *L1, lua_State *L) {
|
2009-04-28 23:04:36 +04:00
|
|
|
int i;
|
2005-04-05 19:57:59 +04:00
|
|
|
/* initialize stack array */
|
2009-07-15 21:26:14 +04:00
|
|
|
L1->stack = luaM_newvector(L, BASIC_STACK_SIZE, TValue);
|
|
|
|
L1->stacksize = BASIC_STACK_SIZE;
|
|
|
|
for (i = 0; i < BASIC_STACK_SIZE; i++)
|
2009-04-28 23:04:36 +04:00
|
|
|
setnilvalue(L1->stack + i); /* erase new stack */
|
2002-10-26 00:05:28 +04:00
|
|
|
L1->top = L1->stack;
|
2009-07-15 21:26:14 +04:00
|
|
|
L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK;
|
2005-04-05 19:57:59 +04:00
|
|
|
/* initialize first ci */
|
2004-05-31 22:51:50 +04:00
|
|
|
L1->ci->func = L1->top;
|
2009-04-17 18:28:06 +04:00
|
|
|
setnilvalue(L1->top++); /* 'function' entry for this 'ci' */
|
2002-10-26 00:05:28 +04:00
|
|
|
L1->ci->top = L1->top + LUA_MINSTACK;
|
2008-08-26 17:27:42 +04:00
|
|
|
L1->ci->callstatus = 0;
|
2002-01-11 23:26:52 +03:00
|
|
|
}
|
2001-02-02 18:13:05 +03:00
|
|
|
|
|
|
|
|
2009-04-17 18:28:06 +04:00
|
|
|
static void freestack (lua_State *L) {
|
|
|
|
L->ci = &L->base_ci; /* reset 'ci' list */
|
|
|
|
luaE_freeCI(L);
|
2009-04-17 18:40:13 +04:00
|
|
|
luaM_freearray(L, L->stack, L->stacksize);
|
2002-11-19 17:12:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-21 16:09:52 +04:00
|
|
|
/*
|
|
|
|
** Calls the function in variable pointed to by userdata in first argument
|
|
|
|
** (Userdata cannot point directly to the function because pointer to
|
|
|
|
** function is not compatible with void*.)
|
|
|
|
*/
|
2010-03-20 00:04:17 +03:00
|
|
|
static int ccall (lua_State *L) {
|
2009-09-21 16:09:52 +04:00
|
|
|
lua_CFunction f = *(lua_CFunction *)lua_touserdata(L, 1);
|
2009-10-01 00:49:47 +04:00
|
|
|
lua_remove(L, 1); /* remove f from stack */
|
2009-09-21 16:09:52 +04:00
|
|
|
return f(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Create registry table and its predefined values
|
|
|
|
*/
|
2009-10-23 23:12:19 +04:00
|
|
|
static void init_registry (lua_State *L, global_State *g) {
|
2009-09-21 16:09:52 +04:00
|
|
|
Closure *cp;
|
2009-09-17 22:04:21 +04:00
|
|
|
TValue mt;
|
2009-09-21 16:09:52 +04:00
|
|
|
/* create registry */
|
|
|
|
Table *registry = luaH_new(L);
|
2009-10-23 23:12:19 +04:00
|
|
|
sethvalue(L, &g->l_registry, registry);
|
2009-09-17 22:04:21 +04:00
|
|
|
luaH_resize(L, registry, LUA_RIDX_LAST, 0);
|
2009-09-21 16:09:52 +04:00
|
|
|
/* registry[LUA_RIDX_MAINTHREAD] = L */
|
2009-09-17 22:04:21 +04:00
|
|
|
setthvalue(L, &mt, L);
|
|
|
|
setobj2t(L, luaH_setint(L, registry, LUA_RIDX_MAINTHREAD), &mt);
|
2010-03-20 00:04:17 +03:00
|
|
|
/* registry[LUA_RIDX_CCALL] = ccall */
|
2010-03-26 23:58:11 +03:00
|
|
|
cp = luaF_newCclosure(L, 0);
|
2010-03-20 00:04:17 +03:00
|
|
|
cp->c.f = ccall;
|
2009-09-21 16:09:52 +04:00
|
|
|
setclvalue(L, &mt, cp);
|
2010-03-20 00:04:17 +03:00
|
|
|
setobj2t(L, luaH_setint(L, registry, LUA_RIDX_CCALL), &mt);
|
2009-12-22 18:32:50 +03:00
|
|
|
/* registry[LUA_RIDX_GLOBALS] = l_gt */
|
|
|
|
sethvalue(L, &mt, g->l_gt);
|
|
|
|
setobj2t(L, luaH_setint(L, registry, LUA_RIDX_GLOBALS), &mt);
|
2009-09-17 22:04:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-25 20:22:42 +04:00
|
|
|
/*
|
2009-10-23 23:12:19 +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);
|
2002-11-19 17:12:13 +03:00
|
|
|
UNUSED(ud);
|
2002-02-15 00:47:29 +03:00
|
|
|
stack_init(L, L); /* init stack */
|
2009-12-22 18:32:50 +03:00
|
|
|
g->l_gt = luaH_new(L); /* table of globals */
|
2009-10-23 23:12:19 +04:00
|
|
|
init_registry(L, g);
|
2002-03-05 19:22:54 +03:00
|
|
|
luaS_resize(L, MINSTRTABSIZE); /* initial size of string table */
|
2002-01-11 23:26:52 +03:00
|
|
|
luaT_init(L);
|
|
|
|
luaX_init(L);
|
2010-03-13 18:55:42 +03:00
|
|
|
g->envn = luaS_new(L, "_ENV");
|
|
|
|
luaS_fix(g->envn); /* never collect this name */
|
2002-05-02 00:48:12 +04:00
|
|
|
luaS_fix(luaS_newliteral(L, MEMERRMSG));
|
2004-08-30 17:44:44 +04:00
|
|
|
g->GCthreshold = 4*g->totalbytes;
|
2002-01-11 23:26:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-21 16:09:52 +04:00
|
|
|
/*
|
|
|
|
** 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;
|
2002-01-11 23:26:52 +03:00
|
|
|
L->stack = NULL;
|
|
|
|
L->stacksize = 0;
|
|
|
|
L->errorJmp = NULL;
|
2002-07-08 22:21:33 +04:00
|
|
|
L->hook = NULL;
|
2003-07-17 00:49:02 +04:00
|
|
|
L->hookmask = 0;
|
2002-11-18 14:01:55 +03:00
|
|
|
L->basehookcount = 0;
|
|
|
|
L->allowhook = 1;
|
2002-07-08 22:21:33 +04:00
|
|
|
resethookcount(L);
|
2002-01-11 23:26:52 +03:00
|
|
|
L->openupval = NULL;
|
2009-03-10 20:14:37 +03:00
|
|
|
L->nny = 1;
|
2006-10-10 21:40:17 +04:00
|
|
|
L->status = LUA_OK;
|
2009-04-17 18:28:06 +04:00
|
|
|
L->base_ci.next = L->base_ci.previous = NULL;
|
|
|
|
L->ci = &L->base_ci;
|
2002-08-06 19:32:22 +04:00
|
|
|
L->errfunc = 0;
|
2000-09-25 20:22:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-19 17:12:13 +03:00
|
|
|
static void close_state (lua_State *L) {
|
2003-10-03 00:31:17 +04:00
|
|
|
global_State *g = G(L);
|
2002-11-19 17:12:13 +03:00
|
|
|
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 */
|
2009-04-17 18:40:13 +04:00
|
|
|
luaM_freearray(L, G(L)->strt.hash, G(L)->strt.size);
|
2003-10-03 00:31:17 +04:00
|
|
|
luaZ_freebuffer(L, &g->buff);
|
2009-04-17 18:28:06 +04:00
|
|
|
freestack(L);
|
2004-08-30 17:44:44 +04:00
|
|
|
lua_assert(g->totalbytes == sizeof(LG));
|
2009-12-14 18:27:30 +03:00
|
|
|
(*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0);
|
2002-11-19 17:12:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-11 19:53:29 +04:00
|
|
|
LUA_API lua_State *lua_newthread (lua_State *L) {
|
|
|
|
lua_State *L1;
|
|
|
|
lua_lock(L);
|
|
|
|
luaC_checkGC(L);
|
2009-12-16 19:42:58 +03:00
|
|
|
L1 = &luaC_newobj(L, LUA_TTHREAD, sizeof(LX), NULL, offsetof(LX, l))->th;
|
2006-07-11 19:53:29 +04:00
|
|
|
setthvalue(L, L->top, L1);
|
|
|
|
api_incr_top(L);
|
2004-03-16 00:04:33 +03:00
|
|
|
preinit_state(L1, G(L));
|
2002-10-26 00:05:28 +04:00
|
|
|
stack_init(L1, L); /* init stack */
|
2004-06-17 18:25:31 +04:00
|
|
|
L1->hookmask = L->hookmask;
|
|
|
|
L1->basehookcount = L->basehookcount;
|
|
|
|
L1->hook = L->hook;
|
|
|
|
resethookcount(L1);
|
2003-12-10 15:13:36 +03:00
|
|
|
lua_assert(iswhite(obj2gco(L1)));
|
2006-07-11 19:53:29 +04:00
|
|
|
lua_unlock(L);
|
|
|
|
luai_userstatethread(L, L1);
|
2002-10-26 00:05:28 +04:00
|
|
|
return L1;
|
2002-01-11 23:26:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-19 17:12:13 +03:00
|
|
|
void luaE_freethread (lua_State *L, lua_State *L1) {
|
2009-12-14 18:27:30 +03:00
|
|
|
LX *l = fromstate(L1);
|
2002-11-19 17:12:13 +03:00
|
|
|
luaF_close(L1, L1->stack); /* close all upvalues for this thread */
|
|
|
|
lua_assert(L1->openupval == NULL);
|
2005-10-07 00:46:25 +04:00
|
|
|
luai_userstatefree(L1);
|
2009-04-17 18:28:06 +04:00
|
|
|
freestack(L1);
|
2009-12-14 18:27:30 +03:00
|
|
|
luaM_free(L, l);
|
2002-11-19 17:12:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-03 00:31:17 +04:00
|
|
|
LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
|
2005-05-05 19:34:03 +04:00
|
|
|
int i;
|
2003-10-03 00:31:17 +04:00
|
|
|
lua_State *L;
|
2003-09-05 00:19:07 +04:00
|
|
|
global_State *g;
|
2009-12-14 18:27:30 +03:00
|
|
|
LG *l = cast(LG *, (*f)(ud, NULL, 0, sizeof(LG)));
|
2003-10-03 00:31:17 +04:00
|
|
|
if (l == NULL) return NULL;
|
2009-12-14 18:27:30 +03:00
|
|
|
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);
|
2008-02-11 18:45:30 +03:00
|
|
|
g->gckind = KGC_NORMAL;
|
2006-08-15 23:59:20 +04:00
|
|
|
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;
|
2003-10-03 00:31:17 +04:00
|
|
|
g->ud = ud;
|
2003-09-05 00:19:07 +04:00
|
|
|
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;
|
2006-07-11 19:53:29 +04:00
|
|
|
g->GCthreshold = MAX_LUMEM; /* no GC while building state */
|
2010-03-25 22:37:23 +03:00
|
|
|
g->lastmajormem = 0;
|
2003-09-05 00:19:07 +04:00
|
|
|
g->strt.size = 0;
|
|
|
|
g->strt.nuse = 0;
|
|
|
|
g->strt.hash = NULL;
|
2009-10-23 23:12:19 +04:00
|
|
|
setnilvalue(&g->l_registry);
|
2009-12-22 18:32:50 +03:00
|
|
|
g->l_gt = NULL;
|
2003-09-05 00:19:07 +04:00
|
|
|
luaZ_initbuffer(L, &g->buff);
|
|
|
|
g->panic = NULL;
|
2009-06-18 22:59:18 +04:00
|
|
|
g->version = lua_version(NULL);
|
2004-08-30 17:44:44 +04:00
|
|
|
g->gcstate = GCSpause;
|
2010-03-25 16:06:36 +03:00
|
|
|
g->allgc = NULL;
|
2010-03-24 16:07:01 +03:00
|
|
|
g->udgc = NULL;
|
2008-06-26 23:42:45 +04:00
|
|
|
g->tobefnz = 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;
|
2005-05-05 19:34:03 +04:00
|
|
|
for (i=0; i<NUM_TAGS; i++) g->mt[i] = NULL;
|
2006-10-10 21:40:17 +04:00
|
|
|
if (luaD_rawrunprotected(L, f_luaopen, NULL) != LUA_OK) {
|
2003-09-05 00:19:07 +04:00
|
|
|
/* memory allocation error: free partial state */
|
|
|
|
close_state(L);
|
|
|
|
L = NULL;
|
2000-08-04 23:38:35 +04:00
|
|
|
}
|
2004-06-02 23:09:36 +04:00
|
|
|
else
|
2005-03-18 21:55:45 +03:00
|
|
|
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
|
|
|
|
2001-01-24 18:45:33 +03:00
|
|
|
LUA_API void lua_close (lua_State *L) {
|
2002-10-26 00:05:28 +04:00
|
|
|
L = G(L)->mainthread; /* only the main thread can be closed */
|
2005-10-07 00:46:25 +04:00
|
|
|
lua_lock(L);
|
2003-02-28 22:45:15 +03:00
|
|
|
luaF_close(L, L->stack); /* close all upvalues for this thread */
|
2008-02-19 21:55:09 +03:00
|
|
|
luaC_separateudata(L, 1); /* separate all udata with GC metamethods */
|
2008-06-26 23:42:45 +04:00
|
|
|
lua_assert(L->next == NULL);
|
2006-05-24 18:15:50 +04:00
|
|
|
luai_userstateclose(L);
|
2002-01-11 23:26:52 +03:00
|
|
|
close_state(L);
|
1997-12-01 23:31:25 +03:00
|
|
|
}
|
1998-06-03 00:37:04 +04:00
|
|
|
|
2009-04-17 18:28:06 +04:00
|
|
|
|