Branch
Hash :
e8e5e42f
Author :
Date :
2025-02-07T14:36:55
intprops: new macro INT_PROMOTE Something like this was requested for Emacs. * doc/intprops.texi (Arithmetic Type Conversion): New section. * lib/intprops.h (INT_PROMOTE): New macro. * tests/test-intprops.c: Test it.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
@node Integer Properties
@section Integer Properties
@c Copyright (C) 2011--2025 Free Software Foundation, Inc.
@c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3 or
@c any later version published by the Free Software Foundation; with no
@c Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
@c copy of the license is at <https://www.gnu.org/licenses/fdl-1.3.en.html>.
@c Written by Paul Eggert.
@cindex integer properties
@mindex intprops
The @code{intprops} module consists of an include file @code{<intprops.h>}
that defines several macros useful for testing properties of integer
types.
@cindex integer overflow
@cindex overflow, integer
Integer overflow is a common source of problems in programs written in
C and other languages. In some cases, such as signed integer
arithmetic in C programs, the resulting behavior is undefined, and
practical platforms do not always behave as if integers wrap around
reliably. In other cases, such as unsigned integer arithmetic in C,
the resulting behavior is well-defined, but programs may still
misbehave badly after overflow occurs.
Many techniques have been proposed to attack these problems. These
include precondition testing, wraparound behavior where signed integer
arithmetic is guaranteed to be modular, saturation semantics where
overflow reliably yields an extreme value, undefined behavior
sanitizers where overflow is guaranteed to trap, and various static
analysis techniques.
Gnulib supports wraparound arithmetic and precondition testing, as
these are relatively easy to support portably and efficiently. There
are two families of precondition tests: the first, for integer types,
is easier to use, while the second, for integer ranges, has a simple
and straightforward portable implementation.
Like other Gnulib modules, the implementation of the @code{intprops}
module assumes that integers use a two's complement representation,
but it does not assume that signed integer arithmetic wraps around.
@xref{Other portability assumptions}.
@menu
* Arithmetic Type Properties:: Determining properties of arithmetic types.
* Arithmetic Type Conversion:: Converting arithmetic types.
* Integer Bounds:: Bounds on integer values and representations.
* Checking Integer Overflow:: Checking for overflow while computing integers.
* Wraparound Arithmetic:: Well-defined behavior on integer overflow.
* Integer Type Overflow:: General integer overflow checking.
* Integer Range Overflow:: Integer overflow checking if bounds are known.
@end menu
@node Arithmetic Type Properties
@subsection Arithmetic Type Properties
@findex TYPE_IS_INTEGER
@code{TYPE_IS_INTEGER (@var{t})} is an arithmetic constant
expression that yields 1 if the arithmetic type @var{t} is an integer type,
0 otherwise.
@code{bool} counts as an integer type.
@findex TYPE_SIGNED
@code{TYPE_SIGNED (@var{t})} is an arithmetic constant expression
that yields 1 if the real type @var{t} is a signed integer type or a
floating type, 0 otherwise.
If @var{t} is an integer type, @code{TYPE_SIGNED (@var{t})}
is an integer constant expression.
@findex EXPR_SIGNED
@code{EXPR_SIGNED (@var{e})} yields 1 if the real expression @var{e}
has a signed integer type or a floating type, 0 otherwise. If @var{e} is an
integer constant expression or an arithmetic constant expression,
@code{EXPR_SIGNED (@var{e})} is likewise. The expression
@var{e} is not evaluated, and @code{EXPR_SIGNED
(@var{e})} is typically optimized to a constant.
Example usage:
@example
#include <intprops.h>
#include <sys/types.h>
enum
@{
clock_t_is_integer = TYPE_IS_INTEGER (clock_t),
uid_t_is_signed = TYPE_SIGNED (uid_t)
@};
int
CLOCKS_PER_SEC_is_signed (void)
@{
return EXPR_SIGNED (CLOCKS_PER_SEC);
@}
@end example
@node Arithmetic Type Conversion
@subsection Arithmetic Type Conversion
@cindex type conversion, arithmetic
@cindex arithmetic type conversion
@cindex integer type conversion
Here are some ways in C to convert an arithmetic expression @var{e} to
a possibly different arithmetic type @var{t}.
@itemize @bullet
@item
An explicit conversion like @code{((@var{t}) @var{e})} is powerful and
can therefore be dangerous, because the conversion can succeed even if
neither @var{e} nor @var{t} happens to have an arithmetic type. For
example, if @var{e} is a pointer, @code{((long int) @var{e})} will do
a conversion even if that was not the intent.
@item
An implicit conversion like @code{@var{t} v = @var{e};} is less
powerful, as it does not convert from pointers. However, it can lose
information and sign, as in for example @code{int v = -0.9;} which
sets @code{v} to zero.
@item
A no-op arithmetic expression like @code{+@var{e}} is even less
powerful, as it preserves value (including sign) because it does only
integer promotions. That is, it converts to @code{int} if that can
represent all values of @code{e}'s underlying type, otherwise to
@code{unsigned int} if that can represent all values, and
otherwise it does no conversion.
@end itemize
@findex INT_PROMOTE
@code{INT_PROMOTE (@var{e})} is an expression with the same value as
the arithmetic expression @var{e} but with @var{e}'s type after
any integer promotion. It behaves like @code{+@var{e}}.
In the following example, using @code{INT_PROMOTE} pacifies GCC's
@code{-Wswitch-enum} option, and may help human readers see what is
going on even if they are not expert in C's integer promotion rules
and might be confused by the simpler @code{switch (+v)}.
@example
enum @{ A = 1, B, C, D, E @} v = ...;
switch (INT_PROMOTE (v))
@{
case A: case C:
return true;
default:
/* Handle all other cases,
even cases like v == 0. */
return false;
@}
@end example
@node Integer Bounds
@subsection Integer Bounds
@cindex integer bounds
@findex INT_BUFSIZE_BOUND
@code{INT_BUFSIZE_BOUND (@var{t})} is an integer constant
expression that is a bound on the size of the string representing an
integer type or expression @var{t} in decimal notation, including the
terminating null character and any leading @code{-} character. For
example, if @code{INT_BUFSIZE_BOUND (int)} is 12, any value of type
@code{int} can be represented in 12 bytes or less, including the
terminating null. The bound is not necessarily tight.
Example usage:
@example
#include <intprops.h>
#include <stdio.h>
int
int_strlen (int i)
@{
char buf[INT_BUFSIZE_BOUND (int)];
return sprintf (buf, "%d", i);
@}
@end example
@findex INT_STRLEN_BOUND
@code{INT_STRLEN_BOUND (@var{t})} is an integer constant
expression that is a bound on the length of the string representing an
integer type or expression @var{t} in decimal notation, including any
leading @code{-} character. This is one less than
@code{INT_BUFSIZE_BOUND (@var{t})}.
@findex TYPE_MINIMUM
@findex TYPE_MAXIMUM
@code{TYPE_MINIMUM (@var{t})} and @code{TYPE_MAXIMUM (@var{t})} are
integer constant expressions equal to the minimum and maximum
values of the integer type @var{t}. These expressions are of the type
@var{t}.
Example usage:
@example
#include <sys/types.h>
#include <intprops.h>
bool
in_off_t_range (long long int a)
@{
return TYPE_MINIMUM (off_t) <= a && a <= TYPE_MAXIMUM (off_t);
@}
@end example
@node Checking Integer Overflow
@subsection Checking Integer Overflow
@cindex integer overflow checking
Signed integer arithmetic has undefined behavior on overflow in C@.
Although almost all modern computers use two's complement signed
arithmetic that is well-defined to wrap around, C compilers routinely
optimize assuming that signed integer overflow cannot occur, which
means that a C program cannot easily get at the underlying machine
arithmetic. For example:
@example
if ((a + b < b) == (a < 0))
a += b;
else
printf ("overflow\n");
@end example
@noindent
might not work as expected if @code{a} and @code{b} are signed,
because a compiler can assume that signed overflow cannot occur and
treat the entire @code{if} expression as if it were true. And even if
@code{a} is unsigned, the expression might not work as expected if
@code{b} is negative or is wider than @code{a}.
The following macros work around this problem by yielding an overflow
indication while computing the sum, difference, or product of two
integers. For example, if @code{i} is of type @code{int},
@code{INT_ADD_OK (INT_MAX - 1, 1, &i)} sets @code{i} to
@code{INT_MAX} and yields 1, whereas @code{INT_ADD_OK (INT_MAX, 1,
&i)} yields 0.
Example usage:
@example
#include <intprops.h>
#include <stdio.h>
/* Compute A * B, reporting whether overflow occurred. */
void
print_product (long int a, long int b)
@{
long int r;
if (INT_MULTIPLY_OK (a, b, &r))
printf ("result is %ld\n", r);
else
printf ("overflow\n");
@}
@end example
These macros work for both signed and unsigned integers, so they can
be used with integer types like @code{time_t} that may or may not be
signed, depending on the platform.
These macros have the following restrictions:
@itemize @bullet
@item
Their first two arguments must be integer expressions.
@item
Their last argument must be a non-null pointer to an integer.
@item
They may evaluate their arguments zero or multiple times, so the
arguments should not have side effects.
@item
They are not necessarily constant expressions, even if all their
arguments are constant expressions.
@end itemize
@table @code
@item INT_ADD_OK (@var{a}, @var{b}, @var{r})
@findex INT_ADD_OK
Compute the sum of @var{a} and @var{b}. If it fits into
@code{*@var{r}}, store it there and yield 1. Otherwise yield
0, possibly modifying @code{*@var{r}} to an unspecified value.
See above for restrictions.
@item INT_SUBTRACT_OK (@var{a}, @var{b}, @var{r})
@findex INT_SUBTRACT_OK
Compute the difference between @var{a} and @var{b}. If it fits into
@code{*@var{r}}, store it there and yield 1. Otherwise yield
0, possibly modifying @code{*@var{r}} to an unspecified value.
See above for restrictions.
@item INT_MULTIPLY_OK (@var{a}, @var{b}, @var{r})
@findex INT_MULTIPLY_OK
Compute the product of @var{a} and @var{b}. If it fits into
@code{*@var{r}}, store it there and yield 1. Otherwise yield
0, possibly modifying @code{*@var{r}} to an unspecified value.
See above for restrictions.
@end table
Other macros are available if you need wrapped-around results when
overflow occurs (@pxref{Wraparound Arithmetic}), or if you need to
check for overflow in operations other than addition, subtraction, and
multiplication (@pxref{Integer Type Overflow}).
@node Wraparound Arithmetic
@subsection Wraparound Arithmetic with Integers
@cindex wraparound integer arithmetic
Signed integer arithmetic has undefined behavior on overflow in C@.
Although almost all modern computers use two's complement signed
arithmetic that is well-defined to wrap around, C compilers routinely
optimize assuming that signed integer overflow cannot occur, which
means that a C program cannot easily get at the underlying machine
arithmetic. For example, on a typical machine with 32-bit two's
complement @code{int} the expression @code{INT_MAX + 1} does not
necessarily yield @code{INT_MIN}, because the compiler may do
calculations with a 64-bit register, or may generate code that
traps on signed integer overflow.
The following macros work around this problem by storing the
wraparound value, i.e., the low-order bits of the correct answer, and
by yielding an overflow indication. For example, if @code{i} is of
type @code{int}, @code{INT_ADD_WRAPV (INT_MAX, 1, &i)} sets @code{i}
to @code{INT_MIN} and yields 1 on a two's complement machine.
@xref{Integer Type Overflow}.
Example usage:
@example
#include <intprops.h>
#include <stdio.h>
/* Print the low order bits of A * B,
reporting whether overflow occurred. */
void
print_product (long int a, long int b)
@{
long int r;
int overflow = INT_MULTIPLY_WRAPV (a, b, &r);
printf ("result is %ld (%s)\n", r,
(overflow
? "after overflow"
: "no overflow"));
@}
@end example
These macros work for both signed and unsigned integers, so they can
be used with integer types like @code{time_t} that may or may not be
signed, depending on the platform.
These macros have the following restrictions:
@itemize @bullet
@item
Their first two arguments must be integer expressions.
@item
Their last argument must be a non-null pointer to an integer.
@item
They may evaluate their arguments zero or multiple times, so the
arguments should not have side effects.
@item
They are not necessarily constant expressions, even if all their
arguments are constant expressions.
@end itemize
@table @code
@item INT_ADD_WRAPV (@var{a}, @var{b}, @var{r})
@findex INT_ADD_WRAPV
Store the low-order bits of the sum of @var{a} and @var{b} into
@code{*@var{r}}. Yield 1 if overflow occurred, 0 if the
low-order bits are the mathematically-correct sum. See above for
restrictions.
@item INT_SUBTRACT_WRAPV (@var{a}, @var{b}, @var{r})
@findex INT_SUBTRACT_WRAPV
Store the low-order bits of the difference between @var{a} and @var{b}
into @code{*@var{r}}. Yield 1 if overflow occurred, 0 if the
low-order bits are the mathematically-correct difference. See above
for restrictions.
@item INT_MULTIPLY_WRAPV (@var{a}, @var{b}, @var{r})
@findex INT_MULTIPLY_WRAPV
Store the low-order bits of the product of @var{a} and @var{b} into
@code{*@var{r}}. Yield 1 if overflow occurred, 0 if the
low-order bits are the mathematically-correct product. See above for
restrictions.
@end table
@mindex stdckdint-h
If your code includes @code{<intprops.h>} only for these @code{_WRAPV}
macros, you may prefer to use Gnulib's @code{stdckdint-h} module
instead, as it supports similar macros that were standardized in C23
and are therefore independent of Gnulib if your code can assume C23 or
later. @xref{stdckdint.h}.
Other macros are available if you do not need wrapped-around results
when overflow occurs (@pxref{Checking Integer Overflow}), or if you
need to check for overflow in operations other than addition,
subtraction, and multiplication (@pxref{Integer Type Overflow}).
@node Integer Type Overflow
@subsection Integer Type Overflow
@cindex integer type overflow
@cindex overflow, integer type
Although unsigned integer arithmetic wraps around modulo a power of
two, signed integer arithmetic has undefined behavior on overflow in
C@. Almost all modern computers use two's complement signed
arithmetic that is well-defined to wrap around, but C compilers
routinely optimize based on the assumption that signed integer
overflow cannot occur, which means that a C program cannot easily get
at the underlying machine behavior. For example, the signed integer
expression @code{(a + b < b) != (a < 0)} is not a reliable test for
whether @code{a + b} overflows, because a compiler can assume that
signed overflow cannot occur and treat the entire expression as if it
were false.
These macros yield 1 if the corresponding C operators overflow, 0 otherwise.
They work correctly on all known practical hosts, and do not
rely on undefined behavior due to signed arithmetic overflow. They
are integer constant expressions if their arguments are. They
are typically easier to use than the integer range overflow macros
(@pxref{Integer Range Overflow}), and they support more operations and
evaluation contexts than the integer overflow checking macros
(@pxref{Checking Integer Overflow}) or the wraparound macros
(@pxref{Wraparound Arithmetic}).
These macros can be tricky to use with arguments narrower than
@code{int}. For example, in the common case with 16-bit @code{short
int} and 32-bit @code{int}, if @code{a} and @code{b} are of type
@code{short int} then @code{INT_MULTIPLY_OVERFLOW (a, b)} always
yields 0, as @code{a * b} cannot overflow due to C's rule that
@code{a} and @code{b} are widened to @code{int} before multiplying.
For this reason, often it is better to use the integer overflow
checking macros (@pxref{Checking Integer Overflow}) or the wraparound
macros (@pxref{Wraparound Arithmetic}) when checking for overflow in
addition, subtraction, or multiplication.
Example usage:
@example
#include <intprops.h>
#include <limits.h>
#include <stdio.h>
/* Print A * B if in range, an overflow
indicator otherwise. */
void
print_product (long int a, long int b)
@{
if (INT_MULTIPLY_OVERFLOW (a, b))
printf ("multiply would overflow");
else
printf ("product is %ld", a * b);
@}
/* Does the product of two ints always fit
in a long int? */
enum @{
INT_PRODUCTS_FIT_IN_LONG
= ! (INT_MULTIPLY_OVERFLOW
((long int) INT_MIN, INT_MIN))
@};
@end example
@noindent
These macros have the following restrictions:
@itemize @bullet
@item
Their arguments must be integer expressions.
@item
They may evaluate their arguments zero or multiple times, so the
arguments should not have side effects.
@end itemize
@noindent
These macros are tuned for their last argument being a constant.
@table @code
@item INT_ADD_OVERFLOW (@var{a}, @var{b})
@findex INT_ADD_OVERFLOW
Yield 1 if @code{@var{a} + @var{b}} would overflow, 0 otherwise. See above for
restrictions.
@item INT_SUBTRACT_OVERFLOW (@var{a}, @var{b})
@findex INT_SUBTRACT_OVERFLOW
Yield 1 if @code{@var{a} - @var{b}} would overflow, 0 otherwise. See above for
restrictions.
@item INT_NEGATE_OVERFLOW (@var{a})
@findex INT_NEGATE_OVERFLOW
Yields 1 if @code{-@var{a}} would overflow, 0 otherwise.
See above for restrictions.
@item INT_MULTIPLY_OVERFLOW (@var{a}, @var{b})
@findex INT_MULTIPLY_OVERFLOW
Yield 1 if @code{@var{a} * @var{b}} would overflow, 0 otherwise. See above for
restrictions.
@item INT_DIVIDE_OVERFLOW (@var{a}, @var{b})
@findex INT_DIVIDE_OVERFLOW
Yield 1 if @code{@var{a} / @var{b}} would overflow, 0 otherwise. See above for
restrictions. Division overflow can happen on two's complement hosts
when dividing the most negative integer by @minus{}1. This macro does
not check for division by zero.
@item INT_REMAINDER_OVERFLOW (@var{a}, @var{b})
@findex INT_REMAINDER_OVERFLOW
Yield 1 if @code{@var{a} % @var{b}} would overflow, 0 otherwise. See above for
restrictions. Remainder overflow can happen on two's complement hosts
when dividing the most negative integer by @minus{}1; although the
mathematical result is always 0, in practice some implementations
trap, so this counts as an overflow. This macro does not check for
division by zero.
@item INT_LEFT_SHIFT_OVERFLOW (@var{a}, @var{b})
@findex INT_LEFT_SHIFT_OVERFLOW
Yield 1 if @code{@var{a} << @var{b}} would overflow, 0 otherwise. See above for
restrictions. The C standard says that behavior is undefined for
shifts unless 0@leq{}@var{b}<@var{w} where @var{w} is @var{a}'s word
width, and that when @var{a} is negative then @code{@var{a} <<
@var{b}} has undefined behavior, but this macro does not check these
other restrictions.
@end table
@node Integer Range Overflow
@subsection Integer Range Overflow
@cindex integer range overflow
@cindex overflow, integer range
These macros yield 1 if the corresponding C operators might not yield
numerically correct answers due to arithmetic overflow, and 0 if if
the operators do not overflow. They do not
rely on undefined or implementation-defined behavior. They are
integer constant expressions if their arguments are. Their
implementations are simple and straightforward, but they are typically
harder to use than the integer type overflow macros. @xref{Integer
Type Overflow}.
Although the implementation of these macros is similar to that
suggested in the SEI CERT C Secure Coding Standard,
in its two sections
``@url{https://www.securecoding.cert.org/confluence/display/c/INT30-C.+Ensure+that+unsigned+integer+operations+do+not+wrap,
INT30-C@. Ensure that unsigned integer operations do not wrap}'' and
``@url{https://www.securecoding.cert.org/confluence/display/c/INT32-C.+Ensure+that+operations+on+signed+integers+do+not+result+in+overflow,
INT32-C@. Ensure that operations on signed integers do not result in
overflow}'', Gnulib's implementation was derived independently of
CERT's suggestions.
Example usage:
@example
#include <intprops.h>
#include <limits.h>
#include <stdio.h>
void
print_product (long int a, long int b)
@{
if (INT_MULTIPLY_RANGE_OVERFLOW (a, b, LONG_MIN, LONG_MAX))
printf ("multiply would overflow");
else
printf ("product is %ld", a * b);
@}
/* Does the product of two ints always fit
in a long int? */
enum @{
INT_PRODUCTS_FIT_IN_LONG
= ! (INT_MULTIPLY_RANGE_OVERFLOW
((long int) INT_MIN, (long int) INT_MIN,
LONG_MIN, LONG_MAX))
@};
@end example
@noindent
These macros have the following restrictions:
@itemize @bullet
@item
Their arguments must be integer expressions.
@item
They may evaluate their arguments zero or multiple times, so
the arguments should not have side effects.
@item
The arithmetic arguments (including the @var{min} and @var{max}
arguments) must be of the same integer type after the usual arithmetic
conversions, and the type must have minimum value @var{min} and
maximum @var{max}. Unsigned values should use a zero @var{min} of the
proper type, for example, @code{(unsigned int) 0}.
@end itemize
@noindent
These macros are tuned for constant @var{min} and @var{max}. For
commutative operations such as @code{@var{a} + @var{b}}, they are also
tuned for constant @var{b}.
@table @code
@item INT_ADD_RANGE_OVERFLOW (@var{a}, @var{b}, @var{min}, @var{max})
@findex INT_ADD_RANGE_OVERFLOW
Yield 1 if @code{@var{a} + @var{b}} would overflow in
[@var{min},@var{max}] integer arithmetic, 0 otherwise.
See above for restrictions.
@item INT_SUBTRACT_RANGE_OVERFLOW (@var{a}, @var{b}, @var{min}, @var{max})
@findex INT_SUBTRACT_RANGE_OVERFLOW
Yield 1 if @code{@var{a} - @var{b}} would overflow in
[@var{min},@var{max}] integer arithmetic, 0 otherwise.
See above for restrictions.
@item INT_NEGATE_RANGE_OVERFLOW (@var{a}, @var{min}, @var{max})
@findex INT_NEGATE_RANGE_OVERFLOW
Yield 1 if @code{-@var{a}} would overflow in [@var{min},@var{max}]
integer arithmetic, 0 otherwise. See above for restrictions.
@item INT_MULTIPLY_RANGE_OVERFLOW (@var{a}, @var{b}, @var{min}, @var{max})
@findex INT_MULTIPLY_RANGE_OVERFLOW
Yield 1 if @code{@var{a} * @var{b}} would overflow in
[@var{min},@var{max}] integer arithmetic, 0 otherwise.
See above for restrictions.
@item INT_DIVIDE_RANGE_OVERFLOW (@var{a}, @var{b}, @var{min}, @var{max})
@findex INT_DIVIDE_RANGE_OVERFLOW
Yield 1 if @code{@var{a} / @var{b}} would overflow in
[@var{min},@var{max}] integer arithmetic, 0 otherwise.
See above for restrictions.
Division overflow can happen on two's complement hosts when dividing
the most negative integer by @minus{}1. This macro does not check for
division by zero.
@item INT_REMAINDER_RANGE_OVERFLOW (@var{a}, @var{b}, @var{min}, @var{max})
@findex INT_REMAINDER_RANGE_OVERFLOW
Yield 1 if @code{@var{a} % @var{b}} would overflow in
[@var{min},@var{max}] integer arithmetic, 0 otherwise.
See above for restrictions.
Remainder overflow can happen on two's complement hosts when dividing
the most negative integer by @minus{}1; although the mathematical
result is always 0, in practice some implementations trap, so this
counts as an overflow. This macro does not check for division by
zero.
@item INT_LEFT_SHIFT_RANGE_OVERFLOW (@var{a}, @var{b}, @var{min}, @var{max})
@findex INT_LEFT_SHIFT_RANGE_OVERFLOW
Yield 1 if @code{@var{a} << @var{b}} would overflow in
[@var{min},@var{max}] integer arithmetic, 0 otherwise.
See above for restrictions.
Here, @var{min} and @var{max} are for @var{a} only, and @var{b} need
not be of the same type as the other arguments. The C standard says
that behavior is undefined for shifts unless 0@leq{}@var{b}<@var{w}
where @var{w} is @var{a}'s word width, and that when @var{a} is negative
then @code{@var{a} << @var{b}} has undefined behavior, but this macro
does not check these other restrictions.
@end table