1/* Raise given exceptions.
2 Copyright (C) 1997-2024 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 <https://www.gnu.org/licenses/>. */
18
19#include <fenv.h>
20#include <float.h>
21#include <math.h>
22#include <shlib-compat.h>
23#include <math-barriers.h>
24
25int
26__feraiseexcept (int excepts)
27{
28 static const struct {
29 double zero, one, max, min, pi;
30 } c = {
31 0.0, 1.0, DBL_MAX, DBL_MIN, M_PI
32 };
33 double d;
34
35 /* Raise exceptions represented by EXPECTS. But we must raise only
36 one signal at a time. It is important the if the overflow/underflow
37 exception and the inexact exception are given at the same time,
38 the overflow/underflow exception follows the inexact exception. */
39
40 /* First: invalid exception. */
41 if ((FE_INVALID & excepts) != 0)
42 {
43 /* One example of an invalid operation is 0/0. */
44 __asm ("" : "=e" (d) : "0" (c.zero));
45 d /= c.zero;
46 math_force_eval (d);
47 }
48
49 /* Next: division by zero. */
50 if ((FE_DIVBYZERO & excepts) != 0)
51 {
52 __asm ("" : "=e" (d) : "0" (c.one));
53 d /= c.zero;
54 math_force_eval (d);
55 }
56
57 /* Next: overflow. */
58 if ((FE_OVERFLOW & excepts) != 0)
59 {
60 __asm ("" : "=e" (d) : "0" (c.max));
61 d *= d;
62 math_force_eval (d);
63 }
64
65 /* Next: underflow. */
66 if ((FE_UNDERFLOW & excepts) != 0)
67 {
68 __asm ("" : "=e" (d) : "0" (c.min));
69 d *= d;
70 math_force_eval (d);
71 }
72
73 /* Last: inexact. */
74 if ((FE_INEXACT & excepts) != 0)
75 {
76 __asm ("" : "=e" (d) : "0" (c.one));
77 d /= c.pi;
78 math_force_eval (d);
79 }
80
81 /* Success. */
82 return 0;
83}
84
85#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
86strong_alias (__feraiseexcept, __old_feraiseexcept)
87compat_symbol (libm, __old_feraiseexcept, feraiseexcept, GLIBC_2_1);
88#endif
89
90libm_hidden_def (__feraiseexcept)
91libm_hidden_ver (__feraiseexcept, feraiseexcept)
92versioned_symbol (libm, __feraiseexcept, feraiseexcept, GLIBC_2_2);
93

source code of glibc/sysdeps/sparc/fpu/fraiseexcpt.c