summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-29 14:31:15 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-29 14:31:15 -0200
commit298d0abff7f292fa4bfbdb40979f41bc8f80f9c2 (patch)
tree457d98c07a17f99a6fee012d49d5191c4c4bf665 /lopcodes.h
parent4fbe775154ff281bf9c04cf92d68824a82593402 (diff)
downloadlua-298d0abff7f292fa4bfbdb40979f41bc8f80f9c2.tar.gz
lua-298d0abff7f292fa4bfbdb40979f41bc8f80f9c2.tar.bz2
lua-298d0abff7f292fa4bfbdb40979f41bc8f80f9c2.zip
first version of extra debug information (NAME)
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lopcodes.h b/lopcodes.h
index f44b5f76..cb5fabeb 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.34 1999/11/25 18:59:43 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.35 1999/12/27 17:33:22 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*/
@@ -102,6 +102,9 @@ CLOSURE,/* b c v_c-v_1 closure(CNST[b], v_c-v_1) */
102SETLINEW,/* w - - LINE=w */ 102SETLINEW,/* w - - LINE=w */
103SETLINE,/* b - - LINE=b */ 103SETLINE,/* b - - LINE=b */
104 104
105SETNAMEW,/* w c - - NAME=CNST[w],c */
106SETNAME,/* b c - - NAME=CNST[b],c */
107
105LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ 108LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */
106LONGARG /* b (add b*(1<<16) to arg of next instruction) */ 109LONGARG /* b (add b*(1<<16) to arg of next instruction) */
107 110