lua/llimits.h

227 lines
4.8 KiB
C
Raw Normal View History

/*
** $Id: llimits.h,v 1.107 2013/05/29 14:04:15 roberto Exp roberto $
2001-02-23 20:17:25 +03:00
** Limits, basic types, and some other `installation-dependent' definitions
** See Copyright Notice in lua.h
*/
2000-03-24 22:49:23 +03:00
#ifndef llimits_h
#define llimits_h
#include <limits.h>
2000-05-24 17:54:49 +04:00
#include <stddef.h>
#include "lua.h"
typedef unsigned LUA_INT32 lu_int32;
2003-12-01 19:33:30 +03:00
typedef LUAI_UMEM lu_mem;
typedef LUAI_MEM l_mem;
2003-12-01 19:33:30 +03:00
2002-11-22 21:01:46 +03: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
/* maximum value for size_t */
#define MAX_SIZET ((size_t)(~(size_t)0)-2)
2000-05-24 17:54:49 +04:00
/* maximum size visible for Lua (must be representable in a lua_Integer */
#define MAX_SIZE (sizeof(size_t) <= sizeof(lua_Integer) ? MAX_SIZET \
: (size_t)(~(lua_Unsigned)0)-2)
2004-11-24 21:55:56 +03:00
#define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2)
2012-05-29 00:32:28 +04:00
#define MAX_LMEM ((l_mem) ((MAX_LUMEM >> 1) - 2))
#define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */
/* minimum and maximum values for lua_Integer */
#define MAX_INTEGER ((lua_Integer)(~(lua_Unsigned)0 >> 1))
#define MIN_INTEGER (~MAX_INTEGER)
/*
2001-02-20 21:15:33 +03:00
** conversion of pointer to integer
** this is for hashing only; there is no problem if the integer
** cannot hold the whole pointer value
*/
2004-11-24 21:55:56 +03:00
#define IntPoint(p) ((unsigned int)(lu_mem)(p))
2000-03-31 20:28:45 +04:00
2000-10-26 16:47:05 +04:00
/* type to ensure maximum alignment */
#if !defined(LUAI_USER_ALIGNMENT_T)
#define LUAI_USER_ALIGNMENT_T union { double u; void *s; long l; }
#endif
typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
/* result of a `usual argument conversion' over lua_Number */
typedef LUAI_UACNUMBER l_uacNumber;
2000-10-26 16:47:05 +04:00
/* internal assertions for in-house debugging */
#if defined(lua_assert)
#define check_exp(c,e) (lua_assert(c), (e))
/* to avoid problems with conditions too long */
#define lua_longassert(c) { if (!(c)) lua_assert(0); }
#else
#define lua_assert(c) ((void)0)
#define check_exp(c,e) (e)
#define lua_longassert(c) ((void)0)
#endif
/*
** assertion for checking API calls
*/
#if !defined(luai_apicheck)
#if defined(LUA_USE_APICHECK)
#include <assert.h>
#define luai_apicheck(L,e) assert(e)
#else
#define luai_apicheck(L,e) lua_assert(e)
#endif
#endif
#define api_check(l,e,msg) luai_apicheck(l,(e) && msg)
#if !defined(UNUSED)
#define UNUSED(x) ((void)(x)) /* to avoid warnings */
#endif
#define cast(t, exp) ((t)(exp))
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))
#define cast_integer(i) cast(lua_Integer, (i))
#define cast_unsigned(i) cast(lua_Unsigned, (i))
2005-12-22 19:19:56 +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
/*
** 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
/*
** maximum number of upvalues in a closure (both C and Lua). (Value
** must fit in an unsigned char.)
*/
#define MAXUPVAL UCHAR_MAX
2000-10-26 16:47:05 +04:00
/*
** type for virtual-machine instructions
** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
*/
typedef lu_int32 Instruction;
2002-03-07 21:11:51 +03:00
/* maximum stack for a Lua function */
#define MAXSTACK 250
2002-03-07 21:11:51 +03:00
/* minimum size for the string table (must be power of 2) */
#if !defined(MINSTRTABSIZE)
2002-03-07 21:11:51 +03:00
#define MINSTRTABSIZE 32
#endif
/* minimum size for string buffer */
#if !defined(LUA_MINBUFFER)
#define LUA_MINBUFFER 32
#endif
#if !defined(lua_lock)
2006-09-11 18:07:24 +04:00
#define lua_lock(L) ((void) 0)
#define lua_unlock(L) ((void) 0)
#endif
#if !defined(luai_threadyield)
#define luai_threadyield(L) {lua_unlock(L); lua_lock(L);}
#endif
/*
** 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)
#define luai_userstateopen(L) ((void)L)
#endif
#if !defined(luai_userstateclose)
#define luai_userstateclose(L) ((void)L)
#endif
#if !defined(luai_userstatethread)
#define luai_userstatethread(L,L1) ((void)L)
#endif
#if !defined(luai_userstatefree)
#define luai_userstatefree(L,L1) ((void)L)
#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
/*
** macro to control inclusion of some hard tests on stack reallocation
2006-09-11 18:07:24 +04:00
*/
#if !defined(HARDSTACKTESTS)
#define condmovestack(L) ((void)0)
#else
/* realloc stack keeping its size */
#define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
#endif
#if !defined(HARDMEMTESTS)
#define condchangemem(L) condmovestack(L)
#else
#define condchangemem(L) \
((void)(!(G(L)->gcrunning) || (luaC_fullgc(L, 0), 1)))
#endif
#endif