4 ** See Copyright Notice in lua.h
28 static const char udatatypename
[] = "userdata";
30 LUAI_DDEF
const char *const luaT_typenames_
[LUA_TOTALTYPES
] = {
32 "nil", "boolean", udatatypename
, "number",
33 "string", "table", "function", udatatypename
, "thread",
34 "upvalue", "proto" /* these last cases are used for tests only */
38 void luaT_init (lua_State
*L
) {
39 static const char *const luaT_eventname
[] = { /* ORDER TM */
40 "__index", "__newindex",
41 "__gc", "__mode", "__len", "__eq",
42 "__add", "__sub", "__mul", "__mod", "__pow",
44 "__band", "__bor", "__bxor", "__shl", "__shr",
45 "__unm", "__bnot", "__lt", "__le",
46 "__concat", "__call", "__close"
49 for (i
=0; i
<TM_N
; i
++) {
50 G(L
)->tmname
[i
] = luaS_new(L
, luaT_eventname
[i
]);
51 luaC_fix(L
, obj2gco(G(L
)->tmname
[i
])); /* never collect these names */
57 ** function to be used with macro "fasttm": optimized for absence of
60 const TValue
*luaT_gettm (Table
*events
, TMS event
, TString
*ename
) {
61 const TValue
*tm
= luaH_getshortstr(events
, ename
);
62 lua_assert(event
<= TM_EQ
);
63 if (notm(tm
)) { /* no tag method? */
64 events
->flags
|= cast_byte(1u<<event
); /* cache this fact */
71 const TValue
*luaT_gettmbyobj (lua_State
*L
, const TValue
*o
, TMS event
) {
75 mt
= hvalue(o
)->metatable
;
78 mt
= uvalue(o
)->metatable
;
81 mt
= G(L
)->mt
[ttype(o
)];
83 return (mt
? luaH_getshortstr(mt
, G(L
)->tmname
[event
]) : &G(L
)->nilvalue
);
88 ** Return the name of the type of an object. For tables and userdata
89 ** with metatable, use their '__name' metafield, if present.
91 const char *luaT_objtypename (lua_State
*L
, const TValue
*o
) {
93 if ((ttistable(o
) && (mt
= hvalue(o
)->metatable
) != NULL
) ||
94 (ttisfulluserdata(o
) && (mt
= uvalue(o
)->metatable
) != NULL
)) {
95 const TValue
*name
= luaH_getshortstr(mt
, luaS_new(L
, "__name"));
96 if (ttisstring(name
)) /* is '__name' a string? */
97 return getstr(tsvalue(name
)); /* use it as type name */
99 return ttypename(ttype(o
)); /* else use standard type name */
103 void luaT_callTM (lua_State
*L
, const TValue
*f
, const TValue
*p1
,
104 const TValue
*p2
, const TValue
*p3
) {
105 StkId func
= L
->top
.p
;
106 setobj2s(L
, func
, f
); /* push function (assume EXTRA_STACK) */
107 setobj2s(L
, func
+ 1, p1
); /* 1st argument */
108 setobj2s(L
, func
+ 2, p2
); /* 2nd argument */
109 setobj2s(L
, func
+ 3, p3
); /* 3rd argument */
111 /* metamethod may yield only when called from Lua code */
112 if (isLuacode(L
->ci
))
113 luaD_call(L
, func
, 0);
115 luaD_callnoyield(L
, func
, 0);
119 void luaT_callTMres (lua_State
*L
, const TValue
*f
, const TValue
*p1
,
120 const TValue
*p2
, StkId res
) {
121 ptrdiff_t result
= savestack(L
, res
);
122 StkId func
= L
->top
.p
;
123 setobj2s(L
, func
, f
); /* push function (assume EXTRA_STACK) */
124 setobj2s(L
, func
+ 1, p1
); /* 1st argument */
125 setobj2s(L
, func
+ 2, p2
); /* 2nd argument */
127 /* metamethod may yield only when called from Lua code */
128 if (isLuacode(L
->ci
))
129 luaD_call(L
, func
, 1);
131 luaD_callnoyield(L
, func
, 1);
132 res
= restorestack(L
, result
);
133 setobjs2s(L
, res
, --L
->top
.p
); /* move result to its place */
137 static int callbinTM (lua_State
*L
, const TValue
*p1
, const TValue
*p2
,
138 StkId res
, TMS event
) {
139 const TValue
*tm
= luaT_gettmbyobj(L
, p1
, event
); /* try first operand */
141 tm
= luaT_gettmbyobj(L
, p2
, event
); /* try second operand */
142 if (notm(tm
)) return 0;
143 luaT_callTMres(L
, tm
, p1
, p2
, res
);
148 void luaT_trybinTM (lua_State
*L
, const TValue
*p1
, const TValue
*p2
,
149 StkId res
, TMS event
) {
150 if (l_unlikely(!callbinTM(L
, p1
, p2
, res
, event
))) {
152 case TM_BAND
: case TM_BOR
: case TM_BXOR
:
153 case TM_SHL
: case TM_SHR
: case TM_BNOT
: {
154 if (ttisnumber(p1
) && ttisnumber(p2
))
155 luaG_tointerror(L
, p1
, p2
);
157 luaG_opinterror(L
, p1
, p2
, "perform bitwise operation on");
159 /* calls never return, but to avoid warnings: *//* FALLTHROUGH */
161 luaG_opinterror(L
, p1
, p2
, "perform arithmetic on");
167 void luaT_tryconcatTM (lua_State
*L
) {
168 StkId top
= L
->top
.p
;
169 if (l_unlikely(!callbinTM(L
, s2v(top
- 2), s2v(top
- 1), top
- 2,
171 luaG_concaterror(L
, s2v(top
- 2), s2v(top
- 1));
175 void luaT_trybinassocTM (lua_State
*L
, const TValue
*p1
, const TValue
*p2
,
176 int flip
, StkId res
, TMS event
) {
178 luaT_trybinTM(L
, p2
, p1
, res
, event
);
180 luaT_trybinTM(L
, p1
, p2
, res
, event
);
184 void luaT_trybiniTM (lua_State
*L
, const TValue
*p1
, lua_Integer i2
,
185 int flip
, StkId res
, TMS event
) {
188 luaT_trybinassocTM(L
, p1
, &aux
, flip
, res
, event
);
193 ** Calls an order tag method.
194 ** For lessequal, LUA_COMPAT_LT_LE keeps compatibility with old
195 ** behavior: if there is no '__le', try '__lt', based on l <= r iff
196 ** !(r < l) (assuming a total order). If the metamethod yields during
197 ** this substitution, the continuation has to know about it (to negate
198 ** the result of r<l); bit CIST_LEQ in the call status keeps that
201 int luaT_callorderTM (lua_State
*L
, const TValue
*p1
, const TValue
*p2
,
203 if (callbinTM(L
, p1
, p2
, L
->top
.p
, event
)) /* try original event */
204 return !l_isfalse(s2v(L
->top
.p
));
205 #if defined(LUA_COMPAT_LT_LE)
206 else if (event
== TM_LE
) {
207 /* try '!(p2 < p1)' for '(p1 <= p2)' */
208 L
->ci
->callstatus
|= CIST_LEQ
; /* mark it is doing 'lt' for 'le' */
209 if (callbinTM(L
, p2
, p1
, L
->top
.p
, TM_LT
)) {
210 L
->ci
->callstatus
^= CIST_LEQ
; /* clear mark */
211 return l_isfalse(s2v(L
->top
.p
));
213 /* else error will remove this 'ci'; no need to clear mark */
216 luaG_ordererror(L
, p1
, p2
); /* no metamethod found */
217 return 0; /* to avoid warnings */
221 int luaT_callorderiTM (lua_State
*L
, const TValue
*p1
, int v2
,
222 int flip
, int isfloat
, TMS event
) {
223 TValue aux
; const TValue
*p2
;
225 setfltvalue(&aux
, cast_num(v2
));
229 if (flip
) { /* arguments were exchanged? */
230 p2
= p1
; p1
= &aux
; /* correct them */
234 return luaT_callorderTM(L
, p1
, p2
, event
);
238 void luaT_adjustvarargs (lua_State
*L
, int nfixparams
, CallInfo
*ci
,
241 int actual
= cast_int(L
->top
.p
- ci
->func
.p
) - 1; /* number of arguments */
242 int nextra
= actual
- nfixparams
; /* number of extra arguments */
243 ci
->u
.l
.nextraargs
= nextra
;
244 luaD_checkstack(L
, p
->maxstacksize
+ 1);
245 /* copy function to the top of the stack */
246 setobjs2s(L
, L
->top
.p
++, ci
->func
.p
);
247 /* move fixed parameters to the top of the stack */
248 for (i
= 1; i
<= nfixparams
; i
++) {
249 setobjs2s(L
, L
->top
.p
++, ci
->func
.p
+ i
);
250 setnilvalue(s2v(ci
->func
.p
+ i
)); /* erase original parameter (for GC) */
252 ci
->func
.p
+= actual
+ 1;
253 ci
->top
.p
+= actual
+ 1;
254 lua_assert(L
->top
.p
<= ci
->top
.p
&& ci
->top
.p
<= L
->stack_last
.p
);
258 void luaT_getvarargs (lua_State
*L
, CallInfo
*ci
, StkId where
, int wanted
) {
260 int nextra
= ci
->u
.l
.nextraargs
;
262 wanted
= nextra
; /* get all extra arguments available */
263 checkstackGCp(L
, nextra
, where
); /* ensure stack space */
264 L
->top
.p
= where
+ nextra
; /* next instruction will need top */
266 for (i
= 0; i
< wanted
&& i
< nextra
; i
++)
267 setobjs2s(L
, where
+ i
, ci
->func
.p
- nextra
+ i
);
268 for (; i
< wanted
; i
++) /* complete required results with nil */
269 setnilvalue(s2v(where
+ i
));