Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
ldo.c File Reference
#include <setjmp.h>
#include <stdlib.h>
#include <string.h>
#include "lua.h"
#include "ldebug.h"
#include "ldo.h"
#include "lfunc.h"
#include "lgc.h"
#include "lmem.h"
#include "lobject.h"
#include "lopcodes.h"
#include "lparser.h"
#include "lstate.h"
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "lundump.h"
#include "lvm.h"
#include "lzio.h"

Go to the source code of this file.

Data Structures

struct  lua_longjmp
 
struct  SParser
 

Macros

#define ldo_c
 
#define LUA_CORE
 
#define inc_ci(L)
 

Functions

void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop)
 
static void restore_stack_limit (lua_State *L)
 
static void resetstack (lua_State *L, int status)
 
void luaD_throw (lua_State *L, int errcode)
 
int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud)
 
static void correctstack (lua_State *L, TValue *oldstack)
 
void luaD_reallocstack (lua_State *L, int newsize)
 
void luaD_reallocCI (lua_State *L, int newsize)
 
void luaD_growstack (lua_State *L, int n)
 
static CallInfogrowCI (lua_State *L)
 
void luaD_callhook (lua_State *L, int event, int line)
 
static StkId adjust_varargs (lua_State *L, Proto *p, int actual)
 
static StkId tryfuncTM (lua_State *L, StkId func)
 
int luaD_precall (lua_State *L, StkId func, int nresults)
 
static StkId callrethooks (lua_State *L, StkId firstResult)
 
int luaD_poscall (lua_State *L, StkId firstResult)
 
void luaD_call (lua_State *L, StkId func, int nResults)
 
static void resume (lua_State *L, void *ud)
 
static int resume_error (lua_State *L, const char *msg)
 
LUA_API int lua_resume (lua_State *L, int nargs)
 
LUA_API int lua_yield (lua_State *L, int nresults)
 
int luaD_pcall (lua_State *L, Pfunc func, void *u, ptrdiff_t old_top, ptrdiff_t ef)
 
static void f_parser (lua_State *L, void *ud)
 
int luaD_protectedparser (lua_State *L, ZIO *z, const char *name)
 

Macro Definition Documentation

◆ inc_ci

#define inc_ci ( L)
Value:
((L->ci == L->end_ci) ? growCI(L) : \
(condhardstacktests(luaD_reallocCI(L, L->size_ci)), ++L->ci))
static CallInfo * growCI(lua_State *L)
void luaD_reallocCI(lua_State *L, int newsize)
#define condhardstacktests(x)

Definition at line 260 of file lua-5.1.5/src/ldo.c.

260#define inc_ci(L) \
261 ((L->ci == L->end_ci) ? growCI(L) : \
262 (condhardstacktests(luaD_reallocCI(L, L->size_ci)), ++L->ci))

Referenced by luaD_precall().

◆ ldo_c

#define ldo_c

Definition at line 12 of file lua-5.1.5/src/ldo.c.

◆ LUA_CORE

#define LUA_CORE

Definition at line 13 of file lua-5.1.5/src/ldo.c.

Function Documentation

◆ adjust_varargs()

static StkId adjust_varargs ( lua_State * L,
Proto * p,
int actual )
static

Definition at line 208 of file lua-5.1.5/src/ldo.c.

208 {
209 int i;
210 int nfixargs = p->numparams;
211 Table *htab = NULL;
212 StkId base, fixed;
213 for (; actual < nfixargs; ++actual)
214 setnilvalue(L->top++);
215#if defined(LUA_COMPAT_VARARG)
216 if (p->is_vararg & VARARG_NEEDSARG) { /* compat. with old-style vararg? */
217 int nvar = actual - nfixargs; /* number of extra arguments */
219 luaC_checkGC(L);
221 htab = luaH_new(L, nvar, 1); /* create `arg' table */
222 for (i=0; i<nvar; i++) /* put extra arguments into `arg' table */
223 setobj2n(L, luaH_setnum(L, htab, i+1), L->top - nvar + i);
224 /* store counter in field `n' */
225 setnvalue(luaH_setstr(L, htab, luaS_newliteral(L, "n")), cast_num(nvar));
226 }
227#endif
228 /* move fixed parameters to final position */
229 fixed = L->top - actual; /* first fixed argument */
230 base = L->top; /* final position of first argument */
231 for (i=0; i<nfixargs; i++) {
232 setobjs2s(L, L->top++, fixed+i);
233 setnilvalue(fixed+i);
234 }
235 /* add `arg' parameter */
236 if (htab) {
237 sethvalue(L, L->top++, htab);
238 lua_assert(iswhite(obj2gco(htab)));
239 }
240 return base;
241}
#define NULL
Definition gmacros.h:924
#define luaD_checkstack(L, n)
#define iswhite(x)
#define luaC_checkGC(L)
#define lua_assert(c)
#define cast_num(i)
#define VARARG_HASARG
#define setobjs2s
#define setnvalue(obj, x)
#define sethvalue(L, obj, x)
#define VARARG_NEEDSARG
#define setobj2n
#define setnilvalue(obj)
#define obj2gco(v)
#define luaS_newliteral(L, s)
TValue * luaH_setnum(lua_State *L, Table *t, int key)
Table * luaH_new(lua_State *L, int narray, int nhash)
TValue * luaH_setstr(lua_State *L, Table *t, TString *key)
lu_byte maxstacksize

