mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@310094 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
311 B
LLVM
14 lines
311 B
LLVM
; Test 128-bit atomic loads.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
define i128 @f1(i128 *%src) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: lpq %r0, 0(%r3)
|
|
; CHECK-DAG: stg %r1, 8(%r2)
|
|
; CHECK-DAG: stg %r0, 0(%r2)
|
|
; CHECK: br %r14
|
|
%val = load atomic i128, i128 *%src seq_cst, align 16
|
|
ret i128 %val
|
|
}
|