summaryrefslogtreecommitdiffstats
path: root/tests/tcg/xtensa/test_exclusive.S
blob: 7757a552ea00cbfdfb894db0ec9c6ddbaa4cb943 (plain) (blame)
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
47
48
#include "macros.inc"

test_suite exclusive

#if XCHAL_HAVE_EXCLUSIVE

test exclusive_nowrite
    movi    a2, 0x29
    wsr     a2, atomctl
    clrex
    movi    a2, 1f
    movi    a3, 1
    s32ex   a3, a2
    getex   a3
    assert  eqi, a3, 0
    l32i    a3, a2, 0
    assert  eqi, a3, 3

.data
.align 4
1:
    .word   3
.text
test_end

test exclusive_write
    movi    a2, 0x29
    wsr     a2, atomctl
    movi    a2, 1f
    l32ex   a3, a2
    assert  eqi, a3, 3
    movi    a3, 2
    s32ex   a3, a2
    getex   a3
    assert  eqi, a3, 1
    l32i    a3, a2, 0
    assert  eqi, a3, 2

.data
.align 4
1:
    .word   3
.text
test_end

#endif

test_suite_end