1997-11-19 15:31:19 -02:00
|
|
|
/*
|
2002-07-08 15:21:33 -03:00
|
|
|
** $Id: lstate.h,v 1.86 2002/07/02 16:43:28 roberto Exp roberto $
|
1997-11-19 15:31:19 -02:00
|
|
|
** Global State
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lstate_h
|
|
|
|
#define lstate_h
|
|
|
|
|
1998-06-02 17:37:04 -03:00
|
|
|
#include "lua.h"
|
2001-12-05 18:15:18 -02:00
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "ltm.h"
|
1999-02-04 15:47:59 -02:00
|
|
|
#include "luadebug.h"
|
1997-11-19 15:31:19 -02:00
|
|
|
|
|
|
|
|
2001-01-24 13:45:33 -02:00
|
|
|
/*
|
2001-06-15 16:16:41 -03:00
|
|
|
** macros for thread syncronization inside Lua core machine:
|
|
|
|
** all accesses to the global state and to global objects are syncronized.
|
|
|
|
** Because threads can read the stack of other threads
|
|
|
|
** (when running garbage collection),
|
|
|
|
** a thread must also syncronize any write-access to its own stack.
|
|
|
|
** Unsyncronized accesses are allowed only when reading its own stack,
|
|
|
|
** or when reading immutable fields from global objects
|
|
|
|
** (such as string values and udata values).
|
2001-01-24 13:45:33 -02:00
|
|
|
*/
|
2001-03-02 14:27:50 -03:00
|
|
|
#ifndef lua_lock
|
|
|
|
#define lua_lock(L) ((void) 0)
|
2001-01-24 13:45:33 -02:00
|
|
|
#endif
|
|
|
|
|
2001-03-02 14:27:50 -03:00
|
|
|
#ifndef lua_unlock
|
|
|
|
#define lua_unlock(L) ((void) 0)
|
2001-01-24 13:45:33 -02:00
|
|
|
#endif
|
|
|
|
|
2001-02-01 15:40:48 -02:00
|
|
|
/*
|
|
|
|
** macro to allow the inclusion of user information in Lua state
|
|
|
|
*/
|
|
|
|
#ifndef LUA_USERSTATE
|
|
|
|
#define LUA_USERSTATE
|
|
|
|
#endif
|
2001-01-24 13:45:33 -02:00
|
|
|
|
2002-01-09 20:02:47 -02:00
|
|
|
#ifndef lua_userstateopen
|
|
|
|
#define lua_userstateopen(l)
|
|
|
|
#endif
|
|
|
|
|
1999-05-10 10:54:01 -03:00
|
|
|
|
|
|
|
|
2000-09-25 13:22:42 -03:00
|
|
|
struct lua_longjmp; /* defined in ldo.c */
|
2001-12-05 18:15:18 -02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2002-05-08 14:34:23 -03:00
|
|
|
** array of `global' objects
|
2001-12-05 18:15:18 -02:00
|
|
|
*/
|
|
|
|
|
2002-05-08 14:34:23 -03:00
|
|
|
#define NUMGLOBS 3
|
|
|
|
|
2002-01-30 15:26:44 -02:00
|
|
|
/* default meta table (both for tables and udata) */
|
2002-05-08 14:34:23 -03:00
|
|
|
#define defaultmeta(L) (L->globs)
|
2001-12-05 18:15:18 -02:00
|
|
|
|
|
|
|
/* table of globals */
|
2002-05-08 14:34:23 -03:00
|
|
|
#define gt(L) (L->globs + 1)
|
2001-12-05 18:15:18 -02:00
|
|
|
|
|
|
|
/* registry */
|
2002-05-08 14:34:23 -03:00
|
|
|
#define registry(L) (L->globs + 2)
|
2001-12-05 18:15:18 -02:00
|
|
|
|
2002-01-25 20:14:54 -02:00
|
|
|
|
2002-05-08 14:34:23 -03:00
|
|
|
/* space to handle TM calls and other temporary overflows */
|
|
|
|
#define EXTRA_STACK 5
|
2002-01-25 20:14:54 -02:00
|
|
|
|
|
|
|
|
2002-03-26 17:46:10 -03:00
|
|
|
#define BASIC_CI_SIZE 8
|
2002-01-25 20:14:54 -02:00
|
|
|
|
|
|
|
#define BASIC_STACK_SIZE (2*LUA_MINSTACK)
|
|
|
|
|
1997-11-19 15:31:19 -02:00
|
|
|
|
|
|
|
|
1999-05-10 10:54:01 -03:00
|
|
|
typedef struct stringtable {
|
2000-03-10 15:37:44 -03:00
|
|
|
TString **hash;
|
2002-02-08 20:42:41 -02:00
|
|
|
ls_nstr nuse; /* number of elements */
|
|
|
|
int size;
|
1997-11-19 15:31:19 -02:00
|
|
|
} stringtable;
|
|
|
|
|
|
|
|
|
2001-12-18 18:52:30 -02:00
|
|
|
/*
|
|
|
|
** informations about a call
|
|
|
|
*/
|
|
|
|
typedef struct CallInfo {
|
|
|
|
StkId base; /* base for called function */
|
|
|
|
const Instruction *savedpc;
|
2002-01-03 15:42:57 -02:00
|
|
|
StkId top; /* top for this function (when it's a Lua function) */
|
2002-02-05 20:37:26 -02:00
|
|
|
const Instruction **pc; /* points to `pc' variable in `luaV_execute' */
|
|
|
|
StkId *pb; /* points to `base' variable in `luaV_execute' */
|
2002-03-25 14:47:14 -03:00
|
|
|
int yield_results;
|
2001-12-18 18:52:30 -02:00
|
|
|
} CallInfo;
|
|
|
|
|
|
|
|
#define ci_func(ci) (clvalue((ci)->base - 1))
|
|
|
|
|
|
|
|
|
2001-01-19 11:20:30 -02:00
|
|
|
/*
|
2001-02-23 14:17:25 -03:00
|
|
|
** `global state', shared by all threads of this state
|
2001-01-19 11:20:30 -02:00
|
|
|
*/
|
|
|
|
typedef struct global_State {
|
2000-05-10 13:33:20 -03:00
|
|
|
stringtable strt; /* hash table for strings */
|
2001-09-07 14:39:10 -03:00
|
|
|
Proto *rootproto; /* list of all prototypes */
|
2001-11-29 18:22:22 -02:00
|
|
|
Closure *rootcl; /* list of all closures */
|
2001-10-25 17:12:21 -02:00
|
|
|
Table *roottable; /* list of all tables */
|
2001-11-29 18:22:22 -02:00
|
|
|
UpVal *rootupval; /* list of closed up values */
|
2001-12-11 14:52:57 -02:00
|
|
|
Udata *rootudata; /* list of all userdata */
|
|
|
|
Udata *tmudata; /* list of userdata to be GC */
|
2002-02-08 20:42:41 -02:00
|
|
|
void *Mbuffer; /* global buffer */
|
|
|
|
size_t Mbuffsize; /* size of Mbuffer */
|
|
|
|
lu_mem GCthreshold;
|
|
|
|
lu_mem nblocks; /* number of `bytes' currently allocated */
|
2002-04-16 14:08:28 -03:00
|
|
|
lua_CFunction panic; /* to be called in unprotected errors */
|
2002-04-23 12:04:39 -03:00
|
|
|
Node dummynode[1]; /* common node array for all empty tables */
|
2001-12-05 18:15:18 -02:00
|
|
|
TString *tmname[TM_N]; /* array with tag-method names */
|
2001-01-19 11:20:30 -02:00
|
|
|
} global_State;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-02-23 14:17:25 -03:00
|
|
|
** `per thread' state
|
2001-01-19 11:20:30 -02:00
|
|
|
*/
|
|
|
|
struct lua_State {
|
2001-02-01 15:40:48 -02:00
|
|
|
LUA_USERSTATE
|
2001-01-19 11:20:30 -02:00
|
|
|
StkId top; /* first free slot in the stack */
|
2001-03-07 15:09:25 -03:00
|
|
|
CallInfo *ci; /* call info for current function */
|
2001-01-19 11:20:30 -02:00
|
|
|
StkId stack_last; /* last free slot in the stack */
|
2001-03-07 15:09:25 -03:00
|
|
|
StkId stack; /* stack base */
|
2001-12-18 18:52:30 -02:00
|
|
|
CallInfo *end_ci; /* points after end of ci array*/
|
|
|
|
CallInfo *base_ci; /* array of CallInfo's */
|
2002-03-11 09:45:00 -03:00
|
|
|
global_State *l_G;
|
2002-07-08 15:21:33 -03:00
|
|
|
int hookmask;
|
|
|
|
int hookcount;
|
|
|
|
lua_Hook hook;
|
2002-05-08 14:34:23 -03:00
|
|
|
TObject globs[NUMGLOBS]; /* registry, table of globals, etc. */
|
2001-01-22 16:01:38 -02:00
|
|
|
struct lua_longjmp *errorJmp; /* current error recover point */
|
2001-11-29 18:22:22 -02:00
|
|
|
UpVal *openupval; /* list of open upvalues in this stack */
|
2001-01-22 16:01:38 -02:00
|
|
|
lua_State *next; /* circular double linked list of states */
|
|
|
|
lua_State *previous;
|
2002-02-08 20:42:41 -02:00
|
|
|
int stacksize;
|
|
|
|
int size_ci; /* size of array `base_ci' */
|
1998-06-02 17:37:04 -03:00
|
|
|
};
|
1997-11-19 15:31:19 -02:00
|
|
|
|
|
|
|
|
2002-03-11 09:45:00 -03:00
|
|
|
#define G(L) (L->l_G)
|
2001-01-19 11:20:30 -02:00
|
|
|
|
|
|
|
|
2002-01-11 18:26:52 -02:00
|
|
|
void luaE_closethread (lua_State *OL, lua_State *L);
|
|
|
|
|
1997-11-19 15:31:19 -02:00
|
|
|
#endif
|
1999-02-04 15:47:59 -02:00
|
|
|
|