Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
ldo.h File Reference
#include "lobject.h"
#include "lstate.h"
#include "lzio.h"

Go to the source code of this file.

Macros

#define luaD_checkstackaux(L, n, pre, pos)
 
#define luaD_checkstack(L, n)   luaD_checkstackaux(L,n,(void)0,(void)0)
 
#define savestack(L, p)   ((char *)(p) - (char *)L->stack)
 
#define restorestack(L, n)   ((TValue *)((char *)L->stack + (n)))
 

Typedefs

typedef void(* Pfunc) (lua_State *L, void *ud)
 

Functions

LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, const char *mode)
 
LUAI_FUNC void luaD_hook (lua_State *L, int event, int line)
 
LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults)
 
LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults)
 
LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults)
 
LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, ptrdiff_t oldtop, ptrdiff_t ef)
 
LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, int nres)
 
LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize)
 
LUAI_FUNC void luaD_growstack (lua_State *L, int n)
 
LUAI_FUNC void luaD_shrinkstack (lua_State *L)
 
LUAI_FUNC void luaD_inctop (lua_State *L)
 
LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode)
 
LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud)
 

Macro Definition Documentation

◆ luaD_checkstack

#define luaD_checkstack ( L,
n )   luaD_checkstackaux(L,n,(void)0,(void)0)

Definition at line 28 of file lua-5.3.6/src/ldo.h.

◆ luaD_checkstackaux

#define luaD_checkstackaux ( L,
n,
pre,
pos )
Value:
if (L->stack_last - L->top <= (n)) \
{ pre; luaD_growstack(L, n); pos; } else { condmovestack(L,pre,pos); }
#define condmovestack(L)
LUAI_FUNC void luaD_growstack(lua_State *L, int n)

Definition at line 23 of file lua-5.3.6/src/ldo.h.

23#define luaD_checkstackaux(L,n,pre,pos) \
24 if (L->stack_last - L->top <= (n)) \
25 { pre; luaD_growstack(L, n); pos; } else { condmovestack(L,pre,pos); }

◆ restorestack

#define restorestack ( L,
n )   ((TValue *)((char *)L->stack + (n)))

Definition at line 33 of file lua-5.3.6/src/ldo.h.

◆ savestack

#define savestack ( L,
p )   ((char *)(p) - (char *)L->stack)

Definition at line 32 of file lua-5.3.6/src/ldo.h.

Typedef Documentation

◆ Pfunc

typedef void(* Pfunc) (lua_State *L, void *ud)

Definition at line 37 of file lua-5.3.6/src/ldo.h.

Function Documentation

◆ luaD_call()

LUAI_FUNC 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}
void luaG_runerror(lua_State *L, const char *fmt,...)
int luaD_precall(lua_State *L, StkId func, int nresults)
void luaD_throw(lua_State *L, int errcode)
#define PCRLUA
#define luaC_checkGC(L)
#define LUA_ERRERR
#define LUAI_MAXCCALLS
void luaV_execute(lua_State *L, int nexeccalls)
unsigned short nCcalls

◆ luaD_callnoyield()

LUAI_FUNC void luaD_callnoyield ( lua_State * L,
StkId func,
int nResults )

Definition at line 507 of file lua-5.3.6/src/ldo.c.

507 {
508 L->nny++;
509 luaD_call(L, func, nResults);
510 L->nny--;
511}
void luaD_call(lua_State *L, StkId func, int nResults)
unsigned short nny

◆ luaD_growstack()

LUAI_FUNC 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 cast_int, ERRORSTACKSIZE, EXTRA_STACK, LUA_ERRERR, luaD_reallocstack(), luaD_throw(), luaG_runerror(), LUAI_MAXSTACK, lua_State::stack, lua_State::stacksize, stacksize, and lua_State::top.

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

◆ luaD_hook()

LUAI_FUNC void luaD_hook ( lua_State * L,
int event,
int line )

Definition at line 217 of file lua-5.2.4/src/ldo.c.

217 {
218 lua_Hook hook = L->hook;
219 if (hook && L->allowhook) {
220 CallInfo *ci = L->ci;
221 ptrdiff_t top = savestack(L, L->top);
222 ptrdiff_t ci_top = savestack(L, ci->top);
223 lua_Debug ar;
224 ar.event = event;
225 ar.currentline = line;
226 ar.i_ci = ci;
227 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */
228 ci->top = L->top + LUA_MINSTACK;
229 lua_assert(ci->top <= L->stack_last);
230 L->allowhook = 0; /* cannot call hooks inside a hook */
231 ci->callstatus |= CIST_HOOKED;
232 lua_unlock(L);
233 (*hook)(L, &ar);
234 lua_lock(L);
235 lua_assert(!L->allowhook);
236 L->allowhook = 1;
237 ci->top = restorestack(L, ci_top);
238 L->top = restorestack(L, top);
239 ci->callstatus &= ~CIST_HOOKED;
240 }
241}
#define savestack(L, p)
#define restorestack(L, n)
#define luaD_checkstack(L, n)
#define lua_unlock(L)
#define lua_assert(c)
#define lua_lock(L)
void(* lua_Hook)(lua_State *L, lua_Debug *ar)
#define LUA_MINSTACK
#define CIST_HOOKED

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

Referenced by callhook(), callhook(), luaD_poscall(), luaD_poscall(), luaD_precall(), luaG_traceexec(), luaG_traceexec(), and traceexec().