References cast_num, Proto::is_vararg, iswhite, lua_assert, luaC_checkGC, luaD_checkstack, luaH_new(), luaH_setnum(), luaH_setstr(), luaS_newliteral, Proto::maxstacksize, NULL, Proto::numparams, obj2gco, sethvalue, setnilvalue, setnvalue, setobj2n, setobjs2s, lua_State::top, VARARG_HASARG, and VARARG_NEEDSARG.

Referenced by luaD_precall().

◆ callrethooks()

static StkId callrethooks ( lua_State * L,
StkId firstResult )
static

Definition at line 332 of file lua-5.1.5/src/ldo.c.

332 {
333 ptrdiff_t fr = savestack(L, firstResult); /* next call may change stack */
335 if (f_isLua(L->ci)) { /* Lua function? */
336 while ((L->hookmask & LUA_MASKRET) && L->ci->tailcalls--) /* tail calls */
338 }
339 return restorestack(L, fr);
340}
void luaD_callhook(lua_State *L, int event, int line)
#define savestack(L, p)
#define restorestack(L, n)
#define f_isLua(ci)
#define LUA_HOOKTAILRET
#define LUA_HOOKRET
#define LUA_MASKRET

References lua_State::ci, f_isLua, lua_State::hookmask, LUA_HOOKRET, LUA_HOOKTAILRET, LUA_MASKRET, luaD_callhook(), restorestack, savestack, and CallInfo::tailcalls.

Referenced by luaD_poscall().

◆ correctstack()

static void correctstack ( lua_State * L,
TValue * oldstack )
static

Definition at line 126 of file lua-5.1.5/src/ldo.c.

126 {
127 CallInfo *ci;
128 GCObject *up;
129 L->top = (L->top - oldstack) + L->stack;
130 for (up = L->openupval; up != NULL; up = up->gch.next)
131 gco2uv(up)->v = (gco2uv(up)->v - oldstack) + L->stack;
132 for (ci = L->base_ci; ci <= L->ci; ci++) {
133 ci->top = (ci->top - oldstack) + L->stack;
134 ci->base = (ci->base - oldstack) + L->stack;
135 ci->func = (ci->func - oldstack) + L->stack;
136 }
137 L->base = (L->base - oldstack) + L->stack;
138}
#define gco2uv(o)
GCObject * openupval

References CallInfo::base, lua_State::base, lua_State::base_ci, lua_State::ci, CallInfo::func, GCObject::gch, gco2uv, NULL, lua_State::openupval, lua_State::stack, CallInfo::top, and lua_State::top.

Referenced by luaD_reallocstack().

◆ f_parser()

static void f_parser ( lua_State * L,
void * ud )
static

Definition at line 491 of file lua-5.1.5/src/ldo.c.

491 {
492 int i;
493 Proto *tf;
494 Closure *cl;
495 struct SParser *p = cast(struct SParser *, ud);
496 int c = luaZ_lookahead(p->z);
497 luaC_checkGC(L);
498 tf = ((c == LUA_SIGNATURE[0]) ? luaU_undump : luaY_parser)(L, p->z,
499 &p->buff, p->name);
500 cl = luaF_newLclosure(L, tf->nups, hvalue(gt(L)));
501 cl->l.p = tf;
502 for (i = 0; i < tf->nups; i++) /* initialize eventual upvalues */
503 cl->l.upvals[i] = luaF_newupval(L);
504 setclvalue(L, L->top, cl);
505 incr_top(L);
506}
const char * name
Definition lsqlite3.c:2154
#define incr_top(L)
UpVal * luaF_newupval(lua_State *L)
Closure * luaF_newLclosure(lua_State *L, int nelems, Table *e)
#define cast(t, exp)
#define hvalue(o)
#define setclvalue(L, obj, x)
#define gt(L)
#define LUA_SIGNATURE
Proto * luaU_undump(lua_State *L, ZIO *Z, Mbuffer *buff, const char *name)
int luaZ_lookahead(ZIO *z)
LUAI_FUNC Proto * luaY_parser(lua_State *L, ZIO *z, Mbuffer *buff, const char *name)
Definition noparser.c:25
struct Proto * p

