intprops.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /* intprops.h -- properties of integer types
  2. Copyright (C) 2001-2005, 2009-2014 Free Software Foundation, Inc.
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Lesser General Public License as published by
  5. the Free Software Foundation; either version 2.1 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. /* Written by Paul Eggert. */
  14. #ifndef _GL_INTPROPS_H
  15. #define _GL_INTPROPS_H
  16. #include <limits.h>
  17. /* Return an integer value, converted to the same type as the integer
  18. expression E after integer type promotion. V is the unconverted value. */
  19. #define _GL_INT_CONVERT(e, v) (0 * (e) + (v))
  20. /* Act like _GL_INT_CONVERT (E, -V) but work around a bug in IRIX 6.5 cc; see
  21. <http://lists.gnu.org/archive/html/bug-gnulib/2011-05/msg00406.html>. */
  22. #define _GL_INT_NEGATE_CONVERT(e, v) (0 * (e) - (v))
  23. /* The extra casts in the following macros work around compiler bugs,
  24. e.g., in Cray C 5.0.3.0. */
  25. /* True if the arithmetic type T is an integer type. bool counts as
  26. an integer. */
  27. #define TYPE_IS_INTEGER(t) ((t) 1.5 == 1)
  28. /* True if negative values of the signed integer type T use two's
  29. complement, ones' complement, or signed magnitude representation,
  30. respectively. Much GNU code assumes two's complement, but some
  31. people like to be portable to all possible C hosts. */
  32. #define TYPE_TWOS_COMPLEMENT(t) ((t) ~ (t) 0 == (t) -1)
  33. #define TYPE_ONES_COMPLEMENT(t) ((t) ~ (t) 0 == 0)
  34. #define TYPE_SIGNED_MAGNITUDE(t) ((t) ~ (t) 0 < (t) -1)
  35. /* True if the signed integer expression E uses two's complement. */
  36. #define _GL_INT_TWOS_COMPLEMENT(e) (~ _GL_INT_CONVERT (e, 0) == -1)
  37. /* True if the arithmetic type T is signed. */
  38. #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
  39. /* Return 1 if the integer expression E, after integer promotion, has
  40. a signed type. */
  41. #define _GL_INT_SIGNED(e) (_GL_INT_NEGATE_CONVERT (e, 1) < 0)
  42. /* Minimum and maximum values for integer types and expressions. These
  43. macros have undefined behavior if T is signed and has padding bits.
  44. If this is a problem for you, please let us know how to fix it for
  45. your host. */
  46. /* The maximum and minimum values for the integer type T. */
  47. #define TYPE_MINIMUM(t) \
  48. ((t) (! TYPE_SIGNED (t) \
  49. ? (t) 0 \
  50. : TYPE_SIGNED_MAGNITUDE (t) \
  51. ? ~ (t) 0 \
  52. : ~ TYPE_MAXIMUM (t)))
  53. #define TYPE_MAXIMUM(t) \
  54. ((t) (! TYPE_SIGNED (t) \
  55. ? (t) -1 \
  56. : ((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1)))
  57. /* The maximum and minimum values for the type of the expression E,
  58. after integer promotion. E should not have side effects. */
  59. #define _GL_INT_MINIMUM(e) \
  60. (_GL_INT_SIGNED (e) \
  61. ? - _GL_INT_TWOS_COMPLEMENT (e) - _GL_SIGNED_INT_MAXIMUM (e) \
  62. : _GL_INT_CONVERT (e, 0))
  63. #define _GL_INT_MAXIMUM(e) \
  64. (_GL_INT_SIGNED (e) \
  65. ? _GL_SIGNED_INT_MAXIMUM (e) \
  66. : _GL_INT_NEGATE_CONVERT (e, 1))
  67. #define _GL_SIGNED_INT_MAXIMUM(e) \
  68. (((_GL_INT_CONVERT (e, 1) << (sizeof ((e) + 0) * CHAR_BIT - 2)) - 1) * 2 + 1)
  69. /* Return 1 if the __typeof__ keyword works. This could be done by
  70. 'configure', but for now it's easier to do it by hand. */
  71. #if (2 <= __GNUC__ || defined __IBM__TYPEOF__ \
  72. || (0x5110 <= __SUNPRO_C && !__STDC__))
  73. # define _GL_HAVE___TYPEOF__ 1
  74. #else
  75. # define _GL_HAVE___TYPEOF__ 0
  76. #endif
  77. /* Return 1 if the integer type or expression T might be signed. Return 0
  78. if it is definitely unsigned. This macro does not evaluate its argument,
  79. and expands to an integer constant expression. */
  80. #if _GL_HAVE___TYPEOF__
  81. # define _GL_SIGNED_TYPE_OR_EXPR(t) TYPE_SIGNED (__typeof__ (t))
  82. #else
  83. # define _GL_SIGNED_TYPE_OR_EXPR(t) 1
  84. #endif
  85. /* Bound on length of the string representing an unsigned integer
  86. value representable in B bits. log10 (2.0) < 146/485. The
  87. smallest value of B where this bound is not tight is 2621. */
  88. #define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485)
  89. /* Bound on length of the string representing an integer type or expression T.
  90. Subtract 1 for the sign bit if T is signed, and then add 1 more for
  91. a minus sign if needed.
  92. Because _GL_SIGNED_TYPE_OR_EXPR sometimes returns 0 when its argument is
  93. signed, this macro may overestimate the true bound by one byte when
  94. applied to unsigned types of size 2, 4, 16, ... bytes. */
  95. #define INT_STRLEN_BOUND(t) \
  96. (INT_BITS_STRLEN_BOUND (sizeof (t) * CHAR_BIT \
  97. - _GL_SIGNED_TYPE_OR_EXPR (t)) \
  98. + _GL_SIGNED_TYPE_OR_EXPR (t))
  99. /* Bound on buffer size needed to represent an integer type or expression T,
  100. including the terminating null. */
  101. #define INT_BUFSIZE_BOUND(t) (INT_STRLEN_BOUND (t) + 1)
  102. /* Range overflow checks.
  103. The INT_<op>_RANGE_OVERFLOW macros return 1 if the corresponding C
  104. operators might not yield numerically correct answers due to
  105. arithmetic overflow. They do not rely on undefined or
  106. implementation-defined behavior. Their implementations are simple
  107. and straightforward, but they are a bit harder to use than the
  108. INT_<op>_OVERFLOW macros described below.
  109. Example usage:
  110. long int i = ...;
  111. long int j = ...;
  112. if (INT_MULTIPLY_RANGE_OVERFLOW (i, j, LONG_MIN, LONG_MAX))
  113. printf ("multiply would overflow");
  114. else
  115. printf ("product is %ld", i * j);
  116. Restrictions on *_RANGE_OVERFLOW macros:
  117. These macros do not check for all possible numerical problems or
  118. undefined or unspecified behavior: they do not check for division
  119. by zero, for bad shift counts, or for shifting negative numbers.
  120. These macros may evaluate their arguments zero or multiple times,
  121. so the arguments should not have side effects. The arithmetic
  122. arguments (including the MIN and MAX arguments) must be of the same
  123. integer type after the usual arithmetic conversions, and the type
  124. must have minimum value MIN and maximum MAX. Unsigned types should
  125. use a zero MIN of the proper type.
  126. These macros are tuned for constant MIN and MAX. For commutative
  127. operations such as A + B, they are also tuned for constant B. */
  128. /* Return 1 if A + B would overflow in [MIN,MAX] arithmetic.
  129. See above for restrictions. */
  130. #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \
  131. ((b) < 0 \
  132. ? (a) < (min) - (b) \
  133. : (max) - (b) < (a))
  134. /* Return 1 if A - B would overflow in [MIN,MAX] arithmetic.
  135. See above for restrictions. */
  136. #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \
  137. ((b) < 0 \
  138. ? (max) + (b) < (a) \
  139. : (a) < (min) + (b))
  140. /* Return 1 if - A would overflow in [MIN,MAX] arithmetic.
  141. See above for restrictions. */
  142. #define INT_NEGATE_RANGE_OVERFLOW(a, min, max) \
  143. ((min) < 0 \
  144. ? (a) < - (max) \
  145. : 0 < (a))
  146. /* Return 1 if A * B would overflow in [MIN,MAX] arithmetic.
  147. See above for restrictions. Avoid && and || as they tickle
  148. bugs in Sun C 5.11 2010/08/13 and other compilers; see
  149. <http://lists.gnu.org/archive/html/bug-gnulib/2011-05/msg00401.html>. */
  150. #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \
  151. ((b) < 0 \
  152. ? ((a) < 0 \
  153. ? (a) < (max) / (b) \
  154. : (b) == -1 \
  155. ? 0 \
  156. : (min) / (b) < (a)) \
  157. : (b) == 0 \
  158. ? 0 \
  159. : ((a) < 0 \
  160. ? (a) < (min) / (b) \
  161. : (max) / (b) < (a)))
  162. /* Return 1 if A / B would overflow in [MIN,MAX] arithmetic.
  163. See above for restrictions. Do not check for division by zero. */
  164. #define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, max) \
  165. ((min) < 0 && (b) == -1 && (a) < - (max))
  166. /* Return 1 if A % B would overflow in [MIN,MAX] arithmetic.
  167. See above for restrictions. Do not check for division by zero.
  168. Mathematically, % should never overflow, but on x86-like hosts
  169. INT_MIN % -1 traps, and the C standard permits this, so treat this
  170. as an overflow too. */
  171. #define INT_REMAINDER_RANGE_OVERFLOW(a, b, min, max) \
  172. INT_DIVIDE_RANGE_OVERFLOW (a, b, min, max)
  173. /* Return 1 if A << B would overflow in [MIN,MAX] arithmetic.
  174. See above for restrictions. Here, MIN and MAX are for A only, and B need
  175. not be of the same type as the other arguments. The C standard says that
  176. behavior is undefined for shifts unless 0 <= B < wordwidth, and that when
  177. A is negative then A << B has undefined behavior and A >> B has
  178. implementation-defined behavior, but do not check these other
  179. restrictions. */
  180. #define INT_LEFT_SHIFT_RANGE_OVERFLOW(a, b, min, max) \
  181. ((a) < 0 \
  182. ? (a) < (min) >> (b) \
  183. : (max) >> (b) < (a))
  184. /* The _GL*_OVERFLOW macros have the same restrictions as the
  185. *_RANGE_OVERFLOW macros, except that they do not assume that operands
  186. (e.g., A and B) have the same type as MIN and MAX. Instead, they assume
  187. that the result (e.g., A + B) has that type. */
  188. #define _GL_ADD_OVERFLOW(a, b, min, max) \
  189. ((min) < 0 ? INT_ADD_RANGE_OVERFLOW (a, b, min, max) \
  190. : (a) < 0 ? (b) <= (a) + (b) \
  191. : (b) < 0 ? (a) <= (a) + (b) \
  192. : (a) + (b) < (b))
  193. #define _GL_SUBTRACT_OVERFLOW(a, b, min, max) \
  194. ((min) < 0 ? INT_SUBTRACT_RANGE_OVERFLOW (a, b, min, max) \
  195. : (a) < 0 ? 1 \
  196. : (b) < 0 ? (a) - (b) <= (a) \
  197. : (a) < (b))
  198. #define _GL_MULTIPLY_OVERFLOW(a, b, min, max) \
  199. (((min) == 0 && (((a) < 0 && 0 < (b)) || ((b) < 0 && 0 < (a)))) \
  200. || INT_MULTIPLY_RANGE_OVERFLOW (a, b, min, max))
  201. #define _GL_DIVIDE_OVERFLOW(a, b, min, max) \
  202. ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < - (max) \
  203. : (a) < 0 ? (b) <= (a) + (b) - 1 \
  204. : (b) < 0 && (a) + (b) <= (a))
  205. #define _GL_REMAINDER_OVERFLOW(a, b, min, max) \
  206. ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < - (max) \
  207. : (a) < 0 ? (a) % (b) != ((max) - (b) + 1) % (b) \
  208. : (b) < 0 && ! _GL_UNSIGNED_NEG_MULTIPLE (a, b, max))
  209. /* Return a nonzero value if A is a mathematical multiple of B, where
  210. A is unsigned, B is negative, and MAX is the maximum value of A's
  211. type. A's type must be the same as (A % B)'s type. Normally (A %
  212. -B == 0) suffices, but things get tricky if -B would overflow. */
  213. #define _GL_UNSIGNED_NEG_MULTIPLE(a, b, max) \
  214. (((b) < -_GL_SIGNED_INT_MAXIMUM (b) \
  215. ? (_GL_SIGNED_INT_MAXIMUM (b) == (max) \
  216. ? (a) \
  217. : (a) % (_GL_INT_CONVERT (a, _GL_SIGNED_INT_MAXIMUM (b)) + 1)) \
  218. : (a) % - (b)) \
  219. == 0)
  220. /* Integer overflow checks.
  221. The INT_<op>_OVERFLOW macros return 1 if the corresponding C operators
  222. might not yield numerically correct answers due to arithmetic overflow.
  223. They work correctly on all known practical hosts, and do not rely
  224. on undefined behavior due to signed arithmetic overflow.
  225. Example usage:
  226. long int i = ...;
  227. long int j = ...;
  228. if (INT_MULTIPLY_OVERFLOW (i, j))
  229. printf ("multiply would overflow");
  230. else
  231. printf ("product is %ld", i * j);
  232. These macros do not check for all possible numerical problems or
  233. undefined or unspecified behavior: they do not check for division
  234. by zero, for bad shift counts, or for shifting negative numbers.
  235. These macros may evaluate their arguments zero or multiple times, so the
  236. arguments should not have side effects.
  237. These macros are tuned for their last argument being a constant.
  238. Return 1 if the integer expressions A * B, A - B, -A, A * B, A / B,
  239. A % B, and A << B would overflow, respectively. */
  240. #define INT_ADD_OVERFLOW(a, b) \
  241. _GL_BINARY_OP_OVERFLOW (a, b, _GL_ADD_OVERFLOW)
  242. #define INT_SUBTRACT_OVERFLOW(a, b) \
  243. _GL_BINARY_OP_OVERFLOW (a, b, _GL_SUBTRACT_OVERFLOW)
  244. #define INT_NEGATE_OVERFLOW(a) \
  245. INT_NEGATE_RANGE_OVERFLOW (a, _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a))
  246. #define INT_MULTIPLY_OVERFLOW(a, b) \
  247. _GL_BINARY_OP_OVERFLOW (a, b, _GL_MULTIPLY_OVERFLOW)
  248. #define INT_DIVIDE_OVERFLOW(a, b) \
  249. _GL_BINARY_OP_OVERFLOW (a, b, _GL_DIVIDE_OVERFLOW)
  250. #define INT_REMAINDER_OVERFLOW(a, b) \
  251. _GL_BINARY_OP_OVERFLOW (a, b, _GL_REMAINDER_OVERFLOW)
  252. #define INT_LEFT_SHIFT_OVERFLOW(a, b) \
  253. INT_LEFT_SHIFT_RANGE_OVERFLOW (a, b, \
  254. _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a))
  255. /* Return 1 if the expression A <op> B would overflow,
  256. where OP_RESULT_OVERFLOW (A, B, MIN, MAX) does the actual test,
  257. assuming MIN and MAX are the minimum and maximum for the result type.
  258. Arguments should be free of side effects. */
  259. #define _GL_BINARY_OP_OVERFLOW(a, b, op_result_overflow) \
  260. op_result_overflow (a, b, \
  261. _GL_INT_MINIMUM (0 * (b) + (a)), \
  262. _GL_INT_MAXIMUM (0 * (b) + (a)))
  263. #endif /* _GL_INTPROPS_H */