Blame sysdeps/s390/fpu/fenv_libc.h

Packit 6c4009
/* Copyright (C) 2000-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com).
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#ifndef _FENV_LIBC_H
Packit 6c4009
#define _FENV_LIBC_H    1
Packit 6c4009
Packit 6c4009
#include <fenv.h>
Packit 6c4009
Packit 6c4009
/* Definitions from asm/s390-regs-common.h that are needed in glibc.  */
Packit 6c4009
Packit 6c4009
Packit 6c4009
#define FPC_EXCEPTION_MASK	0xF8000000
Packit 6c4009
#define FPC_FLAGS_MASK		0x00F80000
Packit 6c4009
#define FPC_DXC_MASK		0x0000FF00
Packit 6c4009
#define FPC_RM_MASK		0x00000003
Packit 6c4009
#define FPC_VALID_MASK		((FPC_EXCEPTION_MASK|FPC_FLAGS_MASK| \
Packit 6c4009
				 FPC_DXC_MASK|FPC_RM_MASK))
Packit 6c4009
Packit 6c4009
#define FPC_EXCEPTION_MASK_SHIFT	24
Packit 6c4009
#define FPC_FLAGS_SHIFT			16
Packit 6c4009
#define FPC_DXC_SHIFT			8
Packit 6c4009
#define FPC_NOT_FPU_EXCEPTION		0x300
Packit 6c4009
Packit 6c4009
#endif /* _FENV_LIBC_H */