You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.167
Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
parent
e19d552987
commit
b084638f15
27
external/llvm/test/CodeGen/PowerPC/atomic-1.ll
vendored
27
external/llvm/test/CodeGen/PowerPC/atomic-1.ll
vendored
@ -1,27 +0,0 @@
|
||||
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-apple-darwin | 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
|
||||
%tmppair = cmpxchg i32* %mem, i32 0, i32 1 monotonic monotonic
|
||||
%tmp = extractvalue { i32, i1 } %tmppair, 0
|
||||
; 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
|
||||
}
|
Reference in New Issue
Block a user