diff options
author | sanine <sanine.not@pm.me> | 2022-08-18 20:52:26 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-18 20:52:26 -0500 |
commit | b8147afcc5bfbeb5fad62e4f68f1b88fc6c60d96 (patch) | |
tree | 8e5b63933b05a54bc2e74160fd2d53354a23f3d4 /libs/lua-5.1.5/src/ltm.c | |
parent | de97d73a33ee3c1e2fe325b0cff90f079519bb36 (diff) |
add lua-5.1.5 files
Diffstat (limited to 'libs/lua-5.1.5/src/ltm.c')
-rw-r--r-- | libs/lua-5.1.5/src/ltm.c | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/libs/lua-5.1.5/src/ltm.c b/libs/lua-5.1.5/src/ltm.c new file mode 100644 index 0000000..c27f0f6 --- /dev/null +++ b/libs/lua-5.1.5/src/ltm.c @@ -0,0 +1,75 @@ +/* +** $Id: ltm.c,v 2.8.1.1 2007/12/27 13:02:25 roberto Exp $ +** Tag methods +** See Copyright Notice in lua.h +*/ + + +#include <string.h> + +#define ltm_c +#define LUA_CORE + +#include "lua.h" + +#include "lobject.h" +#include "lstate.h" +#include "lstring.h" +#include "ltable.h" +#include "ltm.h" + + + +const char *const luaT_typenames[] = { + "nil", "boolean", "userdata", "number", + "string", "table", "function", "userdata", "thread", + "proto", "upval" +}; + + +void luaT_init (lua_State *L) { + static const char *const luaT_eventname[] = { /* ORDER TM */ + "__index", "__newindex", + "__gc", "__mode", "__eq", + "__add", "__sub", "__mul", "__div", "__mod", + "__pow", "__unm", "__len", "__lt", "__le", + "__concat", "__call" + }; + int i; + for (i=0; i<TM_N; i++) { + G(L)->tmname[i] = luaS_new(L, luaT_eventname[i]); + luaS_fix(G(L)->tmname[i]); /* never collect these names */ + } +} + + +/* +** function to be used with macro "fasttm": optimized for absence of +** tag methods +*/ +const TValue *luaT_gettm (Table *events, TMS event, TString *ename) { + const TValue *tm = luaH_getstr(events, ename); + lua_assert(event <= TM_EQ); + if (ttisnil(tm)) { /* no tag method? */ + events->flags |= cast_byte(1u<<event); /* cache this fact */ + return NULL; + } + else return tm; +} + + +const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) { + Table *mt; + switch (ttype(o)) { + case LUA_TTABLE: + mt = hvalue(o)->metatable; + break; + case LUA_TUSERDATA: + mt = uvalue(o)->metatable; + break; + default: + mt = G(L)->mt[ttype(o)]; + } + return (mt ? luaH_getstr(mt, G(L)->tmname[event]) : luaO_nilobject); +} + |