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
|
|
|
/*
|
2023-05-16 22:53:29 +03:00
|
|
|
** fast track for 'gettable'
|
2015-07-20 21:24:50 +03:00
|
|
|
*/
|
2024-03-18 21:56:32 +03:00
|
|
|
#define luaV_fastget(t,k,res,f, aux) \
|
|
|
|
{if (!ttistable(t)) setnotableV(aux); \
|
|
|
|
else { aux = f(hvalue(t), k); \
|
|
|
|
if (!isemptyV(aux)) { setobjV(cast(lua_State*, NULL), res, aux); } } }
|
2023-05-15 23:56:25 +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
|
|
|
*/
|
2024-03-18 21:56:32 +03:00
|
|
|
#define luaV_fastgeti(t,k,res,aux) \
|
|
|
|
{ if (!ttistable(t)) setnotableV(aux); \
|
|
|
|
else { luaH_fastgeti(hvalue(t), k, res, aux); } }
|
2024-01-12 21:50:51 +03:00
|
|
|
|
|
|
|
|
|
|
|
#define luaV_fastset(t,k,val,hres,f) \
|
|
|
|
(hres = (!ttistable(t) ? HNOTATABLE : f(hvalue(t), k, val)))
|
|
|
|
|
|
|
|
#define luaV_fastseti(t,k,val,hres) \
|
|
|
|
if (!ttistable(t)) hres = HNOTATABLE; \
|
|
|
|
else { luaH_fastseti(hvalue(t), k, val, hres); }
|
2023-05-15 23:56:25 +03:00
|
|
|
|
2015-07-20 21:24:50 +03:00
|
|
|
|
2015-09-09 16:44:07 +03:00
|
|
|
/*
|
2023-05-16 22:53:29 +03:00
|
|
|
** Finish a fast set operation (when fast set succeeds).
|
2015-09-09 16:44:07 +03:00
|
|
|
*/
|
2023-05-16 22:53:29 +03:00
|
|
|
#define luaV_finishfastset(L,t,v) luaC_barrierback(L, gcvalue(t), v)
|
2023-05-16 20:55:49 +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);
|
2024-03-18 21:56:32 +03:00
|
|
|
#define luaV_finishget(L,t,key,val,aux) \
|
|
|
|
luaV_finishget_(L,t,key,val,ttypetagV(aux))
|
|
|
|
LUAI_FUNC void luaV_finishget_ (lua_State *L, const TValue *t, TValue *key,
|
|
|
|
StkId val, int tag);
|
2023-05-16 22:53:29 +03:00
|
|
|
LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
|
|
|
|
TValue *val, int aux);
|
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
|