1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2018-08-23 10:26:12 -07:00
|
|
|
** $Id: ldo.h $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Stack and Call structure of Lua
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ldo_h
|
|
|
|
#define ldo_h
|
|
|
|
|
|
|
|
|
2022-10-29 08:06:37 -07:00
|
|
|
#include "llimits.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lobject.h"
|
1997-11-19 09:29:23 -08:00
|
|
|
#include "lstate.h"
|
2002-04-22 07:40:50 -07:00
|
|
|
#include "lzio.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
2015-10-21 11:40:47 -07:00
|
|
|
/*
|
|
|
|
** Macro to check stack size and grow stack if needed. Parameters
|
|
|
|
** 'pre'/'pos' allow the macro to preserve a pointer into the
|
2015-11-23 03:30:45 -08:00
|
|
|
** stack across reallocations, doing the work only when needed.
|
2020-07-07 14:03:48 -07:00
|
|
|
** It also allows the running of one GC step when the stack is
|
|
|
|
** reallocated.
|
2015-10-21 11:40:47 -07:00
|
|
|
** 'condmovestack' is used in heavy tests to force a stack reallocation
|
|
|
|
** at every check.
|
|
|
|
*/
|
|
|
|
#define luaD_checkstackaux(L,n,pre,pos) \
|
2022-10-29 08:06:37 -07:00
|
|
|
if (l_unlikely(L->stack_last.p - L->top.p <= (n))) \
|
2017-12-08 09:28:25 -08:00
|
|
|
{ pre; luaD_growstack(L, n, 1); pos; } \
|
|
|
|
else { condmovestack(L,pre,pos); }
|
2015-10-21 11:40:47 -07:00
|
|
|
|
|
|
|
/* In general, 'pre'/'pos' are empty (nothing to save) */
|
2015-12-21 05:02:14 -08:00
|
|
|
#define luaD_checkstack(L,n) luaD_checkstackaux(L,n,(void)0,(void)0)
|
2002-11-21 09:19:11 -08:00
|
|
|
|
2002-03-20 04:52:32 -08:00
|
|
|
|
2002-11-21 08:46:16 -08:00
|
|
|
|
2022-10-29 08:06:37 -07:00
|
|
|
#define savestack(L,pt) (cast_charp(pt) - cast_charp(L->stack.p))
|
|
|
|
#define restorestack(L,n) cast(StkId, cast_charp(L->stack.p) + (n))
|
2001-06-05 12:41:24 -07:00
|
|
|
|
|
|
|
|
2017-05-13 06:04:33 -07:00
|
|
|
/* macro to check stack size, preserving 'p' */
|
2022-05-26 11:14:54 -07:00
|
|
|
#define checkstackp(L,n,p) \
|
|
|
|
luaD_checkstackaux(L, n, \
|
|
|
|
ptrdiff_t t__ = savestack(L, p), /* save 'p' */ \
|
|
|
|
p = restorestack(L, t__)) /* 'pos' part: restore 'p' */
|
|
|
|
|
|
|
|
|
|
|
|
/* macro to check stack size and GC, preserving 'p' */
|
2020-07-07 14:03:48 -07:00
|
|
|
#define checkstackGCp(L,n,p) \
|
2017-05-13 06:04:33 -07:00
|
|
|
luaD_checkstackaux(L, n, \
|
|
|
|
ptrdiff_t t__ = savestack(L, p); /* save 'p' */ \
|
|
|
|
luaC_checkGC(L), /* stack grow uses memory */ \
|
|
|
|
p = restorestack(L, t__)) /* 'pos' part: restore 'p' */
|
|
|
|
|
|
|
|
|
2018-02-09 07:16:06 -08:00
|
|
|
/* macro to check stack size and GC */
|
|
|
|
#define checkstackGC(L,fsize) \
|
2020-07-07 14:03:48 -07:00
|
|
|
luaD_checkstackaux(L, (fsize), luaC_checkGC(L), (void)0)
|
2018-02-09 07:16:06 -08:00
|
|
|
|
|
|
|
|
2014-10-25 04:50:46 -07:00
|
|
|
/* type of protected functions, to be ran by 'runprotected' */
|
2002-08-05 10:36:24 -07:00
|
|
|
typedef void (*Pfunc) (lua_State *L, void *ud);
|
2002-04-22 07:40:50 -07:00
|
|
|
|
2018-10-17 06:44:42 -07:00
|
|
|
LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop);
|
2011-11-29 07:55:08 -08:00
|
|
|
LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name,
|
|
|
|
const char *mode);
|
2018-02-17 11:29:29 -08:00
|
|
|
LUAI_FUNC void luaD_hook (lua_State *L, int event, int line,
|
|
|
|
int fTransfer, int nTransfer);
|
2018-02-06 11:16:56 -08:00
|
|
|
LUAI_FUNC void luaD_hookcall (lua_State *L, CallInfo *ci);
|
2022-05-10 07:13:39 -07:00
|
|
|
LUAI_FUNC int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func,
|
|
|
|
int narg1, int delta);
|
2021-08-18 07:21:33 -07:00
|
|
|
LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults);
|
2015-11-02 10:48:07 -08:00
|
|
|
LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
|
|
|
|
LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults);
|
2020-12-28 06:40:30 -08:00
|
|
|
LUAI_FUNC int luaD_closeprotected (lua_State *L, ptrdiff_t level, int status);
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
|
|
|
|
ptrdiff_t oldtop, ptrdiff_t ef);
|
2018-05-22 05:02:36 -07:00
|
|
|
LUAI_FUNC void luaD_poscall (lua_State *L, CallInfo *ci, int nres);
|
2017-12-11 04:43:40 -08:00
|
|
|
LUAI_FUNC int luaD_reallocstack (lua_State *L, int newsize, int raiseerror);
|
|
|
|
LUAI_FUNC int luaD_growstack (lua_State *L, int n, int raiseerror);
|
2009-07-15 10:26:14 -07:00
|
|
|
LUAI_FUNC void luaD_shrinkstack (lua_State *L);
|
2015-11-02 08:09:30 -08:00
|
|
|
LUAI_FUNC void luaD_inctop (lua_State *L);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2011-10-07 13:45:19 -07:00
|
|
|
LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode);
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
|
2000-09-25 09:22:42 -07:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
#endif
|
2005-04-25 12:24:10 -07:00
|
|
|
|