aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips64-dsp/cmpgu_eq_qb.c
blob: b41c4430fdcf8fc22560dfac3365b2f05fc0a4e3 (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
#include "io.h"

int main(void)
{
    long long rd, rs, rt;
    long long result;

    rs     = 0x11777066;
    rt     = 0x55AA70FF;
    result = 0x02;
    __asm
        ("cmpgu.eq.qb %0, %1, %2\n\t"
         : "=r"(rd)
         : "r"(rs), "r"(rt)
        );

    if (rd != result) {
        printf("cmpgu.eq.ph wrong\n");

        return -1;
    }

    rs     = 0x11777066;
    rt     = 0x11777066;
    result = 0x0F;
    __asm
        ("cmpgu.eq.qb %0, %1, %2\n\t"
         : "=r"(rd)
         : "r"(rs), "r"(rt)
        );
    if (rd != result) {
        printf("cmpgu.eq.ph wrong\n");

        return -1;
    }

    return 0;
}