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

int main(void)
{
    long long rs, rt, dspreg, dspresult;

    rs = 0x123558789ABCDEF0;
    rt = 0x123456789ABCDEFF;
    dspresult = 0x01;

    __asm
        ("cmp.lt.qh %1, %2\n\t"
         "rddsp %0\n\t"
         : "=r"(dspreg)
         : "r"(rs), "r"(rt)
        );

    dspreg = ((dspreg >> 24) & 0x0F);

    if (dspreg != dspresult) {
        printf("cmp.lt.qh error\n");

        return -1;
    }

    rs = 0x123356779ABbDEF0;
    rt = 0x123456789ABCDEFF;
    dspresult = 0x0f;

    __asm
        ("cmp.lt.qh %1, %2\n\t"
         "rddsp %0\n\t"
         : "=r"(dspreg)
         : "r"(rs), "r"(rt)
        );

    dspreg = ((dspreg >> 24) & 0x0F);

    if (dspreg != dspresult) {
        printf("cmp.lt.qh error\n");

        return -1;
    }

    return 0;
}