variants for "ARGS".

This commit is contained in:
Roberto Ierusalimschy
1997-12-30 17:08:23 -02:00
parent a5fd7d722c
commit f76bca23ef
3 changed files with 14 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lopcodes.h,v 1.12 1997/10/24 18:40:29 roberto Exp roberto $
** $Id: lopcodes.h,v 1.13 1997/12/29 17:35:46 roberto Exp roberto $
** Opcodes for Lua virtual machine
** See Copyright Notice in lua.h
*/
@@ -172,6 +172,10 @@ POP0,/* - - - TOP-=1 */
POP1,/* - - - TOP-=2 */
ARGS,/* b - - TOP=BASE+b */
ARGS0,/* - - - TOP=BASE+0 */
ARGS1,/* - - - TOP=BASE+1 */
ARGS2,/* - - - TOP=BASE+2 */
ARGS3,/* - - - TOP=BASE+3 */
VARARGS/* b v_x...v_1 {v_1...v_x;n=x} TOP=BASE+b+1 */
} OpCode;