1 ; RUN: llc -mtriple=armv7-apple-ios6.0 -mcpu=swift < %s | FileCheck %s
2 ; RUN: llc -mtriple=armv7-apple-ios6.0 < %s | FileCheck %s --check-prefix=CHECK-STRICT-ATOMIC
4 ; Release operations only need the store barrier provided by a "dmb ishst",
6 define void @test_store_release(ptr %p, i32 %v) {
7 ; CHECK-LABEL: test_store_release:
11 ; CHECK-STRICT-ATOMIC-LABEL: test_store_release:
12 ; CHECK-STRICT-ATOMIC: dmb {{ish$}}
13 store atomic i32 %v, ptr %p release, align 4
17 ; However, if sequential consistency is needed *something* must ensure a release
18 ; followed by an acquire does not get reordered. In that case a "dmb ishst" is
20 define i32 @test_seq_cst(ptr %p, i32 %v) {
21 ; CHECK-LABEL: test_seq_cst:
28 ; CHECK-STRICT-ATOMIC-LABEL: test_seq_cst:
29 ; CHECK-STRICT-ATOMIC: dmb {{ish$}}
30 ; CHECK-STRICT-ATOMIC: str
31 ; CHECK-STRICT-ATOMIC: dmb {{ish$}}
32 ; CHECK-STRICT-ATOMIC: ldr
33 ; CHECK-STRICT-ATOMIC: dmb {{ish$}}
35 store atomic i32 %v, ptr %p seq_cst, align 4
36 %val = load atomic i32, ptr %p seq_cst, align 4
40 ; Also, pure acquire operations should definitely not have an ishst barrier.
42 define i32 @test_acq(ptr %addr) {
43 ; CHECK-LABEL: test_acq:
47 ; CHECK-STRICT-ATOMIC-LABEL: test_acq:
48 ; CHECK-STRICT-ATOMIC: dmb {{ish$}}
49 %val = load atomic i32, ptr %addr acquire, align 4