aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/hexagon/test_dotnew.S
blob: b18b6a72e2e5eb9384a3c9273568b8887a6815ec (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
/* Purpose: test the .new operator while performing memory stores. */

    .text
    .globl _start

_start:
    {
        allocframe(#16)
    }
    {
        r0 = #1
        memw(sp+#0) = r0.new
    }
    {
        r1 = #2
        memw(sp+#4) = r1.new
    }
    {
        r2 = #3
        memw(sp+#8) = r2.new
    }
    {
        r0 = memw(sp+#8)
    }
    {
        r1 = memw(sp+#4)
    }
    {
        r2 = memw(sp+#0)
    }
    {
        r3 = mpyi(r1, r2)
    }
    {
        deallocframe
        p0 = cmp.eq(r3, #2); if (p0.new) jump:t pass
        jump fail
    }