aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/x86_64/test-2413.c
blob: 456e5332fc2bd909d93b80cc82178ec0996d811a (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
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* Copyright 2024 Linaro, Ltd. */
/* See https://gitlab.com/qemu-project/qemu/-/issues/2413 */

#include <assert.h>

void test(unsigned long *a, unsigned long *d, unsigned long c)
{
    asm("xorl %%eax, %%eax\n\t"
        "xorl %%edx, %%edx\n\t"
        "testb $0x20, %%cl\n\t"
        "sete %%al\n\t"
        "setne %%dl\n\t"
        "shll %%cl, %%eax\n\t"
        "shll %%cl, %%edx\n\t"
        : "=a"(*a), "=d"(*d)
        : "c"(c));
}

int main(void)
{
    unsigned long a, c, d;

    for (c = 0; c < 64; c++) {
        test(&a, &d, c);
        assert(a == (c & 0x20 ? 0 : 1u << (c & 0x1f)));
        assert(d == (c & 0x20 ? 1u << (c & 0x1f) : 0));
    }
    return 0;
}