2000-03-24 14:26:08 -03:00
|
|
|
/*
|
2014-07-15 18:26:50 -03:00
|
|
|
** $Id: llimits.h,v 1.117 2014/06/26 16:17:35 roberto Exp roberto $
|
2001-02-23 14:17:25 -03:00
|
|
|
** Limits, basic types, and some other `installation-dependent' definitions
|
2000-03-24 14:26:08 -03:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2000-03-24 16:49:23 -03:00
|
|
|
#ifndef llimits_h
|
|
|
|
#define llimits_h
|
2000-03-24 14:26:08 -03:00
|
|
|
|
|
|
|
|
|
|
|
#include <limits.h>
|
2000-05-24 10:54:49 -03:00
|
|
|
#include <stddef.h>
|
2000-03-24 14:26:08 -03:00
|
|
|
|
|
|
|
|
2001-02-23 17:28:56 -03:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-06-28 14:03:32 -03:00
|
|
|
|
2009-07-01 13:14:15 -03:00
|
|
|
typedef unsigned LUA_INT32 lu_int32;
|
2003-12-01 14:33:30 -02:00
|
|
|
|
2005-03-09 13:28:07 -03:00
|
|
|
typedef LUAI_UMEM lu_mem;
|
2005-03-08 17:10:05 -03:00
|
|
|
|
2005-03-09 13:28:07 -03:00
|
|
|
typedef LUAI_MEM l_mem;
|
2003-12-01 14:33:30 -02:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-11-22 16:01:46 -02:00
|
|
|
/* chars used as small naturals (so that `char' is reserved for characters) */
|
2001-02-20 15:15:33 -03:00
|
|
|
typedef unsigned char lu_byte;
|
2000-05-24 10:54:49 -03:00
|
|
|
|
|
|
|
|
2013-06-19 11:27:00 -03:00
|
|
|
/* maximum value for size_t */
|
2000-06-06 13:27:11 -03:00
|
|
|
#define MAX_SIZET ((size_t)(~(size_t)0)-2)
|
2000-05-24 10:54:49 -03:00
|
|
|
|
2013-06-19 11:27:00 -03:00
|
|
|
/* maximum size visible for Lua (must be representable in a lua_Integer */
|
2014-04-11 16:56:04 -03:00
|
|
|
#define MAX_SIZE (sizeof(size_t) < sizeof(lua_Integer) ? MAX_SIZET \
|
|
|
|
: (size_t)(LUA_MAXINTEGER)-2)
|
2013-06-19 11:27:00 -03:00
|
|
|
|
|
|
|
|
2004-11-24 16:55:56 -02:00
|
|
|
#define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2)
|
|
|
|
|
2012-05-28 17:32:28 -03:00
|
|
|
#define MAX_LMEM ((l_mem) ((MAX_LUMEM >> 1) - 2))
|
|
|
|
|
2000-03-24 14:26:08 -03:00
|
|
|
|
|
|
|
#define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */
|
|
|
|
|
2013-05-27 09:43:37 -03:00
|
|
|
|
2000-03-24 14:26:08 -03:00
|
|
|
/*
|
2014-06-26 13:17:35 -03:00
|
|
|
** conversion of pointer to integer:
|
2001-02-20 15: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 14:26:08 -03:00
|
|
|
*/
|
2014-06-26 13:17:35 -03:00
|
|
|
#define point2int(p) ((unsigned int)((lu_mem)(p) & UINT_MAX))
|
2000-03-24 14:26:08 -03:00
|
|
|
|
|
|
|
|
2000-03-31 13:28:45 -03:00
|
|
|
|
2000-10-26 10:47:05 -02:00
|
|
|
/* type to ensure maximum alignment */
|
2009-12-17 10:26:09 -02:00
|
|
|
#if !defined(LUAI_USER_ALIGNMENT_T)
|
|
|
|
#define LUAI_USER_ALIGNMENT_T union { double u; void *s; long l; }
|
|
|
|
#endif
|
|
|
|
|
2005-03-09 13:28:07 -03:00
|
|
|
typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
|
2002-10-22 14:18:28 -03:00
|
|
|
|
|
|
|
|
2014-04-11 16:56:04 -03:00
|
|
|
/* types of 'usual argument conversions' for lua_Number and lua_Integer */
|
2005-03-09 13:28:07 -03:00
|
|
|
typedef LUAI_UACNUMBER l_uacNumber;
|
2014-04-11 16:56:04 -03:00
|
|
|
typedef LUAI_UACINT l_uacInt;
|
2000-10-26 10:47:05 -02:00
|
|
|
|
|
|
|
|
2005-12-27 15:12:00 -02:00
|
|
|
/* internal assertions for in-house debugging */
|
2009-12-17 10:26:09 -02:00
|
|
|
#if defined(lua_assert)
|
2005-12-27 15:12:00 -02:00
|
|
|
#define check_exp(c,e) (lua_assert(c), (e))
|
2011-05-05 16:43:14 -03:00
|
|
|
/* to avoid problems with conditions too long */
|
|
|
|
#define lua_longassert(c) { if (!(c)) lua_assert(0); }
|
2005-12-27 15:12:00 -02:00
|
|
|
#else
|
2011-09-13 14:39:23 -03:00
|
|
|
#define lua_assert(c) ((void)0)
|
2005-12-27 15:12:00 -02:00
|
|
|
#define check_exp(c,e) (e)
|
2011-09-13 14:39:23 -03:00
|
|
|
#define lua_longassert(c) ((void)0)
|
2009-12-17 10:26:09 -02:00
|
|
|
#endif
|
2005-12-27 15:12:00 -02:00
|
|
|
|
2009-12-17 10:26:09 -02:00
|
|
|
/*
|
|
|
|
** assertion for checking API calls
|
|
|
|
*/
|
|
|
|
#if defined(LUA_USE_APICHECK)
|
|
|
|
#include <assert.h>
|
2014-07-15 18:26:50 -03:00
|
|
|
#define luai_apicheck(e) assert(e)
|
2011-07-02 12:57:25 -03:00
|
|
|
#else
|
2014-07-15 18:26:50 -03:00
|
|
|
#define luai_apicheck(e) lua_assert(e)
|
2005-12-27 15:12:00 -02:00
|
|
|
#endif
|
2002-06-13 10:45:31 -03:00
|
|
|
|
2011-07-02 12:57:25 -03:00
|
|
|
|
2014-07-15 18:26:50 -03:00
|
|
|
#define api_check(e,msg) luai_apicheck((e) && msg)
|
2009-08-31 11:26:28 -03:00
|
|
|
|
2002-06-13 10:45:31 -03:00
|
|
|
|
2009-12-17 10:26:09 -02:00
|
|
|
#if !defined(UNUSED)
|
2002-03-18 15:16:16 -03:00
|
|
|
#define UNUSED(x) ((void)(x)) /* to avoid warnings */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define cast(t, exp) ((t)(exp))
|
|
|
|
|
2014-03-07 13:19:00 -03:00
|
|
|
#define cast_void(i) cast(void, (i))
|
2005-12-22 14:19:56 -02: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 11:40:22 -02:00
|
|
|
#define cast_uchar(i) cast(unsigned char, (i))
|
2014-04-15 11:29:30 -03:00
|
|
|
|
|
|
|
|
2014-04-15 13:32:49 -03:00
|
|
|
/* cast a signed lua_Integer to lua_Unsigned */
|
|
|
|
#if !defined(l_castS2U)
|
|
|
|
#define l_castS2U(i) ((lua_Unsigned)(i))
|
|
|
|
#endif
|
|
|
|
|
2014-04-15 11:29:30 -03:00
|
|
|
/*
|
|
|
|
** cast a lua_Unsigned to a signed lua_Integer; this cast is
|
|
|
|
** not strict ANSI C, but two-complement architectures should
|
|
|
|
** work fine.
|
|
|
|
*/
|
2014-04-15 13:32:49 -03:00
|
|
|
#if !defined(l_castU2S)
|
|
|
|
#define l_castU2S(i) ((lua_Integer)(i))
|
|
|
|
#endif
|
2005-12-22 14:19:56 -02:00
|
|
|
|
2002-03-18 15:16:16 -03:00
|
|
|
|
2011-10-07 17:45:19 -03:00
|
|
|
/*
|
|
|
|
** non-return type
|
|
|
|
*/
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
#define l_noret void __attribute__((noreturn))
|
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#define l_noret void __declspec(noreturn)
|
|
|
|
#else
|
|
|
|
#define l_noret void
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-12-17 10:26:09 -02: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
|
|
|
|
|
2010-05-31 13:08:55 -03:00
|
|
|
/*
|
|
|
|
** maximum number of upvalues in a closure (both C and Lua). (Value
|
|
|
|
** must fit in an unsigned char.)
|
|
|
|
*/
|
|
|
|
#define MAXUPVAL UCHAR_MAX
|
2009-12-17 10:26:09 -02:00
|
|
|
|
2000-10-26 10:47:05 -02:00
|
|
|
|
2000-03-24 14:26:08 -03:00
|
|
|
/*
|
|
|
|
** type for virtual-machine instructions
|
2000-09-29 09:42:13 -03:00
|
|
|
** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
|
2000-03-24 14:26:08 -03:00
|
|
|
*/
|
2003-04-28 16:26:16 -03:00
|
|
|
typedef lu_int32 Instruction;
|
2000-03-24 14:26:08 -03:00
|
|
|
|
|
|
|
|
2002-03-07 15:11:51 -03:00
|
|
|
|
2001-06-05 15:17:01 -03:00
|
|
|
/* maximum stack for a Lua function */
|
2000-06-28 14:03:32 -03:00
|
|
|
#define MAXSTACK 250
|
2000-03-24 14:26:08 -03:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-03-07 15:11:51 -03:00
|
|
|
/* minimum size for the string table (must be power of 2) */
|
2009-12-17 10:26:09 -02:00
|
|
|
#if !defined(MINSTRTABSIZE)
|
2013-08-21 16:02:30 -03:00
|
|
|
#define MINSTRTABSIZE 64 /* minimum size for "predefined" strings */
|
2002-03-05 13:22:54 -03:00
|
|
|
#endif
|
|
|
|
|
2000-03-24 14:26:08 -03:00
|
|
|
|
2002-10-08 15:46:08 -03:00
|
|
|
/* minimum size for string buffer */
|
2009-12-17 10:26:09 -02:00
|
|
|
#if !defined(LUA_MINBUFFER)
|
2002-10-08 15:46:08 -03:00
|
|
|
#define LUA_MINBUFFER 32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-12-17 10:26:09 -02:00
|
|
|
#if !defined(lua_lock)
|
2006-09-11 11:07:24 -03:00
|
|
|
#define lua_lock(L) ((void) 0)
|
2005-08-04 10:37:10 -03:00
|
|
|
#define lua_unlock(L) ((void) 0)
|
|
|
|
#endif
|
|
|
|
|
2009-12-17 10:26:09 -02:00
|
|
|
#if !defined(luai_threadyield)
|
2005-08-04 10:37:10 -03:00
|
|
|
#define luai_threadyield(L) {lua_unlock(L); lua_lock(L);}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-12-17 10:50:20 -02: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 14:40:13 -03:00
|
|
|
#define luai_userstateopen(L) ((void)L)
|
2009-12-17 10:50:20 -02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstateclose)
|
2010-04-19 14:40:13 -03:00
|
|
|
#define luai_userstateclose(L) ((void)L)
|
2009-12-17 10:50:20 -02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstatethread)
|
2010-04-19 14:40:13 -03:00
|
|
|
#define luai_userstatethread(L,L1) ((void)L)
|
2009-12-17 10:50:20 -02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstatefree)
|
2010-04-19 14:40:13 -03:00
|
|
|
#define luai_userstatefree(L,L1) ((void)L)
|
2009-12-17 10:50:20 -02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstateresume)
|
|
|
|
#define luai_userstateresume(L,n) ((void)L)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstateyield)
|
|
|
|
#define luai_userstateyield(L,n) ((void)L)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-08-24 13:15:49 -03:00
|
|
|
/*
|
|
|
|
** macro to control inclusion of some hard tests on stack reallocation
|
2006-09-11 11:07:24 -03:00
|
|
|
*/
|
2009-12-17 10:26:09 -02:00
|
|
|
#if !defined(HARDSTACKTESTS)
|
2009-06-08 16:35:59 -03:00
|
|
|
#define condmovestack(L) ((void)0)
|
2005-08-24 13:15:49 -03:00
|
|
|
#else
|
2009-07-15 14:26:14 -03:00
|
|
|
/* realloc stack keeping its size */
|
|
|
|
#define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
|
2005-08-24 13:15:49 -03:00
|
|
|
#endif
|
|
|
|
|
2009-11-17 09:56:03 -02:00
|
|
|
#if !defined(HARDMEMTESTS)
|
|
|
|
#define condchangemem(L) condmovestack(L)
|
|
|
|
#else
|
2010-05-24 16:29:46 -03:00
|
|
|
#define condchangemem(L) \
|
2011-02-01 14:52:38 -02:00
|
|
|
((void)(!(G(L)->gcrunning) || (luaC_fullgc(L, 0), 1)))
|
2009-11-17 09:56:03 -02:00
|
|
|
#endif
|
|
|
|
|
2000-03-24 14:26:08 -03:00
|
|
|
#endif
|