1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2015-11-13 16:24:26 +03:00
|
|
|
** $Id: ldo.h,v 2.25 2015/11/02 18:48:07 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
|
|
|
|
** stack across realalocations, doing the work only when needed.
|
|
|
|
** '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)) \
|
|
|
|
{ pre; luaD_growstack(L, n); pos; } else { condmovestack(L,pre,pos); }
|
|
|
|
|
|
|
|
/* In general, 'pre'/'pos' are empty (nothing to save) */
|
|
|
|
#define luaD_checkstack(L,n) luaD_checkstackaux(L,n,,)
|
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)
|
2003-12-10 15:13:36 +03:00
|
|
|
#define restorestack(L,n) ((TValue *)((char *)L->stack + (n)))
|
2001-06-05 23:41:24 +04:00
|
|
|
|
|
|
|
|
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);
|
2009-11-25 18:27:51 +03:00
|
|
|
LUAI_FUNC void luaD_hook (lua_State *L, int event, int line);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
|
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);
|
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);
|
2015-11-13 16:24:26 +03:00
|
|
|
LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult,
|
|
|
|
int nres);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
|
|
|
|
LUAI_FUNC void luaD_growstack (lua_State *L, int n);
|
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
|
|
|
|