1997-11-19 20:31:19 +03:00
|
|
|
/*
|
1999-12-21 21:04:41 +03:00
|
|
|
** $Id: lstate.h,v 1.25 1999/12/06 11:41:28 roberto Exp roberto $
|
1997-11-19 20:31:19 +03:00
|
|
|
** Global State
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lstate_h
|
|
|
|
#define lstate_h
|
|
|
|
|
1998-06-24 17:33:00 +04:00
|
|
|
#include <setjmp.h>
|
|
|
|
|
1997-11-19 20:31:19 +03:00
|
|
|
#include "lobject.h"
|
1998-06-03 00:37:04 +04:00
|
|
|
#include "lua.h"
|
1999-02-04 20:47:59 +03:00
|
|
|
#include "luadebug.h"
|
1997-11-19 20:31:19 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
1999-12-01 22:50:08 +03:00
|
|
|
typedef TObject *StkId; /* index to stack elements */
|
1997-11-19 20:31:19 +03:00
|
|
|
|
1999-05-10 17:54:01 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** "jmp_buf" may be an array, so it is better to make sure it has an
|
|
|
|
** address (and not that it *is* an address...)
|
|
|
|
*/
|
|
|
|
struct lua_longjmp {
|
|
|
|
jmp_buf b;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-12-01 22:50:08 +03:00
|
|
|
/*
|
|
|
|
** stack layout for C point of view:
|
|
|
|
** [lua2C, lua2C+num) - `array' lua2C
|
|
|
|
** [lua2C+num, base) - space for extra lua_Objects
|
|
|
|
** [base, L->top) - `stack' C2Lua
|
|
|
|
*/
|
1997-11-19 20:31:19 +03:00
|
|
|
struct C_Lua_Stack {
|
1999-12-01 22:50:08 +03:00
|
|
|
StkId base;
|
|
|
|
StkId lua2C;
|
|
|
|
int num;
|
1997-11-19 20:31:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-05-10 17:54:01 +04:00
|
|
|
typedef struct stringtable {
|
1997-11-19 20:31:19 +03:00
|
|
|
int size;
|
|
|
|
int nuse; /* number of elements (including EMPTYs) */
|
|
|
|
TaggedString **hash;
|
|
|
|
} stringtable;
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-06-03 00:37:04 +04:00
|
|
|
struct lua_State {
|
1998-06-19 20:14:09 +04:00
|
|
|
/* thread-specific state */
|
1999-12-01 22:50:08 +03:00
|
|
|
StkId top; /* first free slot in the stack */
|
|
|
|
StkId stack; /* stack base */
|
|
|
|
StkId stack_last; /* last free slot in the stack */
|
1999-12-06 14:41:28 +03:00
|
|
|
int stacksize;
|
1997-11-19 20:31:19 +03:00
|
|
|
struct C_Lua_Stack Cstack; /* C2lua struct */
|
1999-05-10 17:54:01 +04:00
|
|
|
struct lua_longjmp *errorJmp; /* current error recover point */
|
1998-06-03 00:37:04 +04:00
|
|
|
char *Mbuffer; /* global buffer */
|
1999-02-25 18:17:01 +03:00
|
|
|
int Mbuffbase; /* current first position of Mbuffer */
|
1998-06-03 00:37:04 +04:00
|
|
|
int Mbuffsize; /* size of Mbuffer */
|
|
|
|
int Mbuffnext; /* next position to fill in Mbuffer */
|
1999-05-11 18:19:32 +04:00
|
|
|
struct C_Lua_Stack *Cblocks;
|
1998-06-03 00:37:04 +04:00
|
|
|
int numCblocks; /* number of nested Cblocks */
|
|
|
|
/* global state */
|
1999-10-04 21:51:04 +04:00
|
|
|
TProtoFunc *rootproto; /* list of all prototypes */
|
|
|
|
Closure *rootcl; /* list of all closures */
|
|
|
|
Hash *roottable; /* list of all tables */
|
1999-11-04 20:23:12 +03:00
|
|
|
GlobalVar *rootglobal; /* list of global variables */
|
1997-11-19 20:31:19 +03:00
|
|
|
stringtable *string_root; /* array of hash tables for strings and udata */
|
|
|
|
struct IM *IMtable; /* table for tag methods */
|
|
|
|
int last_tag; /* last used tag in IMtable */
|
|
|
|
struct ref *refArray; /* locked objects */
|
|
|
|
int refSize; /* size of refArray */
|
1999-11-10 18:39:35 +03:00
|
|
|
int refFree; /* list of free positions in refArray */
|
1997-11-19 20:31:19 +03:00
|
|
|
unsigned long GCthreshold;
|
|
|
|
unsigned long nblocks; /* number of 'blocks' currently allocated */
|
1999-12-21 21:04:41 +03:00
|
|
|
int debug;
|
|
|
|
lua_CHFunction callhook;
|
|
|
|
lua_LHFunction linehook;
|
|
|
|
int allowhooks;
|
1998-06-03 00:37:04 +04:00
|
|
|
};
|
1997-11-19 20:31:19 +03:00
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
|
1997-11-19 20:31:19 +03:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|
1999-02-04 20:47:59 +03:00
|
|
|
|