1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2018-08-23 20:26:12 +03:00
|
|
|
** $Id: lfunc.h $
|
1999-12-27 20:33:22 +03:00
|
|
|
** Auxiliary functions to manipulate prototypes and closures
|
1997-09-16 23:25:59 +04:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lfunc_h
|
|
|
|
#define lfunc_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
|
|
|
2024-07-27 19:32:59 +03:00
|
|
|
#define sizeCclosure(n) \
|
|
|
|
(offsetof(CClosure, upvalue) + sizeof(TValue) * cast_uint(n))
|
2003-11-24 21:50:36 +03:00
|
|
|
|
2024-07-27 19:32:59 +03:00
|
|
|
#define sizeLclosure(n) \
|
|
|
|
(offsetof(LClosure, upvals) + sizeof(TValue *) * cast_uint(n))
|
2003-11-24 21:50:36 +03:00
|
|
|
|
|
|
|
|
2014-02-18 17:39:37 +04:00
|
|
|
/* test whether thread is in 'twups' list */
|
|
|
|
#define isintwups(L) (L->twups != L)
|
|
|
|
|
|
|
|
|
2015-01-13 18:49:11 +03:00
|
|
|
/*
|
|
|
|
** maximum number of upvalues in a closure (both C and Lua). (Value
|
|
|
|
** must fit in a VM register.)
|
|
|
|
*/
|
|
|
|
#define MAXUPVAL 255
|
|
|
|
|
|
|
|
|
2022-10-29 18:06:37 +03:00
|
|
|
#define upisopen(up) ((up)->v.p != &(up)->u.value)
|
2013-08-27 22:53:35 +04:00
|
|
|
|
|
|
|
|
2022-10-29 18:06:37 +03:00
|
|
|
#define uplevel(up) check_exp(upisopen(up), cast(StkId, (up)->v.p))
|
2017-06-29 18:06:44 +03:00
|
|
|
|
|
|
|
|
2017-05-04 16:32:01 +03:00
|
|
|
/*
|
|
|
|
** maximum number of misses before giving up the cache of closures
|
|
|
|
** in prototypes
|
|
|
|
*/
|
|
|
|
#define MAXMISS 10
|
|
|
|
|
|
|
|
|
2018-12-13 18:07:53 +03:00
|
|
|
|
2020-12-28 17:40:30 +03:00
|
|
|
/* special status to close upvalues preserving the top of the stack */
|
2021-02-09 20:00:05 +03:00
|
|
|
#define CLOSEKTOP (-1)
|
2018-12-13 18:07:53 +03:00
|
|
|
|
|
|
|
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC Proto *luaF_newproto (lua_State *L);
|
2019-11-18 20:54:06 +03:00
|
|
|
LUAI_FUNC CClosure *luaF_newCclosure (lua_State *L, int nupvals);
|
|
|
|
LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nupvals);
|
2013-08-27 22:53:35 +04:00
|
|
|
LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl);
|
2019-07-22 15:41:10 +03:00
|
|
|
LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
|
2018-10-18 22:15:09 +03:00
|
|
|
LUAI_FUNC void luaF_newtbcupval (lua_State *L, StkId level);
|
2021-02-09 20:00:05 +03:00
|
|
|
LUAI_FUNC void luaF_closeupval (lua_State *L, StkId level);
|
2022-05-25 23:41:39 +03:00
|
|
|
LUAI_FUNC StkId luaF_close (lua_State *L, StkId level, int status, int yy);
|
2017-04-11 21:41:09 +03:00
|
|
|
LUAI_FUNC void luaF_unlinkupval (UpVal *uv);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
|
|
|
|
LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
|
|
|
|
int pc);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|