qemu-patch-raspberry4/tests/tcg/i386/test-i386-fp-exceptions.c
Joseph Myers 975af797f1 target/i386: fix IEEE x87 floating-point exception raising
Most x87 instruction implementations fail to raise the expected IEEE
floating-point exceptions because they do nothing to convert the
exception state from the softfloat machinery into the exception flags
in the x87 status word.  There is special-case handling of division to
raise the divide-by-zero exception, but that handling is itself buggy:
it raises the exception in inappropriate cases (inf / 0 and nan / 0,
which should not raise any exceptions, and 0 / 0, which should raise
"invalid" instead).

Fix this by converting the floating-point exceptions raised during an
operation by the softfloat machinery into exceptions in the x87 status
word (passing through the existing fpu_set_exception function for
handling related to trapping exceptions).  There are special cases
where some functions convert to integer internally but exceptions from
that conversion are not always correct exceptions for the instruction
to raise.

There might be scope for some simplification if the softfloat
exception state either could always be assumed to be in sync with the
state in the status word, or could always be ignored at the start of
each instruction and just set to 0 then; I haven't looked into that in
detail, and it might run into interactions with the various ways the
emulation does not yet handle trapping exceptions properly.  I think
the approach taken here, of saving the softfloat state, setting
exceptions there to 0 and then merging the old exceptions back in
after carrying out the operation, is conservatively safe.

Signed-off-by: Joseph Myers <joseph@codesourcery.com>
Message-Id: <alpine.DEB.2.21.2005152120280.3469@digraph.polyomino.org.uk>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2020-06-10 12:10:51 -04:00

832 lines
25 KiB
C

