]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S
3388c35e6c4bab309cac2939350b553a53f5ab9c
[thirdparty/glibc.git] / sysdeps / powerpc / powerpc64 / power5+ / fpu / s_llround.S
1 /* llround function. POWER5+, PowerPC64 version.
2 Copyright (C) 2006-2016 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 /* long long [r3] llround (float x [fp1])
23 IEEE 1003.1 llround function. IEEE specifies "round to the nearest
24 integer value, rounding halfway cases away from zero, regardless of
25 the current rounding mode." However PowerPC Architecture defines
26 "round to Nearest" as "Choose the best approximation. In case of a
27 tie, choose the one that is even (least significant bit o).".
28 So we pre-round using the V2.02 Floating Round to Integer Nearest
29 instruction before we use Floating Convert to Integer Word with
30 round to zero instruction. */
31
32 .machine "power5"
33 EALIGN (__llround, 4, 0)
34 CALL_MCOUNT 0
35 frin fp2, fp1 /* Round to nearest +-0.5. */
36 fctidz fp3, fp2 /* Convert To Integer DW round toward 0. */
37 stfd fp3, -16(r1)
38 nop /* Insure the following load is in a different dispatch group */
39 nop /* to avoid pipe stall on POWER4&5. */
40 nop
41 ld r3, -16(r1)
42 blr
43 END (__llround)
44
45 strong_alias (__llround, __lround)
46 weak_alias (__llround, llround)
47 weak_alias (__lround, lround)
48
49 #ifdef NO_LONG_DOUBLE
50 weak_alias (__llround, llroundl)
51 strong_alias (__llround, __llroundl)
52 weak_alias (__lround, lroundl)
53 strong_alias (__lround, __lroundl)
54 #endif
55 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)
56 compat_symbol (libm, __llround, llroundl, GLIBC_2_1)
57 compat_symbol (libm, __lround, lroundl, GLIBC_2_1)
58 #endif