2018-01-29 18:26:35 +00:00
|
|
|
/* FPU control word bits. RISC-V version.
|
2021-01-02 19:32:25 +00:00
|
|
|
Copyright (C) 1996-2021 Free Software Foundation, Inc.
|
2018-01-29 18:26:35 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library. If not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2018-01-29 18:26:35 +00:00
|
|
|
|
|
|
|
#ifndef _FPU_CONTROL_H
|
|
|
|
#define _FPU_CONTROL_H
|
|
|
|
|
|
|
|
#include <features.h>
|
|
|
|
|
|
|
|
#ifndef __riscv_flen
|
|
|
|
|
|
|
|
# define _FPU_RESERVED 0xffffffff
|
|
|
|
# define _FPU_DEFAULT 0x00000000
|
|
|
|
typedef unsigned int fpu_control_t;
|
|
|
|
# define _FPU_GETCW(cw) (cw) = 0
|
|
|
|
# define _FPU_SETCW(cw) do { } while (0)
|
|
|
|
extern fpu_control_t __fpu_control;
|
|
|
|
|
|
|
|
#else /* __riscv_flen */
|
|
|
|
|
|
|
|
# define _FPU_RESERVED 0
|
|
|
|
# define _FPU_DEFAULT 0
|
|
|
|
# define _FPU_IEEE _FPU_DEFAULT
|
|
|
|
|
|
|
|
/* Type of the control word. */
|
|
|
|
typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__)));
|
|
|
|
|
|
|
|
/* Macros for accessing the hardware control word. */
|
|
|
|
# define _FPU_GETCW(cw) __asm__ volatile ("frsr %0" : "=r" (cw))
|
|
|
|
# define _FPU_SETCW(cw) __asm__ volatile ("fssr %z0" : : "rJ" (cw))
|
|
|
|
|
|
|
|
/* Default control word set at startup. */
|
|
|
|
extern fpu_control_t __fpu_control;
|
|
|
|
|
|
|
|
# define _FCLASS(x) (__extension__ ({ int __res; \
|
|
|
|
if (sizeof (x) * 8 > __riscv_flen) __builtin_trap (); \
|
|
|
|
if (sizeof (x) == 4) asm ("fclass.s %0, %1" : "=r" (__res) : "f" (x)); \
|
|
|
|
else if (sizeof (x) == 8) asm ("fclass.d %0, %1" : "=r" (__res) : "f" (x)); \
|
|
|
|
else __builtin_trap (); \
|
|
|
|
__res; }))
|
|
|
|
|
|
|
|
# define _FCLASS_MINF (1 << 0)
|
|
|
|
# define _FCLASS_MNORM (1 << 1)
|
|
|
|
# define _FCLASS_MSUBNORM (1 << 2)
|
|
|
|
# define _FCLASS_MZERO (1 << 3)
|
|
|
|
# define _FCLASS_PZERO (1 << 4)
|
|
|
|
# define _FCLASS_PSUBNORM (1 << 5)
|
|
|
|
# define _FCLASS_PNORM (1 << 6)
|
|
|
|
# define _FCLASS_PINF (1 << 7)
|
|
|
|
# define _FCLASS_SNAN (1 << 8)
|
|
|
|
# define _FCLASS_QNAN (1 << 9)
|
|
|
|
# define _FCLASS_ZERO (_FCLASS_MZERO | _FCLASS_PZERO)
|
|
|
|
# define _FCLASS_SUBNORM (_FCLASS_MSUBNORM | _FCLASS_PSUBNORM)
|
|
|
|
# define _FCLASS_NORM (_FCLASS_MNORM | _FCLASS_PNORM)
|
|
|
|
# define _FCLASS_INF (_FCLASS_MINF | _FCLASS_PINF)
|
|
|
|
# define _FCLASS_NAN (_FCLASS_SNAN | _FCLASS_QNAN)
|
|
|
|
|
|
|
|
#endif /* __riscv_flen */
|
|
|
|
|
|
|
|
#endif /* fpu_control.h */
|