The syntax for "cmpxchg" should now look something like: cmpxchg i32* %addr, i32 42, i32 3 acquire monotonic where the second ordering argument gives the required semantics in the case that no exchange takes place. It should be no stronger than the first ordering constraint and cannot be either "release" or "acq_rel" (since no store will have taken place). rdar://problem/15996804 llvm-svn: 203559
27 lines
715 B
LLVM
27 lines
715 B
LLVM
; RUN: llc < %s -mtriple=powerpc-apple-darwin -march=ppc32 | FileCheck %s
|
|
|
|
define i32 @exchange_and_add(i32* %mem, i32 %val) nounwind {
|
|
; CHECK-LABEL: exchange_and_add:
|
|
; CHECK: lwarx {{r[0-9]+}}, 0, {{r[0-9]+}}
|
|
%tmp = atomicrmw add i32* %mem, i32 %val monotonic
|
|
; CHECK: stwcx. {{r[0-9]+}}, 0, {{r[0-9]+}}
|
|
ret i32 %tmp
|
|
}
|
|
|
|
define i32 @exchange_and_cmp(i32* %mem) nounwind {
|
|
; CHECK-LABEL: exchange_and_cmp:
|
|
; CHECK: lwarx
|
|
%tmp = cmpxchg i32* %mem, i32 0, i32 1 monotonic monotonic
|
|
; CHECK: stwcx.
|
|
; CHECK: stwcx.
|
|
ret i32 %tmp
|
|
}
|
|
|
|
define i32 @exchange(i32* %mem, i32 %val) nounwind {
|
|
; CHECK-LABEL: exchange:
|
|
; CHECK: lwarx
|
|
%tmp = atomicrmw xchg i32* %mem, i32 1 monotonic
|
|
; CHECK: stwcx.
|
|
ret i32 %tmp
|
|
}
|