summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-30 17:08:23 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-30 17:08:23 -0200
commitf76bca23ef1f45d3533f16285e223408346ddcaa (patch)
treed6babf7187ebb648e63748f0c14431a64e8300a9 /lopcodes.h
parenta5fd7d722c2c15ca954ecd69bfe72b8fe5c4c384 (diff)
downloadlua-f76bca23ef1f45d3533f16285e223408346ddcaa.tar.gz
lua-f76bca23ef1f45d3533f16285e223408346ddcaa.tar.bz2
lua-f76bca23ef1f45d3533f16285e223408346ddcaa.zip
variants for "ARGS".
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lopcodes.h b/lopcodes.h
index a93ae98c..3f25e828 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.12 1997/10/24 18:40:29 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.13 1997/12/29 17:35:46 roberto Exp roberto $
3** Opcodes for Lua virtual machine 3** Opcodes for Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -172,6 +172,10 @@ POP0,/* - - - TOP-=1 */
172POP1,/* - - - TOP-=2 */ 172POP1,/* - - - TOP-=2 */
173 173
174ARGS,/* b - - TOP=BASE+b */ 174ARGS,/* b - - TOP=BASE+b */
175ARGS0,/* - - - TOP=BASE+0 */
176ARGS1,/* - - - TOP=BASE+1 */
177ARGS2,/* - - - TOP=BASE+2 */
178ARGS3,/* - - - TOP=BASE+3 */
175VARARGS/* b v_x...v_1 {v_1...v_x;n=x} TOP=BASE+b+1 */ 179VARARGS/* b v_x...v_1 {v_1...v_x;n=x} TOP=BASE+b+1 */
176} OpCode; 180} OpCode;
177 181