aboutsummaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-02-01 16:03:10 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-02-01 16:03:10 -0200
commitdd547c55c85ba48f481836ba76ecdfe69960bcd0 (patch)
treed75d864ae35fc5bafacf3c206eaa20885b03a3d1 /lcode.h
parentf6bd8b1147d58c35e73225b4adc5499c11d2bf0f (diff)
downloadlua-dd547c55c85ba48f481836ba76ecdfe69960bcd0.tar.gz
lua-dd547c55c85ba48f481836ba76ecdfe69960bcd0.tar.bz2
lua-dd547c55c85ba48f481836ba76ecdfe69960bcd0.zip
new scheme to close upvalues in 'break'; jump instructions may
do the close, avoiding the need for a OP_CLOSE instruction
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lcode.h b/lcode.h
index fa1a7340..0c19f156 100644
--- a/lcode.h
+++ b/lcode.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.h,v 1.54 2010/04/17 12:46:32 roberto Exp roberto $ 2** $Id: lcode.h,v 1.55 2010/07/02 20:42:40 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*/
@@ -71,6 +71,7 @@ LUAI_FUNC int luaK_jump (FuncState *fs);
71LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret); 71LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret);
72LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target); 72LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target);
73LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list); 73LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list);
74LUAI_FUNC void luaK_patchclose (FuncState *fs, int list, int level);
74LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2); 75LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2);
75LUAI_FUNC int luaK_getlabel (FuncState *fs); 76LUAI_FUNC int luaK_getlabel (FuncState *fs);
76LUAI_FUNC void luaK_prefix (FuncState *fs, UnOpr op, expdesc *v, int line); 77LUAI_FUNC void luaK_prefix (FuncState *fs, UnOpr op, expdesc *v, int line);