summaryrefslogtreecommitdiff
path: root/lparser.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-12-28 10:55:41 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-12-28 10:55:41 -0200
commit0183b8030c80f57b87874ff7867ccdb172d9d3dc (patch)
tree1033b5a84489a2f1f1bd210b1b120155cd7aeed7 /lparser.h
parent8c49e198654567f770a7d5081b886a7c35201d81 (diff)
downloadlua-github-0183b8030c80f57b87874ff7867ccdb172d9d3dc.tar.gz
`free' gets size of the block: complete control over memory use
Diffstat (limited to 'lparser.h')
-rw-r--r--lparser.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/lparser.h b/lparser.h
index 9c34a861..933934c9 100644
--- a/lparser.h
+++ b/lparser.h
@@ -1,5 +1,5 @@
/*
-** $Id: lparser.h,v 1.27 2000/11/30 18:50:47 roberto Exp roberto $
+** $Id: lparser.h,v 1.28 2000/12/26 18:46:09 roberto Exp roberto $
** LL(1) Parser and code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -41,16 +41,15 @@ typedef struct FuncState {
struct FuncState *prev; /* enclosing function */
struct LexState *ls; /* lexical state */
struct lua_State *L; /* copy of the Lua state */
- int pc; /* next position to code */
+ int pc; /* next position to code (equivalent to `ncode') */
int lasttarget; /* `pc' of last `jump target' */
int jlt; /* list of jumps to `lasttarget' */
int stacklevel; /* number of values on activation register */
- int sizekstr; /* size of array `kstr' */
- int sizekproto; /* size of array `kproto' */
- int sizeknum; /* size of array `knum' */
- int sizelineinfo; /* size of array `lineinfo' */
- int sizecode; /* size of array `code' */
- int sizelocvars; /* size of array `locvars' */
+ int nkstr; /* number of elements in `kstr' */
+ int nkproto; /* number of elements in `kproto' */
+ int nknum; /* number of elements in `knum' */
+ int nlineinfo; /* number of elements in `lineinfo' */
+ int nlocvars; /* number of elements in `locvars' */
int nactloc; /* number of active local variables */
int nupvalues; /* number of upvalues */
int lastline; /* line where last `lineinfo' was generated */