mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
1.6 KiB
96 lines
1.6 KiB
/*
|
|
** $Id: llimits.h,v 1.64 2005/03/08 20:10:05 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"
|
|
|
|
|
|
#define api_check luai_apicheck
|
|
|
|
|
|
typedef LUAI_UINT32 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 */
|
|
typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
|
|
|
|
|
|
/* result of a `usual argument conversion' over lua_Number */
|
|
typedef LUAI_UACNUMBER l_uacNumber;
|
|
|
|
|
|
#define check_exp(c,e) (lua_assert(c), (e))
|
|
|
|
|
|
#ifndef UNUSED
|
|
#define UNUSED(x) ((void)(x)) /* to avoid warnings */
|
|
#endif
|
|
|
|
|
|
#ifndef cast
|
|
#define cast(t, exp) ((t)(exp))
|
|
#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) */
|
|
#ifndef MINSTRTABSIZE
|
|
#define MINSTRTABSIZE 32
|
|
#endif
|
|
|
|
|
|
/* minimum size for string buffer */
|
|
#ifndef LUA_MINBUFFER
|
|
#define LUA_MINBUFFER 32
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|