1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2018-08-23 20:26:12 +03:00
|
|
|
** $Id: ltm.h $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Tag methods
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltm_h
|
|
|
|
#define ltm_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
2022-12-14 22:20:39 +03:00
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2002-07-01 21:06:58 +04:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
2013-12-16 23:06:52 +04:00
|
|
|
* grep "ORDER TM" and "ORDER OP"
|
1997-09-16 23:25:59 +04:00
|
|
|
*/
|
|
|
|
typedef enum {
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_INDEX,
|
2002-05-28 00:35:40 +04:00
|
|
|
TM_NEWINDEX,
|
2001-12-05 23:15:18 +03:00
|
|
|
TM_GC,
|
2002-11-14 15:01:35 +03:00
|
|
|
TM_MODE,
|
2007-09-10 21:59:32 +04:00
|
|
|
TM_LEN,
|
2014-10-25 15:50:46 +04:00
|
|
|
TM_EQ, /* last tag method with fast access */
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_ADD,
|
|
|
|
TM_SUB,
|
|
|
|
TM_MUL,
|
2005-03-08 21:00:16 +03:00
|
|
|
TM_MOD,
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_POW,
|
2013-12-16 23:06:52 +04:00
|
|
|
TM_DIV,
|
|
|
|
TM_IDIV,
|
2013-12-18 18:12:03 +04:00
|
|
|
TM_BAND,
|
|
|
|
TM_BOR,
|
|
|
|
TM_BXOR,
|
2013-12-31 00:47:58 +04:00
|
|
|
TM_SHL,
|
|
|
|
TM_SHR,
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_UNM,
|
2013-12-31 00:47:58 +04:00
|
|
|
TM_BNOT,
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_LT,
|
2002-06-12 18:56:22 +04:00
|
|
|
TM_LE,
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_CONCAT,
|
2001-12-05 23:15:18 +03:00
|
|
|
TM_CALL,
|
2018-10-17 16:44:42 +03:00
|
|
|
TM_CLOSE,
|
2000-10-05 17:00:17 +04:00
|
|
|
TM_N /* number of elements in the enum */
|
|
|
|
} TMS;
|
|
|
|
|
|
|
|
|
2020-08-07 17:21:44 +03:00
|
|
|
/*
|
|
|
|
** Mask with 1 in all fast-access methods. A 1 in any of these bits
|
|
|
|
** in the flag of a (meta)table means the metatable does not have the
|
|
|
|
** corresponding metamethod field. (Bit 7 of the flag is used for
|
|
|
|
** 'isrealasize'.)
|
|
|
|
*/
|
|
|
|
#define maskflags (~(~0u << (TM_EQ + 1)))
|
|
|
|
|
|
|
|
|
2018-02-23 16:16:18 +03:00
|
|
|
/*
|
|
|
|
** Test whether there is no tagmethod.
|
|
|
|
** (Because tagmethods use raw accesses, the result may be an "empty" nil.)
|
|
|
|
*/
|
2018-06-01 19:51:34 +03:00
|
|
|
#define notm(tm) ttisnil(tm)
|
2018-02-23 16:16:18 +03:00
|
|
|
|
2001-01-24 19:20:54 +03:00
|
|
|
|
2003-12-01 21:22:56 +03:00
|
|
|
#define gfasttm(g,et,e) ((et) == NULL ? NULL : \
|
|
|
|
((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, (g)->tmname[e]))
|
2002-11-14 15:01:35 +03:00
|
|
|
|
|
|
|
#define fasttm(l,et,e) gfasttm(G(l), et, e)
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2010-04-14 19:13:48 +04:00
|
|
|
#define ttypename(x) luaT_typenames_[(x) + 1]
|
2010-01-13 19:18:25 +03:00
|
|
|
|
2020-01-31 17:09:53 +03:00
|
|
|
LUAI_DDEC(const char *const luaT_typenames_[LUA_TOTALTYPES];)
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
2016-02-26 22:20:15 +03:00
|
|
|
LUAI_FUNC const char *luaT_objtypename (lua_State *L, const TValue *o);
|
|
|
|
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
|
|
|
|
LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o,
|
|
|
|
TMS event);
|
|
|
|
LUAI_FUNC void luaT_init (lua_State *L);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2013-04-25 19:59:42 +04:00
|
|
|
LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
|
2017-06-29 18:06:44 +03:00
|
|
|
const TValue *p2, const TValue *p3);
|
|
|
|
LUAI_FUNC void luaT_callTMres (lua_State *L, const TValue *f,
|
|
|
|
const TValue *p1, const TValue *p2, StkId p3);
|
2013-04-29 20:56:50 +04:00
|
|
|
LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
|
|
|
|
StkId res, TMS event);
|
2019-07-26 20:59:39 +03:00
|
|
|
LUAI_FUNC void luaT_tryconcatTM (lua_State *L);
|
2017-12-13 21:32:09 +03:00
|
|
|
LUAI_FUNC void luaT_trybinassocTM (lua_State *L, const TValue *p1,
|
2019-08-27 19:59:39 +03:00
|
|
|
const TValue *p2, int inv, StkId res, TMS event);
|
2018-11-05 21:10:42 +03:00
|
|
|
LUAI_FUNC void luaT_trybiniTM (lua_State *L, const TValue *p1, lua_Integer i2,
|
2017-09-27 21:59:08 +03:00
|
|
|
int inv, StkId res, TMS event);
|
2013-04-25 20:07:52 +04:00
|
|
|
LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1,
|
|
|
|
const TValue *p2, TMS event);
|
2017-11-27 20:44:31 +03:00
|
|
|
LUAI_FUNC int luaT_callorderiTM (lua_State *L, const TValue *p1, int v2,
|
2019-03-22 19:37:17 +03:00
|
|
|
int inv, int isfloat, TMS event);
|
2013-04-25 20:07:52 +04:00
|
|
|
|
2018-02-09 18:16:06 +03:00
|
|
|
LUAI_FUNC void luaT_adjustvarargs (lua_State *L, int nfixparams,
|
2022-12-14 22:20:39 +03:00
|
|
|
CallInfo *ci, const Proto *p);
|
|
|
|
LUAI_FUNC void luaT_getvarargs (lua_State *L, CallInfo *ci,
|
2018-02-09 18:16:06 +03:00
|
|
|
StkId where, int wanted);
|
2013-04-25 20:07:52 +04:00
|
|
|
|
2013-04-25 19:59:42 +04:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
#endif
|