1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2018-08-23 20:26:12 +03:00
|
|
|
** $Id: lvm.h $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Lua virtual machine
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lvm_h
|
|
|
|
#define lvm_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "ldo.h"
|
|
|
|
#include "lobject.h"
|
1998-07-12 20:16:43 +04:00
|
|
|
#include "ltm.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
2014-07-30 18:42:44 +04:00
|
|
|
#if !defined(LUA_NOCVTN2S)
|
|
|
|
#define cvt2str(o) ttisnumber(o)
|
|
|
|
#else
|
2014-08-01 21:24:02 +04:00
|
|
|
#define cvt2str(o) 0 /* no conversion from numbers to strings */
|
2014-07-30 18:42:44 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if !defined(LUA_NOCVTS2N)
|
|
|
|
#define cvt2num(o) ttisstring(o)
|
|
|
|
#else
|
2014-08-01 21:24:02 +04:00
|
|
|
#define cvt2num(o) 0 /* no conversion from strings to numbers */
|
2014-07-30 18:42:44 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-02-20 17:27:53 +03:00
|
|
|
/*
|
|
|
|
** You can define LUA_FLOORN2I if you want to convert floats to integers
|
|
|
|
** by flooring them (instead of raising an error if they are not
|
|
|
|
** integral values)
|
|
|
|
*/
|
|
|
|
#if !defined(LUA_FLOORN2I)
|
2019-12-05 20:14:29 +03:00
|
|
|
#define LUA_FLOORN2I F2Ieq
|
2015-02-20 17:27:53 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2019-12-05 20:14:29 +03:00
|
|
|
/*
|
|
|
|
** Rounding modes for float->integer coercion
|
|
|
|
*/
|
|
|
|
typedef enum {
|
2020-04-23 20:48:15 +03:00
|
|
|
F2Ieq, /* no rounding; accepts only integral values */
|
2019-12-05 20:14:29 +03:00
|
|
|
F2Ifloor, /* takes the floor of the number */
|
2020-04-23 20:48:15 +03:00
|
|
|
F2Iceil /* takes the ceil of the number */
|
2019-12-05 20:14:29 +03:00
|
|
|
} F2Imod;
|
|
|
|
|
|
|
|
|
2017-07-07 19:34:32 +03:00
|
|
|
/* convert an object to a float (including string coercion) */
|
2013-04-26 20:03:50 +04:00
|
|
|
#define tonumber(o,n) \
|
|
|
|
(ttisfloat(o) ? (*(n) = fltvalue(o), 1) : luaV_tonumber_(o,n))
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2017-07-07 19:34:32 +03:00
|
|
|
|
|
|
|
/* convert an object to a float (without string coercion) */
|
|
|
|
#define tonumberns(o,n) \
|
|
|
|
(ttisfloat(o) ? ((n) = fltvalue(o), 1) : \
|
|
|
|
(ttisinteger(o) ? ((n) = cast_num(ivalue(o)), 1) : 0))
|
|
|
|
|
|
|
|
|
|
|
|
/* convert an object to an integer (including string coercion) */
|
2013-04-29 21:12:50 +04:00
|
|
|
#define tointeger(o,i) \
|
2021-02-24 17:14:44 +03:00
|
|
|
(l_likely(ttisinteger(o)) ? (*(i) = ivalue(o), 1) \
|
|
|
|
: luaV_tointeger(o,i,LUA_FLOORN2I))
|
2013-04-29 21:12:50 +04:00
|
|
|
|
2017-07-07 19:34:32 +03:00
|
|
|
|
2017-11-08 17:50:23 +03:00
|
|
|
/* convert an object to an integer (without string coercion) */
|
|
|
|
#define tointegerns(o,i) \
|
2021-02-24 17:14:44 +03:00
|
|
|
(l_likely(ttisinteger(o)) ? (*(i) = ivalue(o), 1) \
|
|
|
|
: luaV_tointegerns(o,i,LUA_FLOORN2I))
|
2017-11-08 17:50:23 +03:00
|
|
|
|
|
|
|
|
2014-04-15 20:32:49 +04:00
|
|
|
#define intop(op,v1,v2) l_castU2S(l_castS2U(v1) op l_castS2U(v2))
|
2002-06-13 17:39:55 +04:00
|
|
|
|
2013-04-15 19:44:46 +04:00
|
|
|
#define luaV_rawequalobj(t1,t2) luaV_equalobj(NULL,t1,t2)
|
2007-02-09 16:04:52 +03:00
|
|
|
|
2011-05-31 22:24:36 +04:00
|
|
|
|
2015-07-20 21:24:50 +03:00
|
|
|
/*
|
2018-02-23 16:16:18 +03:00
|
|
|
** fast track for 'gettable': if 't' is a table and 't[k]' is present,
|
2017-05-11 21:57:46 +03:00
|
|
|
** return 1 with 'slot' pointing to 't[k]' (position of final result).
|
|
|
|
** Otherwise, return 0 (meaning it will have to check metamethod)
|
2018-02-23 16:16:18 +03:00
|
|
|
** with 'slot' pointing to an empty 't[k]' (if 't' is a table) or NULL
|
2017-05-11 21:57:46 +03:00
|
|
|
** (otherwise). 'f' is the raw get function to use.
|
2015-07-20 21:24:50 +03:00
|
|
|
*/
|
2016-01-05 19:07:21 +03:00
|
|
|
#define luaV_fastget(L,t,k,slot,f) \
|
2015-07-20 21:24:50 +03:00
|
|
|
(!ttistable(t) \
|
2016-01-05 19:07:21 +03:00
|
|
|
? (slot = NULL, 0) /* not a table; 'slot' is NULL and result is 0 */ \
|
|
|
|
: (slot = f(hvalue(t), k), /* else, do raw access */ \
|
2018-02-23 16:16:18 +03:00
|
|
|
!isempty(slot))) /* result not empty? */
|
2015-07-20 21:24:50 +03:00
|
|
|
|
2017-05-11 21:57:46 +03:00
|
|
|
|
2015-07-20 21:24:50 +03:00
|
|
|
/*
|
2017-05-11 21:57:46 +03:00
|
|
|
** Special case of 'luaV_fastget' for integers, inlining the fast case
|
|
|
|
** of 'luaH_getint'.
|
2015-07-20 21:24:50 +03:00
|
|
|
*/
|
2017-05-11 21:57:46 +03:00
|
|
|
#define luaV_fastgeti(L,t,k,slot) \
|
|
|
|
(!ttistable(t) \
|
|
|
|
? (slot = NULL, 0) /* not a table; 'slot' is NULL and result is 0 */ \
|
2018-06-15 17:14:20 +03:00
|
|
|
: (slot = (l_castS2U(k) - 1u < hvalue(t)->alimit) \
|
2017-05-11 21:57:46 +03:00
|
|
|
? &hvalue(t)->array[k - 1] : luaH_getint(hvalue(t), k), \
|
2018-02-23 16:16:18 +03:00
|
|
|
!isempty(slot))) /* result not empty? */
|
2015-07-20 21:24:50 +03:00
|
|
|
|
|
|
|
|
2015-09-09 16:44:07 +03:00
|
|
|
/*
|
2017-05-11 21:57:46 +03:00
|
|
|
** Finish a fast set operation (when fast get succeeds). In that case,
|
2017-06-09 22:16:41 +03:00
|
|
|
** 'slot' points to the place to put the value.
|
2015-09-09 16:44:07 +03:00
|
|
|
*/
|
2017-05-11 21:57:46 +03:00
|
|
|
#define luaV_finishfastset(L,t,slot,v) \
|
2017-06-01 23:23:27 +03:00
|
|
|
{ setobj2t(L, cast(TValue *,slot), v); \
|
2018-02-19 23:06:56 +03:00
|
|
|
luaC_barrierback(L, gcvalue(t), v); }
|
2017-05-11 21:57:46 +03:00
|
|
|
|
2016-12-22 16:08:50 +03:00
|
|
|
|
2022-09-23 17:08:10 +03:00
|
|
|
/*
|
|
|
|
** Shift right is the same as shift left with a negative 'y'
|
|
|
|
*/
|
|
|
|
#define luaV_shiftr(x,y) luaV_shiftl(x,intop(-, 0, y))
|
|
|
|
|
2015-08-03 22:50:49 +03:00
|
|
|
|
|
|
|
|
2013-04-15 19:44:46 +04:00
|
|
|
LUAI_FUNC int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
|
2009-06-17 20:17:14 +04:00
|
|
|
LUAI_FUNC int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r);
|
2013-04-26 20:03:50 +04:00
|
|
|
LUAI_FUNC int luaV_tonumber_ (const TValue *obj, lua_Number *n);
|
2019-12-05 20:14:29 +03:00
|
|
|
LUAI_FUNC int luaV_tointeger (const TValue *obj, lua_Integer *p, F2Imod mode);
|
|
|
|
LUAI_FUNC int luaV_tointegerns (const TValue *obj, lua_Integer *p,
|
|
|
|
F2Imod mode);
|
|
|
|
LUAI_FUNC int luaV_flttointeger (lua_Number n, lua_Integer *p, F2Imod mode);
|
2015-07-20 21:24:50 +03:00
|
|
|
LUAI_FUNC void luaV_finishget (lua_State *L, const TValue *t, TValue *key,
|
2016-01-05 19:07:21 +03:00
|
|
|
StkId val, const TValue *slot);
|
2015-08-03 22:50:49 +03:00
|
|
|
LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
|
2017-06-29 18:06:44 +03:00
|
|
|
TValue *val, const TValue *slot);
|
2009-03-10 20:14:37 +03:00
|
|
|
LUAI_FUNC void luaV_finishOp (lua_State *L);
|
2017-11-29 16:02:17 +03:00
|
|
|
LUAI_FUNC void luaV_execute (lua_State *L, CallInfo *ci);
|
2009-05-27 21:11:27 +04:00
|
|
|
LUAI_FUNC void luaV_concat (lua_State *L, int total);
|
2018-11-05 21:10:42 +03:00
|
|
|
LUAI_FUNC lua_Integer luaV_idiv (lua_State *L, lua_Integer x, lua_Integer y);
|
2013-04-25 23:12:41 +04:00
|
|
|
LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y);
|
2018-08-28 18:36:58 +03:00
|
|
|
LUAI_FUNC lua_Number luaV_modf (lua_State *L, lua_Number x, lua_Number y);
|
2013-12-31 00:47:58 +04:00
|
|
|
LUAI_FUNC lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y);
|
2009-12-17 19:20:01 +03:00
|
|
|
LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#endif
|