summaryrefslogtreecommitdiffstats
path: root/src/tests/tcg/mips/mips64-dsp/repl_pw.c
blob: d35376a2a32196fb0ff1ea10cc178182273ab975 (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
#include "io.h"

int main(void)
{
    long long rd, result;
    rd = 0;
    result = 0x000001FF000001FF;

    __asm
        ("repl.pw %0, 0x1FF\n\t"
         : "=r"(rd)
        );

    if (result != rd) {
        printf("repl.pw error1\n");

        return -1;
    }

    rd = 0;
    result = 0xFFFFFE00FFFFFE00;
    __asm
        ("repl.pw %0, 0xFFFFFFFFFFFFFE00\n\t"
         : "=r"(rd)
        );

    if (result != rd) {
        printf("repl.pw error2\n");

        return -1;
    }

    return 0;
}
OpenPOWER on IntegriCloud