xref: /netbsd-src/external/mit/lua/dist/src/ldo.c (revision a24efa7dea9f1f56c3bdb15a927d3516792ace1c)
1 /*	$NetBSD: ldo.c,v 1.5 2016/01/28 14:41:39 lneto Exp $	*/
2 
3 /*
4 ** Id: ldo.c,v 2.150 2015/11/19 19:16:22 roberto Exp
5 ** Stack and Call structure of Lua
6 ** See Copyright Notice in lua.h
7 */
8 
9 #define ldo_c
10 #define LUA_CORE
11 
12 #include "lprefix.h"
13 
14 
15 #ifndef _KERNEL
16 #include <setjmp.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #endif /* _KERNEL */
20 
21 #include "lua.h"
22 
23 #include "lapi.h"
24 #include "ldebug.h"
25 #include "ldo.h"
26 #include "lfunc.h"
27 #include "lgc.h"
28 #include "lmem.h"
29 #include "lobject.h"
30 #include "lopcodes.h"
31 #include "lparser.h"
32 #include "lstate.h"
33 #include "lstring.h"
34 #include "ltable.h"
35 #include "ltm.h"
36 #include "lundump.h"
37 #include "lvm.h"
38 #include "lzio.h"
39 
40 
41 
42 #define errorstatus(s)	((s) > LUA_YIELD)
43 
44 
45 /*
46 ** {======================================================
47 ** Error-recovery functions
48 ** =======================================================
49 */
50 
51 /*
52 ** LUAI_THROW/LUAI_TRY define how Lua does exception handling. By
53 ** default, Lua handles errors with exceptions when compiling as
54 ** C++ code, with _longjmp/_setjmp when asked to use them, and with
55 ** longjmp/setjmp otherwise.
56 */
57 #if !defined(LUAI_THROW)				/* { */
58 
59 #if defined(__cplusplus) && !defined(LUA_USE_LONGJMP)	/* { */
60 
61 /* C++ exceptions */
62 #define LUAI_THROW(L,c)		throw(c)
63 #define LUAI_TRY(L,c,a) \
64 	try { a } catch(...) { if ((c)->status == 0) (c)->status = -1; }
65 #define luai_jmpbuf		int  /* dummy variable */
66 
67 #elif defined(LUA_USE_POSIX)				/* }{ */
68 
69 /* in POSIX, try _longjmp/_setjmp (more efficient) */
70 #define LUAI_THROW(L,c)		_longjmp((c)->b, 1)
71 #define LUAI_TRY(L,c,a)		if (_setjmp((c)->b) == 0) { a }
72 #define luai_jmpbuf		jmp_buf
73 
74 #else							/* }{ */
75 
76 /* ISO C handling with long jumps */
77 #define LUAI_THROW(L,c)		longjmp((c)->b, 1)
78 #define LUAI_TRY(L,c,a)		if (setjmp((c)->b) == 0) { a }
79 #define luai_jmpbuf		jmp_buf
80 
81 #endif							/* } */
82 
83 #endif							/* } */
84 
85 
86 
87 /* chain list of long jump buffers */
88 struct lua_longjmp {
89   struct lua_longjmp *previous;
90   luai_jmpbuf b;
91   volatile int status;  /* error code */
92 };
93 
94 
95 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) {
96   switch (errcode) {
97     case LUA_ERRMEM: {  /* memory error? */
98       setsvalue2s(L, oldtop, G(L)->memerrmsg); /* reuse preregistered msg. */
99       break;
100     }
101     case LUA_ERRERR: {
102       setsvalue2s(L, oldtop, luaS_newliteral(L, "error in error handling"));
103       break;
104     }
105     default: {
106       setobjs2s(L, oldtop, L->top - 1);  /* error message on current top */
107       break;
108     }
109   }
110   L->top = oldtop + 1;
111 }
112 
113 
114 l_noret luaD_throw (lua_State *L, int errcode) {
115   if (L->errorJmp) {  /* thread has an error handler? */
116     L->errorJmp->status = errcode;  /* set status */
117     LUAI_THROW(L, L->errorJmp);  /* jump to it */
118   }
119   else {  /* thread has no error handler */
120     global_State *g = G(L);
121     L->status = cast_byte(errcode);  /* mark it as dead */
122     if (g->mainthread->errorJmp) {  /* main thread has a handler? */
123       setobjs2s(L, g->mainthread->top++, L->top - 1);  /* copy error obj. */
124       luaD_throw(g->mainthread, errcode);  /* re-throw in main thread */
125     }
126     else {  /* no handler at all; abort */
127       if (g->panic) {  /* panic function? */
128         seterrorobj(L, errcode, L->top);  /* assume EXTRA_STACK */
129         if (L->ci->top < L->top)
130           L->ci->top = L->top;  /* pushing msg. can break this invariant */
131         lua_unlock(L);
132         g->panic(L);  /* call panic function (last chance to jump out) */
133       }
134       abort();
135     }
136   }
137 }
138 
139 
140 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) {
141   unsigned short oldnCcalls = L->nCcalls;
142   struct lua_longjmp lj;
143   lj.status = LUA_OK;
144   lj.previous = L->errorJmp;  /* chain new error handler */
145   L->errorJmp = &lj;
146   LUAI_TRY(L, &lj,
147     (*f)(L, ud);
148   );
149   L->errorJmp = lj.previous;  /* restore old error handler */
150   L->nCcalls = oldnCcalls;
151   return lj.status;
152 }
153 
154 /* }====================================================== */
155 
156 
157 /*
158 ** {==================================================================
159 ** Stack reallocation
160 ** ===================================================================
161 */
162 static void correctstack (lua_State *L, TValue *oldstack) {
163   CallInfo *ci;
164   UpVal *up;
165   L->top = (L->top - oldstack) + L->stack;
166   for (up = L->openupval; up != NULL; up = up->u.open.next)
167     up->v = (up->v - oldstack) + L->stack;
168   for (ci = L->ci; ci != NULL; ci = ci->previous) {
169     ci->top = (ci->top - oldstack) + L->stack;
170     ci->func = (ci->func - oldstack) + L->stack;
171     if (isLua(ci))
172       ci->u.l.base = (ci->u.l.base - oldstack) + L->stack;
173   }
174 }
175 
176 
177 /* some space for error handling */
178 #define ERRORSTACKSIZE	(LUAI_MAXSTACK + 200)
179 
180 
181 void luaD_reallocstack (lua_State *L, int newsize) {
182   TValue *oldstack = L->stack;
183   int lim = L->stacksize;
184   lua_assert(newsize <= LUAI_MAXSTACK || newsize == ERRORSTACKSIZE);
185   lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK);
186   luaM_reallocvector(L, L->stack, L->stacksize, newsize, TValue);
187   for (; lim < newsize; lim++)
188     setnilvalue(L->stack + lim); /* erase new segment */
189   L->stacksize = newsize;
190   L->stack_last = L->stack + newsize - EXTRA_STACK;
191   correctstack(L, oldstack);
192 }
193 
194 
195 void luaD_growstack (lua_State *L, int n) {
196   int size = L->stacksize;
197   if (size > LUAI_MAXSTACK)  /* error after extra size? */
198     luaD_throw(L, LUA_ERRERR);
199   else {
200     int needed = cast_int(L->top - L->stack) + n + EXTRA_STACK;
201     int newsize = 2 * size;
202     if (newsize > LUAI_MAXSTACK) newsize = LUAI_MAXSTACK;
203     if (newsize < needed) newsize = needed;
204     if (newsize > LUAI_MAXSTACK) {  /* stack overflow? */
205       luaD_reallocstack(L, ERRORSTACKSIZE);
206       luaG_runerror(L, "stack overflow");
207     }
208     else
209       luaD_reallocstack(L, newsize);
210   }
211 }
212 
213 
214 static int stackinuse (lua_State *L) {
215   CallInfo *ci;
216   StkId lim = L->top;
217   for (ci = L->ci; ci != NULL; ci = ci->previous) {
218     lua_assert(ci->top <= L->stack_last);
219     if (lim < ci->top) lim = ci->top;
220   }
221   return cast_int(lim - L->stack) + 1;  /* part of stack in use */
222 }
223 
224 
225 void luaD_shrinkstack (lua_State *L) {
226   int inuse = stackinuse(L);
227   int goodsize = inuse + (inuse / 8) + 2*EXTRA_STACK;
228   if (goodsize > LUAI_MAXSTACK) goodsize = LUAI_MAXSTACK;
229   if (L->stacksize > LUAI_MAXSTACK)  /* was handling stack overflow? */
230     luaE_freeCI(L);  /* free all CIs (list grew because of an error) */
231   else
232     luaE_shrinkCI(L);  /* shrink list */
233   if (inuse <= LUAI_MAXSTACK &&  /* not handling stack overflow? */
234       goodsize < L->stacksize)  /* trying to shrink? */
235     luaD_reallocstack(L, goodsize);  /* shrink it */
236   else
237     condmovestack(L,,);  /* don't change stack (change only for debugging) */
238 }
239 
240 
241 void luaD_inctop (lua_State *L) {
242   luaD_checkstack(L, 1);
243   L->top++;
244 }
245 
246 /* }================================================================== */
247 
248 
249 void luaD_hook (lua_State *L, int event, int line) {
250   lua_Hook hook = L->hook;
251   if (hook && L->allowhook) {
252     CallInfo *ci = L->ci;
253     ptrdiff_t top = savestack(L, L->top);
254     ptrdiff_t ci_top = savestack(L, ci->top);
255     lua_Debug ar;
256     ar.event = event;
257     ar.currentline = line;
258     ar.i_ci = ci;
259     luaD_checkstack(L, LUA_MINSTACK);  /* ensure minimum stack size */
260     ci->top = L->top + LUA_MINSTACK;
261     lua_assert(ci->top <= L->stack_last);
262     L->allowhook = 0;  /* cannot call hooks inside a hook */
263     ci->callstatus |= CIST_HOOKED;
264     lua_unlock(L);
265     (*hook)(L, &ar);
266     lua_lock(L);
267     lua_assert(!L->allowhook);
268     L->allowhook = 1;
269     ci->top = restorestack(L, ci_top);
270     L->top = restorestack(L, top);
271     ci->callstatus &= ~CIST_HOOKED;
272   }
273 }
274 
275 
276 static void callhook (lua_State *L, CallInfo *ci) {
277   int hook = LUA_HOOKCALL;
278   ci->u.l.savedpc++;  /* hooks assume 'pc' is already incremented */
279   if (isLua(ci->previous) &&
280       GET_OPCODE(*(ci->previous->u.l.savedpc - 1)) == OP_TAILCALL) {
281     ci->callstatus |= CIST_TAIL;
282     hook = LUA_HOOKTAILCALL;
283   }
284   luaD_hook(L, hook, -1);
285   ci->u.l.savedpc--;  /* correct 'pc' */
286 }
287 
288 
289 static StkId adjust_varargs (lua_State *L, Proto *p, int actual) {
290   int i;
291   int nfixargs = p->numparams;
292   StkId base, fixed;
293   /* move fixed parameters to final position */
294   fixed = L->top - actual;  /* first fixed argument */
295   base = L->top;  /* final position of first argument */
296   for (i = 0; i < nfixargs && i < actual; i++) {
297     setobjs2s(L, L->top++, fixed + i);
298     setnilvalue(fixed + i);  /* erase original copy (for GC) */
299   }
300   for (; i < nfixargs; i++)
301     setnilvalue(L->top++);  /* complete missing arguments */
302   return base;
303 }
304 
305 
306 /*
307 ** Check whether __call metafield of 'func' is a function. If so, put
308 ** it in stack below original 'func' so that 'luaD_precall' can call
309 ** it. Raise an error if __call metafield is not a function.
310 */
311 static void tryfuncTM (lua_State *L, StkId func) {
312   const TValue *tm = luaT_gettmbyobj(L, func, TM_CALL);
313   StkId p;
314   if (!ttisfunction(tm))
315     luaG_typeerror(L, func, "call");
316   /* Open a hole inside the stack at 'func' */
317   for (p = L->top; p > func; p--)
318     setobjs2s(L, p, p-1);
319   L->top++;  /* slot ensured by caller */
320   setobj2s(L, func, tm);  /* tag method is the new function to be called */
321 }
322 
323 
324 
325 #define next_ci(L) (L->ci = (L->ci->next ? L->ci->next : luaE_extendCI(L)))
326 
327 
328 /* macro to check stack size, preserving 'p' */
329 #define checkstackp(L,n,p)  \
330   luaD_checkstackaux(L, n, \
331     ptrdiff_t t__ = savestack(L, p);  /* save 'p' */ \
332     luaC_checkGC(L),  /* stack grow uses memory */ \
333     p = restorestack(L, t__))  /* 'pos' part: restore 'p' */
334 
335 
336 /*
337 ** Prepares a function call: checks the stack, creates a new CallInfo
338 ** entry, fills in the relevant information, calls hook if needed.
339 ** If function is a C function, does the call, too. (Otherwise, leave
340 ** the execution ('luaV_execute') to the caller, to allow stackless
341 ** calls.) Returns true iff function has been executed (C function).
342 */
343 int luaD_precall (lua_State *L, StkId func, int nresults) {
344   lua_CFunction f;
345   CallInfo *ci;
346   switch (ttype(func)) {
347     case LUA_TCCL:  /* C closure */
348       f = clCvalue(func)->f;
349       goto Cfunc;
350     case LUA_TLCF:  /* light C function */
351       f = fvalue(func);
352      Cfunc: {
353       int n;  /* number of returns */
354       checkstackp(L, LUA_MINSTACK, func);  /* ensure minimum stack size */
355       ci = next_ci(L);  /* now 'enter' new function */
356       ci->nresults = nresults;
357       ci->func = func;
358       ci->top = L->top + LUA_MINSTACK;
359       lua_assert(ci->top <= L->stack_last);
360       ci->callstatus = 0;
361       if (L->hookmask & LUA_MASKCALL)
362         luaD_hook(L, LUA_HOOKCALL, -1);
363       lua_unlock(L);
364       n = (*f)(L);  /* do the actual call */
365       lua_lock(L);
366       api_checknelems(L, n);
367       luaD_poscall(L, ci, L->top - n, n);
368       return 1;
369     }
370     case LUA_TLCL: {  /* Lua function: prepare its call */
371       StkId base;
372       Proto *p = clLvalue(func)->p;
373       int n = cast_int(L->top - func) - 1;  /* number of real arguments */
374       int fsize = p->maxstacksize;  /* frame size */
375       checkstackp(L, fsize, func);
376       if (p->is_vararg != 1) {  /* do not use vararg? */
377         for (; n < p->numparams; n++)
378           setnilvalue(L->top++);  /* complete missing arguments */
379         base = func + 1;
380       }
381       else
382         base = adjust_varargs(L, p, n);
383       ci = next_ci(L);  /* now 'enter' new function */
384       ci->nresults = nresults;
385       ci->func = func;
386       ci->u.l.base = base;
387       L->top = ci->top = base + fsize;
388       lua_assert(ci->top <= L->stack_last);
389       ci->u.l.savedpc = p->code;  /* starting point */
390       ci->callstatus = CIST_LUA;
391       if (L->hookmask & LUA_MASKCALL)
392         callhook(L, ci);
393       return 0;
394     }
395     default: {  /* not a function */
396       checkstackp(L, 1, func);  /* ensure space for metamethod */
397       tryfuncTM(L, func);  /* try to get '__call' metamethod */
398       return luaD_precall(L, func, nresults);  /* now it must be a function */
399     }
400   }
401 }
402 
403 
404 /*
405 ** Given 'nres' results at 'firstResult', move 'wanted' of them to 'res'.
406 ** Handle most typical cases (zero results for commands, one result for
407 ** expressions, multiple results for tail calls/single parameters)
408 ** separated.
409 */
410 static int moveresults (lua_State *L, const TValue *firstResult, StkId res,
411                                       int nres, int wanted) {
412   switch (wanted) {  /* handle typical cases separately */
413     case 0: break;  /* nothing to move */
414     case 1: {  /* one result needed */
415       if (nres == 0)   /* no results? */
416         firstResult = luaO_nilobject;  /* adjust with nil */
417       setobjs2s(L, res, firstResult);  /* move it to proper place */
418       break;
419     }
420     case LUA_MULTRET: {
421       int i;
422       for (i = 0; i < nres; i++)  /* move all results to correct place */
423         setobjs2s(L, res + i, firstResult + i);
424       L->top = res + nres;
425       return 0;  /* wanted == LUA_MULTRET */
426     }
427     default: {
428       int i;
429       if (wanted <= nres) {  /* enough results? */
430         for (i = 0; i < wanted; i++)  /* move wanted results to correct place */
431           setobjs2s(L, res + i, firstResult + i);
432       }
433       else {  /* not enough results; use all of them plus nils */
434         for (i = 0; i < nres; i++)  /* move all results to correct place */
435           setobjs2s(L, res + i, firstResult + i);
436         for (; i < wanted; i++)  /* complete wanted number of results */
437           setnilvalue(res + i);
438       }
439       break;
440     }
441   }
442   L->top = res + wanted;  /* top points after the last result */
443   return 1;
444 }
445 
446 
447 /*
448 ** Finishes a function call: calls hook if necessary, removes CallInfo,
449 ** moves current number of results to proper place; returns 0 iff call
450 ** wanted multiple (variable number of) results.
451 */
452 int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, int nres) {
453   StkId res;
454   int wanted = ci->nresults;
455   if (L->hookmask & (LUA_MASKRET | LUA_MASKLINE)) {
456     if (L->hookmask & LUA_MASKRET) {
457       ptrdiff_t fr = savestack(L, firstResult);  /* hook may change stack */
458       luaD_hook(L, LUA_HOOKRET, -1);
459       firstResult = restorestack(L, fr);
460     }
461     L->oldpc = ci->previous->u.l.savedpc;  /* 'oldpc' for caller function */
462   }
463   res = ci->func;  /* res == final position of 1st result */
464   L->ci = ci->previous;  /* back to caller */
465   /* move results to proper place */
466   return moveresults(L, firstResult, res, nres, wanted);
467 }
468 
469 
470 /*
471 ** Check appropriate error for stack overflow ("regular" overflow or
472 ** overflow while handling stack overflow). If 'nCalls' is larger than
473 ** LUAI_MAXCCALLS (which means it is handling a "regular" overflow) but
474 ** smaller than 9/8 of LUAI_MAXCCALLS, does not report an error (to
475 ** allow overflow handling to work)
476 */
477 static void stackerror (lua_State *L) {
478   if (L->nCcalls == LUAI_MAXCCALLS)
479     luaG_runerror(L, "C stack overflow");
480   else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3)))
481     luaD_throw(L, LUA_ERRERR);  /* error while handing stack error */
482 }
483 
484 
485 /*
486 ** Call a function (C or Lua). The function to be called is at *func.
487 ** The arguments are on the stack, right after the function.
488 ** When returns, all the results are on the stack, starting at the original
489 ** function position.
490 */
491 void luaD_call (lua_State *L, StkId func, int nResults) {
492   if (++L->nCcalls >= LUAI_MAXCCALLS)
493     stackerror(L);
494   if (!luaD_precall(L, func, nResults))  /* is a Lua function? */
495     luaV_execute(L);  /* call it */
496   L->nCcalls--;
497 }
498 
499 
500 /*
501 ** Similar to 'luaD_call', but does not allow yields during the call
502 */
503 void luaD_callnoyield (lua_State *L, StkId func, int nResults) {
504   L->nny++;
505   luaD_call(L, func, nResults);
506   L->nny--;
507 }
508 
509 
510 /*
511 ** Completes the execution of an interrupted C function, calling its
512 ** continuation function.
513 */
514 static void finishCcall (lua_State *L, int status) {
515   CallInfo *ci = L->ci;
516   int n;
517   /* must have a continuation and must be able to call it */
518   lua_assert(ci->u.c.k != NULL && L->nny == 0);
519   /* error status can only happen in a protected call */
520   lua_assert((ci->callstatus & CIST_YPCALL) || status == LUA_YIELD);
521   if (ci->callstatus & CIST_YPCALL) {  /* was inside a pcall? */
522     ci->callstatus &= ~CIST_YPCALL;  /* finish 'lua_pcall' */
523     L->errfunc = ci->u.c.old_errfunc;
524   }
525   /* finish 'lua_callk'/'lua_pcall'; CIST_YPCALL and 'errfunc' already
526      handled */
527   adjustresults(L, ci->nresults);
528   /* call continuation function */
529   lua_unlock(L);
530   n = (*ci->u.c.k)(L, status, ci->u.c.ctx);
531   lua_lock(L);
532   api_checknelems(L, n);
533   /* finish 'luaD_precall' */
534   luaD_poscall(L, ci, L->top - n, n);
535 }
536 
537 
538 /*
539 ** Executes "full continuation" (everything in the stack) of a
540 ** previously interrupted coroutine until the stack is empty (or another
541 ** interruption long-jumps out of the loop). If the coroutine is
542 ** recovering from an error, 'ud' points to the error status, which must
543 ** be passed to the first continuation function (otherwise the default
544 ** status is LUA_YIELD).
545 */
546 static void unroll (lua_State *L, void *ud) {
547   if (ud != NULL)  /* error status? */
548     finishCcall(L, *(int *)ud);  /* finish 'lua_pcallk' callee */
549   while (L->ci != &L->base_ci) {  /* something in the stack */
550     if (!isLua(L->ci))  /* C function? */
551       finishCcall(L, LUA_YIELD);  /* complete its execution */
552     else {  /* Lua function */
553       luaV_finishOp(L);  /* finish interrupted instruction */
554       luaV_execute(L);  /* execute down to higher C 'boundary' */
555     }
556   }
557 }
558 
559 
560 /*
561 ** Try to find a suspended protected call (a "recover point") for the
562 ** given thread.
563 */
564 static CallInfo *findpcall (lua_State *L) {
565   CallInfo *ci;
566   for (ci = L->ci; ci != NULL; ci = ci->previous) {  /* search for a pcall */
567     if (ci->callstatus & CIST_YPCALL)
568       return ci;
569   }
570   return NULL;  /* no pending pcall */
571 }
572 
573 
574 /*
575 ** Recovers from an error in a coroutine. Finds a recover point (if
576 ** there is one) and completes the execution of the interrupted
577 ** 'luaD_pcall'. If there is no recover point, returns zero.
578 */
579 static int recover (lua_State *L, int status) {
580   StkId oldtop;
581   CallInfo *ci = findpcall(L);
582   if (ci == NULL) return 0;  /* no recovery point */
583   /* "finish" luaD_pcall */
584   oldtop = restorestack(L, ci->extra);
585   luaF_close(L, oldtop);
586   seterrorobj(L, status, oldtop);
587   L->ci = ci;
588   L->allowhook = getoah(ci->callstatus);  /* restore original 'allowhook' */
589   L->nny = 0;  /* should be zero to be yieldable */
590   luaD_shrinkstack(L);
591   L->errfunc = ci->u.c.old_errfunc;
592   return 1;  /* continue running the coroutine */
593 }
594 
595 
596 /*
597 ** signal an error in the call to 'resume', not in the execution of the
598 ** coroutine itself. (Such errors should not be handled by any coroutine
599 ** error handler and should not kill the coroutine.)
600 */
601 static l_noret resume_error (lua_State *L, const char *msg, StkId firstArg) {
602   L->top = firstArg;  /* remove args from the stack */
603   setsvalue2s(L, L->top, luaS_new(L, msg));  /* push error message */
604   api_incr_top(L);
605   luaD_throw(L, -1);  /* jump back to 'lua_resume' */
606 }
607 
608 
609 /*
610 ** Do the work for 'lua_resume' in protected mode. Most of the work
611 ** depends on the status of the coroutine: initial state, suspended
612 ** inside a hook, or regularly suspended (optionally with a continuation
613 ** function), plus erroneous cases: non-suspended coroutine or dead
614 ** coroutine.
615 */
616 static void resume (lua_State *L, void *ud) {
617   int nCcalls = L->nCcalls;
618   int n = *(cast(int*, ud));  /* number of arguments */
619   StkId firstArg = L->top - n;  /* first argument */
620   CallInfo *ci = L->ci;
621   if (nCcalls >= LUAI_MAXCCALLS)
622     resume_error(L, "C stack overflow", firstArg);
623   if (L->status == LUA_OK) {  /* may be starting a coroutine */
624     if (ci != &L->base_ci)  /* not in base level? */
625       resume_error(L, "cannot resume non-suspended coroutine", firstArg);
626     /* coroutine is in base level; start running it */
627     if (!luaD_precall(L, firstArg - 1, LUA_MULTRET))  /* Lua function? */
628       luaV_execute(L);  /* call it */
629   }
630   else if (L->status != LUA_YIELD)
631     resume_error(L, "cannot resume dead coroutine", firstArg);
632   else {  /* resuming from previous yield */
633     L->status = LUA_OK;  /* mark that it is running (again) */
634     ci->func = restorestack(L, ci->extra);
635     if (isLua(ci))  /* yielded inside a hook? */
636       luaV_execute(L);  /* just continue running Lua code */
637     else {  /* 'common' yield */
638       if (ci->u.c.k != NULL) {  /* does it have a continuation function? */
639         lua_unlock(L);
640         n = (*ci->u.c.k)(L, LUA_YIELD, ci->u.c.ctx); /* call continuation */
641         lua_lock(L);
642         api_checknelems(L, n);
643         firstArg = L->top - n;  /* yield results come from continuation */
644       }
645       luaD_poscall(L, ci, firstArg, n);  /* finish 'luaD_precall' */
646     }
647     unroll(L, NULL);  /* run continuation */
648   }
649   lua_assert(nCcalls == L->nCcalls);
650 }
651 
652 
653 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs) {
654   int status;
655   unsigned short oldnny = L->nny;  /* save "number of non-yieldable" calls */
656   lua_lock(L);
657   luai_userstateresume(L, nargs);
658   L->nCcalls = (from) ? from->nCcalls + 1 : 1;
659   L->nny = 0;  /* allow yields */
660   api_checknelems(L, (L->status == LUA_OK) ? nargs + 1 : nargs);
661   status = luaD_rawrunprotected(L, resume, &nargs);
662   if (status == -1)  /* error calling 'lua_resume'? */
663     status = LUA_ERRRUN;
664   else {  /* continue running after recoverable errors */
665     while (errorstatus(status) && recover(L, status)) {
666       /* unroll continuation */
667       status = luaD_rawrunprotected(L, unroll, &status);
668     }
669     if (errorstatus(status)) {  /* unrecoverable error? */
670       L->status = cast_byte(status);  /* mark thread as 'dead' */
671       seterrorobj(L, status, L->top);  /* push error message */
672       L->ci->top = L->top;
673     }
674     else lua_assert(status == L->status);  /* normal end or yield */
675   }
676   L->nny = oldnny;  /* restore 'nny' */
677   L->nCcalls--;
678   lua_assert(L->nCcalls == ((from) ? from->nCcalls : 0));
679   lua_unlock(L);
680   return status;
681 }
682 
683 
684 LUA_API int lua_isyieldable (lua_State *L) {
685   return (L->nny == 0);
686 }
687 
688 
689 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx,
690                         lua_KFunction k) {
691   CallInfo *ci = L->ci;
692   luai_userstateyield(L, nresults);
693   lua_lock(L);
694   api_checknelems(L, nresults);
695   if (L->nny > 0) {
696     if (L != G(L)->mainthread)
697       luaG_runerror(L, "attempt to yield across a C-call boundary");
698     else
699       luaG_runerror(L, "attempt to yield from outside a coroutine");
700   }
701   L->status = LUA_YIELD;
702   ci->extra = savestack(L, ci->func);  /* save current 'func' */
703   if (isLua(ci)) {  /* inside a hook? */
704     api_check(L, k == NULL, "hooks cannot continue after yielding");
705   }
706   else {
707     if ((ci->u.c.k = k) != NULL)  /* is there a continuation? */
708       ci->u.c.ctx = ctx;  /* save context */
709     ci->func = L->top - nresults - 1;  /* protect stack below results */
710     luaD_throw(L, LUA_YIELD);
711   }
712   lua_assert(ci->callstatus & CIST_HOOKED);  /* must be inside a hook */
713   lua_unlock(L);
714   return 0;  /* return to 'luaD_hook' */
715 }
716 
717 
718 int luaD_pcall (lua_State *L, Pfunc func, void *u,
719                 ptrdiff_t old_top, ptrdiff_t ef) {
720   int status;
721   CallInfo *old_ci = L->ci;
722   lu_byte old_allowhooks = L->allowhook;
723   unsigned short old_nny = L->nny;
724   ptrdiff_t old_errfunc = L->errfunc;
725   L->errfunc = ef;
726   status = luaD_rawrunprotected(L, func, u);
727   if (status != LUA_OK) {  /* an error occurred? */
728     StkId oldtop = restorestack(L, old_top);
729     luaF_close(L, oldtop);  /* close possible pending closures */
730     seterrorobj(L, status, oldtop);
731     L->ci = old_ci;
732     L->allowhook = old_allowhooks;
733     L->nny = old_nny;
734     luaD_shrinkstack(L);
735   }
736   L->errfunc = old_errfunc;
737   return status;
738 }
739 
740 
741 
742 /*
743 ** Execute a protected parser.
744 */
745 struct SParser {  /* data to 'f_parser' */
746   ZIO *z;
747   Mbuffer buff;  /* dynamic structure used by the scanner */
748   Dyndata dyd;  /* dynamic structures used by the parser */
749   const char *mode;
750   const char *name;
751 };
752 
753 
754 static void checkmode (lua_State *L, const char *mode, const char *x) {
755   if (mode && strchr(mode, x[0]) == NULL) {
756     luaO_pushfstring(L,
757        "attempt to load a %s chunk (mode is '%s')", x, mode);
758     luaD_throw(L, LUA_ERRSYNTAX);
759   }
760 }
761 
762 
763 static void f_parser (lua_State *L, void *ud) {
764   LClosure *cl;
765   struct SParser *p = cast(struct SParser *, ud);
766   int c = zgetc(p->z);  /* read first character */
767   if (c == LUA_SIGNATURE[0]) {
768     checkmode(L, p->mode, "binary");
769     cl = luaU_undump(L, p->z, p->name);
770   }
771   else {
772     checkmode(L, p->mode, "text");
773     cl = luaY_parser(L, p->z, &p->buff, &p->dyd, p->name, c);
774   }
775   lua_assert(cl->nupvalues == cl->p->sizeupvalues);
776   luaF_initupvals(L, cl);
777 }
778 
779 
780 int luaD_protectedparser (lua_State *L, ZIO *z, const char *name,
781                                         const char *mode) {
782   struct SParser p;
783   int status;
784   L->nny++;  /* cannot yield during parsing */
785   p.z = z; p.name = name; p.mode = mode;
786   p.dyd.actvar.arr = NULL; p.dyd.actvar.size = 0;
787   p.dyd.gt.arr = NULL; p.dyd.gt.size = 0;
788   p.dyd.label.arr = NULL; p.dyd.label.size = 0;
789   luaZ_initbuffer(L, &p.buff);
790   status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc);
791   luaZ_freebuffer(L, &p.buff);
792   luaM_freearray(L, p.dyd.actvar.arr, p.dyd.actvar.size);
793   luaM_freearray(L, p.dyd.gt.arr, p.dyd.gt.size);
794   luaM_freearray(L, p.dyd.label.arr, p.dyd.label.size);
795   L->nny--;
796   return status;
797 }
798 
799 
800