tests/tcg/aarch64: Fix compilation parameters for pauth-%
[qemu/ar7.git] / tests / tcg / aarch64 / pauth-1.c
blobea0984ea823de31a19627a331f2360ab2966147f
1 #include <assert.h>
2 #include <sys/prctl.h>
3 #include <stdio.h>
5 #ifndef PR_PAC_RESET_KEYS
6 #define PR_PAC_RESET_KEYS 54
7 #define PR_PAC_APDAKEY (1 << 2)
8 #endif
10 #define TESTS 1000
12 int main()
14 int x, i, count = 0;
15 void *p0 = &x, *p1, *p2;
16 float perc;
18 for (i = 0; i < TESTS; i++) {
19 asm volatile("pacdza %0" : "=r"(p1) : "0"(p0));
20 prctl(PR_PAC_RESET_KEYS, PR_PAC_APDAKEY, 0, 0, 0);
21 asm volatile("pacdza %0" : "=r"(p2) : "0"(p0));
23 if (p1 != p0) {
24 count++;
26 if (p1 != p2) {
27 count++;
31 perc = (float) count / (float) (TESTS * 2);
32 printf("Ptr Check: %0.2f%%", perc * 100.0);
33 assert(perc > 0.95);
34 return 0;