aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/aarch64/sve-str.c
blob: ae271c9d87ec81ee6d4cd0cec8a5617c654ce4a7 (plain)
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
#include <stdio.h>
#include <sys/prctl.h>

#define N  (256 + 16)

static int __attribute__((noinline)) test(int vl)
{
    unsigned char buf[N];
    int err = 0;

    for (int i = 0; i < N; ++i) {
        buf[i] = (unsigned char)i;
    }

    asm volatile (
        "mov z0.b, #255\n\t"
        "str z0, %0"
        : : "m" (buf) : "z0", "memory");

    for (int i = 0; i < vl; ++i) {
        if (buf[i] != 0xff) {
            fprintf(stderr, "vl %d, index %d, expected 255, got %d\n",
                    vl, i, buf[i]);
            err = 1;
        }
    }

    for (int i = vl; i < N; ++i) {
        if (buf[i] != (unsigned char)i) {
            fprintf(stderr, "vl %d, index %d, expected %d, got %d\n",
                    vl, i, (unsigned char)i, buf[i]);
            err = 1;
        }
    }

    return err;
}

int main()
{
    int err = 0;

    for (int i = 16; i <= 256; i += 16) {
        if (prctl(PR_SVE_SET_VL, i, 0, 0, 0, 0) == i) {
            err |= test(i);
        }
    }
    return err;
}