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
24 lines
504 B
LLVM
24 lines
504 B
LLVM
; RUN: opt < %s -loweratomic -S | FileCheck %s
|
|
|
|
define i8 @cmpswap() {
|
|
; CHECK-LABEL: @cmpswap(
|
|
%i = alloca i8
|
|
%j = cmpxchg i8* %i, i8 0, i8 42 monotonic monotonic
|
|
; CHECK: [[INST:%[a-z0-9]+]] = load
|
|
; CHECK-NEXT: icmp
|
|
; CHECK-NEXT: select
|
|
; CHECK-NEXT: store
|
|
ret i8 %j
|
|
; CHECK: ret i8 [[INST]]
|
|
}
|
|
|
|
define i8 @swap() {
|
|
; CHECK-LABEL: @swap(
|
|
%i = alloca i8
|
|
%j = atomicrmw xchg i8* %i, i8 42 monotonic
|
|
; CHECK: [[INST:%[a-z0-9]+]] = load
|
|
; CHECK-NEXT: store
|
|
ret i8 %j
|
|
; CHECK: ret i8 [[INST]]
|
|
}
|