chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / ports / sysdeps / powerpc / powerpc32 / e500 / spe-raise.c
1 /* Raise given exceptions.
2    Copyright (C) 1997,99,2000,01,02,04 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, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 #include <fenv_libc.h>
21 #include <bp-sym.h>
22
23 int
24 __FERAISEEXCEPT_INTERNAL (int excepts)
25 {
26   unsigned long f;
27
28   f = fegetenv_register ();
29   f |= (excepts & FE_ALL_EXCEPT);
30   fesetenv_register (f);
31
32   /* Force the operations that cause the exceptions.  */
33   if ((FE_INVALID & excepts) != 0)
34     {
35       /* ?? Does not set sticky bit ?? */
36       /* 0 / 0 */
37       asm volatile ("efsdiv %0,%0,%1" : : "r" (0), "r" (0));
38     }
39
40   if ((FE_DIVBYZERO & excepts) != 0)
41     {
42       /* 1.0 / 0.0 */
43       asm volatile ("efsdiv %0,%0,%1" : : "r" (1.0F), "r" (0));
44     }
45
46   if ((FE_OVERFLOW & excepts) != 0)
47     {
48       /* ?? Does not set sticky bit ?? */
49       /* Largest normalized number plus itself.  */
50       asm volatile ("efsadd %0,%0,%1" : : "r" (0x7f7fffff), "r" (0x7f7fffff));
51     }
52
53   if ((FE_UNDERFLOW & excepts) != 0)
54     {
55       /* ?? Does not set sticky bit ?? */
56       /* Smallest normalized number times itself.  */
57       asm volatile ("efsmul %0,%0,%1" : : "r" (0x800000), "r" (0x800000));
58     }
59
60   if ((FE_INEXACT & excepts) != 0)
61     {
62       /* Smallest normalized minus 1.0 raises the inexact flag.  */
63       asm volatile ("efssub %0,%0,%1" : : "r" (0x00800000), "r" (1.0F));
64     }
65
66   /* Success.  */
67   return 0;
68 }