autoupdate
[gnulib.git] / lib / totalorderf.c
blobf8af4b0241cfb9ed22becaae5d96297c20585a32
1 /* Total order for 'float'
2 Copyright 2023-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation, either version 3 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Paul Eggert. */
19 #include <config.h>
21 /* Specification. */
22 #include <math.h>
24 #include <string.h>
26 int
27 totalorderf (float const *x, float const *y)
29 /* If the sign bits of *X and *Y differ, the one with non-zero sign bit
30 is "smaller" than the one with sign bit == 0. */
31 int xs = signbit (*x);
32 int ys = signbit (*y);
33 if (!xs != !ys)
34 return xs;
36 /* If one of *X, *Y is a NaN and the other isn't, the answer is easy
37 as well: the negative NaN is "smaller", the positive NaN is "greater"
38 than the other argument. */
39 int xn = isnanf (*x);
40 int yn = isnanf (*y);
41 if (!xn != !yn)
42 return !xn == !xs;
43 /* If none of *X, *Y is a NaN, the '<=' operator does the job, including
44 for -Infinity and +Infinity. */
45 if (!xn)
46 return *x <= *y;
48 /* At this point, *X and *Y are NaNs with the same sign bit. */
50 unsigned int extended_sign = -!!xs;
51 #if defined __hppa || (defined __mips__ && !MIPS_NAN2008_FLOAT) || defined __sh__
52 /* Invert the most significant bit of the mantissa field. Cf. snan.h. */
53 extended_sign ^= (1U << 22);
54 #endif
55 union { unsigned int i; float f; } xu = {0}, yu = {0};
56 #if 0
57 xu.f = *x;
58 yu.f = *y;
59 #else
60 # if defined __GNUC__ || defined __clang__
61 /* Prevent gcc and clang from reusing the values of *x and *y (fetched above)
62 in optimized inlined memcpy expansions.
63 Seen with gcc <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114659>
64 and with clang 16.0.6 on OpenBSD 7.5. */
65 __asm__ __volatile__ ("" : : : "memory");
66 # endif
67 /* On 32-bit x86 processors, as well as on x86_64 processors with
68 CC="gcc -mfpmath=387", the evaluation of *x and *y above is done through
69 an 'flds' instruction, which converts a signalling NaN to a quiet NaN. See
70 <https://lists.gnu.org/archive/html/bug-gnulib/2023-10/msg00060.html>
71 for details. Use memcpy to avoid this. */
72 memcpy (&xu.f, x, sizeof (float));
73 memcpy (&yu.f, y, sizeof (float));
74 #endif
75 return (xu.i ^ extended_sign) <= (yu.i ^ extended_sign);