aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips32-dsp/shrav_r_ph.c
blob: f03b978d0544487adb17bb57b1cd0bd0e8cfdf40 (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
#include<stdio.h>
#include<assert.h>

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

    rs     = 0x03;
    rt     = 0x87654321;
    result = 0xF0ED0864;

    __asm
        ("shrav_r.ph %0, %1, %2\n\t"
         : "=r"(rd)
         : "r"(rt), "r"(rs)
        );
    assert(rd == result);

    rs     = 0x00;
    rt     = 0x87654321;
    result = 0x87654321;

    __asm
        ("shrav_r.ph %0, %1, %2\n\t"
         : "=r"(rd)
         : "r"(rt), "r"(rs)
        );
    assert(rd == result);

    return 0;
}