diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-10-16 19:14:47 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-10-16 19:14:47 -0200 |
commit | 3a89c973ff139c7048ee9d85e347f4b054f62b89 (patch) | |
tree | eac364960161500da2e957e286c30c6eeba5a327 /lopcodes.h | |
parent | 52d5e8032ce375601a52c0e6fa9b6b72c5327c79 (diff) | |
download | lua-3a89c973ff139c7048ee9d85e347f4b054f62b89.tar.gz lua-3a89c973ff139c7048ee9d85e347f4b054f62b89.tar.bz2 lua-3a89c973ff139c7048ee9d85e347f4b054f62b89.zip |
details
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.8 1997/10/13 22:12:04 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.9 1997/10/16 10:59:34 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 | */ |
@@ -135,9 +135,9 @@ IFTUPJMPW,/* w x - (x!=nil)? PC-=w */ | |||
135 | IFFUPJMP,/* b x - (x==nil)? PC-=b */ | 135 | IFFUPJMP,/* b x - (x==nil)? PC-=b */ |
136 | IFFUPJMPW,/* w x - (x==nil)? PC-=w */ | 136 | IFFUPJMPW,/* w x - (x==nil)? PC-=w */ |
137 | 137 | ||
138 | CLOSURE,/* b v_b...v_1 prt c(prt) */ | 138 | CLOSURE,/* b v_b...v_1 proto c(proto) */ |
139 | CLOSURE0,/* b prt c(prt) */ | 139 | CLOSURE0,/* - proto c(proto) */ |
140 | CLOSURE1,/* b v_1 prt c(prt) */ | 140 | CLOSURE1,/* - v_1 proto c(proto) */ |
141 | 141 | ||
142 | CALLFUNC,/* b c v_c...v_1 f r_b...r_1 f(v1,...,v_c) */ | 142 | CALLFUNC,/* b c v_c...v_1 f r_b...r_1 f(v1,...,v_c) */ |
143 | CALLFUNC0,/* b v_b...v_1 f - f(v1,...,v_b) */ | 143 | CALLFUNC0,/* b v_b...v_1 f - f(v1,...,v_b) */ |