1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2015-11-20 03:16:22 +08:00
|
|
|
** $Id: ldo.h,v 2.26 2015/11/13 13:24:26 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Stack and Call structure of Lua
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ldo_h
|
|
|
|
#define ldo_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
1997-11-20 01:29:23 +08:00
|
|
|
#include "lstate.h"
|
2002-04-22 22:40:50 +08:00
|
|
|
#include "lzio.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
2015-10-22 02:40:47 +08: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-20 03:16:22 +08:00
|
|
|
** stack across realocations, doing the work only when needed.
|
2015-10-22 02:40:47 +08: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)) \
|
|
|
|
{ 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-22 01:19:11 +08:00
|
|
|
|
2002-03-20 20:52:32 +08:00
|
|
|
|
2002-11-22 00:46:16 +08:00
|
|
|
|
2002-03-20 20:52:32 +08:00
|
|
|
#define savestack(L,p) ((char *)(p) - (char *)L->stack)
|
2003-12-10 20:13:36 +08:00
|
|
|
#define restorestack(L,n) ((TValue *)((char *)L->stack + (n)))
|
2001-06-06 03:41:24 +08:00
|
|
|
|
|
|
|
|
2014-10-25 19:50:46 +08:00
|
|
|
/* type of protected functions, to be ran by 'runprotected' */
|
2002-08-06 01:36:24 +08:00
|
|
|
typedef void (*Pfunc) (lua_State *L, void *ud);
|
2002-04-22 22:40:50 +08:00
|
|
|
|
2011-11-29 23:55:08 +08:00
|
|
|
LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name,
|
|
|
|
const char *mode);
|
2009-11-25 23:27:51 +08:00
|
|
|
LUAI_FUNC void luaD_hook (lua_State *L, int event, int line);
|
2005-04-26 03:24:10 +08:00
|
|
|
LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
|
2015-11-03 02: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);
|
2005-04-26 03:24:10 +08:00
|
|
|
LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
|
|
|
|
ptrdiff_t oldtop, ptrdiff_t ef);
|
2015-11-13 21:24:26 +08:00
|
|
|
LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult,
|
|
|
|
int nres);
|
2005-04-26 03:24:10 +08:00
|
|
|
LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
|
|
|
|
LUAI_FUNC void luaD_growstack (lua_State *L, int n);
|
2009-07-16 01:26:14 +08:00
|
|
|
LUAI_FUNC void luaD_shrinkstack (lua_State *L);
|
2015-11-03 00:09:30 +08:00
|
|
|
LUAI_FUNC void luaD_inctop (lua_State *L);
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2011-10-08 04:45:19 +08:00
|
|
|
LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode);
|
2005-04-26 03:24:10 +08:00
|
|
|
LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
|
2000-09-26 00:22:42 +08:00
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#endif
|
2005-04-26 03:24:10 +08:00
|
|
|
|