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