diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-23 14:41:16 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-23 14:41:16 -0200 |
commit | 196c87c9cecfacf978f37de4ec69eba0a5971256 (patch) | |
tree | ce434c8a63228cf1f25adcc2210ba741ee899887 /lparser.c | |
parent | 39f26b1480502cc2f75a5af6e06e5410e06634ba (diff) | |
download | lua-196c87c9cecfacf978f37de4ec69eba0a5971256.tar.gz lua-196c87c9cecfacf978f37de4ec69eba0a5971256.tar.bz2 lua-196c87c9cecfacf978f37de4ec69eba0a5971256.zip |
no more 'stackless' implementation; 'luaV_execute' calls itself
recursively to execute function calls. 'unroll' continues all
executions suspended by an yield (through a long jump)
Diffstat (limited to 'lparser.c')
-rw-r--r-- | lparser.c | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.c,v 2.166 2017/09/28 16:53:29 roberto Exp roberto $ | 2 | ** $Id: lparser.c,v 2.167 2017/10/04 21:53:03 roberto Exp roberto $ |
3 | ** Lua Parser | 3 | ** Lua Parser |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -330,11 +330,7 @@ static void adjust_assign (LexState *ls, int nvars, int nexps, expdesc *e) { | |||
330 | } | 330 | } |
331 | 331 | ||
332 | 332 | ||
333 | static void enterlevel (LexState *ls) { | 333 | #define enterlevel(ls) luaE_incCcalls((ls)->L) |
334 | lua_State *L = ls->L; | ||
335 | ++L->nCcalls; | ||
336 | checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels"); | ||
337 | } | ||
338 | 334 | ||
339 | 335 | ||
340 | #define leavelevel(ls) ((ls)->L->nCcalls--) | 336 | #define leavelevel(ls) ((ls)->L->nCcalls--) |
@@ -1188,9 +1184,9 @@ static void assignment (LexState *ls, struct LHS_assign *lh, int nvars) { | |||
1188 | suffixedexp(ls, &nv.v); | 1184 | suffixedexp(ls, &nv.v); |
1189 | if (!vkisindexed(nv.v.k)) | 1185 | if (!vkisindexed(nv.v.k)) |
1190 | check_conflict(ls, lh, &nv.v); | 1186 | check_conflict(ls, lh, &nv.v); |
1191 | checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS, | 1187 | luaE_incCcalls(ls->L); /* control recursion depth */ |
1192 | "C levels"); | ||
1193 | assignment(ls, &nv, nvars+1); | 1188 | assignment(ls, &nv, nvars+1); |
1189 | ls->L->nCcalls--; | ||
1194 | } | 1190 | } |
1195 | else { /* assignment -> '=' explist */ | 1191 | else { /* assignment -> '=' explist */ |
1196 | int nexps; | 1192 | int nexps; |