]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/sparc/fpu/fraiseexcpt.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / sparc / fpu / fraiseexcpt.c
CommitLineData
ca34d7a7 1/* Raise given exceptions.
bfff8b1b 2 Copyright (C) 1997-2017 Free Software Foundation, Inc.
ca34d7a7
UD
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
41bdb6e2
AJ
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.
ca34d7a7
UD
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
41bdb6e2 13 Lesser General Public License for more details.
ca34d7a7 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
ca34d7a7
UD
18
19#include <fenv.h>
7e118246 20#include <float.h>
ca34d7a7 21#include <math.h>
1a6d7967 22#include <shlib-compat.h>
ca34d7a7 23
63ae7b63
UD
24int
25__feraiseexcept (int excepts)
ca34d7a7 26{
f41c8091 27 static const struct {
e4720b0e 28 double zero, one, max, min, pi;
f41c8091 29 } c = {
e4720b0e 30 0.0, 1.0, DBL_MAX, DBL_MIN, M_PI
f41c8091 31 };
c4a4875d 32 double d;
f41c8091 33
ca34d7a7
UD
34 /* Raise exceptions represented by EXPECTS. But we must raise only
35 one signal at a time. It is important the if the overflow/underflow
36 exception and the inexact exception are given at the same time,
37 the overflow/underflow exception follows the inexact exception. */
38
39 /* First: invalid exception. */
40 if ((FE_INVALID & excepts) != 0)
c4a4875d 41 {
c0c3f78a 42 /* One example of an invalid operation is 0/0. */
c4a4875d
RM
43 __asm ("" : "=e" (d) : "0" (c.zero));
44 d /= c.zero;
45 __asm __volatile ("" : : "e" (d));
46 }
ca34d7a7
UD
47
48 /* Next: division by zero. */
49 if ((FE_DIVBYZERO & excepts) != 0)
c4a4875d
RM
50 {
51 __asm ("" : "=e" (d) : "0" (c.one));
52 d /= c.zero;
53 __asm __volatile ("" : : "e" (d));
54 }
ca34d7a7
UD
55
56 /* Next: overflow. */
57 if ((FE_OVERFLOW & excepts) != 0)
c4a4875d
RM
58 {
59 __asm ("" : "=e" (d) : "0" (c.max));
60 d *= d;
61 __asm __volatile ("" : : "e" (d));
62 }
ca34d7a7
UD
63
64 /* Next: underflow. */
65 if ((FE_UNDERFLOW & excepts) != 0)
c4a4875d
RM
66 {
67 __asm ("" : "=e" (d) : "0" (c.min));
e4720b0e 68 d *= d;
c4a4875d
RM
69 __asm __volatile ("" : : "e" (d));
70 }
ca34d7a7
UD
71
72 /* Last: inexact. */
73 if ((FE_INEXACT & excepts) != 0)
c4a4875d
RM
74 {
75 __asm ("" : "=e" (d) : "0" (c.one));
76 d /= c.pi;
77 __asm __volatile ("" : : "e" (d));
78 }
63ae7b63
UD
79
80 /* Success. */
81 return 0;
ca34d7a7 82}
1a6d7967
UD
83
84#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
63ae7b63 85strong_alias (__feraiseexcept, __old_feraiseexcept)
1a6d7967
UD
86compat_symbol (libm, __old_feraiseexcept, feraiseexcept, GLIBC_2_1);
87#endif
88
0747f818 89libm_hidden_def (__feraiseexcept)
76f2646f 90libm_hidden_ver (__feraiseexcept, feraiseexcept)
1a6d7967 91versioned_symbol (libm, __feraiseexcept, feraiseexcept, GLIBC_2_2);