OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libgfortran/] [config/] [fpu-sysv.h] - Blame information for rev 20

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 14 jlechner
/* SysV FPU-related code (for systems not otherwise supported).
2
   Copyright 2005 Free Software Foundation, Inc.
3
   Contributed by Francois-Xavier Coudert <coudert@clipper.ens.fr>
4
 
5
This file is part of the GNU Fortran 95 runtime library (libgfortran).
6
 
7
Libgfortran is free software; you can redistribute it and/or
8
modify it under the terms of the GNU General Public
9
License as published by the Free Software Foundation; either
10
version 2 of the License, or (at your option) any later version.
11
 
12
In addition to the permissions in the GNU General Public License, the
13
Free Software Foundation gives you unlimited permission to link the
14
compiled version of this file into combinations with other programs,
15
and to distribute those combinations without any restriction coming
16
from the use of this file.  (The General Public License restrictions
17
do apply in other respects; for example, they cover modification of
18
the file, and distribution when not linked into a combine
19
executable.)
20
 
21
Libgfortran is distributed in the hope that it will be useful,
22
but WITHOUT ANY WARRANTY; without even the implied warranty of
23
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
GNU General Public License for more details.
25
 
26
You should have received a copy of the GNU General Public
27
License along with libgfortran; see the file COPYING.  If not,
28
write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29
Boston, MA 02110-1301, USA.  */
30
 
31
 
32
/* FPU-related code for SysV platforms with fpsetmask().  */
33
#ifdef HAVE_IEEEFP_H
34
#include <ieeefp.h>
35
#endif
36
 
37
void
38
set_fpu (void)
39
{
40
  int cw = 0;
41
 
42
  if (options.fpe & GFC_FPE_INVALID)
43
#ifdef FP_X_INV
44
    cw |= FP_X_INV;
45
#else
46
    st_printf ("Fortran runtime warning: IEEE 'invalid operation' "
47
               "exception not supported.\n");
48
#endif
49
 
50
  if (options.fpe & GFC_FPE_DENORMAL)
51
#ifdef FP_X_DNML
52
    cw |= FP_X_DNML;
53
#else
54
    st_printf ("Fortran runtime warning: IEEE 'denormal number' "
55
               "exception not supported.\n");
56
#endif
57
 
58
  if (options.fpe & GFC_FPE_ZERO)
59
#ifdef FP_X_DZ
60
    cw |= FP_X_DZ;
61
#else
62
    st_printf ("Fortran runtime warning: IEEE 'division by zero' "
63
               "exception not supported.\n");
64
#endif
65
 
66
  if (options.fpe & GFC_FPE_OVERFLOW)
67
#ifdef FP_X_OFL
68
    cw |= FP_X_OFL;
69
#else
70
    st_printf ("Fortran runtime warning: IEEE 'overflow' "
71
               "exception not supported.\n");
72
#endif
73
 
74
  if (options.fpe & GFC_FPE_UNDERFLOW)
75
#ifdef FP_X_UFL
76
    cw |= FP_X_UFL;
77
#else
78
    st_printf ("Fortran runtime warning: IEEE 'underflow' "
79
               "exception not supported.\n");
80
#endif
81
 
82
  if (options.fpe & GFC_FPE_PRECISION)
83
#ifdef FP_X_IMP
84
    cw |= FP_X_IMP;
85
#else
86
    st_printf ("Fortran runtime warning: IEEE 'loss of precision' "
87
               "exception not supported.\n");
88
#endif
89
 
90
  fpsetmask(cw);
91
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.