llimits.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:4k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. /*
  2. ** $Id: llimits.h,v 1.1 2004/08/20 02:26:56 JH Exp $
  3. ** Limits, basic types, and some other `installation-dependent' definitions
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef llimits_h
  7. #define llimits_h
  8. #include <limits.h>
  9. #include <stddef.h>
  10. #include "lua.h"
  11. /*
  12. ** try to find number of bits in an integer
  13. */
  14. #ifndef BITS_INT
  15. /* avoid overflows in comparison */
  16. #if INT_MAX-20 < 32760
  17. #define BITS_INT 16
  18. #else
  19. #if INT_MAX > 2147483640L
  20. /* machine has at least 32 bits */
  21. #define BITS_INT 32
  22. #else
  23. #error "you must define BITS_INT with number of bits in an integer"
  24. #endif
  25. #endif
  26. #endif
  27. /*
  28. ** the following types define integer types for values that may not
  29. ** fit in a `small int' (16 bits), but may waste space in a
  30. ** `large long' (64 bits). The current definitions should work in
  31. ** any machine, but may not be optimal.
  32. */
  33. /* an unsigned integer to hold hash values */
  34. typedef unsigned int lu_hash;
  35. /* its signed equivalent */
  36. typedef int ls_hash;
  37. /* an unsigned integer big enough to count the total memory used by Lua; */
  38. /* it should be at least as large as size_t */
  39. typedef unsigned long lu_mem;
  40. #define MAX_LUMEM ULONG_MAX
  41. /* an integer big enough to count the number of strings in use */
  42. typedef long ls_nstr;
  43. /* chars used as small naturals (so that `char' is reserved for characters) */
  44. typedef unsigned char lu_byte;
  45. #define MAX_SIZET ((size_t)(~(size_t)0)-2)
  46. #define MAX_INT (INT_MAX-2)  /* maximum value of an int (-2 for safety) */
  47. /*
  48. ** conversion of pointer to integer
  49. ** this is for hashing only; there is no problem if the integer
  50. ** cannot hold the whole pointer value
  51. */
  52. #define IntPoint(p)  ((lu_hash)(p))
  53. /* type to ensure maximum alignment */
  54. #ifndef LUSER_ALIGNMENT_T
  55. typedef union { double u; void *s; long l; } L_Umaxalign;
  56. #else
  57. typedef LUSER_ALIGNMENT_T L_Umaxalign;
  58. #endif
  59. /* result of `usual argument conversion' over lua_Number */
  60. #ifndef LUA_UACNUMBER
  61. typedef double l_uacNumber;
  62. #else
  63. typedef LUA_UACNUMBER l_uacNumber;
  64. #endif
  65. #ifndef lua_assert
  66. #define lua_assert(c) /* empty */
  67. #endif
  68. #ifndef check_exp
  69. #define check_exp(c,e) (e)
  70. #endif
  71. #ifndef UNUSED
  72. #define UNUSED(x) ((void)(x)) /* to avoid warnings */
  73. #endif
  74. #ifndef cast
  75. #define cast(t, exp) ((t)(exp))
  76. #endif
  77. /*
  78. ** type for virtual-machine instructions
  79. ** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
  80. */
  81. typedef unsigned long Instruction;
  82. /* maximum depth for calls (unsigned short) */
  83. #ifndef LUA_MAXCALLS
  84. #define LUA_MAXCALLS        4096
  85. #endif
  86. /*
  87. ** maximum depth for C calls (unsigned short): Not too big, or may
  88. ** overflow the C stack...
  89. */
  90. #ifndef LUA_MAXCCALLS
  91. #define LUA_MAXCCALLS        200
  92. #endif
  93. /* maximum size for the C stack */
  94. #ifndef LUA_MAXCSTACK
  95. #define LUA_MAXCSTACK        2048
  96. #endif
  97. /* maximum stack for a Lua function */
  98. #define MAXSTACK 250
  99. /* maximum number of variables declared in a function */
  100. #ifndef MAXVARS
  101. #define MAXVARS 200           /* arbitrary limit (<MAXSTACK) */
  102. #endif
  103. /* maximum number of upvalues per function */
  104. #ifndef MAXUPVALUES
  105. #define MAXUPVALUES 32
  106. #endif
  107. /* maximum number of parameters in a function */
  108. #ifndef MAXPARAMS
  109. #define MAXPARAMS 100           /* arbitrary limit (<MAXLOCALS) */
  110. #endif
  111. /* minimum size for the string table (must be power of 2) */
  112. #ifndef MINSTRTABSIZE
  113. #define MINSTRTABSIZE 32
  114. #endif
  115. /* minimum size for string buffer */
  116. #ifndef LUA_MINBUFFER
  117. #define LUA_MINBUFFER 32
  118. #endif
  119. /*
  120. ** maximum number of syntactical nested non-terminals: Not too big,
  121. ** or may overflow the C stack...
  122. */
  123. #ifndef LUA_MAXPARSERLEVEL
  124. #define LUA_MAXPARSERLEVEL 200
  125. #endif
  126. #endif