]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S
67492dcce00f755b0479d26f678cd32903e7b6ed
[thirdparty/glibc.git] / sysdeps / powerpc / powerpc64 / power8 / fpu / s_finite.S
1 /* isfinite(). PowerPC64/POWER8 version.
2 Copyright (C) 2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #include <sysdep.h>
20 #include <math_ldbl_opt.h>
21
22 #define MFVSRD_R3_V1 .long 0x7c230066 /* mfvsrd r3,vs1 */
23
24 /* int [r3] __finite ([fp1] x) */
25
26 EALIGN (__finite, 4, 0)
27 CALL_MCOUNT 0
28 MFVSRD_R3_V1
29 lis r9,0x8010
30 clrldi r3,r3,1 /* r3 = r3 & 0x8000000000000000 */
31 rldicr r9,r9,32,31 /* r9 = (r9 << 32) & 0xffffffff */
32 add r3,r3,r9
33 rldicl r3,r3,1,63
34 blr
35 END (__finite)
36
37 hidden_def (__finite)
38 weak_alias (__finite, finite)
39
40 /* It turns out that the 'double' version will also always work for
41 single-precision. */
42 strong_alias (__finite, __finitef)
43 hidden_def (__finitef)
44 weak_alias (__finitef, finitef)
45
46 #if IS_IN (libm)
47 # if LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)
48 compat_symbol (libm, __finite, __finitel, GLIBC_2_0)
49 compat_symbol (libm, finite, finitel, GLIBC_2_0)
50 # endif
51 #else
52 # if LONG_DOUBLE_COMPAT (libc, GLIBC_2_0)
53 compat_symbol (libc, __finite, __finitel, GLIBC_2_0);
54 compat_symbol (libc, finite, finitel, GLIBC_2_0);
55 # endif
56 #endif