intprops.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. /* intprops.h -- properties of integer types
  2. Copyright (C) 2001-2005, 2009-2015 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 General Public License as published by
  5. the Free Software Foundation; either version 3 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 General Public License for more details.
  11. You should have received a copy of the GNU 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. /* Check for integer overflow, and report low order bits of answer.
  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. The INT_<op>_WRAPV macros return the low-order bits of the answer.
  224. For example, INT_ADD_WRAPV (INT_MAX, 1) returns INT_MIN on a two's
  225. complement host, even if INT_MAX + 1 would trap.
  226. These macros work correctly on all known practical hosts, and do not rely
  227. on undefined behavior due to signed arithmetic overflow.
  228. Example usage:
  229. long int a = ...;
  230. long int b = ...;
  231. long int result = INT_MULTIPLY_WRAPV (a, b);
  232. printf ("result is %ld (%s)\n", result,
  233. INT_MULTIPLY_OVERFLOW (a, b) ? "after overflow" : "no overflow");
  234. enum {
  235. INT_PRODUCTS_FIT_IN_LONG
  236. = ! INT_CONST_MULTIPLY_OVERFLOW ((long int) INT_MIN, INT_MIN)
  237. };
  238. Restrictions on these macros:
  239. These macros do not check for all possible numerical problems or
  240. undefined or unspecified behavior: they do not check for division
  241. by zero, for bad shift counts, or for shifting negative numbers.
  242. These macros may evaluate their arguments zero or multiple times, so the
  243. arguments should not have side effects.
  244. On non-GCC-compatible compilers that do not support C11, the type
  245. of INT_<op>_WRAPV (A, B) might differ from the native type of (A op
  246. B), so it is wise to convert the result to the native type. Such a
  247. conversion is safe and cannot trap.
  248. For runtime efficiency GCC 5 and later has builtin functions for +,
  249. -, * when doing integer overflow checking or wraparound arithmetic.
  250. Unfortunately, these builtins require nonnull pointer arguments and
  251. so cannot be used in constant expressions; see GCC bug 68120
  252. <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68120>. In constant
  253. expressions, use the macros INT_CONST_ADD_OVERFLOW and
  254. INT_CONST_ADD_WRAPV instead, and similarly for SUBTRACT and
  255. MULTIPLY; these macros avoid the builtins and are slower in
  256. non-constant expressions. Perhaps someday GCC's API for overflow
  257. checking will be improved and we can remove the need for the
  258. INT_CONST_ variants.
  259. These macros are tuned for their last argument being a constant.
  260. Return 1 if the integer expressions A * B, A - B, -A, A * B, A / B,
  261. A % B, and A << B would overflow, respectively. */
  262. #define INT_CONST_ADD_OVERFLOW(a, b) \
  263. _GL_BINARY_OP_OVERFLOW (a, b, _GL_ADD_OVERFLOW)
  264. #define INT_CONST_SUBTRACT_OVERFLOW(a, b) \
  265. _GL_BINARY_OP_OVERFLOW (a, b, _GL_SUBTRACT_OVERFLOW)
  266. #define INT_NEGATE_OVERFLOW(a) \
  267. INT_NEGATE_RANGE_OVERFLOW (a, _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a))
  268. #define INT_CONST_MULTIPLY_OVERFLOW(a, b) \
  269. _GL_BINARY_OP_OVERFLOW (a, b, _GL_MULTIPLY_OVERFLOW)
  270. #define INT_DIVIDE_OVERFLOW(a, b) \
  271. _GL_BINARY_OP_OVERFLOW (a, b, _GL_DIVIDE_OVERFLOW)
  272. #define INT_REMAINDER_OVERFLOW(a, b) \
  273. _GL_BINARY_OP_OVERFLOW (a, b, _GL_REMAINDER_OVERFLOW)
  274. #define INT_LEFT_SHIFT_OVERFLOW(a, b) \
  275. INT_LEFT_SHIFT_RANGE_OVERFLOW (a, b, \
  276. _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a))
  277. /* Return 1 if the expression A <op> B would overflow,
  278. where OP_RESULT_OVERFLOW (A, B, MIN, MAX) does the actual test,
  279. assuming MIN and MAX are the minimum and maximum for the result type.
  280. Arguments should be free of side effects. */
  281. #define _GL_BINARY_OP_OVERFLOW(a, b, op_result_overflow) \
  282. op_result_overflow (a, b, \
  283. _GL_INT_MINIMUM (0 * (b) + (a)), \
  284. _GL_INT_MAXIMUM (0 * (b) + (a)))
  285. /* Return the low order bits of the integer expressions
  286. A * B, A - B, -A, A * B, A / B, A % B, and A << B, respectively.
  287. See above for restrictions. */
  288. #define INT_CONST_ADD_WRAPV(a, b) _GL_INT_OP_WRAPV (a, b, +)
  289. #define INT_CONST_SUBTRACT_WRAPV(a, b) _GL_INT_OP_WRAPV (a, b, -)
  290. #define INT_NEGATE_WRAPV(a) INT_CONST_SUBTRACT_WRAPV (0, a)
  291. #define INT_CONST_MULTIPLY_WRAPV(a, b) _GL_INT_OP_WRAPV (a, b, *)
  292. #define INT_DIVIDE_WRAPV(a, b) \
  293. (INT_DIVIDE_OVERFLOW(a, b) ? INT_NEGATE_WRAPV (a) : (a) / (b))
  294. #define INT_REMAINDER_WRAPV(a, b) \
  295. (INT_REMAINDER_OVERFLOW(a, b) ? 0 : (a) % (b))
  296. #define INT_LEFT_SHIFT_WRAPV(a, b) _GL_INT_OP_WRAPV (a, b, <<)
  297. /* Return the low order bits of A <op> B, where OP specifies the operation.
  298. See above for restrictions. */
  299. #if !_GL_HAVE___TYPEOF__ && 201112 <= __STDC_VERSION__
  300. # define _GL_INT_OP_WRAPV(a, b, op) \
  301. _Generic ((a) op (b), \
  302. int: _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, int), \
  303. long int: _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, long int), \
  304. long long int: _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, \
  305. long long int), \
  306. default: (a) op (b))
  307. #else
  308. # define _GL_INT_OP_WRAPV(a, b, op) \
  309. (! _GL_INT_SIGNED ((0 * (a)) op (0 * (b))) \
  310. ? ((a) op (b)) \
  311. : _GL_EXPR_CAST ((a) op (b), \
  312. (sizeof ((a) op (b)) <= sizeof (int) \
  313. ? _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, int) \
  314. : _GL_INT_OP_WRAPV_LONGISH (a, b, op))))
  315. /* Cast to E's type the value of V if possible. Yield V as-is otherwise. */
  316. # if _GL_HAVE___TYPEOF__
  317. # define _GL_EXPR_CAST(e, v) ((__typeof__ (e)) (v))
  318. # else
  319. # define _GL_EXPR_CAST(e, v) (v)
  320. # endif
  321. # ifdef LLONG_MAX
  322. # define _GL_INT_OP_WRAPV_LONGISH(a, b, op) \
  323. (sizeof ((a) op (b)) <= sizeof (long int) \
  324. ? _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, long int) \
  325. : _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, long long int))
  326. # else
  327. # define _GL_INT_OP_WRAPV_LONGISH(a, b, op) \
  328. _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, long int)
  329. # endif
  330. #endif
  331. /* Return A <op> B, where the operation is given by OP and the result
  332. type is T. T is a signed integer type that is at least as wide as int.
  333. Do arithmetic using 'unsigned T' to avoid signed integer overflow.
  334. Subtract TYPE_MINIMUM (T) before converting back to T, and add it
  335. back afterwards, to avoid signed overflow during conversion. */
  336. #define _GL_INT_OP_WRAPV_VIA_UNSIGNED(a, b, op, t) \
  337. ((unsigned t) (a) op (unsigned t) (b) <= TYPE_MAXIMUM (t) \
  338. ? (t) ((unsigned t) (a) op (unsigned t) (b)) \
  339. : ((t) ((unsigned t) (a) op (unsigned t) (b) - TYPE_MINIMUM (t)) \
  340. + TYPE_MINIMUM (t)))
  341. /* Calls to the INT_<op>_<result> macros are like their INT_CONST_<op>_<result>
  342. counterparts, except they are faster with GCC 5 or later, and they
  343. are not constant expressions due to limitations in the GNU C API. */
  344. #define INT_ADD_OVERFLOW(a, b) \
  345. _GL_OP_OVERFLOW (a, b, INT_CONST_ADD_OVERFLOW, __builtin_add_overflow)
  346. #define INT_SUBTRACT_OVERFLOW(a, b) \
  347. _GL_OP_OVERFLOW (a, b, INT_CONST_SUBTRACT_OVERFLOW, __builtin_sub_overflow)
  348. #define INT_MULTIPLY_OVERFLOW(a, b) \
  349. _GL_OP_OVERFLOW (a, b, INT_CONST_MULTIPLY_OVERFLOW, __builtin_mul_overflow)
  350. #define INT_ADD_WRAPV(a, b) \
  351. _GL_OP_WRAPV (a, b, INT_CONST_ADD_WRAPV, __builtin_add_overflow)
  352. #define INT_SUBTRACT_WRAPV(a, b) \
  353. _GL_OP_WRAPV (a, b, INT_CONST_SUBTRACT_WRAPV, __builtin_sub_overflow)
  354. #define INT_MULTIPLY_WRAPV(a, b) \
  355. _GL_OP_WRAPV (a, b, INT_CONST_MULTIPLY_WRAPV, __builtin_mul_overflow)
  356. #if __GNUC__ < 5
  357. # define _GL_OP_OVERFLOW(a, b, portable, builtin) portable (a, b)
  358. # define _GL_OP_WRAPV(a, b, portable, builtin) portable (a, b)
  359. #else
  360. # define _GL_OP_OVERFLOW(a, b, portable, builtin) \
  361. builtin (a, b, &(__typeof__ ((a) + (b))) {0})
  362. # define _GL_OP_WRAPV(a, b, portable, builtin) \
  363. _GL_OP_WRAPV_GENSYM(a, b, builtin, __gl_wrapv##__COUNTER__)
  364. # define _GL_OP_WRAPV_GENSYM(a, b, builtin, r) \
  365. ({__typeof__ ((a) + (b)) r; builtin (a, b, &r); r; })
  366. #endif
  367. #endif /* _GL_INTPROPS_H */