summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/nds32/w_sqrt.S
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2014-12-15 13:27:38 +0000
committerCorinna Vinschen <corinna@vinschen.de>2014-12-15 13:27:38 +0000
commit0cbcde7bdbecd41228cd09bb102ef73cde5aef96 (patch)
treec51be976d46231cbd3f5b9291bc5a1e856b5d28a /newlib/libm/machine/nds32/w_sqrt.S
parent601c50292b9a98a3040cb92cb23f4af258bbb9e2 (diff)
downloadcygnal-0cbcde7bdbecd41228cd09bb102ef73cde5aef96.tar.gz
cygnal-0cbcde7bdbecd41228cd09bb102ef73cde5aef96.tar.bz2
cygnal-0cbcde7bdbecd41228cd09bb102ef73cde5aef96.zip
* configure.host: Add libm nds32 machine directory.
* libm/machine/configure: Regenerated. * libm/machine/configure.in: Add nds32 AC_CONFIG. * libm/machine/nds32/Makefile.am: New file. * libm/machine/nds32/Makefile.in: Generated. * libm/machine/nds32/aclocal.m4: Generated. * libm/machine/nds32/configure: Generated. * libm/machine/nds32/configure.in: New file. * libm/machine/nds32/w_sqrt.S: New file. * libm/machine/nds32/wf_sqrt.S: New file.
Diffstat (limited to 'newlib/libm/machine/nds32/w_sqrt.S')
-rw-r--r--newlib/libm/machine/nds32/w_sqrt.S68
1 files changed, 68 insertions, 0 deletions
diff --git a/newlib/libm/machine/nds32/w_sqrt.S b/newlib/libm/machine/nds32/w_sqrt.S
new file mode 100644
index 000000000..a3c543d0d
--- /dev/null
+++ b/newlib/libm/machine/nds32/w_sqrt.S
@@ -0,0 +1,68 @@
+/*
+Copyright (c) 2013-2014 Andes Technology Corporation.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ The name of the company may not be used to endorse or promote
+ products derived from this software without specific prior written
+ permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL RED HAT INCORPORATED BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+ .text
+ .align 1
+ .global sqrt
+ .type sqrt, @function
+sqrt:
+ /* The input argument is supposed to be stored in $fd0.
+ The return value is supposed to be stored in $fd0 either. */
+
+ /* Clear the IEEE cumulative exceptions flags. ($fpcsr.b[6:2]) */
+ FMFCSR $r0
+ bitci $r0, $r0, #0b1111100
+ FMTCSR $r0
+
+ fsqrtd $fd0, $fd0
+
+ /* Check the IEEE cumulative exceptions flags. */
+ FMFCSR $r0
+ bmski33 $r0, #2 /* Is $fpcsr.IVO('b2) set ? */
+ bnez $r0, .L_EDOM /* Set errno as EDOM. */
+
+ bmski33 $r0, #4 /* Is $fpcsr.OVF('b4) set ? */
+ bnez $r0, .L_ERANGE /* Set errno as ERANGE. */
+
+ bmski33 $r0, #5 /* Is $fpcsr.UDF('b5) set ? */
+ bnez $r0, .L_ERANGE /* Set errno as ERANGE. */
+
+ /* No error at all. Just ret. */
+ ret
+
+.L_EDOM:
+ movi $r0, #33 /* EDOM: Math arg out of domain of func. */
+ j .L_Set_errno
+.L_ERANGE:
+ movi $r0, #34 /* ERANGE: Math result not representable. */
+.L_Set_errno:
+ l.w $r15, _impure_ptr
+ swi $r0, [$r15] /* Set errno. */
+ ret
+ .size sqrt, .-sqrt