References SParser::buff, cast, gt, hvalue, incr_top, Closure::l, LUA_SIGNATURE, luaC_checkGC, luaF_newLclosure(), luaF_newupval(), luaU_undump(), luaY_parser(), luaZ_lookahead(), SParser::name, Proto::nups, LClosure::p, setclvalue, lua_State::top, LClosure::upvals, and SParser::z.

Referenced by luaD_protectedparser().

◆ growCI()

static CallInfo * growCI ( lua_State * L)
static

Definition at line 169 of file lua-5.1.5/src/ldo.c.

169 {
170 if (L->size_ci > LUAI_MAXCALLS) /* overflow while handling overflow? */
172 else {
173 luaD_reallocCI(L, 2*L->size_ci);
174 if (L->size_ci > LUAI_MAXCALLS)
175 luaG_runerror(L, "stack overflow");
176 }
177 return ++L->ci;
178}
void luaG_runerror(lua_State *L, const char *fmt,...)
void luaD_throw(lua_State *L, int errcode)
#define LUA_ERRERR
#define LUAI_MAXCALLS

References lua_State::ci, LUA_ERRERR, luaD_reallocCI(), luaD_throw(), luaG_runerror(), LUAI_MAXCALLS, and lua_State::size_ci.

◆ lua_resume()

LUA_API int lua_resume ( lua_State * L,
int nargs )

Definition at line 418 of file lua-5.1.5/src/ldo.c.

418 {
419 int status;
420 lua_lock(L);
421 if (L->status != LUA_YIELD && (L->status != 0 || L->ci != L->base_ci))
422 return resume_error(L, "cannot resume non-suspended coroutine");
423 if (L->nCcalls >= LUAI_MAXCCALLS)
424 return resume_error(L, "C stack overflow");
425 luai_userstateresume(L, nargs);
426 lua_assert(L->errfunc == 0);
427 L->baseCcalls = ++L->nCcalls;
428 status = luaD_rawrunprotected(L, resume, L->top - nargs);
429 if (status != 0) { /* error? */
430 L->status = cast_byte(status); /* mark thread as `dead' */
431 luaD_seterrorobj(L, status, L->top);
432 L->ci->top = L->top;
433 }
434 else {
435 lua_assert(L->nCcalls == L->baseCcalls);
436 status = L->status;
437 }
438 --L->nCcalls;
439 lua_unlock(L);
440 return status;
441}
void luaD_seterrorobj(lua_State *L, int errcode, StkId oldtop)
static int resume_error(lua_State *L, const char *msg)
int luaD_rawrunprotected(lua_State *L, Pfunc f, void *ud)
static void resume(lua_State *L, void *ud)
#define lua_unlock(L)
#define cast_byte(i)
#define lua_lock(L)
#define LUA_YIELD
#define LUAI_MAXCCALLS
#define luai_userstateresume(L, n)
unsigned short nCcalls
unsigned short baseCcalls

References lua_State::base_ci, lua_State::baseCcalls, cast_byte, lua_State::ci, lua_State::errfunc, lua_assert, lua_lock, lua_unlock, LUA_YIELD, luaD_rawrunprotected(), luaD_seterrorobj(), LUAI_MAXCCALLS, luai_userstateresume, lua_State::nCcalls, resume(), resume_error(), lua_longjmp::status, lua_State::status, CallInfo::top, and lua_State::top.

Referenced by auxresume(), auxresume(), auxresume(), and auxresume().

◆ lua_yield()

LUA_API int lua_yield ( lua_State * L,
int nresults )

Definition at line 444 of file lua-5.1.5/src/ldo.c.

444 {
445 luai_userstateyield(L, nresults);
446 lua_lock(L);
447 if (L->nCcalls > L->baseCcalls)
448 luaG_runerror(L, "attempt to yield across metamethod/C-call boundary");
449 L->base = L->top - nresults; /* protect stack slots below */
450 L->status = LUA_YIELD;
451 lua_unlock(L);
452 return -1;
453}
#define luai_userstateyield(L, n)

