mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
49 lines
1.1 KiB
LLVM
49 lines
1.1 KiB
LLVM
; RUN: llc < %s -march=ppc64 | FileCheck %s
|
|
|
|
define i64 @exchange_and_add(i64* %mem, i64 %val) nounwind {
|
|
; CHECK-LABEL: exchange_and_add:
|
|
; CHECK: ldarx
|
|
%tmp = atomicrmw add i64* %mem, i64 %val monotonic
|
|
; CHECK: stdcx.
|
|
ret i64 %tmp
|
|
}
|
|
|
|
define i64 @exchange_and_cmp(i64* %mem) nounwind {
|
|
; CHECK-LABEL: exchange_and_cmp:
|
|
; CHECK: ldarx
|
|
%tmppair = cmpxchg i64* %mem, i64 0, i64 1 monotonic monotonic
|
|
%tmp = extractvalue { i64, i1 } %tmppair, 0
|
|
; CHECK: stdcx.
|
|
; CHECK: stdcx.
|
|
ret i64 %tmp
|
|
}
|
|
|
|
define i64 @exchange(i64* %mem, i64 %val) nounwind {
|
|
; CHECK-LABEL: exchange:
|
|
; CHECK: ldarx
|
|
%tmp = atomicrmw xchg i64* %mem, i64 1 monotonic
|
|
; CHECK: stdcx.
|
|
ret i64 %tmp
|
|
}
|
|
|
|
define void @atomic_store(i64* %mem, i64 %val) nounwind {
|
|
entry:
|
|
; CHECK: @atomic_store
|
|
store atomic i64 %val, i64* %mem release, align 64
|
|
; CHECK: sync 1
|
|
; CHECK-NOT: stdcx
|
|
; CHECK: std
|
|
ret void
|
|
}
|
|
|
|
define i64 @atomic_load(i64* %mem) nounwind {
|
|
entry:
|
|
; CHECK: @atomic_load
|
|
%tmp = load atomic i64, i64* %mem acquire, align 64
|
|
; CHECK-NOT: ldarx
|
|
; CHECK: ld
|
|
; CHECK: sync 1
|
|
ret i64 %tmp
|
|
}
|
|
|