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