summaryrefslogtreecommitdiffstats
path: root/tests/tcg/ppc64le/mtfsf.c
blob: bed5b1afa40ed475ac3583a52db030680fb84340 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <stdlib.h>
#include <stdint.h>
#include <assert.h>
#include <signal.h>
#include <sys/prctl.h>

#define MTFSF(FLM, FRB) asm volatile ("mtfsf %0, %1" :: "i" (FLM), "f" (FRB))
#define MFFS(FRT) asm("mffs %0" : "=f" (FRT))

#define FPSCR_VE     7  /* Floating-point invalid operation exception enable */
#define FPSCR_VXSOFT 10 /* Floating-point invalid operation exception (soft) */
#define FPSCR_FI     17 /* Floating-point fraction inexact                   */

#define FP_VE           (1ull << FPSCR_VE)
#define FP_VXSOFT       (1ull << FPSCR_VXSOFT)
#define FP_FI           (1ull << FPSCR_FI)

void sigfpe_handler(int sig, siginfo_t *si, void *ucontext)
{
    if (si->si_code == FPE_FLTINV) {
        exit(0);
    }
    exit(1);
}

int main(void)
{
    uint64_t fpscr;

    struct sigaction sa = {
        .sa_sigaction = sigfpe_handler,
        .sa_flags = SA_SIGINFO
    };

    /*
     * Enable the MSR bits F0 and F1 to enable exceptions.
     * This shouldn't be needed in linux-user as these bits are enabled by
     * default, but this allows to execute either in a VM or a real machine
     * to compare the behaviors.
     */
    prctl(PR_SET_FPEXC, PR_FP_EXC_PRECISE);

    /* First test if the FI bit is being set correctly */
    MTFSF(0b11111111, FP_FI);
    MFFS(fpscr);
    assert((fpscr & FP_FI) != 0);

    /* Then test if the deferred exception is being called correctly */
    sigaction(SIGFPE, &sa, NULL);

    /*
     * Although the VXSOFT exception has been chosen, based on test in a Power9
     * any combination of exception bit + its enabling bit should work.
     * But if a different exception is chosen si_code check should
     * change accordingly.
     */
    MTFSF(0b11111111, FP_VE | FP_VXSOFT);

    return 1;
}