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