References lua_State::base, lua_State::baseCcalls, lua_lock, lua_unlock, LUA_YIELD, luaG_runerror(), luai_userstateyield, lua_State::nCcalls, lua_State::status, and lua_State::top.

◆ luaD_call()

void luaD_call ( lua_State * L,
StkId func,
int nResults )

Definition at line 370 of file lua-5.1.5/src/ldo.c.

370 {
371 if (++L->nCcalls >= LUAI_MAXCCALLS) {
372 if (L->nCcalls == LUAI_MAXCCALLS)
373 luaG_runerror(L, "C stack overflow");
374 else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3)))
375 luaD_throw(L, LUA_ERRERR); /* error while handing stack error */
376 }
377 if (luaD_precall(L, func, nResults) == PCRLUA) /* is a Lua function? */
378 luaV_execute(L, 1); /* call it */
379 L->nCcalls--;
380 luaC_checkGC(L);
381}
int luaD_precall(lua_State *L, StkId func, int nresults)
#define PCRLUA
void luaV_execute(lua_State *L, int nexeccalls)

References LUA_ERRERR, luaC_checkGC, luaD_precall(), luaD_throw(), luaG_runerror(), LUAI_MAXCCALLS, luaV_execute(), lua_State::nCcalls, and PCRLUA.

Referenced by callclosemethod(), callTM(), callTM(), callTMres(), dothecall(), f_call(), f_call(), f_Ccall(), GCTM(), lua_call(), lua_callk(), lua_callk(), lua_pcallk(), lua_pcallk(), luaG_errormsg(), luaT_callTM(), luaT_callTM(), luaT_callTMres(), luaV_execute(), luaV_execute(), and luaV_execute().

◆ luaD_callhook()

void luaD_callhook ( lua_State * L,
int event,
int line )

Definition at line 181 of file lua-5.1.5/src/ldo.c.

181 {
182 lua_Hook hook = L->hook;
183 if (hook && L->allowhook) {
184 ptrdiff_t top = savestack(L, L->top);
185 ptrdiff_t ci_top = savestack(L, L->ci->top);
186 lua_Debug ar;
187 ar.event = event;
188 ar.currentline = line;
189 if (event == LUA_HOOKTAILRET)
190 ar.i_ci = 0; /* tail call; no debug information about it */
191 else
192 ar.i_ci = cast_int(L->ci - L->base_ci);
193 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */
194 L->ci->top = L->top + LUA_MINSTACK;
195 lua_assert(L->ci->top <= L->stack_last);
196 L->allowhook = 0; /* cannot call hooks inside a hook */
197 lua_unlock(L);
198 (*hook)(L, &ar);
199 lua_lock(L);
200 lua_assert(!L->allowhook);
201 L->allowhook = 1;
202 L->ci->top = restorestack(L, ci_top);
203 L->top = restorestack(L, top);
204 }
205}
#define cast_int(i)
void(* lua_Hook)(lua_State *L, lua_Debug *ar)
#define LUA_MINSTACK

References lua_State::allowhook, lua_State::base_ci, cast_int, lua_State::ci, lua_Debug::currentline, lua_Debug::event, lua_State::hook, lua_Debug::i_ci, lua_assert, LUA_HOOKTAILRET, lua_lock, LUA_MINSTACK, lua_unlock, luaD_checkstack, restorestack, savestack, lua_State::stack_last, CallInfo::top, and lua_State::top.

Referenced by callrethooks(), luaD_precall(), and traceexec().

◆ luaD_growstack()

void luaD_growstack ( lua_State * L,
int n )

Definition at line 161 of file lua-5.1.5/src/ldo.c.

161 {
162 if (n <= L->stacksize) /* double size is enough? */
164 else
165 luaD_reallocstack(L, L->stacksize + n);
166}
void luaD_reallocstack(lua_State *L, int newsize)
#define stacksize(th)

References luaD_reallocstack(), lua_State::stacksize, and stacksize.

Referenced by growstack(), growstack(), and lua_checkstack().

◆ luaD_pcall()

int luaD_pcall ( lua_State * L,
Pfunc func,
void * u,
ptrdiff_t old_top,
ptrdiff_t ef )

Definition at line 456 of file lua-5.1.5/src/ldo.c.

