Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / powerpc / powerpc32 / power4 / fpu / w_sqrtf.S
blob5143117f90ed292b8befab19cd420bf0f966c282
1 /* sqrtf function.  PowerPC32 version.
2    Copyright (C) 2007-2014 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
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.
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.
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/>.  */
19 #include <sysdep.h>
20 #include <math_ldbl_opt.h>
22 /* float [fp1] sqrts (float x [fp1])
23    Power4 (ISA V2.0) and above implement sqrt in hardware (not optional).
24    The fsqrts instruction generates the correct value for all inputs and
25    sets the appropriate floating point exceptions.  Extended checking is
26    only needed to set errno (via __kernel_standard) if the input value
27    is negative.
29    The fsqrts will set FPCC and FU (Floating Point Unordered or NaN
30    to indicated that the input value was negative or NaN. Use Move to
31    Condition Register from FPSCR to copy the FPCC field to cr1.  The
32    branch on summary overflow transfers control to w_sqrt to process
33    any error conditions. Otherwise we can return the result directly.
35    This part of the function is a leaf routine,  so no need to stack a
36    frame or execute prologue/epilogue code. This means it is safe to
37    transfer directly to w_sqrt as long as the input value (f1) is
38    preserved. Putting the sqrt result into f2 (float parameter 2)
39    allows passing both the input value and sqrt result into the extended
40    wrapper so there is no need to recompute.
42    This tactic avoids the overhead of stacking a frame for the normal
43    (non-error) case.  Until gcc supports prologue shrink-wrapping
44    this is the best we can do.  */
46         .section        ".text"
47         .machine power4
48 EALIGN (__sqrtf, 5, 0)
49         fsqrts  fp2,fp1
50         mcrfs   cr1,4
51         bso-    cr1,.Lw_sqrtf
52         fmr     fp1,fp2
53         blr
54         .align 4
55 .Lw_sqrtf:
56         mflr    r0
57         stwu    r1,-16(r1)
58         cfi_adjust_cfa_offset(16)
59         fmr     fp12,fp2
60         stw     r0,20(r1)
61         stw     r30,8(r1)
62         cfi_offset(lr,20-16)
63         cfi_offset(r30,8-16)
64 #ifdef SHARED
65         SETUP_GOT_ACCESS(r30,got_label)
66         addis   r30,r30,_GLOBAL_OFFSET_TABLE_-got_label@ha
67         addi    r30,r30,_GLOBAL_OFFSET_TABLE_-got_label@l
68         lwz     r9,_LIB_VERSION@got(30)
69         lwz     r0,0(r9)
70 #else
71         lis     r9,_LIB_VERSION@ha
72         lwz     r0,_LIB_VERSION@l(r9)
73 #endif
74 /*  if (_LIB_VERSION == _IEEE_) return z; */
75         cmpwi   cr7,r0,-1
76         beq-    cr7,.L4
77 /*  if (x != x, 0) return z; !isnan */
78         fcmpu   cr7,fp1,fp1
79         bne-    cr7,.L4
80 /*  if  (x < 0.0)
81     return __kernel_standard (x, x, 126) */
82         fmr     fp2,fp1
83         fabs    fp0,fp1
84         li      r3,126
85         fcmpu   cr7,1,0
86         bne-    cr7,.L11
87 .L4:
88         lwz     r0,20(r1)
89         fmr     fp1,fp12
90         lwz     r30,8(r1)
91         addi    r1,r1,16
92         mtlr    r0
93         blr
94 .L11:
95         bl      __kernel_standard@plt
96         fmr     fp12,fp1
97         b       .L4
98         END     (__sqrtf)
100 weak_alias (__sqrtf, sqrtf)