1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2017-09-27 11:59:08 -07:00
|
|
|
** $Id: ltm.h,v 2.25 2017/06/29 15:06:44 roberto Exp roberto $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Tag methods
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltm_h
|
|
|
|
#define ltm_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
2002-07-01 10:06:58 -07:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
2013-12-16 11:06:52 -08:00
|
|
|
* grep "ORDER TM" and "ORDER OP"
|
1997-09-16 12:25:59 -07:00
|
|
|
*/
|
|
|
|
typedef enum {
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_INDEX,
|
2002-05-27 13:35:40 -07:00
|
|
|
TM_NEWINDEX,
|
2001-12-05 12:15:18 -08:00
|
|
|
TM_GC,
|
2002-11-14 04:01:35 -08:00
|
|
|
TM_MODE,
|
2007-09-10 10:59:32 -07:00
|
|
|
TM_LEN,
|
2014-10-25 04:50:46 -07:00
|
|
|
TM_EQ, /* last tag method with fast access */
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_ADD,
|
|
|
|
TM_SUB,
|
|
|
|
TM_MUL,
|
2005-03-08 10:00:16 -08:00
|
|
|
TM_MOD,
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_POW,
|
2013-12-16 11:06:52 -08:00
|
|
|
TM_DIV,
|
|
|
|
TM_IDIV,
|
2013-12-18 06:12:03 -08:00
|
|
|
TM_BAND,
|
|
|
|
TM_BOR,
|
|
|
|
TM_BXOR,
|
2013-12-30 12:47:58 -08:00
|
|
|
TM_SHL,
|
|
|
|
TM_SHR,
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_UNM,
|
2013-12-30 12:47:58 -08:00
|
|
|
TM_BNOT,
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_LT,
|
2002-06-12 07:56:22 -07:00
|
|
|
TM_LE,
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_CONCAT,
|
2001-12-05 12:15:18 -08:00
|
|
|
TM_CALL,
|
2000-10-05 06:00:17 -07:00
|
|
|
TM_N /* number of elements in the enum */
|
|
|
|
} TMS;
|
|
|
|
|
|
|
|
|
2001-01-24 08:20:54 -08:00
|
|
|
|
2003-12-01 10:22:56 -08:00
|
|
|
#define gfasttm(g,et,e) ((et) == NULL ? NULL : \
|
|
|
|
((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, (g)->tmname[e]))
|
2002-11-14 04:01:35 -08:00
|
|
|
|
|
|
|
#define fasttm(l,et,e) gfasttm(G(l), et, e)
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2010-04-14 08:13:48 -07:00
|
|
|
#define ttypename(x) luaT_typenames_[(x) + 1]
|
2010-01-13 08:18:25 -08:00
|
|
|
|
2011-02-28 09:32:10 -08:00
|
|
|
LUAI_DDEC const char *const luaT_typenames_[LUA_TOTALTAGS];
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
2016-02-26 11:20:15 -08:00
|
|
|
LUAI_FUNC const char *luaT_objtypename (lua_State *L, const TValue *o);
|
|
|
|
|
2005-04-25 12:24:10 -07: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 12:25:59 -07:00
|
|
|
|
2013-04-25 08:59:42 -07:00
|
|
|
LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
|
2017-06-29 08:06:44 -07: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 09:56:50 -07:00
|
|
|
LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
|
|
|
|
StkId res, TMS event);
|
2017-09-27 11:59:08 -07:00
|
|
|
LUAI_FUNC void luaT_trybiniTM (lua_State *L, const TValue *p1, int i2,
|
|
|
|
int inv, StkId res, TMS event);
|
2013-04-25 09:07:52 -07:00
|
|
|
LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1,
|
|
|
|
const TValue *p2, TMS event);
|
|
|
|
|
2017-05-13 06:04:33 -07:00
|
|
|
LUAI_FUNC void luaT_adjustvarargs (lua_State *L, Proto *p, int actual);
|
2017-06-29 08:06:44 -07:00
|
|
|
LUAI_FUNC void luaT_getvarargs (lua_State *L, TValue *t, StkId where,
|
2017-05-13 06:04:33 -07:00
|
|
|
int wanted);
|
2013-04-25 09:07:52 -07:00
|
|
|
|
2013-04-25 08:59:42 -07:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
#endif
|