457 {
458 int status;
459 unsigned short oldnCcalls = L->nCcalls;
460 ptrdiff_t old_ci = saveci(L, L->ci);
461 lu_byte old_allowhooks = L->allowhook;
462 ptrdiff_t old_errfunc = L->errfunc;
463 L->errfunc = ef;
464 status = luaD_rawrunprotected(L, func, u);
465 if (status != 0) { /* an error occurred? */
466 StkId oldtop = restorestack(L, old_top);
467 luaF_close(L, oldtop); /* close eventual pending closures */
468 luaD_seterrorobj(L, status, oldtop);
469 L->nCcalls = oldnCcalls;
470 L->ci = restoreci(L, old_ci);
471 L->base = L->ci->base;
472 L->savedpc = L->ci->savedpc;
473 L->allowhook = old_allowhooks;
475 }
476 L->errfunc = old_errfunc;
477 return status;
478}
static void restore_stack_limit(lua_State *L)
#define saveci(L, p)
#define restoreci(L, n)
void luaF_close(lua_State *L, StkId level)
unsigned char lu_byte
const Instruction * savedpc
const Instruction * savedpc

References lua_State::allowhook, CallInfo::base, lua_State::base, lua_State::ci, lua_State::errfunc, luaD_rawrunprotected(), luaD_seterrorobj(), luaF_close(), lua_State::nCcalls, restore_stack_limit(), restoreci, restorestack, saveci, CallInfo::savedpc, lua_State::savedpc, and lua_longjmp::status.

Referenced by GCTM(), GCTM(), GCTM(), lua_cpcall(), lua_pcall(), lua_pcallk(), lua_pcallk(), and luaD_protectedparser().

◆ luaD_poscall()

int luaD_poscall ( lua_State * L,
StkId firstResult )

Definition at line 343 of file lua-5.1.5/src/ldo.c.

343 {
344 StkId res;
345 int wanted, i;
346 CallInfo *ci;
347 if (L->hookmask & LUA_MASKRET)
348 firstResult = callrethooks(L, firstResult);
349 ci = L->ci--;
350 res = ci->func; /* res == final position of 1st result */
351 wanted = ci->nresults;
352 L->base = (ci - 1)->base; /* restore base */
353 L->savedpc = (ci - 1)->savedpc; /* restore savedpc */
354 /* move results to correct place */
355 for (i = wanted; i != 0 && firstResult < L->top; i--)
356 setobjs2s(L, res++, firstResult++);
357 while (i-- > 0)
358 setnilvalue(res++);
359 L->top = res;
360 return (wanted - LUA_MULTRET); /* 0 iff wanted == LUA_MULTRET */
361}
static StkId callrethooks(lua_State *L, StkId firstResult)
#define LUA_MULTRET

References lua_State::base, callrethooks(), lua_State::ci, CallInfo::func, lua_State::hookmask, LUA_MASKRET, LUA_MULTRET, CallInfo::nresults, lua_State::savedpc, setnilvalue, setobjs2s, and lua_State::top.

Referenced by luaD_precall(), luaV_execute(), luaV_execute(), luaV_execute(), and resume().

◆ luaD_precall()

int luaD_precall ( lua_State * L,
StkId func,
int nresults )

Definition at line 265 of file lua-5.1.5/src/ldo.c.

