2000-03-24 20:26:08 +03:00
|
|
|
/*
|
2004-05-01 00:13:38 +04:00
|
|
|
** $Id: llimits.h,v 1.57 2003/12/01 16:33:30 roberto Exp roberto $
|
2001-02-23 20:17:25 +03:00
|
|
|
** Limits, basic types, and some other `installation-dependent' definitions
|
2000-03-24 20:26:08 +03:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2000-03-24 22:49:23 +03:00
|
|
|
#ifndef llimits_h
|
|
|
|
#define llimits_h
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
#include <limits.h>
|
2000-05-24 17:54:49 +04:00
|
|
|
#include <stddef.h>
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
|
2001-02-23 23:28:56 +03:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-06-28 21:03:32 +04:00
|
|
|
|
2003-04-28 23:26:16 +04:00
|
|
|
|
|
|
|
typedef LUA_UINT32 lu_int32;
|
2001-02-20 21:15:33 +03:00
|
|
|
|
2003-12-01 19:33:30 +03:00
|
|
|
typedef LUA_INT32 l_int32;
|
|
|
|
|
|
|
|
|
2003-04-28 23:26:16 +04:00
|
|
|
/*
|
|
|
|
** an unsigned integer big enough to count the total memory used by Lua;
|
|
|
|
** it should be at least as large as `size_t'
|
|
|
|
*/
|
|
|
|
typedef lu_int32 lu_mem;
|
|
|
|
|
2001-02-20 21:15:33 +03:00
|
|
|
|
2003-12-01 19:33:30 +03:00
|
|
|
/*
|
|
|
|
** a signed integer big enough to count the total memory used by Lua;
|
|
|
|
** it should be at least as large as `size_t'
|
|
|
|
*/
|
|
|
|
typedef l_int32 l_mem;
|
|
|
|
#define MAXLMEM LUA_MAXINT32
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
2000-06-06 20:27:11 +04:00
|
|
|
#define MAX_SIZET ((size_t)(~(size_t)0)-2)
|
2000-05-24 17:54:49 +04:00
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
#define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */
|
|
|
|
|
|
|
|
/*
|
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
|
2000-03-24 20:26:08 +03:00
|
|
|
*/
|
2003-04-28 23:26:16 +04:00
|
|
|
#define IntPoint(p) ((unsigned int)(p))
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
|
2000-03-31 20:28:45 +04:00
|
|
|
|
2000-10-26 16:47:05 +04:00
|
|
|
/* type to ensure maximum alignment */
|
2002-10-22 21:18:28 +04:00
|
|
|
typedef LUSER_ALIGNMENT_T L_Umaxalign;
|
|
|
|
|
|
|
|
|
2004-05-01 00:13:38 +04:00
|
|
|
/* result of a `usual argument conversion' over lua_Number */
|
2002-10-22 21:18:28 +04:00
|
|
|
typedef LUA_UACNUMBER l_uacNumber;
|
2000-10-26 16:47:05 +04:00
|
|
|
|
|
|
|
|
2002-03-18 21:16:16 +03:00
|
|
|
#ifndef lua_assert
|
|
|
|
#define lua_assert(c) /* empty */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-06-13 17:45:31 +04:00
|
|
|
#ifndef check_exp
|
|
|
|
#define check_exp(c,e) (e)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-03-18 21:16:16 +03:00
|
|
|
#ifndef UNUSED
|
|
|
|
#define UNUSED(x) ((void)(x)) /* to avoid warnings */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef cast
|
|
|
|
#define cast(t, exp) ((t)(exp))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-10-26 16:47:05 +04:00
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
/*
|
|
|
|
** type for virtual-machine instructions
|
2000-09-29 16:42:13 +04:00
|
|
|
** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
|
2000-03-24 20:26:08 +03:00
|
|
|
*/
|
2003-04-28 23:26:16 +04:00
|
|
|
typedef lu_int32 Instruction;
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
|
2002-03-07 21:11:51 +03:00
|
|
|
|
2001-06-05 22:17:01 +04:00
|
|
|
/* maximum stack for a Lua function */
|
2000-06-28 21:03:32 +04:00
|
|
|
#define MAXSTACK 250
|
2000-03-24 20:26:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-03-07 21:11:51 +03:00
|
|
|
/* minimum size for the string table (must be power of 2) */
|
2002-03-05 19:22:54 +03:00
|
|
|
#ifndef MINSTRTABSIZE
|
2002-03-07 21:11:51 +03:00
|
|
|
#define MINSTRTABSIZE 32
|
2002-03-05 19:22:54 +03:00
|
|
|
#endif
|
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
|
2002-10-08 22:46:08 +04:00
|
|
|
/* minimum size for string buffer */
|
|
|
|
#ifndef LUA_MINBUFFER
|
|
|
|
#define LUA_MINBUFFER 32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-03-24 20:26:08 +03:00
|
|
|
#endif
|