/* Test floating-point exceptions. */
#include <float.h>
#include <stdint.h>
#include <stdio.h>
union u {
struct { uint64_t sig; uint16_t sign_exp; } s;
long double ld;
};
volatile float f_res;
volatile double d_res;
volatile long double ld_res;
volatile long double ld_res2;
volatile union u ld_invalid_1 = { .s = { 1, 1234 } };
volatile float f_snan = __builtin_nansf("");
volatile double d_snan = __builtin_nans("");
volatile long double ld_third = 1.0L / 3.0L;
volatile long double ld_snan = __builtin_nansl("");
volatile long double ld_nan = __builtin_nanl("");
volatile long double ld_inf = __builtin_infl();
volatile long double ld_ninf = -__builtin_infl();
volatile long double ld_one = 1.0L;
volatile long double ld_zero = 0.0L;
volatile long double ld_nzero = -0.0L;
volatile long double ld_min = LDBL_MIN;
volatile long double ld_max = LDBL_MAX;
volatile long double ld_nmax = -LDBL_MAX;
#define IE (1 << 0)
#define ZE (1 << 2)
#define OE (1 << 3)
#define UE (1 << 4)
#define PE (1 << 5)
#define EXC (IE | ZE | OE | UE | PE)
int main(void)
{
short sw;
unsigned char out[10];
int ret = 0;
int16_t res_16;
int32_t res_32;
int64_t res_64;
__asm__ volatile ("fnclex");
ld_res = f_snan;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: widen float snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = d_snan;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: widen double snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
f_res = ld_min;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (UE | PE)) {
printf("FAIL: narrow float underflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
d_res = ld_min;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (UE | PE)) {
printf("FAIL: narrow double underflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
f_res = ld_max;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (OE | PE)) {
printf("FAIL: narrow float overflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
d_res = ld_max;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (OE | PE)) {
printf("FAIL: narrow double overflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
f_res = ld_third;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: narrow float inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
d_res = ld_third;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: narrow double inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
f_res = ld_snan;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: narrow float snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
d_res = ld_snan;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: narrow double snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
f_res = ld_invalid_1.ld;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: narrow float invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
d_res = ld_invalid_1.ld;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: narrow double invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("frndint" : "=t" (ld_res) : "0" (ld_min));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: frndint min\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("frndint" : "=t" (ld_res) : "0" (ld_snan));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: frndint snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("frndint" : "=t" (ld_res) : "0" (ld_invalid_1.ld));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: frndint invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fcom" : : "t" (ld_nan), "u" (ld_zero));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fcom nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fucom" : : "t" (ld_nan), "u" (ld_zero));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != 0) {
printf("FAIL: fucom nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fucom" : : "t" (ld_snan), "u" (ld_zero));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fucom snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fucom" : : "t" (1.0L), "u" (ld_invalid_1.ld));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fucom invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_max + ld_max;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (OE | PE)) {
printf("FAIL: add overflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_max + ld_min;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: add inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_inf + ld_ninf;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: add inf -inf\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_snan + ld_third;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: add snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_third + ld_invalid_1.ld;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: add invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_max - ld_nmax;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (OE | PE)) {
printf("FAIL: sub overflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_max - ld_min;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: sub inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_inf - ld_inf;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: sub inf inf\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_snan - ld_third;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: sub snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_third - ld_invalid_1.ld;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: sub invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_max * ld_max;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (OE | PE)) {
printf("FAIL: mul overflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_third * ld_third;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: mul inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_min * ld_min;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (UE | PE)) {
printf("FAIL: mul underflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_inf * ld_zero;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: mul inf 0\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_snan * ld_third;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: mul snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_third * ld_invalid_1.ld;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: mul invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_max / ld_min;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (OE | PE)) {
printf("FAIL: div overflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_one / ld_third;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: div inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_min / ld_max;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (UE | PE)) {
printf("FAIL: div underflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_one / ld_zero;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != ZE) {
printf("FAIL: div 1 0\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_inf / ld_zero;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != 0) {
printf("FAIL: div inf 0\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_nan / ld_zero;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != 0) {
printf("FAIL: div nan 0\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_zero / ld_zero;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: div 0 0\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_inf / ld_inf;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: div inf inf\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_snan / ld_third;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: div snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
ld_res = ld_third / ld_invalid_1.ld;
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: div invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fsqrt" : "=t" (ld_res) : "0" (ld_max));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: fsqrt inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fsqrt" : "=t" (ld_res) : "0" (ld_nmax));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fsqrt -max\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fsqrt" : "=t" (ld_res) : "0" (ld_ninf));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fsqrt -inf\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fsqrt" : "=t" (ld_res) : "0" (ld_snan));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fsqrt snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fsqrt" : "=t" (ld_res) : "0" (ld_invalid_1.ld));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fsqrt invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fsqrt" : "=t" (ld_res) : "0" (ld_nzero));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != 0) {
printf("FAIL: fsqrt -0\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fsqrt" : "=t" (ld_res) : "0" (-__builtin_nanl("")));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != 0) {
printf("FAIL: fsqrt -nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistp %0" : "=m" (res_16) : "t" (1.5L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: fistp inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistp %0" : "=m" (res_16) : "t" (32767.5L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistp 32767.5\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistp %0" : "=m" (res_16) : "t" (-32768.51L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistp -32768.51\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistp %0" : "=m" (res_16) : "t" (ld_nan) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistp nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistp %0" : "=m" (res_16) : "t" (ld_invalid_1.ld) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistp invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpl %0" : "=m" (res_32) : "t" (1.5L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: fistpl inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpl %0" : "=m" (res_32) : "t" (2147483647.5L) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistpl 2147483647.5\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpl %0" : "=m" (res_32) : "t" (-2147483648.51L) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistpl -2147483648.51\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpl %0" : "=m" (res_32) : "t" (ld_nan) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistpl nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpl %0" : "=m" (res_32) : "t" (ld_invalid_1.ld) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistpl invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpll %0" : "=m" (res_64) : "t" (1.5L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: fistpll inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpll %0" : "=m" (res_64) : "t" (0x1p63) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistpll 0x1p63\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpll %0" : "=m" (res_64) : "t" (-0x1.1p63L) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistpll -0x1.1p63\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpll %0" : "=m" (res_64) : "t" (ld_nan) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistpll nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fistpll %0" : "=m" (res_64) : "t" (ld_invalid_1.ld) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fistpll invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttp %0" : "=m" (res_16) : "t" (1.5L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: fisttp inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttp %0" : "=m" (res_16) : "t" (32768.0L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttp 32768\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttp %0" : "=m" (res_16) : "t" (32768.5L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttp 32768.5\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttp %0" : "=m" (res_16) : "t" (-32769.0L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttp -32769\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttp %0" : "=m" (res_16) : "t" (-32769.5L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttp -32769.5\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttp %0" : "=m" (res_16) : "t" (ld_nan) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttp nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttp %0" : "=m" (res_16) : "t" (ld_invalid_1.ld) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttp invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpl %0" : "=m" (res_32) : "t" (1.5L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: fisttpl inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpl %0" : "=m" (res_32) : "t" (2147483648.0L) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttpl 2147483648\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpl %0" : "=m" (res_32) : "t" (-2147483649.0L) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttpl -2147483649\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpl %0" : "=m" (res_32) : "t" (ld_nan) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttpl nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpl %0" : "=m" (res_32) : "t" (ld_invalid_1.ld) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttpl invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpll %0" : "=m" (res_64) : "t" (1.5L) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: fisttpll inexact\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpll %0" : "=m" (res_64) : "t" (0x1p63) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttpll 0x1p63\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpll %0" : "=m" (res_64) : "t" (-0x1.1p63L) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttpll -0x1.1p63\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpll %0" : "=m" (res_64) : "t" (ld_nan) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttpll nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fisttpll %0" : "=m" (res_64) : "t" (ld_invalid_1.ld) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fisttpll invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fxtract" : "=t" (ld_res), "=u" (ld_res2) :
"0" (ld_zero));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != ZE) {
printf("FAIL: fxtract 0\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fxtract" : "=t" (ld_res), "=u" (ld_res2) :
"0" (ld_nzero));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != ZE) {
printf("FAIL: fxtract -0\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fxtract" : "=t" (ld_res), "=u" (ld_res2) :
"0" (ld_inf));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != 0) {
printf("FAIL: fxtract inf\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fxtract" : "=t" (ld_res), "=u" (ld_res2) :
"0" (ld_nan));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != 0) {
printf("FAIL: fxtract nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fxtract" : "=t" (ld_res), "=u" (ld_res2) :
"0" (ld_snan));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fxtract snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fxtract" : "=t" (ld_res), "=u" (ld_res2) :
"0" (ld_invalid_1.ld));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fxtract invalid\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fscale" : "=t" (ld_res) : "0" (ld_min), "u" (ld_max));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (OE | PE)) {
printf("FAIL: fscale overflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fscale" : "=t" (ld_res) : "0" (ld_max), "u" (ld_nmax));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != (UE | PE)) {
printf("FAIL: fscale underflow\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fscale" : "=t" (ld_res) : "0" (ld_zero), "u" (ld_inf));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fscale 0 inf\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fscale" : "=t" (ld_res) : "0" (ld_inf), "u" (ld_ninf));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fscale inf -inf\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fscale" : "=t" (ld_res) : "0" (ld_one), "u" (ld_snan));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fscale 1 snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fscale" : "=t" (ld_res) : "0" (ld_snan), "u" (ld_nan));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fscale snan nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fscale" : "=t" (ld_res) :
"0" (ld_invalid_1.ld), "u" (ld_one));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fscale invalid 1\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fscale" : "=t" (ld_res) :
"0" (ld_invalid_1.ld), "u" (ld_nan));
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fscale invalid nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fbstp %0" : "=m" (out) : "t" (1.5L) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != PE) {
printf("FAIL: fbstp 1.5\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fbstp %0" : "=m" (out) : "t" (999999999999999999.5L) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fbstp 999999999999999999.5\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fbstp %0" : "=m" (out) : "t" (-1000000000000000000.0L) :
"st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fbstp -1000000000000000000\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fbstp %0" : "=m" (out) : "t" (ld_inf) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fbstp inf\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fbstp %0" : "=m" (out) : "t" (ld_nan) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fbstp nan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fbstp %0" : "=m" (out) : "t" (ld_snan) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fbstp snan\n");
ret = 1;
}
__asm__ volatile ("fnclex");
__asm__ volatile ("fbstp %0" : "=m" (out) : "t" (ld_invalid_1.ld) : "st");
__asm__ volatile ("fnstsw" : "=a" (sw));
if ((sw & EXC) != IE) {
printf("FAIL: fbstp invalid\n");
ret = 1;
}
return ret;
}