265 {
266 LClosure *cl;
267 ptrdiff_t funcr;
268 if (!ttisfunction(func)) /* `func' is not a function? */
269 func = tryfuncTM(L, func); /* check the `function' tag method */
270 funcr = savestack(L, func);
271 cl = &clvalue(func)->l;
272 L->ci->savedpc = L->savedpc;
273 if (!cl->isC) { /* Lua function? prepare its call */
274 CallInfo *ci;
275 StkId st, base;
276 Proto *p = cl->p;
278 func = restorestack(L, funcr);
279 if (!p->is_vararg) { /* no varargs? */
280 base = func + 1;
281 if (L->top > base + p->numparams)
282 L->top = base + p->numparams;
283 }
284 else { /* vararg function */
285 int nargs = cast_int(L->top - func) - 1;
286 base = adjust_varargs(L, p, nargs);
287 func = restorestack(L, funcr); /* previous call may change the stack */
288 }
289 ci = inc_ci(L); /* now `enter' new function */
290 ci->func = func;
291 L->base = ci->base = base;
292 ci->top = L->base + p->maxstacksize;
293 lua_assert(ci->top <= L->stack_last);
294 L->savedpc = p->code; /* starting point */
295 ci->tailcalls = 0;
296 ci->nresults = nresults;
297 for (st = L->top; st < ci->top; st++)
298 setnilvalue(st);
299 L->top = ci->top;
300 if (L->hookmask & LUA_MASKCALL) {
301 L->savedpc++; /* hooks assume 'pc' is already incremented */
303 L->savedpc--; /* correct 'pc' */
304 }
305 return PCRLUA;
306 }
307 else { /* if is a C function, call it */
308 CallInfo *ci;
309 int n;
310 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */
311 ci = inc_ci(L); /* now `enter' new function */
312 ci->func = restorestack(L, funcr);
313 L->base = ci->base = ci->func + 1;
314 ci->top = L->top + LUA_MINSTACK;
315 lua_assert(ci->top <= L->stack_last);
316 ci->nresults = nresults;
317 if (L->hookmask & LUA_MASKCALL)
319 lua_unlock(L);
320 n = (*curr_func(L)->c.f)(L); /* do the actual call */
321 lua_lock(L);
322 if (n < 0) /* yielding? */
323 return PCRYIELD;
324 else {
325 luaD_poscall(L, L->top - n);
326 return PCRC;
327 }
328 }
329}
static StkId adjust_varargs(lua_State *L, Proto *p, int actual)
static StkId tryfuncTM(lua_State *L, StkId func)
int luaD_poscall(lua_State *L, StkId firstResult)
#define inc_ci(L)
#define PCRYIELD
#define PCRC
#define ttisfunction(o)
#define clvalue(o)
#define curr_func(L)
#define LUA_MASKCALL
#define LUA_HOOKCALL
Instruction * code

References adjust_varargs(), CallInfo::base, lua_State::base, cast_int, lua_State::ci, clvalue, Proto::code, curr_func, CallInfo::func, lua_State::hookmask, inc_ci, Proto::is_vararg, lua_assert, LUA_HOOKCALL, lua_lock, LUA_MASKCALL, LUA_MINSTACK, lua_unlock, luaD_callhook(), luaD_checkstack, luaD_poscall(), Proto::maxstacksize, CallInfo::nresults, Proto::numparams, LClosure::p, PCRC, PCRLUA, PCRYIELD, restorestack, CallInfo::savedpc, lua_State::savedpc, savestack, setnilvalue, lua_State::stack_last, CallInfo::tailcalls, CallInfo::top, lua_State::top, tryfuncTM(), and ttisfunction.

Referenced by luaD_call(), luaV_execute(), luaV_execute(), luaV_execute(), and resume().

◆ luaD_protectedparser()

int luaD_protectedparser ( lua_State * L,
ZIO * z,
const char * name )

Definition at line 509 of file lua-5.1.5/src/ldo.c.

509 {
510 struct SParser p;
511 int status;
512 p.z = z; p.name = name;
513 luaZ_initbuffer(L, &p.buff);
514 status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc);
515 luaZ_freebuffer(L, &p.buff);
516 return status;
517}
static void f_parser(lua_State *L, void *ud)
int luaD_pcall(lua_State *L, Pfunc func, void *u, ptrdiff_t old_top, ptrdiff_t ef)
#define luaZ_initbuffer(L, buff)
#define luaZ_freebuffer(L, buff)

References SParser::buff, lua_State::errfunc, f_parser(), luaD_pcall(), luaZ_freebuffer, luaZ_initbuffer, name, SParser::name, savestack, lua_State::top, and SParser::z.

Referenced by lua_load(), and lua_load().

◆ luaD_rawrunprotected()

int luaD_rawrunprotected ( lua_State * L,
Pfunc f,
void * ud )

Definition at line 111 of file lua-5.1.5/src/ldo.c.

111 {
112 struct lua_longjmp lj;
113 lj.status = 0;
114 lj.previous = L->errorJmp; /* chain new error handler */
115 L->errorJmp = &lj;
116 LUAI_TRY(L, &lj,
117 (*f)(L, ud);
118 );
119 L->errorJmp = lj.previous; /* restore old error handler */
120 return lj.status;
121}
#define LUAI_TRY(L, c, a)
struct lua_longjmp * errorJmp
struct lua_longjmp * previous
volatile int status

References lua_State::errorJmp, LUAI_TRY, lua_longjmp::previous, and lua_longjmp::status.

Referenced by lua_checkstack(), lua_checkstack(), lua_close(), lua_newstate(), lua_resume(), luaD_pcall(), and luaH_resize().

◆ luaD_reallocCI()

void luaD_reallocCI ( lua_State * L,
int newsize )

