2021-10-29 21:25:12 +01:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
// This code is based on Lua 5.x implementation licensed under MIT License; see lua_LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
|
|
|
* grep "ORDER TM"
|
|
|
|
*/
|
|
|
|
// clang-format off
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
|
|
|
|
TM_INDEX,
|
|
|
|
TM_NEWINDEX,
|
|
|
|
TM_MODE,
|
|
|
|
TM_NAMECALL,
|
2022-05-06 01:03:43 +01:00
|
|
|
TM_CALL,
|
|
|
|
TM_ITER,
|
2022-07-01 00:52:43 +01:00
|
|
|
TM_LEN,
|
2021-10-29 21:25:12 +01:00
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
TM_EQ, // last tag method with `fast' access
|
2021-10-29 21:25:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
TM_ADD,
|
|
|
|
TM_SUB,
|
|
|
|
TM_MUL,
|
|
|
|
TM_DIV,
|
|
|
|
TM_MOD,
|
|
|
|
TM_POW,
|
|
|
|
TM_UNM,
|
|
|
|
|
|
|
|
|
|
|
|
TM_LT,
|
|
|
|
TM_LE,
|
|
|
|
TM_CONCAT,
|
|
|
|
TM_TYPE,
|
2022-09-29 23:23:10 +01:00
|
|
|
TM_METATABLE,
|
2021-10-29 21:25:12 +01:00
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
TM_N // number of elements in the enum
|
2021-10-29 21:25:12 +01:00
|
|
|
} TMS;
|
|
|
|
// clang-format on
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
#define gfasttm(g, et, e) ((et) == NULL ? NULL : ((et)->tmcache & (1u << (e))) ? NULL : luaT_gettm(et, e, (g)->tmname[e]))
|
2021-10-29 21:25:12 +01:00
|
|
|
|
|
|
|
#define fasttm(l, et, e) gfasttm(l->global, et, e)
|
2022-06-17 02:05:14 +01:00
|
|
|
#define fastnotm(et, e) ((et) == NULL || ((et)->tmcache & (1u << (e))))
|
2021-10-29 21:25:12 +01:00
|
|
|
|
|
|
|
LUAI_DATA const char* const luaT_typenames[];
|
|
|
|
LUAI_DATA const char* const luaT_eventname[];
|
|
|
|
|
|
|
|
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 const TString* luaT_objtypenamestr(lua_State* L, const TValue* o);
|
|
|
|
LUAI_FUNC const char* luaT_objtypename(lua_State* L, const TValue* o);
|
|
|
|
|
|
|
|
LUAI_FUNC void luaT_init(lua_State* L);
|