summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-29 15:35:46 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-29 15:35:46 -0200
commit4e0bf95622151cf09a2708b465d6df682ad43284 (patch)
tree884d5b225780be9629121046eea600b7451348e6 /lopcodes.h
parent498a934abf763ef1e436663ae40afea4f3a5075a (diff)
downloadlua-4e0bf95622151cf09a2708b465d6df682ad43284.tar.gz
lua-4e0bf95622151cf09a2708b465d6df682ad43284.tar.bz2
lua-4e0bf95622151cf09a2708b465d6df682ad43284.zip
variant opcodes for PUSHSELF
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/lopcodes.h b/lopcodes.h
index ec3cfce2..a93ae98c 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.11 1997/10/24 17:17:24 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.12 1997/10/24 18:40:29 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*/
@@ -79,6 +79,14 @@ GETDOTTED7,/* - t t[CONST[7]] */
79GETDOTTEDW,/* w t t[CONST[w]] */ 79GETDOTTEDW,/* w t t[CONST[w]] */
80 80
81PUSHSELF,/* b t t t[CNST[b]] */ 81PUSHSELF,/* b t t t[CNST[b]] */
82PUSHSELF0,/* - t t t[CNST[0]] */
83PUSHSELF1,/* - t t t[CNST[1]] */
84PUSHSELF2,/* - t t t[CNST[2]] */
85PUSHSELF3,/* - t t t[CNST[3]] */
86PUSHSELF4,/* - t t t[CNST[4]] */
87PUSHSELF5,/* - t t t[CNST[5]] */
88PUSHSELF6,/* - t t t[CNST[6]] */
89PUSHSELF7,/* - t t t[CNST[7]] */
82PUSHSELFW,/* w t t t[CNST[w]] */ 90PUSHSELFW,/* w t t t[CNST[w]] */
83 91
84CREATEARRAY,/* b - newarray(size = b) */ 92CREATEARRAY,/* b - newarray(size = b) */