aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-19 15:40:32 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-19 15:40:32 -0300
commitdfe03c7abea6a00925a56239dfaac5be2770396e (patch)
tree0e8e3cd14d37594f29cb20781af668da3a219758 /lopcodes.h
parent8cd67ac676fd7ff6c085e1ad6675ba6af0cb1fc3 (diff)
downloadlua-dfe03c7abea6a00925a56239dfaac5be2770396e.tar.gz
lua-dfe03c7abea6a00925a56239dfaac5be2770396e.tar.bz2
lua-dfe03c7abea6a00925a56239dfaac5be2770396e.zip
small optimizations (bit scrubbing)
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index b916092d..29392229 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: $ 2** $Id: lopcodes.h,v 1.1 1997/09/16 19:25:59 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*/
@@ -36,7 +36,7 @@ PUSHLOCAL8,/* - LOC[8] */
36PUSHLOCAL9,/* - LOC[9] */ 36PUSHLOCAL9,/* - LOC[9] */
37PUSHLOCAL,/* b - LOC[b] */ 37PUSHLOCAL,/* b - LOC[b] */
38PUSHGLOBAL,/* w - VAR[w] */ 38PUSHGLOBAL,/* w - VAR[w] */
39PUSHTABLE,/* i t t[i] */ 39GETTABLE,/* i t t[i] */
40PUSHSELF,/* w t t t[CNST[w]] */ 40PUSHSELF,/* w t t t[CNST[w]] */
41CREATEARRAY,/* w - newarray(size = w) */ 41CREATEARRAY,/* w - newarray(size = w) */
42 42