2000-03-25 01:26:08 +08:00
|
|
|
/*
|
2011-05-06 03:43:14 +08:00
|
|
|
** $Id: llimits.h,v 1.88 2011/02/28 17:32:10 roberto Exp roberto $
|
2001-02-24 01:17:25 +08:00
|
|
|
** Limits, basic types, and some other `installation-dependent' definitions
|
2000-03-25 01:26:08 +08:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2000-03-25 03:49:23 +08:00
|
|
|
#ifndef llimits_h
|
|
|
|
#define llimits_h
|
2000-03-25 01:26:08 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include <limits.h>
|
2000-05-24 21:54:49 +08:00
|
|
|
#include <stddef.h>
|
2000-03-25 01:26:08 +08:00
|
|
|
|
|
|
|
|
2001-02-24 04:28:56 +08:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-06-29 01:03:32 +08:00
|
|
|
|
2009-07-02 00:14:15 +08:00
|
|
|
typedef unsigned LUA_INT32 lu_int32;
|
2003-12-02 00:33:30 +08:00
|
|
|
|
2005-03-10 00:28:07 +08:00
|
|
|
typedef LUAI_UMEM lu_mem;
|
2005-03-09 04:10:05 +08:00
|
|
|
|
2005-03-10 00:28:07 +08:00
|
|
|
typedef LUAI_MEM l_mem;
|
2003-12-02 00:33:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-11-23 02:01:46 +08:00
|
|
|
/* chars used as small naturals (so that `char' is reserved for characters) */
|
2001-02-21 02:15:33 +08:00
|
|
|
typedef unsigned char lu_byte;
|
2000-05-24 21:54:49 +08:00
|
|
|
|
|
|
|
|
2000-06-07 00:27:11 +08:00
|
|
|
#define MAX_SIZET ((size_t)(~(size_t)0)-2)
|
2000-05-24 21:54:49 +08:00
|
|
|
|
2004-11-25 02:55:56 +08:00
|
|
|
#define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2)
|
2010-04-30 01:31:31 +08:00
|
|
|
#define MIN_LMEM ((l_mem)~((~(lu_mem)0)>>1))
|
2004-11-25 02:55:56 +08:00
|
|
|
|
2000-03-25 01:26:08 +08:00
|
|
|
|
|
|
|
#define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */
|
|
|
|
|
|
|
|
/*
|
2001-02-21 02:15:33 +08:00
|
|
|
** conversion of pointer to integer
|
|
|
|
** this is for hashing only; there is no problem if the integer
|
|
|
|
** cannot hold the whole pointer value
|
2000-03-25 01:26:08 +08:00
|
|
|
*/
|
2004-11-25 02:55:56 +08:00
|
|
|
#define IntPoint(p) ((unsigned int)(lu_mem)(p))
|
2000-03-25 01:26:08 +08:00
|
|
|
|
|
|
|
|
2000-04-01 00:28:45 +08:00
|
|
|
|
2000-10-26 20:47:05 +08:00
|
|
|
/* type to ensure maximum alignment */
|
2009-12-17 20:26:09 +08:00
|
|
|
#if !defined(LUAI_USER_ALIGNMENT_T)
|
|
|
|
#define LUAI_USER_ALIGNMENT_T union { double u; void *s; long l; }
|
|
|
|
#endif
|
|
|
|
|
2005-03-10 00:28:07 +08:00
|
|
|
typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
|
2002-10-23 01:18:28 +08:00
|
|
|
|
|
|
|
|
2004-05-01 04:13:38 +08:00
|
|
|
/* result of a `usual argument conversion' over lua_Number */
|
2005-03-10 00:28:07 +08:00
|
|
|
typedef LUAI_UACNUMBER l_uacNumber;
|
2000-10-26 20:47:05 +08:00
|
|
|
|
|
|
|
|
2005-12-28 01:12:00 +08:00
|
|
|
/* internal assertions for in-house debugging */
|
2009-12-17 20:26:09 +08:00
|
|
|
#if defined(lua_assert)
|
2005-12-28 01:12:00 +08:00
|
|
|
#define check_exp(c,e) (lua_assert(c), (e))
|
2011-05-06 03:43:14 +08:00
|
|
|
/* to avoid problems with conditions too long */
|
|
|
|
#define lua_longassert(c) { if (!(c)) lua_assert(0); }
|
2005-12-28 01:12:00 +08:00
|
|
|
#else
|
2010-05-08 02:44:12 +08:00
|
|
|
#define lua_assert(c) /* empty */
|
2005-12-28 01:12:00 +08:00
|
|
|
#define check_exp(c,e) (e)
|
2011-05-06 03:43:14 +08:00
|
|
|
#define lua_longassert(c) /* empty */
|
2009-12-17 20:26:09 +08:00
|
|
|
#endif
|
2005-12-28 01:12:00 +08:00
|
|
|
|
2009-12-17 20:26:09 +08:00
|
|
|
/*
|
|
|
|
** assertion for checking API calls
|
|
|
|
*/
|
|
|
|
#if defined(LUA_USE_APICHECK)
|
|
|
|
#include <assert.h>
|
|
|
|
#define luai_apicheck(L,e) { (void)L; assert(e); }
|
|
|
|
#elif !defined(luai_apicheck)
|
|
|
|
#define luai_apicheck(L,e) lua_assert(e)
|
2005-12-28 01:12:00 +08:00
|
|
|
#endif
|
2002-06-13 21:45:31 +08:00
|
|
|
|
2009-08-31 22:26:28 +08:00
|
|
|
#define api_check(l,e,msg) luai_apicheck(l,(e) && msg)
|
|
|
|
|
2002-06-13 21:45:31 +08:00
|
|
|
|
2009-12-17 20:26:09 +08:00
|
|
|
#if !defined(UNUSED)
|
2002-03-19 02:16:16 +08:00
|
|
|
#define UNUSED(x) ((void)(x)) /* to avoid warnings */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define cast(t, exp) ((t)(exp))
|
|
|
|
|
2005-12-23 00:19:56 +08: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 21:40:22 +08:00
|
|
|
#define cast_uchar(i) cast(unsigned char, (i))
|
2005-12-23 00:19:56 +08:00
|
|
|
|
2002-03-19 02:16:16 +08:00
|
|
|
|
2009-12-17 20:26:09 +08: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-06-01 00:08:55 +08: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 20:26:09 +08:00
|
|
|
|
2000-10-26 20:47:05 +08:00
|
|
|
|
2000-03-25 01:26:08 +08:00
|
|
|
/*
|
|
|
|
** type for virtual-machine instructions
|
2000-09-29 20:42:13 +08:00
|
|
|
** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
|
2000-03-25 01:26:08 +08:00
|
|
|
*/
|
2003-04-29 03:26:16 +08:00
|
|
|
typedef lu_int32 Instruction;
|
2000-03-25 01:26:08 +08:00
|
|
|
|
|
|
|
|
2002-03-08 02:11:51 +08:00
|
|
|
|
2001-06-06 02:17:01 +08:00
|
|
|
/* maximum stack for a Lua function */
|
2000-06-29 01:03:32 +08:00
|
|
|
#define MAXSTACK 250
|
2000-03-25 01:26:08 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-03-08 02:11:51 +08:00
|
|
|
/* minimum size for the string table (must be power of 2) */
|
2009-12-17 20:26:09 +08:00
|
|
|
#if !defined(MINSTRTABSIZE)
|
2002-03-08 02:11:51 +08:00
|
|
|
#define MINSTRTABSIZE 32
|
2002-03-06 00:22:54 +08:00
|
|
|
#endif
|
|
|
|
|
2000-03-25 01:26:08 +08:00
|
|
|
|
2002-10-09 02:46:08 +08:00
|
|
|
/* minimum size for string buffer */
|
2009-12-17 20:26:09 +08:00
|
|
|
#if !defined(LUA_MINBUFFER)
|
2002-10-09 02:46:08 +08:00
|
|
|
#define LUA_MINBUFFER 32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-12-17 20:26:09 +08:00
|
|
|
#if !defined(lua_lock)
|
2006-09-11 22:07:24 +08:00
|
|
|
#define lua_lock(L) ((void) 0)
|
2005-08-04 21:37:10 +08:00
|
|
|
#define lua_unlock(L) ((void) 0)
|
|
|
|
#endif
|
|
|
|
|
2009-12-17 20:26:09 +08:00
|
|
|
#if !defined(luai_threadyield)
|
2005-08-04 21:37:10 +08:00
|
|
|
#define luai_threadyield(L) {lua_unlock(L); lua_lock(L);}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-12-17 20:50:20 +08: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-20 01:40:13 +08:00
|
|
|
#define luai_userstateopen(L) ((void)L)
|
2009-12-17 20:50:20 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstateclose)
|
2010-04-20 01:40:13 +08:00
|
|
|
#define luai_userstateclose(L) ((void)L)
|
2009-12-17 20:50:20 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstatethread)
|
2010-04-20 01:40:13 +08:00
|
|
|
#define luai_userstatethread(L,L1) ((void)L)
|
2009-12-17 20:50:20 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(luai_userstatefree)
|
2010-04-20 01:40:13 +08:00
|
|
|
#define luai_userstatefree(L,L1) ((void)L)
|
2009-12-17 20:50:20 +08: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
|
|
|
|
|
2010-11-03 23:16:17 +08:00
|
|
|
/*
|
|
|
|
** lua_number2int is a macro to convert lua_Number to int.
|
2010-11-09 00:33:20 +08:00
|
|
|
** lua_number2integer is a macro to convert lua_Number to lua_Integer.
|
|
|
|
** lua_number2unsigned is a macro to convert a lua_Number to a lua_Unsigned.
|
|
|
|
** lua_unsigned2number is a macro to convert a lua_Unsigned to a lua_Number.
|
2010-12-23 23:38:28 +08:00
|
|
|
** luai_hashnum is a macro to hash a lua_Number value into an integer.
|
|
|
|
** The hash must be deterministic and give reasonable values for
|
|
|
|
** both small and large values (outside the range of integers).
|
2010-11-03 23:16:17 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(MS_ASMTRICK) /* { */
|
|
|
|
/* trick with Microsoft assembler for X86 */
|
|
|
|
|
|
|
|
#define lua_number2int(i,n) __asm {__asm fld n __asm fistp i}
|
|
|
|
#define lua_number2integer(i,n) lua_number2int(i, n)
|
|
|
|
#define lua_number2unsigned(i,n) \
|
|
|
|
{__int64 l; __asm {__asm fld n __asm fistp l} i = (unsigned int)l;}
|
|
|
|
|
|
|
|
|
|
|
|
#elif defined(LUA_IEEE754TRICK) /* }{ */
|
|
|
|
/* the next trick should work on any machine using IEEE754 with
|
|
|
|
a 32-bit integer type */
|
|
|
|
|
|
|
|
union luai_Cast { double l_d; LUA_INT32 l_p[2]; };
|
|
|
|
|
|
|
|
#if !defined(LUA_IEEEENDIAN) /* { */
|
|
|
|
#define LUAI_EXTRAIEEE \
|
|
|
|
static const union luai_Cast ieeeendian = {-(33.0 + 6755399441055744.0)};
|
|
|
|
#define LUA_IEEEENDIAN (ieeeendian.l_p[1] == 33)
|
|
|
|
#else
|
|
|
|
#define LUAI_EXTRAIEEE /* empty */
|
|
|
|
#endif /* } */
|
|
|
|
|
|
|
|
#define lua_number2int32(i,n,t) \
|
|
|
|
{ LUAI_EXTRAIEEE \
|
|
|
|
volatile union luai_Cast u; u.l_d = (n) + 6755399441055744.0; \
|
|
|
|
(i) = (t)u.l_p[LUA_IEEEENDIAN]; }
|
|
|
|
|
2010-12-23 23:38:28 +08:00
|
|
|
#define luai_hashnum(i,n) \
|
|
|
|
{ volatile union luai_Cast u; u.l_d = (n) + 1.0; /* avoid -0 */ \
|
|
|
|
(i) = u.l_p[0] + u.l_p[1]; } /* add double bits for his hash */
|
|
|
|
|
2010-11-03 23:16:17 +08:00
|
|
|
#define lua_number2int(i,n) lua_number2int32(i, n, int)
|
2010-11-09 00:33:20 +08:00
|
|
|
#define lua_number2integer(i,n) lua_number2int32(i, n, lua_Integer)
|
|
|
|
#define lua_number2unsigned(i,n) lua_number2int32(i, n, lua_Unsigned)
|
2010-11-03 23:16:17 +08:00
|
|
|
|
|
|
|
#endif /* } */
|
|
|
|
|
|
|
|
|
|
|
|
/* the following definitions always work, but may be slow */
|
|
|
|
|
|
|
|
#if !defined(lua_number2int)
|
|
|
|
#define lua_number2int(i,n) ((i)=(int)(n))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(lua_number2integer)
|
2010-11-09 00:33:20 +08:00
|
|
|
#define lua_number2integer(i,n) ((i)=(lua_Integer)(n))
|
2010-11-03 23:16:17 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(lua_number2unsigned) /* { */
|
|
|
|
/* the following definition assures proper modulo behavior */
|
|
|
|
#if defined(LUA_NUMBER_DOUBLE)
|
|
|
|
#include <math.h>
|
2010-11-09 00:33:20 +08:00
|
|
|
#define SUPUNSIGNED ((lua_Number)(~(lua_Unsigned)0) + 1)
|
2010-11-03 23:16:17 +08:00
|
|
|
#define lua_number2unsigned(i,n) \
|
2010-11-09 00:33:20 +08:00
|
|
|
((i)=(lua_Unsigned)((n) - floor((n)/SUPUNSIGNED)*SUPUNSIGNED))
|
2010-11-03 23:16:17 +08:00
|
|
|
#else
|
2010-11-09 00:33:20 +08:00
|
|
|
#define lua_number2unsigned(i,n) ((i)=(lua_Unsigned)(n))
|
2010-11-03 23:16:17 +08:00
|
|
|
#endif
|
|
|
|
#endif /* } */
|
|
|
|
|
|
|
|
|
|
|
|
#if !defined(lua_unsigned2number)
|
|
|
|
/* on several machines, coercion from unsigned to double is slow,
|
|
|
|
so it may be worth to avoid */
|
|
|
|
#define lua_unsigned2number(u) \
|
2010-11-09 00:33:20 +08:00
|
|
|
(((u) <= (lua_Unsigned)INT_MAX) ? (lua_Number)(int)(u) : (lua_Number)(u))
|
2010-11-03 23:16:17 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-03-01 01:32:10 +08:00
|
|
|
#if (defined(ltable_c) || defined(luaall_c)) && !defined(luai_hashnum)
|
2010-11-03 23:16:17 +08:00
|
|
|
|
|
|
|
#include <float.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#define luai_hashnum(i,n) { int e; \
|
|
|
|
n = frexp(n, &e) * (lua_Number)(INT_MAX - DBL_MAX_EXP); \
|
|
|
|
lua_number2int(i, n); i += e; }
|
|
|
|
|
2011-03-01 01:32:10 +08:00
|
|
|
#endif
|
2009-12-17 20:50:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2005-08-25 00:15:49 +08:00
|
|
|
/*
|
|
|
|
** macro to control inclusion of some hard tests on stack reallocation
|
2006-09-11 22:07:24 +08:00
|
|
|
*/
|
2009-12-17 20:26:09 +08:00
|
|
|
#if !defined(HARDSTACKTESTS)
|
2009-06-09 03:35:59 +08:00
|
|
|
#define condmovestack(L) ((void)0)
|
2005-08-25 00:15:49 +08:00
|
|
|
#else
|
2009-07-16 01:26:14 +08:00
|
|
|
/* realloc stack keeping its size */
|
|
|
|
#define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
|
2005-08-25 00:15:49 +08:00
|
|
|
#endif
|
|
|
|
|
2009-11-17 19:56:03 +08:00
|
|
|
#if !defined(HARDMEMTESTS)
|
|
|
|
#define condchangemem(L) condmovestack(L)
|
|
|
|
#else
|
2010-05-25 03:29:46 +08:00
|
|
|
#define condchangemem(L) \
|
2011-02-02 00:52:38 +08:00
|
|
|
((void)(!(G(L)->gcrunning) || (luaC_fullgc(L, 0), 1)))
|
2009-11-17 19:56:03 +08:00
|
|
|
#endif
|
|
|
|
|
2000-03-25 01:26:08 +08:00
|
|
|
#endif
|