123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /*
- ** $Id: llimits.h,v 1.75 2009/11/17 11:56:03 roberto Exp roberto $
- ** Limits, basic types, and some other `installation-dependent' definitions
- ** See Copyright Notice in lua.h
- */
- #ifndef llimits_h
- #define llimits_h
- #include <limits.h>
- #include <stddef.h>
- #include "lua.h"
- typedef unsigned LUA_INT32 lu_int32;
- typedef LUAI_UMEM lu_mem;
- typedef LUAI_MEM l_mem;
- /* chars used as small naturals (so that `char' is reserved for characters) */
- typedef unsigned char lu_byte;
- #define MAX_SIZET ((size_t)(~(size_t)0)-2)
- #define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2)
- #define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */
- /*
- ** conversion of pointer to integer
- ** this is for hashing only; there is no problem if the integer
- ** cannot hold the whole pointer value
- */
- #define IntPoint(p) ((unsigned int)(lu_mem)(p))
- /* 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;
- /* internal assertions for in-house debugging */
- #if defined(lua_assert)
- #define check_exp(c,e) (lua_assert(c), (e))
- #else
- #define lua_assert(c) ((void)0)
- #define check_exp(c,e) (e)
- #endif
- /*
- ** 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)
- #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))
- #define cast_byte(i) cast(lu_byte, (i))
- #define cast_num(i) cast(lua_Number, (i))
- #define cast_int(i) cast(int, (i))
- /*
- ** 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
- /*
- ** type for virtual-machine instructions
- ** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
- */
- typedef lu_int32 Instruction;
- /* maximum stack for a Lua function */
- #define MAXSTACK 250
- /* minimum size for the string table (must be power of 2) */
- #if !defined(MINSTRTABSIZE)
- #define MINSTRTABSIZE 32
- #endif
- /* minimum size for string buffer */
- #if !defined(LUA_MINBUFFER)
- #define LUA_MINBUFFER 32
- #endif
- #if !defined(lua_lock)
- #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
- /*
- ** macro to control inclusion of some hard tests on stack reallocation
- */
- #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) luaC_fullgc(L, 0)
- #endif
- #endif
|