1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2009-06-08 23:35:59 +04:00
|
|
|
** $Id: ldo.h,v 2.12 2009/04/17 14:28:06 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
|
|
|
|
|
|
|
|
2002-03-20 15:52:32 +03:00
|
|
|
#define luaD_checkstack(L,n) \
|
2003-12-10 15:13:36 +03:00
|
|
|
if ((char *)L->stack_last - (char *)L->top <= (n)*(int)sizeof(TValue)) \
|
2009-06-08 23:35:59 +04:00
|
|
|
luaD_growstack(L, n); else condmovestack(L);
|
2002-11-21 20:19:11 +03:00
|
|
|
|
2002-03-20 15:52:32 +03:00
|
|
|
|
2006-07-11 19:53:29 +04:00
|
|
|
#define incr_top(L) {L->top++; luaD_checkstack(L,0);}
|
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
|
|
|
|
|
|
|
|
2002-04-22 18:40:50 +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
|
|
|
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name);
|
|
|
|
LUAI_FUNC void luaD_callhook (lua_State *L, int event, int line);
|
|
|
|
LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
|
2009-03-10 20:14:37 +03:00
|
|
|
LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults,
|
|
|
|
int allowyield);
|
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);
|
2005-08-22 22:54:49 +04:00
|
|
|
LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC void luaD_reallocCI (lua_State *L, int newsize);
|
|
|
|
LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
|
|
|
|
LUAI_FUNC void luaD_growstack (lua_State *L, int n);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC void luaD_throw (lua_State *L, int errcode);
|
|
|
|
LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
|
2000-09-25 20:22:42 +04:00
|
|
|
|
2008-07-03 18:24:36 +04:00
|
|
|
/* exported for Coco */
|
2005-08-22 23:58:29 +04:00
|
|
|
LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#endif
|
2005-04-25 23:24:10 +04:00
|
|
|
|