1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2011-03-01 01:32:10 +08:00
|
|
|
** $Id: ltm.h,v 2.10 2010/04/13 20:48:12 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Tag methods
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltm_h
|
|
|
|
#define ltm_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
2002-07-02 01:06:58 +08:00
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
2000-10-05 21:00:17 +08:00
|
|
|
* grep "ORDER TM"
|
1997-09-17 03:25:59 +08:00
|
|
|
*/
|
|
|
|
typedef enum {
|
2000-10-05 21:00:17 +08:00
|
|
|
TM_INDEX,
|
2002-05-28 04:35:40 +08:00
|
|
|
TM_NEWINDEX,
|
2001-12-06 04:15:18 +08:00
|
|
|
TM_GC,
|
2002-11-14 20:01:35 +08:00
|
|
|
TM_MODE,
|
2007-09-11 01:59:32 +08:00
|
|
|
TM_LEN,
|
2002-08-07 01:06:56 +08:00
|
|
|
TM_EQ, /* last tag method with `fast' access */
|
2000-10-05 21:00:17 +08:00
|
|
|
TM_ADD,
|
|
|
|
TM_SUB,
|
|
|
|
TM_MUL,
|
|
|
|
TM_DIV,
|
2005-03-09 02:00:16 +08:00
|
|
|
TM_MOD,
|
2000-10-05 21:00:17 +08:00
|
|
|
TM_POW,
|
|
|
|
TM_UNM,
|
|
|
|
TM_LT,
|
2002-06-12 22:56:22 +08:00
|
|
|
TM_LE,
|
2000-10-05 21:00:17 +08:00
|
|
|
TM_CONCAT,
|
2001-12-06 04:15:18 +08:00
|
|
|
TM_CALL,
|
2000-10-05 21:00:17 +08:00
|
|
|
TM_N /* number of elements in the enum */
|
|
|
|
} TMS;
|
|
|
|
|
|
|
|
|
2001-01-25 00:20:54 +08:00
|
|
|
|
2003-12-02 02: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 20:01:35 +08:00
|
|
|
|
|
|
|
#define fasttm(l,et,e) gfasttm(G(l), et, e)
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2010-04-14 23:13:48 +08:00
|
|
|
#define ttypename(x) luaT_typenames_[(x) + 1]
|
|
|
|
#define objtypename(x) ttypename(ttypenv(x))
|
2010-01-14 00:18:25 +08:00
|
|
|
|
2011-03-01 01:32:10 +08:00
|
|
|
LUAI_DDEC const char *const luaT_typenames_[LUA_TOTALTAGS];
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
2005-04-26 03:24:10 +08: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-17 03:25:59 +08:00
|
|
|
|
|
|
|
#endif
|