2000-03-24 09:26:08 -08:00
|
|
|
/*
|
2009-12-17 04:50:20 -08:00
|
|
|
** $Id: llimits.h,v 1.76 2009/12/17 12:26:09 roberto Exp roberto $
|
2001-02-23 09:17:25 -08:00
|
|
|
** Limits, basic types, and some other `installation-dependent' definitions
|
2000-03-24 09:26:08 -08:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2000-03-24 11:49:23 -08:00
|
|
|
#ifndef llimits_h
|
|
|
|
#define llimits_h
|
2000-03-24 09:26:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
#include <limits.h>
|
2000-05-24 06:54:49 -07:00
|
|
|
#include <stddef.h>
|
2000-03-24 09:26:08 -08:00
|
|
|
|
|
|
|
|
2001-02-23 12:28:56 -08:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-06-28 10:03:32 -07:00
|
|
|
|
2009-07-01 09:14:15 -07:00
|
|
|
typedef unsigned LUA_INT32 lu_int32;
|
2003-12-01 08:33:30 -08:00
|
|
|
|
2005-03-09 08:28:07 -08:00
|
|
|
typedef LUAI_UMEM lu_mem;
|
2005-03-08 12:10:05 -08:00
|
|
|
|
2005-03-09 08:28:07 -08:00
|
|
|
typedef LUAI_MEM l_mem;
|
2003-12-01 08:33:30 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-11-22 10:01:46 -08:00
|
|
|
/* chars used as small naturals (so that `char' is reserved for characters) */
|
2001-02-20 10:15:33 -08:00
|
|
|
typedef unsigned char lu_byte;
|
2000-05-24 06:54:49 -07:00
|
|
|
|
|
|
|
|
2000-06-06 09:27:11 -07:00
|
|
|
#define MAX_SIZET ((size_t)(~(size_t)0)-2)
|
2000-05-24 06:54:49 -07:00
|
|
|
|
2004-11-24 10:55:56 -08:00
|
|
|
#define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2)
|
|
|
|
|
2000-03-24 09:26:08 -08:00
|
|
|
|
|
|
|
#define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */
|
|
|
|
|
|
|
|
/*
|
2001-02-20 10: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-24 09:26:08 -08:00
|
|
|
*/
|
2004-11-24 10:55:56 -08:00
|
|
|
#define IntPoint(p) ((unsigned int)(lu_mem)(p))
|
2000-03-24 09:26:08 -08:00
|
|
|
|
|
|
|
|
2000-03-31 08:28:45 -08:00
|
|
|
|
2000-10-26 05:47:05 -07:00
|
|
|
/* type to ensure maximum alignment */
|
2009-12-17 04: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-09 08:28:07 -08:00
|
|
|
typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
|
2002-10-22 10:18:28 -07:00
|
|
|
|
|
|
|
|
2004-04-30 13:13:38 -07:00
|
|
|
/* result of a `usual argument conversion' over lua_Number */
|
2005-03-09 08:28:07 -08:00
|
|
|
typedef LUAI_UACNUMBER l_uacNumber;
|
2000-10-26 05:47:05 -07:00
|
|
|
|
|
|
|
|
2005-12-27 09:12:00 -08:00
|
|
|
/* internal assertions for in-house debugging */
|
2009-12-17 04:26:09 -08:00
|
|
|
#if defined(lua_assert)
|
2005-12-27 09:12:00 -08:00
|
|
|
#define check_exp(c,e) (lua_assert(c), (e))
|
|
|
|
#else
|
|
|
|
#define lua_assert(c) ((void)0)
|
|
|
|
#define check_exp(c,e) (e)
|
2009-12-17 04:26:09 -08:00
|
|
|
#endif
|
2005-12-27 09:12:00 -08:00
|
|
|
|
2009-12-17 04: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-27 09:12:00 -08:00
|
|
|
#endif
|
2002-06-13 06:45:31 -07:00
|
|
|
|
2009-08-31 07:26:28 -07:00
|
|
|
#define api_check(l,e,msg) luai_apicheck(l,(e) && msg)
|
|
|
|
|
2002-06-13 06:45:31 -07:00
|
|
|
|
2009-12-17 04:26:09 -08:00
|
|
|
#if !defined(UNUSED)
|
2002-03-18 10:16:16 -08:00
|
|
|
#define UNUSED(x) ((void)(x)) /* to avoid warnings */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define cast(t, exp) ((t)(exp))
|
|
|
|
|
2005-12-22 08: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))
|
|
|
|
|
2002-03-18 10:16:16 -08:00
|
|
|
|
2009-12-17 04: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
|
|
|
|
|
|
|
|
|
2000-10-26 05:47:05 -07:00
|
|
|
|
2000-03-24 09:26:08 -08:00
|
|
|
/*
|
|
|
|
** type for virtual-machine instructions
|
2000-09-29 05:42:13 -07:00
|
|
|
** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
|
2000-03-24 09:26:08 -08:00
|
|
|
*/
|
2003-04-28 12:26:16 -07:00
|
|
|
typedef lu_int32 Instruction;
|
2000-03-24 09:26:08 -08:00
|
|
|
|
|
|
|
|
2002-03-07 10:11:51 -08:00
|
|
|
|
2001-06-05 11:17:01 -07:00
|
|
|
/* maximum stack for a Lua function */
|
2000-06-28 10:03:32 -07:00
|
|
|
#define MAXSTACK 250
|
2000-03-24 09:26:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-03-07 10:11:51 -08:00
|
|
|
/* minimum size for the string table (must be power of 2) */
|
2009-12-17 04:26:09 -08:00
|
|
|
#if !defined(MINSTRTABSIZE)
|
2002-03-07 10:11:51 -08:00
|
|
|
#define MINSTRTABSIZE 32
|
2002-03-05 08:22:54 -08:00
|
|
|
#endif
|
|
|
|
|
2000-03-24 09:26:08 -08:00
|
|
|
|
2002-10-08 11:46:08 -07:00
|
|
|
/* minimum size for string buffer */
|
2009-12-17 04:26:09 -08:00
|
|
|
#if !defined(LUA_MINBUFFER)
|
2002-10-08 11:46:08 -07:00
|
|
|
#define LUA_MINBUFFER 32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-12-17 04:26:09 -08:00
|
|
|
#if !defined(lua_lock)
|
2006-09-11 07:07:24 -07:00
|
|
|
#define lua_lock(L) ((void) 0)
|
2005-08-04 06:37:10 -07:00
|
|
|
#define lua_unlock(L) ((void) 0)
|
|
|
|
#endif
|
|
|
|
|
2009-12-17 04:26:09 -08:00
|
|
|
#if !defined(luai_threadyield)
|
2005-08-04 06:37:10 -07:00
|
|
|
#define luai_threadyield(L) {lua_unlock(L); lua_lock(L);}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-12-17 04: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)
|
|
|
|
#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) ((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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-08-24 09:15:49 -07:00
|
|
|
/*
|
|
|
|
** macro to control inclusion of some hard tests on stack reallocation
|
2006-09-11 07:07:24 -07:00
|
|
|
*/
|
2009-12-17 04:26:09 -08:00
|
|
|
#if !defined(HARDSTACKTESTS)
|
2009-06-08 12:35:59 -07:00
|
|
|
#define condmovestack(L) ((void)0)
|
2005-08-24 09:15:49 -07:00
|
|
|
#else
|
2009-07-15 10:26:14 -07:00
|
|
|
/* realloc stack keeping its size */
|
|
|
|
#define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
|
2005-08-24 09:15:49 -07:00
|
|
|
#endif
|
|
|
|
|
2009-11-17 03:56:03 -08:00
|
|
|
#if !defined(HARDMEMTESTS)
|
|
|
|
#define condchangemem(L) condmovestack(L)
|
|
|
|
#else
|
|
|
|
#define condchangemem(L) luaC_fullgc(L, 0)
|
|
|
|
#endif
|
|
|
|
|
2000-03-24 09:26:08 -08:00
|
|
|
#endif
|