1997-11-19 20:31:19 +03:00
|
|
|
/*
|
2018-08-23 20:26:12 +03:00
|
|
|
** $Id: lstate.c $
|
1997-11-19 20:31:19 +03:00
|
|
|
** Global State
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2014-11-02 22:19:04 +03:00
|
|
|
#define lstate_c
|
|
|
|
#define LUA_CORE
|
|
|
|
|
|
|
|
#include "lprefix.h"
|
|
|
|
|
1997-11-19 20:31:19 +03:00
|
|
|
|
2003-10-03 00:31:17 +04:00
|
|
|
#include <stddef.h>
|
2012-02-02 01:57:15 +04:00
|
|
|
#include <string.h>
|
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
|
|
|
|
2009-12-14 18:27:30 +03:00
|
|
|
/*
|
|
|
|
** thread state + extra space
|
|
|
|
*/
|
|
|
|
typedef struct LX {
|
2014-07-24 18:00:16 +04:00
|
|
|
lu_byte extra_[LUA_EXTRASPACE];
|
2009-12-14 18:27:30 +03:00
|
|
|
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)))
|
|
|
|
|
|
|
|
|
2012-02-02 01:57:15 +04:00
|
|
|
/*
|
2018-05-29 21:02:51 +03:00
|
|
|
** A macro to create a "random" seed when a state is created;
|
|
|
|
** the seed is used to randomize string hashes.
|
|
|
|
*/
|
|
|
|
#if !defined(luai_makeseed)
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Compute an initial seed with some level of randomness.
|
|
|
|
** Rely on Address Space Layout Randomization (if present) and
|
|
|
|
** current time.
|
2012-02-02 01:57:15 +04:00
|
|
|
*/
|
|
|
|
#define addbuff(b,p,e) \
|
2018-01-28 18:13:26 +03:00
|
|
|
{ size_t t = cast_sizet(e); \
|
2015-10-20 16:11:05 +03:00
|
|
|
memcpy(b + p, &t, sizeof(t)); p += sizeof(t); }
|
2012-02-02 01:57:15 +04:00
|
|
|
|
2018-05-29 21:02:51 +03:00
|
|
|
static unsigned int luai_makeseed (lua_State *L) {
|
2018-06-01 20:40:38 +03:00
|
|
|
char buff[3 * sizeof(size_t)];
|
2018-05-29 21:02:51 +03:00
|
|
|
unsigned int h = cast_uint(time(NULL));
|
2012-02-02 01:57:15 +04:00
|
|
|
int p = 0;
|
|
|
|
addbuff(buff, p, L); /* heap variable */
|
|
|
|
addbuff(buff, p, &h); /* local variable */
|
|
|
|
addbuff(buff, p, &lua_newstate); /* public function */
|
|
|
|
lua_assert(p == sizeof(buff));
|
2020-10-12 16:02:37 +03:00
|
|
|
return luaS_hash(buff, p, h);
|
2012-02-02 01:57:15 +04:00
|
|
|
}
|
|
|
|
|
2018-05-29 21:02:51 +03:00
|
|
|
#endif
|
|
|
|
|
2012-02-02 01:57:15 +04:00
|
|
|
|
2009-04-17 18:28:06 +04:00
|
|
|
/*
|
2022-11-23 23:17:20 +03:00
|
|
|
** set GCdebt to a new value keeping the value (totalobjs + GCdebt)
|
|
|
|
** invariant (and avoiding underflows in 'totalobjs')
|
2009-04-17 18:28:06 +04:00
|
|
|
*/
|
2022-11-23 23:29:03 +03:00
|
|
|
void luaE_setdebt (global_State *g, l_obj debt) {
|
|
|
|
l_obj tb = gettotalobjs(g);
|
2015-07-13 16:30:03 +03:00
|
|
|
lua_assert(tb > 0);
|
2022-12-13 21:45:57 +03:00
|
|
|
if (debt > MAX_LOBJ - tb)
|
|
|
|
debt = MAX_LOBJ - tb; /* will make 'totalobjs == MAX_LMEM' */
|
|
|
|
g->totalobjs = tb + debt;
|
2010-12-20 22:40:07 +03:00
|
|
|
g->GCdebt = debt;
|
|
|
|
}
|
2009-04-17 18:28:06 +04:00
|
|
|
|
|
|
|
|
2019-09-24 20:31:06 +03:00
|
|
|
LUA_API int lua_setcstacklimit (lua_State *L, unsigned int limit) {
|
2020-09-23 16:18:01 +03:00
|
|
|
UNUSED(L); UNUSED(limit);
|
|
|
|
return LUAI_MAXCCALLS; /* warning?? */
|
2019-06-18 22:52:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-07 16:25:26 +03:00
|
|
|
CallInfo *luaE_extendCI (lua_State *L) {
|
2017-11-23 19:41:16 +03:00
|
|
|
CallInfo *ci;
|
2018-12-27 19:32:29 +03:00
|
|
|
lua_assert(L->ci->next == NULL);
|
2017-11-23 19:41:16 +03:00
|
|
|
ci = luaM_new(L, CallInfo);
|
2017-11-07 16:25:26 +03:00
|
|
|
lua_assert(L->ci->next == NULL);
|
|
|
|
L->ci->next = ci;
|
|
|
|
ci->previous = L->ci;
|
|
|
|
ci->next = NULL;
|
2017-11-13 18:36:52 +03:00
|
|
|
ci->u.l.trap = 0;
|
2017-11-07 16:25:26 +03:00
|
|
|
L->nci++;
|
|
|
|
return ci;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** free all CallInfo structures not in use by a thread
|
|
|
|
*/
|
|
|
|
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);
|
|
|
|
L->nci--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2020-06-15 17:58:59 +03:00
|
|
|
** free half of the CallInfo structures not in use by a thread,
|
|
|
|
** keeping the first one.
|
2017-11-07 16:25:26 +03:00
|
|
|
*/
|
|
|
|
void luaE_shrinkCI (lua_State *L) {
|
2020-06-15 17:58:59 +03:00
|
|
|
CallInfo *ci = L->ci->next; /* first free CallInfo */
|
2020-05-22 17:40:34 +03:00
|
|
|
CallInfo *next;
|
2020-06-15 17:58:59 +03:00
|
|
|
if (ci == NULL)
|
|
|
|
return; /* no extra elements */
|
|
|
|
while ((next = ci->next) != NULL) { /* two extra elements? */
|
|
|
|
CallInfo *next2 = next->next; /* next's next */
|
2020-05-22 17:40:34 +03:00
|
|
|
ci->next = next2; /* remove next from the list */
|
|
|
|
L->nci--;
|
2020-06-15 17:58:59 +03:00
|
|
|
luaM_free(L, next); /* free next */
|
|
|
|
if (next2 == NULL)
|
|
|
|
break; /* no more elements */
|
|
|
|
else {
|
|
|
|
next2->previous = ci;
|
|
|
|
ci = next2; /* continue */
|
|
|
|
}
|
2017-11-07 16:25:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-09-23 16:18:01 +03:00
|
|
|
/*
|
|
|
|
** Called when 'getCcalls(L)' larger or equal to LUAI_MAXCCALLS.
|
|
|
|
** If equal, raises an overflow error. If value is larger than
|
|
|
|
** LUAI_MAXCCALLS (which means it is handling an overflow) but
|
|
|
|
** not much larger, does not report an error (to allow overflow
|
|
|
|
** handling to work).
|
|
|
|
*/
|
|
|
|
void luaE_checkcstack (lua_State *L) {
|
|
|
|
if (getCcalls(L) == LUAI_MAXCCALLS)
|
|
|
|
luaG_runerror(L, "C stack overflow");
|
|
|
|
else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11))
|
2021-11-08 17:55:25 +03:00
|
|
|
luaD_throw(L, LUA_ERRERR); /* error while handling stack error */
|
2020-09-23 16:18:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUAI_FUNC void luaE_incCstack (lua_State *L) {
|
|
|
|
L->nCcalls++;
|
2021-02-24 17:14:44 +03:00
|
|
|
if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS))
|
2020-09-23 16:18:01 +03:00
|
|
|
luaE_checkcstack(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-26 00:05:28 +04:00
|
|
|
static void stack_init (lua_State *L1, lua_State *L) {
|
2017-11-07 16:25:26 +03:00
|
|
|
int i; CallInfo *ci;
|
2005-04-05 19:57:59 +04:00
|
|
|
/* initialize stack array */
|
2022-10-29 18:06:37 +03:00
|
|
|
L1->stack.p = luaM_newvector(L, BASIC_STACK_SIZE + EXTRA_STACK, StackValue);
|
|
|
|
L1->tbclist.p = L1->stack.p;
|
2020-11-08 17:52:26 +03:00
|
|
|
for (i = 0; i < BASIC_STACK_SIZE + EXTRA_STACK; i++)
|
2022-10-29 18:06:37 +03:00
|
|
|
setnilvalue(s2v(L1->stack.p + i)); /* erase new stack */
|
|
|
|
L1->top.p = L1->stack.p;
|
|
|
|
L1->stack_last.p = L1->stack.p + BASIC_STACK_SIZE;
|
2017-11-07 16:25:26 +03:00
|
|
|
/* initialize first ci */
|
|
|
|
ci = &L1->base_ci;
|
|
|
|
ci->next = ci->previous = NULL;
|
2017-12-19 19:40:17 +03:00
|
|
|
ci->callstatus = CIST_C;
|
2022-10-29 18:06:37 +03:00
|
|
|
ci->func.p = L1->top.p;
|
2019-04-26 17:13:01 +03:00
|
|
|
ci->u.c.k = NULL;
|
|
|
|
ci->nresults = 0;
|
2022-10-29 18:06:37 +03:00
|
|
|
setnilvalue(s2v(L1->top.p)); /* 'function' entry for this 'ci' */
|
|
|
|
L1->top.p++;
|
|
|
|
ci->top.p = L1->top.p + LUA_MINSTACK;
|
2017-11-07 16:25:26 +03:00
|
|
|
L1->ci = ci;
|
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) {
|
2022-10-29 18:06:37 +03:00
|
|
|
if (L->stack.p == NULL)
|
2010-04-30 18:22:23 +04:00
|
|
|
return; /* stack not completely built yet */
|
2017-11-07 16:25:26 +03:00
|
|
|
L->ci = &L->base_ci; /* free the entire 'ci' list */
|
|
|
|
luaE_freeCI(L);
|
2015-11-02 19:01:41 +03:00
|
|
|
lua_assert(L->nci == 0);
|
2022-10-29 18:06:37 +03:00
|
|
|
luaM_freearray(L, L->stack.p, stacksize(L) + EXTRA_STACK); /* free stack */
|
2002-11-19 17:12:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-21 16:09:52 +04:00
|
|
|
/*
|
|
|
|
** 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
|
|
|
/* 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 */
|
2020-11-27 00:23:40 +03:00
|
|
|
setthvalue(L, ®istry->array[LUA_RIDX_MAINTHREAD - 1], L);
|
|
|
|
/* registry[LUA_RIDX_GLOBALS] = new table (table of globals) */
|
|
|
|
sethvalue(L, ®istry->array[LUA_RIDX_GLOBALS - 1], luaH_new(L));
|
2009-09-17 22:04:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-25 20:22:42 +04:00
|
|
|
/*
|
2013-11-08 21:34:22 +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-10-23 23:12:19 +04:00
|
|
|
init_registry(L, g);
|
2015-03-04 16:31:21 +03:00
|
|
|
luaS_init(L);
|
2002-01-11 23:26:52 +03:00
|
|
|
luaT_init(L);
|
|
|
|
luaX_init(L);
|
2021-12-13 16:41:17 +03:00
|
|
|
g->gcstp = 0; /* allow gc */
|
2021-02-05 23:51:25 +03:00
|
|
|
setnilvalue(&g->nilvalue); /* now state is complete */
|
2013-11-08 21:34:22 +04:00
|
|
|
luai_userstateopen(L);
|
2002-01-11 23:26:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-21 16:09:52 +04:00
|
|
|
/*
|
2014-02-13 18:46:38 +04:00
|
|
|
** preinitialize a thread with consistent values without allocating
|
2009-09-21 16:09:52 +04:00
|
|
|
** any memory (to avoid errors)
|
|
|
|
*/
|
2014-02-13 18:46:38 +04:00
|
|
|
static void preinit_thread (lua_State *L, global_State *g) {
|
2005-06-04 00:16:16 +04:00
|
|
|
G(L) = g;
|
2022-10-29 18:06:37 +03:00
|
|
|
L->stack.p = NULL;
|
2017-11-07 16:25:26 +03:00
|
|
|
L->ci = NULL;
|
2015-11-02 19:01:41 +03:00
|
|
|
L->nci = 0;
|
2014-02-18 17:39:37 +04:00
|
|
|
L->twups = L; /* thread has no upvalues */
|
2021-01-19 16:03:13 +03:00
|
|
|
L->nCcalls = 0;
|
2002-01-11 23:26:52 +03:00
|
|
|
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;
|
2006-10-10 21:40:17 +04:00
|
|
|
L->status = LUA_OK;
|
2002-08-06 19:32:22 +04:00
|
|
|
L->errfunc = 0;
|
2020-07-17 17:01:05 +03:00
|
|
|
L->oldpc = 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);
|
2021-02-09 20:00:05 +03:00
|
|
|
if (!completestate(g)) /* closing a partially built state? */
|
2021-03-29 17:47:12 +03:00
|
|
|
luaC_freeallobjects(L); /* just collect its objects */
|
2021-02-09 20:00:05 +03:00
|
|
|
else { /* closing a fully built state */
|
2021-12-10 16:53:54 +03:00
|
|
|
L->ci = &L->base_ci; /* unwind CallInfo list */
|
2021-02-09 20:00:05 +03:00
|
|
|
luaD_closeprotected(L, 1, LUA_OK); /* close all upvalues */
|
|
|
|
luaC_freeallobjects(L); /* collect all objects */
|
2013-11-08 21:34:22 +04:00
|
|
|
luai_userstateclose(L);
|
2021-02-09 20:00:05 +03:00
|
|
|
}
|
2009-04-17 18:40:13 +04:00
|
|
|
luaM_freearray(L, G(L)->strt.hash, G(L)->strt.size);
|
2009-04-17 18:28:06 +04:00
|
|
|
freestack(L);
|
2022-11-23 23:17:20 +03:00
|
|
|
lua_assert(g->totalbytes == sizeof(LG));
|
|
|
|
lua_assert(gettotalobjs(g) == 1);
|
2011-10-03 21:54:25 +04:00
|
|
|
(*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0); /* free main block */
|
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) {
|
2022-11-01 23:14:01 +03:00
|
|
|
global_State *g = G(L);
|
|
|
|
GCObject *o;
|
2006-07-11 19:53:29 +04:00
|
|
|
lua_State *L1;
|
|
|
|
lua_lock(L);
|
|
|
|
luaC_checkGC(L);
|
2013-09-11 16:26:14 +04:00
|
|
|
/* create new thread */
|
2022-11-01 23:14:01 +03:00
|
|
|
o = luaC_newobjdt(L, LUA_TTHREAD, sizeof(LX), offsetof(LX, l));
|
|
|
|
L1 = gco2th(o);
|
2014-07-24 18:00:16 +04:00
|
|
|
/* anchor it on L stack */
|
2022-10-29 18:06:37 +03:00
|
|
|
setthvalue2s(L, L->top.p, L1);
|
2006-07-11 19:53:29 +04:00
|
|
|
api_incr_top(L);
|
2014-02-13 18:46:38 +04:00
|
|
|
preinit_thread(L1, g);
|
2004-06-17 18:25:31 +04:00
|
|
|
L1->hookmask = L->hookmask;
|
|
|
|
L1->basehookcount = L->basehookcount;
|
|
|
|
L1->hook = L->hook;
|
|
|
|
resethookcount(L1);
|
2014-07-24 18:00:16 +04:00
|
|
|
/* initialize L1 extra space */
|
2014-07-24 20:17:56 +04:00
|
|
|
memcpy(lua_getextraspace(L1), lua_getextraspace(g->mainthread),
|
|
|
|
LUA_EXTRASPACE);
|
2006-07-11 19:53:29 +04:00
|
|
|
luai_userstatethread(L, L1);
|
2010-04-19 21:40:13 +04:00
|
|
|
stack_init(L1, L); /* init stack */
|
|
|
|
lua_unlock(L);
|
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);
|
2022-10-29 18:06:37 +03:00
|
|
|
luaF_closeupval(L1, L1->stack.p); /* close all upvalues */
|
2002-11-19 17:12:13 +03:00
|
|
|
lua_assert(L1->openupval == NULL);
|
2010-04-19 21:40:13 +04:00
|
|
|
luai_userstatefree(L, 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
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-28 22:34:07 +03:00
|
|
|
int luaE_resetthread (lua_State *L, int status) {
|
|
|
|
CallInfo *ci = L->ci = &L->base_ci; /* unwind CallInfo list */
|
2022-10-29 18:06:37 +03:00
|
|
|
setnilvalue(s2v(L->stack.p)); /* 'function' entry for basic 'ci' */
|
|
|
|
ci->func.p = L->stack.p;
|
2020-06-17 16:36:42 +03:00
|
|
|
ci->callstatus = CIST_C;
|
2020-12-28 17:40:30 +03:00
|
|
|
if (status == LUA_YIELD)
|
|
|
|
status = LUA_OK;
|
2021-11-08 17:55:25 +03:00
|
|
|
L->status = LUA_OK; /* so it can run __close metamethods */
|
2021-02-09 20:00:05 +03:00
|
|
|
status = luaD_closeprotected(L, 1, status);
|
2020-12-28 17:40:30 +03:00
|
|
|
if (status != LUA_OK) /* errors? */
|
2022-10-29 18:06:37 +03:00
|
|
|
luaD_seterrorobj(L, status, L->stack.p + 1);
|
2020-12-28 22:34:07 +03:00
|
|
|
else
|
2022-10-29 18:06:37 +03:00
|
|
|
L->top.p = L->stack.p + 1;
|
|
|
|
ci->top.p = L->top.p + LUA_MINSTACK;
|
|
|
|
luaD_reallocstack(L, cast_int(ci->top.p - L->stack.p), 0);
|
2020-12-28 22:34:07 +03:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-25 22:44:06 +03:00
|
|
|
LUA_API int lua_resetthread (lua_State *L, lua_State *from) {
|
2020-12-28 22:34:07 +03:00
|
|
|
int status;
|
|
|
|
lua_lock(L);
|
2022-10-25 22:44:06 +03:00
|
|
|
L->nCcalls = (from) ? getCcalls(from) : 0;
|
2020-12-28 22:34:07 +03:00
|
|
|
status = luaE_resetthread(L, L->status);
|
2018-12-13 18:07:53 +03:00
|
|
|
lua_unlock(L);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
2010-04-19 20:34:46 +04:00
|
|
|
LG *l = cast(LG *, (*f)(ud, NULL, LUA_TTHREAD, 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;
|
2020-01-31 17:09:53 +03:00
|
|
|
L->tt = LUA_VTHREAD;
|
2013-08-22 00:09:51 +04:00
|
|
|
g->currentwhite = bitmask(WHITE0BIT);
|
2014-02-13 16:11:34 +04:00
|
|
|
L->marked = luaC_white(g);
|
2014-02-13 18:46:38 +04:00
|
|
|
preinit_thread(L, g);
|
2017-04-11 22:00:27 +03:00
|
|
|
g->allgc = obj2gco(L); /* by now, only object is the main thread */
|
|
|
|
L->next = NULL;
|
2020-07-06 19:54:01 +03:00
|
|
|
incnny(L); /* main thread is always non yieldable */
|
2005-02-23 20:30:22 +03:00
|
|
|
g->frealloc = f;
|
2003-10-03 00:31:17 +04:00
|
|
|
g->ud = ud;
|
2018-12-28 20:42:34 +03:00
|
|
|
g->warnf = NULL;
|
|
|
|
g->ud_warn = NULL;
|
2003-09-05 00:19:07 +04:00
|
|
|
g->mainthread = L;
|
2018-05-29 21:02:51 +03:00
|
|
|
g->seed = luai_makeseed(L);
|
2021-12-13 16:41:17 +03:00
|
|
|
g->gcstp = GCSTPGC; /* no GC while building state */
|
2013-09-05 23:31:49 +04:00
|
|
|
g->strt.size = g->strt.nuse = 0;
|
2003-09-05 00:19:07 +04:00
|
|
|
g->strt.hash = NULL;
|
2009-10-23 23:12:19 +04:00
|
|
|
setnilvalue(&g->l_registry);
|
2003-09-05 00:19:07 +04:00
|
|
|
g->panic = NULL;
|
2004-08-30 17:44:44 +04:00
|
|
|
g->gcstate = GCSpause;
|
2017-04-24 19:59:26 +03:00
|
|
|
g->gckind = KGC_INC;
|
2021-02-26 17:41:02 +03:00
|
|
|
g->gcstopem = 0;
|
2018-02-05 20:11:37 +03:00
|
|
|
g->gcemergency = 0;
|
2017-04-11 22:00:27 +03:00
|
|
|
g->finobj = g->tobefnz = g->fixedgc = NULL;
|
2020-07-29 23:05:47 +03:00
|
|
|
g->firstold1 = g->survival = g->old1 = g->reallyold = NULL;
|
2020-07-29 17:34:08 +03:00
|
|
|
g->finobjsur = g->finobjold1 = g->finobjrold = NULL;
|
2013-08-30 23:14:26 +04:00
|
|
|
g->sweepgc = NULL;
|
2010-04-30 22:36:22 +04:00
|
|
|
g->gray = g->grayagain = NULL;
|
2018-11-01 19:21:00 +03:00
|
|
|
g->weak = g->ephemeron = g->allweak = NULL;
|
2014-02-18 17:39:37 +04:00
|
|
|
g->twups = NULL;
|
2009-11-18 16:13:47 +03:00
|
|
|
g->totalbytes = sizeof(LG);
|
2022-11-03 22:37:13 +03:00
|
|
|
g->totalobjs = 1;
|
2022-11-23 23:17:20 +03:00
|
|
|
g->marked = 0;
|
2010-12-20 22:40:07 +03:00
|
|
|
g->GCdebt = 0;
|
2018-06-18 15:08:10 +03:00
|
|
|
setivalue(&g->nilvalue, 0); /* to signal that state is not yet built */
|
2022-12-13 17:55:14 +03:00
|
|
|
setgcparam(g, gcpause, LUAI_GCPAUSE);
|
|
|
|
setgcparam(g, gcstepmul, LUAI_GCMUL);
|
2017-05-26 22:14:29 +03:00
|
|
|
g->gcstepsize = LUAI_GCSTEPSIZE;
|
2022-12-13 17:55:14 +03:00
|
|
|
setgcparam(g, genmajormul, LUAI_GENMAJORMUL);
|
|
|
|
setgcparam(g, genminormul, LUAI_GENMINORMUL);
|
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) {
|
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
|
|
|
}
|
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) {
|
2005-10-07 00:46:25 +04:00
|
|
|
lua_lock(L);
|
2020-07-06 20:06:47 +03:00
|
|
|
L = G(L)->mainthread; /* only the main thread can be closed */
|
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
|
|
|
|
2019-03-14 21:30:54 +03:00
|
|
|
void luaE_warning (lua_State *L, const char *msg, int tocont) {
|
2019-01-01 17:14:56 +03:00
|
|
|
lua_WarnFunction wf = G(L)->warnf;
|
|
|
|
if (wf != NULL)
|
2019-03-14 21:30:54 +03:00
|
|
|
wf(G(L)->ud_warn, msg, tocont);
|
2019-01-01 17:14:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-16 15:51:54 +03:00
|
|
|
/*
|
|
|
|
** Generate a warning from an error message
|
|
|
|
*/
|
|
|
|
void luaE_warnerror (lua_State *L, const char *where) {
|
2022-10-29 18:06:37 +03:00
|
|
|
TValue *errobj = s2v(L->top.p - 1); /* error object */
|
2019-08-16 15:51:54 +03:00
|
|
|
const char *msg = (ttisstring(errobj))
|
|
|
|
? svalue(errobj)
|
|
|
|
: "error object is not a string";
|
|
|
|
/* produce warning "error in %s (%s)" (where, msg) */
|
|
|
|
luaE_warning(L, "error in ", 1);
|
|
|
|
luaE_warning(L, where, 1);
|
|
|
|
luaE_warning(L, " (", 1);
|
|
|
|
luaE_warning(L, msg, 1);
|
|
|
|
luaE_warning(L, ")", 0);
|
|
|
|
}
|
|
|
|
|