mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
9ee7a9a74c
This adds support for the main 128-bit atomic operations, using the SystemZ instructions LPQ, STPQ, and CDSG. Generating these instructions is a bit more complex than usual since the i128 type is not legal for the back-end. Therefore, we have to hook the LowerOperationWrapper and ReplaceNodeResults TargetLowering callbacks. llvm-svn: 310094
26 lines
606 B
LLVM
26 lines
606 B
LLVM
; Test 128-bit atomic stores.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
define void @f1(i128 %val, i128 *%src) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK-DAG: lg %r1, 8(%r2)
|
|
; CHECK-DAG: lg %r0, 0(%r2)
|
|
; CHECK: stpq %r0, 0(%r3)
|
|
; CHECK: bcr 1{{[45]}}, %r0
|
|
; CHECK: br %r14
|
|
store atomic i128 %val, i128 *%src seq_cst, align 16
|
|
ret void
|
|
}
|
|
|
|
define void @f2(i128 %val, i128 *%src) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK-DAG: lg %r1, 8(%r2)
|
|
; CHECK-DAG: lg %r0, 0(%r2)
|
|
; CHECK: stpq %r0, 0(%r3)
|
|
; CHECK-NOT: bcr 1{{[45]}}, %r0
|
|
; CHECK: br %r14
|
|
store atomic i128 %val, i128 *%src monotonic, align 16
|
|
ret void
|
|
}
|