diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-07-29 17:38:06 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-07-29 17:38:06 -0300 |
commit | 05e8b0ae80bbeaf41ea849e9eff5d05074093560 (patch) | |
tree | a2f62c71a881d164a0af9a44d45c72dc7873c1cb /opcode.h | |
parent | 16dd77e8d95ac6d95a88cdc7b82ffad933aa4325 (diff) | |
download | lua-05e8b0ae80bbeaf41ea849e9eff5d05074093560.tar.gz lua-05e8b0ae80bbeaf41ea849e9eff5d05074093560.tar.bz2 lua-05e8b0ae80bbeaf41ea849e9eff5d05074093560.zip |
new opcode, ENDCODE, to signal end of code vector.
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | ** TeCGraf - PUC-Rio | 2 | ** TeCGraf - PUC-Rio |
3 | ** $Id: opcode.h,v 3.35 1997/07/03 22:06:06 roberto Exp $ | 3 | ** $Id: opcode.h,v 3.35 1997/07/04 14:55:37 roberto Exp roberto $ |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #ifndef opcode_h | 6 | #ifndef opcode_h |
@@ -110,7 +110,8 @@ RETCODE0, | |||
110 | RETCODE,/* b - - */ | 110 | RETCODE,/* b - - */ |
111 | SETLINE,/* w - - LINE=w */ | 111 | SETLINE,/* w - - LINE=w */ |
112 | VARARGS,/* b v_b...v_1 {v_1...v_b;n=b} */ | 112 | VARARGS,/* b v_b...v_1 {v_1...v_b;n=b} */ |
113 | STOREMAP/* b v_b k_b ...v_1 k_1 t - t[k_i]=v_i */ | 113 | STOREMAP,/* b v_b k_b ...v_1 k_1 t - t[k_i]=v_i */ |
114 | ENDCODE = 127 | ||
114 | } OpCode; | 115 | } OpCode; |
115 | 116 | ||
116 | 117 | ||