Definition at line 152 of file lua-5.1.5/src/ldo.c.

152 {
153 CallInfo *oldci = L->base_ci;
154 luaM_reallocvector(L, L->base_ci, L->size_ci, newsize, CallInfo);
155 L->size_ci = newsize;
156 L->ci = (L->ci - oldci) + L->base_ci;
157 L->end_ci = L->base_ci + L->size_ci - 1;
158}
#define luaM_reallocvector(L, v, oldn, n, t)

References lua_State::base_ci, lua_State::ci, lua_State::end_ci, luaM_reallocvector, and lua_State::size_ci.

Referenced by checkstacksizes(), growCI(), and restore_stack_limit().

◆ luaD_reallocstack()

void luaD_reallocstack ( lua_State * L,
int newsize )

Definition at line 141 of file lua-5.1.5/src/ldo.c.

141 {
142 TValue *oldstack = L->stack;
143 int realsize = newsize + 1 + EXTRA_STACK;
144 lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK - 1);
145 luaM_reallocvector(L, L->stack, L->stacksize, realsize, TValue);
146 L->stacksize = realsize;
147 L->stack_last = L->stack+newsize;
148 correctstack(L, oldstack);
149}
static void correctstack(lua_State *L, TValue *oldstack)
#define EXTRA_STACK

References correctstack(), EXTRA_STACK, lua_assert, luaM_reallocvector, lua_State::stack, lua_State::stack_last, and lua_State::stacksize.

Referenced by checkstacksizes(), luaD_growstack(), and luaE_resetthread().

◆ luaD_seterrorobj()

void luaD_seterrorobj ( lua_State * L,
int errcode,
StkId oldtop )

Definition at line 51 of file lua-5.1.5/src/ldo.c.

51 {
52 switch (errcode) {
53 case LUA_ERRMEM: {
55 break;
56 }
57 case LUA_ERRERR: {
58 setsvalue2s(L, oldtop, luaS_newliteral(L, "error in error handling"));
59 break;
60 }
61 case LUA_ERRSYNTAX:
62 case LUA_ERRRUN: {
63 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */
64 break;
65 }
66 }
67 L->top = oldtop + 1;
68}
#define MEMERRMSG
#define setsvalue2s
#define LUA_ERRSYNTAX
#define LUA_ERRMEM
#define LUA_ERRRUN

References LUA_ERRERR, LUA_ERRMEM, LUA_ERRRUN, LUA_ERRSYNTAX, luaS_newliteral, MEMERRMSG, setobjs2s, setsvalue2s, and lua_State::top.

Referenced by lua_resume(), luaD_pcall(), luaE_resetthread(), prepcallclosemth(), and resetstack().

◆ luaD_throw()

void luaD_throw ( lua_State * L,
int errcode )

Definition at line 94 of file lua-5.1.5/src/ldo.c.

94 {
95 if (L->errorJmp) {
96 L->errorJmp->status = errcode;
97 LUAI_THROW(L, L->errorJmp);
98 }
99 else {
100 L->status = cast_byte(errcode);
101 if (G(L)->panic) {
102 resetstack(L, errcode);
103 lua_unlock(L);
104 G(L)->panic(L);
105 }
106 exit(EXIT_FAILURE);
107 }
108}
static int panic(lua_State *L)
static void resetstack(lua_State *L, int status)
#define G(L)
#define LUAI_THROW(L, c)

References cast_byte, lua_State::errorJmp, G, lua_unlock, LUAI_THROW, panic(), resetstack(), lua_longjmp::status, and lua_State::status.

Referenced by error(), error(), error(), error(), GCTM(), GCTM(), growCI(), lexerror(), lexerror(), lexerror(), luaD_call(), luaE_checkcstack(), luaG_errormsg(), luaG_traceexec(), luaG_traceexec(), luaH_resize(), luaM_realloc_(), luaX_lexerror(), and traceexec().

◆ resetstack()

static void resetstack ( lua_State * L,
int status )
static

Definition at line 81 of file lua-5.1.5/src/ldo.c.

81 {
82 L->ci = L->base_ci;
83 L->base = L->ci->base;
84 luaF_close(L, L->base); /* close eventual pending closures */
85 luaD_seterrorobj(L, status, L->base);
86 L->nCcalls = L->baseCcalls;
87 L->allowhook = 1;
89 L->errfunc = 0;
90 L->errorJmp = NULL;
91}

