10 #include <sys/types.h>
11 #include <sys/select.h>
16 unsigned long long res64
= -1;
17 unsigned int res32
= -1;
18 unsigned short res16
= -1;
24 feclearexcept(FE_DIVBYZERO
|FE_INEXACT
|FE_INVALID
|FE_OVERFLOW
|FE_UNDERFLOW
);
34 if (res16
!= 1 || res32
!= 1 || res64
!= 1) {
35 printf("[BAD]\tfisttp 1\n");
38 ex
= fetestexcept(FE_DIVBYZERO
|FE_INEXACT
|FE_INVALID
|FE_OVERFLOW
|FE_UNDERFLOW
);
40 printf("[BAD]\tfisttp 1: wrong exception state\n");
44 feclearexcept(FE_DIVBYZERO
|FE_INEXACT
|FE_INVALID
|FE_OVERFLOW
|FE_UNDERFLOW
);
54 if (res16
!= 3 || res32
!= 3 || res64
!= 3) {
55 printf("[BAD]\tfisttp pi\n");
58 ex
= fetestexcept(FE_DIVBYZERO
|FE_INEXACT
|FE_INVALID
|FE_OVERFLOW
|FE_UNDERFLOW
);
59 if (ex
!= FE_INEXACT
) {
60 printf("[BAD]\tfisttp pi: wrong exception state\n");
64 feclearexcept(FE_DIVBYZERO
|FE_INEXACT
|FE_INVALID
|FE_OVERFLOW
|FE_UNDERFLOW
);
77 if (res16
!= 0xfffd || res32
!= 0xfffffffd || res64
!= 0xfffffffffffffffdULL
) {
78 printf("[BAD]\tfisttp -pi\n");
81 ex
= fetestexcept(FE_DIVBYZERO
|FE_INEXACT
|FE_INVALID
|FE_OVERFLOW
|FE_UNDERFLOW
);
82 if (ex
!= FE_INEXACT
) {
83 printf("[BAD]\tfisttp -pi: wrong exception state\n");
87 feclearexcept(FE_DIVBYZERO
|FE_INEXACT
|FE_INVALID
|FE_OVERFLOW
|FE_UNDERFLOW
);
97 /* Test truncation to zero (round-to-nearest would give 1 here) */
98 if (res16
!= 0 || res32
!= 0 || res64
!= 0) {
99 printf("[BAD]\tfisttp ln2\n");
102 ex
= fetestexcept(FE_DIVBYZERO
|FE_INEXACT
|FE_INVALID
|FE_OVERFLOW
|FE_UNDERFLOW
);
103 if (ex
!= FE_INEXACT
) {
104 printf("[BAD]\tfisttp ln2: wrong exception state\n");
111 void sighandler(int sig
)
113 printf("[FAIL]\tGot signal %d, exiting\n", sig
);
117 int main(int argc
, char **argv
, char **envp
)
121 /* SIGILL triggers on 32-bit kernels w/o fisttp emulation
122 * when run with "no387 nofxsr". Other signals are caught
125 signal(SIGILL
, sighandler
);
126 signal(SIGFPE
, sighandler
);
127 signal(SIGSEGV
, sighandler
);
129 printf("[RUN]\tTesting fisttp instructions\n");
132 printf("[OK]\tfisttp\n");
134 printf("[FAIL]\tfisttp errors: %d\n", err
);