1997-09-16 16:25:59 -03:00
|
|
|
/*
|
2018-08-23 14:26:12 -03:00
|
|
|
** $Id: lvm.h $
|
1997-09-16 16:25:59 -03: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 13:16:43 -03:00
|
|
|
#include "ltm.h"
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
|
2014-07-30 11:42:44 -03:00
|
|
|
#if !defined(LUA_NOCVTN2S)
|
|
|
|
#define cvt2str(o) ttisnumber(o)
|
|
|
|
#else
|
2014-08-01 14:24:02 -03:00
|
|
|
#define cvt2str(o) 0 /* no conversion from numbers to strings */
|
2014-07-30 11:42:44 -03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if !defined(LUA_NOCVTS2N)
|
|
|
|
#define cvt2num(o) ttisstring(o)
|
|
|
|
#else
|
2014-08-01 14:24:02 -03:00
|
|
|
#define cvt2num(o) 0 /* no conversion from strings to numbers */
|
2014-07-30 11:42:44 -03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-02-20 12:27:53 -02: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 14:14:29 -03:00
|
|
|
#define LUA_FLOORN2I F2Ieq
|
2015-02-20 12:27:53 -02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2019-12-05 14:14:29 -03:00
|
|
|
/*
|
|
|
|
** Rounding modes for float->integer coercion
|
|
|
|
*/
|
|
|
|
typedef enum {
|
2020-04-23 14:48:15 -03:00
|
|
|
F2Ieq, /* no rounding; accepts only integral values */
|
2019-12-05 14:14:29 -03:00
|
|
|
F2Ifloor, /* takes the floor of the number */
|
2020-04-23 14:48:15 -03:00
|
|
|
F2Iceil /* takes the ceil of the number */
|
2019-12-05 14:14:29 -03:00
|
|
|
} F2Imod;
|
|
|
|
|
|
|
|
|
2017-07-07 13:34:32 -03:00
|
|
|
/* convert an object to a float (including string coercion) */
|
2013-04-26 13:03:50 -03:00
|
|
|
#define tonumber(o,n) \
|
|
|
|
(ttisfloat(o) ? (*(n) = fltvalue(o), 1) : luaV_tonumber_(o,n))
|
1997-09-16 16:25:59 -03:00
|
|
|
|
2017-07-07 13: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 14:12:50 -03:00
|
|
|
#define tointeger(o,i) \
|
2021-02-24 11:14:44 -03:00
|
|
|
(l_likely(ttisinteger(o)) ? (*(i) = ivalue(o), 1) \
|
|
|
|
: luaV_tointeger(o,i,LUA_FLOORN2I))
|
2013-04-29 14:12:50 -03:00
|
|
|
|
2017-07-07 13:34:32 -03:00
|
|
|
|
2017-11-08 12:50:23 -02:00
|
|
|
/* convert an object to an integer (without string coercion) */
|
|
|
|
#define tointegerns(o,i) \
|
2021-02-24 11:14:44 -03:00
|
|
|
(l_likely(ttisinteger(o)) ? (*(i) = ivalue(o), 1) \
|
|
|
|
: luaV_tointegerns(o,i,LUA_FLOORN2I))
|
2017-11-08 12:50:23 -02:00
|
|
|
|
|
|
|
|
2014-04-15 13:32:49 -03:00
|
|
|
#define intop(op,v1,v2) l_castU2S(l_castS2U(v1) op l_castS2U(v2))
|
2002-06-13 10:39:55 -03:00
|
|
|
|
2013-04-15 12:44:46 -03:00
|
|
|
#define luaV_rawequalobj(t1,t2) luaV_equalobj(NULL,t1,t2)
|
2007-02-09 11:04:52 -02:00
|
|
|
|
2011-05-31 15:24:36 -03:00
|
|
|
|
2015-07-20 15:24:50 -03:00
|
|
|
/*
|
2023-05-16 16:53:29 -03:00
|
|
|
** fast track for 'gettable'
|
2015-07-20 15:24:50 -03:00
|
|
|
*/
|
2024-03-18 15: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 17:56:25 -03:00
|
|
|
|
|
|
|
|
2015-07-20 15:24:50 -03:00
|
|
|
/*
|
2017-05-11 15:57:46 -03:00
|
|
|
** Special case of 'luaV_fastget' for integers, inlining the fast case
|
|
|
|
** of 'luaH_getint'.
|
2015-07-20 15:24:50 -03:00
|
|
|
*/
|
2024-03-18 15: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 15: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 17:56:25 -03:00
|
|
|
|
2015-07-20 15:24:50 -03:00
|
|
|
|
2015-09-09 10:44:07 -03:00
|
|
|
/*
|
2023-05-16 16:53:29 -03:00
|
|
|
** Finish a fast set operation (when fast set succeeds).
|
2015-09-09 10:44:07 -03:00
|
|
|
*/
|
2023-05-16 16:53:29 -03:00
|
|
|
#define luaV_finishfastset(L,t,v) luaC_barrierback(L, gcvalue(t), v)
|
2023-05-16 14:55:49 -03:00
|
|
|
|
2016-12-22 11:08:50 -02:00
|
|
|
|
2022-09-23 11: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 16:50:49 -03:00
|
|
|
|
|
|
|
|
2013-04-15 12:44:46 -03:00
|
|
|
LUAI_FUNC int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2);
|
2005-04-25 16:24:10 -03:00
|
|
|
LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
|
2009-06-17 13:17:14 -03:00
|
|
|
LUAI_FUNC int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r);
|
2013-04-26 13:03:50 -03:00
|
|
|
LUAI_FUNC int luaV_tonumber_ (const TValue *obj, lua_Number *n);
|
2019-12-05 14: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 15: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 16:53:29 -03:00
|
|
|
LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
|
|
|
|
TValue *val, int aux);
|
2009-03-10 14:14:37 -03:00
|
|
|
LUAI_FUNC void luaV_finishOp (lua_State *L);
|
2017-11-29 11:02:17 -02:00
|
|
|
LUAI_FUNC void luaV_execute (lua_State *L, CallInfo *ci);
|
2009-05-27 14:11:27 -03:00
|
|
|
LUAI_FUNC void luaV_concat (lua_State *L, int total);
|
2018-11-05 16:10:42 -02:00
|
|
|
LUAI_FUNC lua_Integer luaV_idiv (lua_State *L, lua_Integer x, lua_Integer y);
|
2013-04-25 16:12:41 -03:00
|
|
|
LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y);
|
2018-08-28 12:36:58 -03:00
|
|
|
LUAI_FUNC lua_Number luaV_modf (lua_State *L, lua_Number x, lua_Number y);
|
2013-12-30 18:47:58 -02:00
|
|
|
LUAI_FUNC lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y);
|
2009-12-17 14:20:01 -02:00
|
|
|
LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb);
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
#endif
|