On processors supporting vector registers and SIMD instructions, enable i128 as legal type in VRs. This allows many operations to be implemented via native instructions directly in VRs (including add, subtract, logical operations and shifts). For a few other operations (e.g. multiply and divide, as well as atomic operations), we need to move the i128 value back to a GPR pair to use the corresponding instruction there. Overall, this is still beneficial. The patch includes the following LLVM changes: - Enable i128 as legal type - Set up legal operations (in SystemZInstrVector.td) - Custom expansion for i128 add/subtract with carry - Custom expansion for i128 comparisons and selects - Support for moving i128 to/from GPR pairs when required - Handle 128-bit integer constant values everywhere - Use i128 as intrinsic operand type where appropriate - Updated and new test cases In addition, clang builtins are updated to reflect the intrinsic operand type changes (which also improves compatibility with GCC).
56 lines
1.6 KiB
LLVM
56 lines
1.6 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 2
|
|
; Test i128 byteswaps on z15 and higher.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z15 | FileCheck %s
|
|
|
|
declare i128 @llvm.bswap.i128(i128 %a)
|
|
|
|
; Check 128-bit register-to-register byteswaps.
|
|
define i128 @f1(i128 %a, i128 %b, i128 %c) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: vl %v1, 0(%r4), 3
|
|
; CHECK-NEXT: vl %v2, 0(%r3), 3
|
|
; CHECK-NEXT: larl %r1, .LCPI0_0
|
|
; CHECK-NEXT: vaq %v1, %v2, %v1
|
|
; CHECK-NEXT: vl %v2, 0(%r1), 3
|
|
; CHECK-NEXT: vl %v0, 0(%r5), 3
|
|
; CHECK-NEXT: vperm %v1, %v1, %v1, %v2
|
|
; CHECK-NEXT: vaq %v0, %v1, %v0
|
|
; CHECK-NEXT: vst %v0, 0(%r2), 3
|
|
; CHECK-NEXT: br %r14
|
|
%in = add i128 %a, %b
|
|
%swapped = call i128 @llvm.bswap.i128(i128 %in)
|
|
%out = add i128 %swapped, %c
|
|
ret i128 %out
|
|
}
|
|
|
|
; Check 128-bit register-to-memory byteswaps.
|
|
define i128 @f2(i128 %a, i128 %b) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: vl %v0, 0(%r4), 3
|
|
; CHECK-NEXT: vl %v1, 0(%r3), 3
|
|
; CHECK-NEXT: vaq %v0, %v1, %v0
|
|
; CHECK-NEXT: vstbrq %v0, 0(%r2)
|
|
; CHECK-NEXT: br %r14
|
|
%in = add i128 %a, %b
|
|
%swapped = call i128 @llvm.bswap.i128(i128 %in)
|
|
ret i128 %swapped
|
|
}
|
|
|
|
; Check 128-bit memory-to-register byteswaps.
|
|
define i128 @f3(i128 %a, i128 %b) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: vl %v0, 0(%r4), 3
|
|
; CHECK-NEXT: vlbrq %v1, 0(%r3)
|
|
; CHECK-NEXT: vaq %v0, %v1, %v0
|
|
; CHECK-NEXT: vst %v0, 0(%r2), 3
|
|
; CHECK-NEXT: br %r14
|
|
%swapped = call i128 @llvm.bswap.i128(i128 %a)
|
|
%out = add i128 %swapped, %b
|
|
ret i128 %out
|
|
}
|
|
|