References lua_State::allowhook, CallInfo::base, lua_State::base, lua_State::base_ci, lua_State::baseCcalls, lua_State::ci, lua_State::errfunc, lua_State::errorJmp, luaD_seterrorobj(), luaF_close(), lua_State::nCcalls, NULL, restore_stack_limit(), and lua_longjmp::status.

Referenced by luaD_throw().

◆ restore_stack_limit()

static void restore_stack_limit ( lua_State * L)
static

Definition at line 71 of file lua-5.1.5/src/ldo.c.

71 {
72 lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK - 1);
73 if (L->size_ci > LUAI_MAXCALLS) { /* there was an overflow? */
74 int inuse = cast_int(L->ci - L->base_ci);
75 if (inuse + 1 < LUAI_MAXCALLS) /* can `undo' overflow? */
77 }
78}

References lua_State::base_ci, cast_int, lua_State::ci, EXTRA_STACK, lua_assert, luaD_reallocCI(), LUAI_MAXCALLS, lua_State::size_ci, lua_State::stack, lua_State::stack_last, and lua_State::stacksize.

Referenced by luaD_pcall(), and resetstack().

◆ resume()

static void resume ( lua_State * L,
void * ud )
static

Definition at line 384 of file lua-5.1.5/src/ldo.c.

384 {
385 StkId firstArg = cast(StkId, ud);
386 CallInfo *ci = L->ci;
387 if (L->status == 0) { /* start coroutine? */
388 lua_assert(ci == L->base_ci && firstArg > L->base);
389 if (luaD_precall(L, firstArg - 1, LUA_MULTRET) != PCRLUA)
390 return;
391 }
392 else { /* resuming from previous yield */
394 L->status = 0;
395 if (!f_isLua(ci)) { /* `common' yield? */
396 /* finish interrupted execution of `OP_CALL' */
397 lua_assert(GET_OPCODE(*((ci-1)->savedpc - 1)) == OP_CALL ||
398 GET_OPCODE(*((ci-1)->savedpc - 1)) == OP_TAILCALL);
399 if (luaD_poscall(L, firstArg)) /* complete it... */
400 L->top = L->ci->top; /* and correct top if not multiple results */
401 }
402 else /* yielded inside a hook: just continue its execution */
403 L->base = L->ci->base;
404 }
405 luaV_execute(L, cast_int(L->ci - L->base_ci));
406}
#define GET_OPCODE(i)

References CallInfo::base, lua_State::base, lua_State::base_ci, cast, cast_int, lua_State::ci, f_isLua, GET_OPCODE, lua_assert, LUA_MULTRET, LUA_YIELD, luaD_poscall(), luaD_precall(), luaV_execute(), OP_CALL, OP_TAILCALL, PCRLUA, lua_State::status, CallInfo::top, and lua_State::top.

Referenced by lua_resume().

◆ resume_error()

static int resume_error ( lua_State * L,
const char * msg )
static

Definition at line 409 of file lua-5.1.5/src/ldo.c.

409 {
410 L->top = L->ci->base;
411 setsvalue2s(L, L->top, luaS_new(L, msg));
412 incr_top(L);
413 lua_unlock(L);
414 return LUA_ERRRUN;
415}
#define luaS_new(L, s)

References CallInfo::base, lua_State::ci, incr_top, LUA_ERRRUN, lua_unlock, luaS_new, setsvalue2s, and lua_State::top.

Referenced by lua_resume().

◆ tryfuncTM()

static StkId tryfuncTM ( lua_State * L,
StkId func )
static

Definition at line 244 of file lua-5.1.5/src/ldo.c.

244 {
245 const TValue *tm = luaT_gettmbyobj(L, func, TM_CALL);
246 StkId p;
247 ptrdiff_t funcr = savestack(L, func);
248 if (!ttisfunction(tm))
249 luaG_typeerror(L, func, "call");
250 /* Open a hole inside the stack at `func' */
251 for (p = L->top; p > func; p--) setobjs2s(L, p, p-1);
252 incr_top(L);
253 func = restorestack(L, funcr); /* previous call may change stack */
254 setobj2s(L, func, tm); /* tag method is the new function to be called */
255 return func;
256}
void luaG_typeerror(lua_State *L, const TValue *o, const char *op)
#define setobj2s
const TValue * luaT_gettmbyobj(lua_State *L, const TValue *o, TMS event)
@ TM_CALL

References incr_top, luaG_typeerror(), luaT_gettmbyobj(), restorestack, savestack, setobj2s, setobjs2s, TM_CALL, lua_State::top, and ttisfunction.

Referenced by luaD_precall().