2000-03-24 20:26:08 +03:00
|
|
|
/*
|
2018-12-17 19:46:37 +03:00
|
|
|
** $Id: llimits.h,v 1.141.1.1 2017/04/19 17:20:42 roberto Exp $
|
2014-10-25 15:50:46 +04:00
|
|
|
** Limits, basic types, and some other 'installation-dependent' definitions
|
2000-03-24 20:26:08 +03:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2000-03-24 22:49:23 +03:00
|
|
|
#ifndef llimits_h
|
|
|
|
#define llimits_h
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
#include <limits.h>
|
2000-05-24 17:54:49 +04:00
|
|
|
#include <stddef.h>
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
|
2001-02-23 23:28:56 +03:00
|
|
|
#include "lua.h"
|
|
|
|
|
2014-10-29 20:07:45 +03:00
|
|
|
/*
|
|
|
|
** 'lu_mem' and 'l_mem' are unsigned/signed integers big enough to count
|
|
|
|
** the total memory used by Lua (in bytes). Usually, 'size_t' and
|
|
|
|
** 'ptrdiff_t' should work, but we use 'long' for 16-bit machines.
|
|
|
|
*/
|
|
|
|
#if defined(LUAI_MEM) /* { external definitions? */
|
2005-03-09 19:28:07 +03:00
|
|
|
typedef LUAI_UMEM lu_mem;
|
|
|
|
typedef LUAI_MEM l_mem;
|
2014-10-29 20:07:45 +03:00
|
|
|
#elif LUAI_BITSINT >= 32 /* }{ */
|
|
|
|
typedef size_t lu_mem;
|
|
|
|
typedef ptrdiff_t l_mem;
|
|
|
|
#else /* 16-bit ints */ /* }{ */
|
|
|
|
typedef unsigned long lu_mem;
|
|
|
|
typedef long l_mem;
|
|
|
|
#endif /* } */
|
2003-12-01 19:33:30 +03:00
|
|
|
|
|
|
|
|
2014-10-25 15:50:46 +04:00
|
|
|
/* chars used as small naturals (so that 'char' is reserved for characters) */
|
2001-02-20 21:15:33 +03:00
|
|
|
typedef unsigned char lu_byte;
|
2000-05-24 17:54:49 +04:00
|
|
|
|
|
|
|
|
2013-06-19 18:27:00 +04:00
|
|
|
/* maximum value for size_t */
|
2014-07-18 22:29:12 +04:00
|
|
|
#define MAX_SIZET ((size_t)(~(size_t)0))
|
2000-05-24 17:54:49 +04:00
|
|
|
|
2013-06-19 18:27:00 +04:00
|
|
|
/* maximum size visible for Lua (must be representable in a lua_Integer */
|
2014-04-11 23:56:04 +04:00
|
|
|
#define MAX_SIZE (sizeof(size_t) < sizeof(lua_Integer) ? MAX_SIZET \
|
2014-07-18 22:29:12 +04:00
|
|
|
: (size_t)(LUA_MAXINTEGER))
|
2013-06-19 18:27:00 +04:00
|
|
|
|
|
|
|
|
2014-07-18 22:29:12 +04:00
|
|
|
#define MAX_LUMEM ((lu_mem)(~(lu_mem)0))
|
2004-11-24 21:55:56 +03:00
|
|
|
|
2014-07-18 22:29:12 +04:00
|
|
|
#define MAX_LMEM ((l_mem)(MAX_LUMEM >> 1))
|
2012-05-29 00:32:28 +04:00
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
|
2014-07-18 22:29:12 +04:00
|
|
|
#define MAX_INT INT_MAX /* maximum value of an int */
|
2000-03-24 20:26:08 +03:00
|
|
|
|
2013-05-27 16:43:37 +04:00
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
/*
|
2015-03-03 22:53:13 +03:00
|
|
|
** conversion of pointer to unsigned integer:
|
2001-02-20 21:15:33 +03:00
|
|
|
** this is for hashing only; there is no problem if the integer
|
|
|
|
** cannot hold the whole pointer value
|
2000-03-24 20:26:08 +03:00
|
|
|
*/
|
2015-03-03 22:53:13 +03:00
|
|
|
#define point2uint(p) ((unsigned int)((size_t)(p) & UINT_MAX))
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
|
2000-03-31 20:28:45 +04:00
|
|
|
|
2000-10-26 16:47:05 +04:00
|
|
|
/* type to ensure maximum alignment */
|
2014-07-18 22:18:45 +04:00
|
|
|
#if defined(LUAI_USER_ALIGNMENT_T)
|
|
|
|
typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
|
|
|
|
#else
|
2015-07-15 18:57:13 +03:00
|
|
|
typedef union {
|
|
|
|
lua_Number n;
|
|
|
|
double u;
|
|
|
|
void *s;
|
|
|
|
lua_Integer i;
|
|
|
|
long l;
|
|
|
|
} L_Umaxalign;
|
2009-12-17 15:26:09 +03:00
|
|
|
#endif
|
|
|
|
|
2002-10-22 21:18:28 +04:00
|
|
|
|
|
|
|
|
2014-04-11 23:56:04 +04:00
|
|
|
/* types of 'usual argument conversions' for lua_Number and lua_Integer */
|
2005-03-09 19:28:07 +03:00
|
|
|
typedef LUAI_UACNUMBER l_uacNumber;
|
2014-04-11 23:56:04 +04:00
|
|
|
typedef LUAI_UACINT l_uacInt;
|
2000-10-26 16:47:05 +04:00
|
|
|
|
|
|
|
|
2005-12-27 20:12:00 +03:00
|
|
|
/* internal assertions for in-house debugging */
|
2009-12-17 15:26:09 +03:00
|
|
|
#if defined(lua_assert)
|
2005-12-27 20:12:00 +03:00
|
|
|
#define check_exp(c,e) (lua_assert(c), (e))
|
2011-05-05 23:43:14 +04:00
|
|
|
/* to avoid problems with conditions too long */
|
2015-09-08 19:53:56 +03:00
|
|
|
#define lua_longassert(c) ((c) ? (void)0 : lua_assert(0))
|
2005-12-27 20:12:00 +03:00
|
|
|
#else
|
2011-09-13 21:39:23 +04:00
|
|
|
#define lua_assert(c) ((void)0)
|
2005-12-27 20:12:00 +03:00
|
|
|
#define check_exp(c,e) (e)
|
2011-09-13 21:39:23 +04:00
|
|
|
#define lua_longassert(c) ((void)0)
|
2009-12-17 15:26:09 +03:00
|
|
|
#endif
|
2005-12-27 20:12:00 +03:00
|
|
|
|
2009-12-17 15:26:09 +03:00
|
|
|
/*
|
|
|
|
** assertion for checking API calls
|
|
|
|
*/
|
2015-03-06 22:49:50 +03:00
|
|
|
#if !defined(luai_apicheck)
|
|
|
|
#define luai_apicheck(l,e) lua_assert(e)
|
2005-12-27 20:12:00 +03:00
|
|
|
#endif
|
2002-06-13 17:45:31 +04:00
|
|
|
|
2015-03-06 22:49:50 +03:00
|
|
|
#define api_check(l,e,msg) luai_apicheck(l,(e) && msg)
|
2009-08-31 18:26:28 +04:00
|
|
|
|
2002-06-13 17:45:31 +04:00
|
|
|
|
2015-01-16 16:26:55 +03:00
|
|
|
/* macro to avoid warnings about unused variables */
|
2009-12-17 15:26:09 +03:00
|
|
|
#if !defined(UNUSED)
|
2015-01-16 16:26:55 +03:00
|
|
|
#define UNUSED(x) ((void)(x))
|
2002-03-18 21:16:16 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-01-16 16:26:55 +03:00
|
|
|
/* type casts (a macro highlights casts in the code) */
|
2002-03-18 21:16:16 +03:00
|
|
|
#define cast(t, exp) ((t)(exp))
|
|
|
|
|
2014-03-07 20:19:00 +04:00
|
|
|
#define cast_void(i) cast(void, (i))
|
2005-12-22 19:19:56 +03:00
|
|
|
#define cast_byte(i) cast(lu_byte, (i))
|
|
|
|
#define cast_num(i) cast(lua_Number, (i))
|
|
|
|
#define cast_int(i) cast(int, (i))
|
2010-12-10 16:40:22 +03:00
|
|
|
#define cast_uchar(i) cast(unsigned char, (i))
|
2014-04-15 18:29:30 +04:00
|
|
|
|
|
|
|
|
2014-04-15 20:32:49 +04:00
|
|
|
/* cast a signed lua_Integer to lua_Unsigned */
|
|
|
|
#if !defined(l_castS2U)
|
|
|
|
#define l_castS2U(i) ((lua_Unsigned)(i))
|
|
|
|
#endif
|
|
|
|
|
2014-04-15 18:29:30 +04:00
|
|
|
/*
|
|
|
|
** cast a lua_Unsigned to a signed lua_Integer; this cast is
|
2014-11-02 22:33:33 +03:00
|
|
|
** not strict ISO C, but two-complement architectures should
|
2014-04-15 18:29:30 +04:00
|
|
|
** work fine.
|
|
|
|
*/
|
2014-04-15 20:32:49 +04:00
|
|
|
#if !defined(l_castU2S)
|
|
|
|
#define l_castU2S(i) ((lua_Integer)(i))
|
|
|
|
#endif
|
2005-12-22 19:19:56 +03:00
|
|
|
|
2002-03-18 21:16:16 +03:00
|
|
|
|
2011-10-08 00:45:19 +04:00
|
|
|
/*
|
|
|
|
** non-return type
|
|
|
|
*/
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
#define l_noret void __attribute__((noreturn))
|
2014-12-19 16:30:23 +03:00
|
|
|
#elif defined(_MSC_VER) && _MSC_VER >= 1200
|
2011-10-08 00:45:19 +04:00
|
|
|
#define l_noret void __declspec(noreturn)
|
|
|
|
#else
|
|
|
|
#define l_noret void
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-12-17 15:26:09 +03:00
|
|
|
/*
|
|
|
|
** maximum depth for nested C calls and syntactical nested non-terminals
|
|
|
|
** in a program. (Value must fit in an unsigned short int.)
|
|
|
|
*/
|
|
|
|
#if !defined(LUAI_MAXCCALLS)
|
|
|
|
#define LUAI_MAXCCALLS 200
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-10-26 16:47:05 +04:00
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
/*
|
2014-10-29 20:07:45 +03:00
|
|
|
** type for virtual-machine instructions;
|
2000-09-29 16:42:13 +04:00
|
|
|
** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
|
2000-03-24 20:26:08 +03:00
|
|
|
*/
|
2014-10-29 20:07:45 +03:00
|
|
|
#if LUAI_BITSINT >= 32
|
|
|
|
typedef unsigned int Instruction;
|
|
|
|
#else
|
|
|
|
typedef unsigned long Instruction;
|
|
|
|
#endif
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
|
2002-03-07 21:11:51 +03:00
|
|
|
|
2015-01-16 20:15:52 +03:00
|
|
|
/*
|
|
|
|
** Maximum length for short strings, that is, strings that are
|
|
|
|
** internalized. (Cannot be smaller than reserved words or tags for
|
|
|
|
** metamethods, as these strings must be internalized;
|
|
|
|
** #("function") = 8, #("__newindex") = 10.)
|
|
|
|
*/
|
|
|
|
#if !defined(LUAI_MAXSHORTLEN)
|
|
|
|
#define LUAI_MAXSHORTLEN 40
|
|
|
|
#endif
|
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
|
2015-01-16 18:41:03 +03:00
|
|
|
/*
|
|
|
|
** Initial size for the string table (must be power of 2).
|
|
|
|
** The Lua core alone registers ~50 strings (reserved words +
|
|
|
|
** metaevent keys + a few others). Libraries would typically add
|
|
|
|
** a few dozens more.
|
|
|
|
*/
|
2009-12-17 15:26:09 +03:00
|
|
|
#if !defined(MINSTRTABSIZE)
|
2015-01-16 18:41:03 +03:00
|
|
|
#define MINSTRTABSIZE 128
|
2002-03-05 19:22:54 +03:00
|
|
|
#endif
|
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
|
2015-03-04 16:31:21 +03:00
|
|
|
/*
|
2015-09-22 17:18:24 +03:00
|
|
|
** Size of cache for strings in the API. 'N' is the number of
|
|
|
|
** sets (better be a prime) and "M" is the size of each set (M == 1
|
|
|
|
** makes a direct cache.)
|
2015-03-04 16:31:21 +03:00
|
|
|
*/
|
2015-09-22 17:18:24 +03:00
|
|
|
#if !defined(STRCACHE_N)
|
2015-10-06 17:29:49 +03:00
|
|
|
#define STRCACHE_N 53
|
2015-09-22 17:18:24 +03:00
|
|
|
#define STRCACHE_M 2
|
2015-03-04 16:31:21 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-10-08 22:46:08 +04:00
|
|
|
/* minimum size for string buffer */
|
2009-12-17 15:26:09 +03:00
|
|
|
#if !defined(LUA_MINBUFFER)
|
2002-10-08 22:46:08 +04:00
|
|
|
#define LUA_MINBUFFER 32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-01-16 16:26:55 +03:00
|
|
|
/*
|
2015-11-19 22:16:22 +03:00
|
|
|
** macros that are executed whenever program enters the Lua core
|
2015-01-16 16:26:55 +03:00
|
|
|
** ('lua_lock') and leaves the core ('lua_unlock')
|
|
|
|
*/
|
2009-12-17 15:26:09 +03:00
|
|
|
#if !defined(lua_lock)
|
2014-10-29 20:07:45 +03:00
|
|
|
#define lua_lock(L) ((void) 0)
|
|
|
|
#define lua_unlock(L) ((void) 0)
|
2005-08-04 17:37:10 +04:00
|
|
|
#endif
|
|
|
|
|
2015-01-16 16:26:55 +03:00
|
|
|
/*
|
|
|
|
** macro executed during Lua functions at points where the
|
|
|
|
** function can yield.
|
|
|
|
*/
|
2009-12-17 15:26:09 +03:00
|
|
|
#if !defined(luai_threadyield)
|
2014-10-29 20:07:45 +03:00
|
|
|
#define luai_threadyield(L) {lua_unlock(L); lua_lock(L);}
|
2005-08-04 17:37:10 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-12-17 15:50:20 +03:00
|
|
|
/*
|
|
|
|
** these macros allow user-specific actions on threads when you defined
|
|
|
|
** LUAI_EXTRASPACE and need to do something extra when a thread is
|
|
|
|
** created/deleted/resumed/yielded.
|
|
|
|
*/
|
|
|
|
#if !defined(luai_userstateopen)
|
2010-04-19 21:40:13 +04:00
|
|
|
#define luai_userstateopen(L) ((void)L)
|
2009-12-17 15:50:20 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstateclose)
|
2010-04-19 21:40:13 +04:00
|
|
|
#define luai_userstateclose(L) ((void)L)
|
2009-12-17 15:50:20 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstatethread)
|
2010-04-19 21:40:13 +04:00
|
|
|
#define luai_userstatethread(L,L1) ((void)L)
|
2009-12-17 15:50:20 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstatefree)
|
2010-04-19 21:40:13 +04:00
|
|
|
#define luai_userstatefree(L,L1) ((void)L)
|
2009-12-17 15:50:20 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstateresume)
|
2014-10-29 20:07:45 +03:00
|
|
|
#define luai_userstateresume(L,n) ((void)L)
|
2009-12-17 15:50:20 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstateyield)
|
2014-10-29 20:07:45 +03:00
|
|
|
#define luai_userstateyield(L,n) ((void)L)
|
2009-12-17 15:50:20 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-02-05 20:15:33 +03:00
|
|
|
/*
|
|
|
|
** The luai_num* macros define the primitive operations over numbers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* floor division (defined as 'floor(a/b)') */
|
|
|
|
#if !defined(luai_numidiv)
|
2015-02-09 18:41:56 +03:00
|
|
|
#define luai_numidiv(L,a,b) ((void)L, l_floor(luai_numdiv(L,a,b)))
|
2015-02-05 20:15:33 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* float division */
|
|
|
|
#if !defined(luai_numdiv)
|
|
|
|
#define luai_numdiv(L,a,b) ((a)/(b))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
2015-06-09 17:21:00 +03:00
|
|
|
** modulo: defined as 'a - floor(a/b)*b'; this definition gives NaN when
|
|
|
|
** 'b' is huge, but the result should be 'a'. 'fmod' gives the result of
|
|
|
|
** 'a - trunc(a/b)*b', and therefore must be corrected when 'trunc(a/b)
|
|
|
|
** ~= floor(a/b)'. That happens when the division has a non-integer
|
|
|
|
** negative result, which is equivalent to the test below.
|
2015-02-05 20:15:33 +03:00
|
|
|
*/
|
|
|
|
#if !defined(luai_nummod)
|
|
|
|
#define luai_nummod(L,a,b,m) \
|
|
|
|
{ (m) = l_mathop(fmod)(a,b); if ((m)*(b) < 0) (m) += (b); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* exponentiation */
|
|
|
|
#if !defined(luai_numpow)
|
|
|
|
#define luai_numpow(L,a,b) ((void)L, l_mathop(pow)(a,b))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* the others are quite standard operations */
|
|
|
|
#if !defined(luai_numadd)
|
|
|
|
#define luai_numadd(L,a,b) ((a)+(b))
|
|
|
|
#define luai_numsub(L,a,b) ((a)-(b))
|
|
|
|
#define luai_nummul(L,a,b) ((a)*(b))
|
|
|
|
#define luai_numunm(L,a) (-(a))
|
|
|
|
#define luai_numeq(a,b) ((a)==(b))
|
|
|
|
#define luai_numlt(a,b) ((a)<(b))
|
|
|
|
#define luai_numle(a,b) ((a)<=(b))
|
|
|
|
#define luai_numisnan(a) (!luai_numeq((a), (a)))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-08-24 20:15:49 +04:00
|
|
|
/*
|
|
|
|
** macro to control inclusion of some hard tests on stack reallocation
|
2006-09-11 18:07:24 +04:00
|
|
|
*/
|
2009-12-17 15:26:09 +03:00
|
|
|
#if !defined(HARDSTACKTESTS)
|
2015-10-21 21:40:47 +03:00
|
|
|
#define condmovestack(L,pre,pos) ((void)0)
|
2005-08-24 20:15:49 +04:00
|
|
|
#else
|
2009-07-15 21:26:14 +04:00
|
|
|
/* realloc stack keeping its size */
|
2015-10-21 21:40:47 +03:00
|
|
|
#define condmovestack(L,pre,pos) \
|
|
|
|
{ int sz_ = (L)->stacksize; pre; luaD_reallocstack((L), sz_); pos; }
|
2005-08-24 20:15:49 +04:00
|
|
|
#endif
|
|
|
|
|
2009-11-17 14:56:03 +03:00
|
|
|
#if !defined(HARDMEMTESTS)
|
2015-10-21 21:40:47 +03:00
|
|
|
#define condchangemem(L,pre,pos) ((void)0)
|
2009-11-17 14:56:03 +03:00
|
|
|
#else
|
2015-10-21 21:40:47 +03:00
|
|
|
#define condchangemem(L,pre,pos) \
|
|
|
|
{ if (G(L)->gcrunning) { pre; luaC_fullgc(L, 0); pos; } }
|
2009-11-17 14:56:03 +03:00
|
|
|
#endif
|
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
#endif
|