mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
6aaaadc188
I did not convert Atomics-32.ll and Atomics-64.ll by hand; the diff is autoupgrade output. The wmb test is gone because there isn't any way to express wmb with the new atomic instructions; if someone really needs a non-asm way to write a wmb on Alpha, a platform-specific intrisic could be added. llvm-svn: 140566
27 lines
601 B
LLVM
27 lines
601 B
LLVM
; RUN: llc < %s -march=ppc32 | FileCheck %s
|
|
|
|
define i32 @exchange_and_add(i32* %mem, i32 %val) nounwind {
|
|
; CHECK: exchange_and_add:
|
|
; CHECK: lwarx
|
|
%tmp = atomicrmw add i32* %mem, i32 %val monotonic
|
|
; CHECK: stwcx.
|
|
ret i32 %tmp
|
|
}
|
|
|
|
define i32 @exchange_and_cmp(i32* %mem) nounwind {
|
|
; CHECK: exchange_and_cmp:
|
|
; CHECK: lwarx
|
|
%tmp = cmpxchg i32* %mem, i32 0, i32 1 monotonic
|
|
; CHECK: stwcx.
|
|
; CHECK: stwcx.
|
|
ret i32 %tmp
|
|
}
|
|
|
|
define i32 @exchange(i32* %mem, i32 %val) nounwind {
|
|
; CHECK: exchange:
|
|
; CHECK: lwarx
|
|
%tmp = atomicrmw xchg i32* %mem, i32 1 monotonic
|
|
; CHECK: stwcx.
|
|
ret i32 %tmp
|
|
}
|