diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-10-24 15:17:24 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-10-24 15:17:24 -0200 |
commit | e78cf96c971234ea25e35a9672ef00ea389d843f (patch) | |
tree | 57dc00fb747c26730acb13a087afb9bc7dcd3216 /lopcodes.h | |
parent | 0cb38439560fc2b912d41d3116d2d74c030d13af (diff) | |
download | lua-e78cf96c971234ea25e35a9672ef00ea389d843f.tar.gz lua-e78cf96c971234ea25e35a9672ef00ea389d843f.tar.bz2 lua-e78cf96c971234ea25e35a9672ef00ea389d843f.zip |
first version of Cclosures.
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.9 1997/10/16 10:59:34 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.10 1997/10/16 21:14:47 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 proto c(proto) */ | 138 | CLOSURE,/* b proto v_b...v_1 c(proto) */ |
139 | CLOSURE0,/* - proto c(proto) */ | 139 | CLOSURE0,/* - proto c(proto) */ |
140 | CLOSURE1,/* - v_1 proto c(proto) */ | 140 | CLOSURE1,/* - proto v_1 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) */ |