summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/lstate.h b/lstate.h
new file mode 100644
index 00000000..45897d5b
--- /dev/null
+++ b/lstate.h
@@ -0,0 +1,82 @@
1/*
2** $Id: $
3** Global State
4** See Copyright Notice in lua.h
5*/
6
7#ifndef lstate_h
8#define lstate_h
9
10#include "lobject.h"
11
12
13#define MAX_C_BLOCKS 10
14
15#define GARBAGE_BLOCK 150
16
17
18typedef int StkId; /* index to stack elements */
19
20struct Stack {
21 TObject *last;
22 TObject *stack;
23 TObject *top;
24};
25
26struct C_Lua_Stack {
27 StkId base; /* when Lua calls C or C calls Lua, points to */
28 /* the first slot after the last parameter. */
29 StkId lua2C; /* points to first element of "array" lua2C */
30 int num; /* size of "array" lua2C */
31};
32
33
34typedef struct {
35 int size;
36 int nuse; /* number of elements (including EMPTYs) */
37 TaggedString **hash;
38} stringtable;
39
40
41struct ref {
42 TObject o;
43 enum {LOCK, HOLD, FREE, COLLECTED} status;
44};
45
46
47typedef struct LState {
48 struct C_Lua_Stack Cblocks[MAX_C_BLOCKS];
49 int numCblocks; /* number of nested Cblocks */
50 TObject *functofind; /* auxiliar */
51 struct Stack stack; /* Lua stack */
52 struct C_Lua_Stack Cstack; /* C2lua struct */
53 int stacklimit; /* limit for stack overflow */
54 void *errorJmp; /* current error recover point */
55 TObject errorim; /* error tag method */
56 GCnode rootproto; /* list of all prototypes */
57 GCnode rootcl; /* list of all closures */
58 GCnode roottable; /* list of all tables */
59 GCnode rootglobal; /* list of strings with global values */
60 stringtable *string_root; /* array of hash tables for strings and udata */
61 struct IM *IMtable; /* table for tag methods */
62 int IMtable_size; /* size of IMtable */
63 int last_tag; /* last used tag in IMtable */
64 struct FuncState *mainState, *currState; /* point to local structs in yacc */
65 struct LexState *lexstate; /* point to local struct in yacc */
66 struct ref *refArray; /* locked objects */
67 int refSize; /* size of refArray */
68 unsigned long GCthreshold;
69 unsigned long nblocks; /* number of 'blocks' currently allocated */
70 TObject globalbag; /* table for generic use by C */
71 char *Mbuffer; /* global buffer, used by luaM_buffer */
72 unsigned long Mbuffsize; /* size of Mbuffer */
73} LState;
74
75
76extern LState *lua_state;
77
78
79#define L lua_state
80
81
82#endif