◆ luaD_inctop()

LUAI_FUNC void luaD_inctop ( lua_State * L)

Definition at line 240 of file lua-5.3.6/src/ldo.c.

240 {
241 luaD_checkstack(L, 1);
242 L->top++;
243}

◆ luaD_pcall()

LUAI_FUNC int luaD_pcall ( lua_State * L,
Pfunc func,
void * u,
ptrdiff_t oldtop,
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}
void luaD_seterrorobj(lua_State *L, int errcode, StkId oldtop)
static void restore_stack_limit(lua_State *L)
int luaD_rawrunprotected(lua_State *L, Pfunc f, void *ud)
#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

◆ luaD_poscall()

LUAI_FUNC int luaD_poscall ( lua_State * L,
CallInfo * ci,
StkId firstResult,
int nres )

Definition at line 376 of file lua-5.3.6/src/ldo.c.

376 {
377 StkId res;
378 int wanted = ci->nresults;
379 if (L->hookmask & (LUA_MASKRET | LUA_MASKLINE)) {
380 if (L->hookmask & LUA_MASKRET) {
381 ptrdiff_t fr = savestack(L, firstResult); /* hook may change stack */
382 luaD_hook(L, LUA_HOOKRET, -1);
383 firstResult = restorestack(L, fr);
384 }
385 L->oldpc = ci->previous->u.l.savedpc; /* 'oldpc' for caller function */
386 }
387 res = ci->func; /* res == final position of 1st result */
388 L->ci = ci->previous; /* back to caller */
389 /* move results to proper place */
390 return moveresults(L, firstResult, res, nres, wanted);
391}
#define LUA_MASKLINE
#define LUA_HOOKRET
#define LUA_MASKRET
void luaD_hook(lua_State *L, int event, int line)
static int moveresults(lua_State *L, const TValue *firstResult, StkId res, int nres, int wanted)
struct CallInfo * previous
struct CallInfo::@64::@65 l
union CallInfo::@64 u
const Instruction * oldpc

References lua_State::ci, CallInfo::func, lua_State::hookmask, CallInfo::l, LUA_HOOKRET, LUA_MASKLINE, LUA_MASKRET, luaD_hook(), moveresults(), CallInfo::nresults, lua_State::oldpc, CallInfo::previous, restorestack, CallInfo::savedpc, savestack, and CallInfo::u.

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

◆ luaD_precall()

LUAI_FUNC 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)
void luaD_callhook(lua_State *L, int event, int line)
#define inc_ci(L)
#define PCRYIELD
#define PCRC
#define cast_int(i)
#define ttisfunction(o)
#define clvalue(o)
#define setnilvalue(obj)
#define curr_func(L)
#define LUA_MASKCALL
#define LUA_HOOKCALL
struct Proto * p
Instruction * code
lu_byte maxstacksize

◆ luaD_protectedparser()

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

Definition at line 662 of file lua-5.2.4/src/ldo.c.

663 {
664 struct SParser p;
665 int status;
666 L->nny++; /* cannot yield during parsing */
667 p.z = z; p.name = name; p.mode = mode;
668 p.dyd.actvar.arr = NULL; p.dyd.actvar.size = 0;
669 p.dyd.gt.arr = NULL; p.dyd.gt.size = 0;
670 p.dyd.label.arr = NULL; p.dyd.label.size = 0;
671 luaZ_initbuffer(L, &p.buff);
672 status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc);
673 luaZ_freebuffer(L, &p.buff);
674 luaM_freearray(L, p.dyd.actvar.arr, p.dyd.actvar.size);
675 luaM_freearray(L, p.dyd.gt.arr, p.dyd.gt.size);
676 luaM_freearray(L, p.dyd.label.arr, p.dyd.label.size);
677 L->nny--;
678 return status;
679}
#define NULL
Definition gmacros.h:924
const char * name
Definition lsqlite3.c:2154
#define luaM_freearray(L, b, n, t)
#define luaZ_initbuffer(L, buff)
#define luaZ_freebuffer(L, buff)
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)
const char * mode

◆ luaD_rawrunprotected()

LUAI_FUNC 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

◆ luaD_reallocstack()

LUAI_FUNC 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 luaM_reallocvector(L, v, oldn, n, t)
#define EXTRA_STACK

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

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

◆ luaD_shrinkstack()

LUAI_FUNC void luaD_shrinkstack ( lua_State * L)

Definition at line 205 of file lua-5.2.4/src/ldo.c.

205 {
206 int inuse = stackinuse(L);
207 int goodsize = inuse + (inuse / 8) + 2*EXTRA_STACK;
208 if (goodsize > LUAI_MAXSTACK) goodsize = LUAI_MAXSTACK;
209 if (inuse > LUAI_MAXSTACK || /* handling stack overflow? */
210 goodsize >= L->stacksize) /* would grow instead of shrink? */
211 condmovestack(L); /* don't change stack (change only for debugging) */
212 else
213 luaD_reallocstack(L, goodsize); /* shrink it */
214}
static int stackinuse(lua_State *L)
void luaD_reallocstack(lua_State *L, int newsize)
#define LUAI_MAXSTACK

◆ luaD_throw()

LUAI_FUNC l_noret 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 cast_byte(i)
#define G(L)
#define LUAI_THROW(L, c)