aboutsummaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lcode.h b/lcode.h
index 472b4ebc..7d46ca43 100644
--- a/lcode.h
+++ b/lcode.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.h,v 1.32 2002/04/24 20:07:46 roberto Exp roberto $ 2** $Id: lcode.h,v 1.33 2002/05/07 17:36:56 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -41,6 +41,7 @@ typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_NOUNOPR } UnOpr;
41 41
42#define luaK_codeAsBx(fs,o,A,sBx) luaK_codeABx(fs,o,A,(sBx)+MAXARG_sBx) 42#define luaK_codeAsBx(fs,o,A,sBx) luaK_codeABx(fs,o,A,(sBx)+MAXARG_sBx)
43 43
44int luaK_code (FuncState *fs, Instruction i, int line);
44int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx); 45int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx);
45int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C); 46int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C);
46void luaK_nil (FuncState *fs, int from, int n); 47void luaK_nil (FuncState *fs, int from, int n);
@@ -54,7 +55,9 @@ void luaK_exp2val (FuncState *fs, expdesc *e);
54int luaK_exp2RK (FuncState *fs, expdesc *e); 55int luaK_exp2RK (FuncState *fs, expdesc *e);
55void luaK_self (FuncState *fs, expdesc *e, expdesc *key); 56void luaK_self (FuncState *fs, expdesc *e, expdesc *key);
56void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k); 57void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k);
58void luaK_moveexp (expdesc *e, int offset);
57void luaK_goiftrue (FuncState *fs, expdesc *e); 59void luaK_goiftrue (FuncState *fs, expdesc *e);
60void luaK_goiffalse (FuncState *fs, expdesc *e);
58void luaK_storevar (FuncState *fs, expdesc *var, expdesc *e); 61void luaK_storevar (FuncState *fs, expdesc *var, expdesc *e);
59void luaK_setcallreturns (FuncState *fs, expdesc *var, int nresults); 62void luaK_setcallreturns (FuncState *fs, expdesc *var, int nresults);
60int luaK_jump (FuncState *fs); 63int luaK_jump (FuncState *fs);