1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00
llvm-mirror/test/CodeGen/SystemZ/atomic-load-01.ll
Ulrich Weigand 69fde521b5 [SystemZ] Eliminate unnecessary serialization operations
We currently emit a serialization operation (bcr 14, 0) before every
atomic load and after every atomic store.  This is overly conservative.
The SystemZ architecture actually does not require any serialization
for atomic loads, and a serialization after an atomic store only if
we need to enforce sequential consistency.  This is what other compilers
for the platform implement as well.

llvm-svn: 310093
2017-08-04 18:53:35 +00:00

12 lines
240 B
LLVM

; Test 8-bit atomic loads.
;
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
define i8 @f1(i8 *%src) {
; CHECK-LABEL: f1:
; CHECK: lb %r2, 0(%r2)
; CHECK: br %r14
%val = load atomic i8 , i8 *%src seq_cst, align 1
ret i8 %val
}