diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-29 14:31:15 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-29 14:31:15 -0200 |
commit | 298d0abff7f292fa4bfbdb40979f41bc8f80f9c2 (patch) | |
tree | 457d98c07a17f99a6fee012d49d5191c4c4bf665 /lopcodes.h | |
parent | 4fbe775154ff281bf9c04cf92d68824a82593402 (diff) | |
download | lua-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.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) */ | |||
102 | SETLINEW,/* w - - LINE=w */ | 102 | SETLINEW,/* w - - LINE=w */ |
103 | SETLINE,/* b - - LINE=b */ | 103 | SETLINE,/* b - - LINE=b */ |
104 | 104 | ||
105 | SETNAMEW,/* w c - - NAME=CNST[w],c */ | ||
106 | SETNAME,/* b c - - NAME=CNST[b],c */ | ||
107 | |||
105 | LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ | 108 | LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ |
106 | LONGARG /* b (add b*(1<<16) to arg of next instruction) */ | 109 | LONGARG /* b (add b*(1<<16) to arg of next instruction) */ |
107 | 110 | ||