aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-02-24 14:55:51 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-02-24 14:55:51 -0300
commit9d7bae0b6ab66e7e0cff8871e65ecddb55513d6b (patch)
tree18a4b30df4e0518580cd6dc7a370892f5f608021 /lopcodes.h
parent082aded149762ec21a7fa58ef0cc8f9a61038ca7 (diff)
downloadlua-9d7bae0b6ab66e7e0cff8871e65ecddb55513d6b.tar.gz
lua-9d7bae0b6ab66e7e0cff8871e65ecddb55513d6b.tar.bz2
lua-9d7bae0b6ab66e7e0cff8871e65ecddb55513d6b.zip
better instrumentation for internal debugging
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 886d31d1..f1d6a2e1 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.25 1999/02/09 18:01:55 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.26 1999/02/23 13:38:38 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*/
@@ -107,7 +107,9 @@ SETLINEW,/* w - - LINE=w */
107SETLINE,/* b - - LINE=b */ 107SETLINE,/* b - - LINE=b */
108 108
109LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ 109LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */
110LONGARG /* b (add b*(1<<16) to arg of next instruction) */ 110LONGARG,/* b (add b*(1<<16) to arg of next instruction) */
111
112CHECKSTACK /* b (assert #temporaries == b; only for internal debuging!) */
111 113
112} OpCode; 114} OpCode;
113 115