1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2018-05-22 15:02:36 +03:00
|
|
|
** $Id: ldo.h,v 2.43 2018/02/17 19:29:29 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Stack and Call structure of Lua
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ldo_h
|
|
|
|
#define ldo_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
1997-11-19 20:29:23 +03:00
|
|
|
#include "lstate.h"
|
2002-04-22 18:40:50 +04:00
|
|
|
#include "lzio.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
2015-10-21 21:40:47 +03: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 14:30:45 +03:00
|
|
|
** stack across reallocations, doing the work only when needed.
|
2015-10-21 21:40:47 +03:00
|
|
|
** 'condmovestack' is used in heavy tests to force a stack reallocation
|
|
|
|
** at every check.
|
|
|
|
*/
|
|
|
|
#define luaD_checkstackaux(L,n,pre,pos) \
|
|
|
|
if (L->stack_last - L->top <= (n)) \
|
2017-12-08 20:28:25 +03:00
|
|
|
{ pre; luaD_growstack(L, n, 1); pos; } \
|
|
|
|
else { condmovestack(L,pre,pos); }
|
2015-10-21 21:40:47 +03:00
|
|
|
|
|
|
|
/* In general, 'pre'/'pos' are empty (nothing to save) */
|
2015-12-21 16:02:14 +03:00
|
|
|
#define luaD_checkstack(L,n) luaD_checkstackaux(L,n,(void)0,(void)0)
|
2002-11-21 20:19:11 +03:00
|
|
|
|
2002-03-20 15:52:32 +03:00
|
|
|
|
2002-11-21 19:46:16 +03:00
|
|
|
|
2002-03-20 15:52:32 +03:00
|
|
|
#define savestack(L,p) ((char *)(p) - (char *)L->stack)
|
2017-06-29 18:06:44 +03:00
|
|
|
#define restorestack(L,n) ((StkId)((char *)L->stack + (n)))
|
2001-06-05 23:41:24 +04:00
|
|
|
|
|
|
|
|
2017-05-13 16:04:33 +03:00
|
|
|
/* macro to check stack size, preserving 'p' */
|
|
|
|
#define checkstackp(L,n,p) \
|
|
|
|
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 18:16:06 +03:00
|
|
|
/* macro to check stack size and GC */
|
|
|
|
#define checkstackGC(L,fsize) \
|
|
|
|
luaD_checkstackaux(L, (fsize), (void)0, luaC_checkGC(L))
|
|
|
|
|
|
|
|
|
2014-10-25 15:50:46 +04:00
|
|
|
/* type of protected functions, to be ran by 'runprotected' */
|
2002-08-05 21:36:24 +04:00
|
|
|
typedef void (*Pfunc) (lua_State *L, void *ud);
|
2002-04-22 18:40:50 +04:00
|
|
|
|
2011-11-29 19:55:08 +04:00
|
|
|
LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name,
|
|
|
|
const char *mode);
|
2018-02-17 22:29:29 +03:00
|
|
|
LUAI_FUNC void luaD_hook (lua_State *L, int event, int line,
|
|
|
|
int fTransfer, int nTransfer);
|
2018-02-06 22:16:56 +03:00
|
|
|
LUAI_FUNC void luaD_hookcall (lua_State *L, CallInfo *ci);
|
2017-11-21 17:18:03 +03:00
|
|
|
LUAI_FUNC void luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, int n);
|
2015-11-02 21:48:07 +03: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);
|
2018-01-10 22:19:27 +03:00
|
|
|
LUAI_FUNC void luaD_tryfuncTM (lua_State *L, StkId func);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
|
|
|
|
ptrdiff_t oldtop, ptrdiff_t ef);
|
2018-05-22 15:02:36 +03:00
|
|
|
LUAI_FUNC void luaD_poscall (lua_State *L, CallInfo *ci, int nres);
|
2017-12-11 15:43:40 +03: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 21:26:14 +04:00
|
|
|
LUAI_FUNC void luaD_shrinkstack (lua_State *L);
|
2015-11-02 19:09:30 +03:00
|
|
|
LUAI_FUNC void luaD_inctop (lua_State *L);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2011-10-08 00:45:19 +04:00
|
|
|
LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
|
2000-09-25 20:22:42 +04:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
#endif
|
2005-04-25 23:24:10 +04:00
|
|
|
|