mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
73b770d782
The z13 vector facility includes some instructions that operate only on the high f64 in a v2f64, effectively extending the FP register set from 16 to 32 registers. It's still better to use the old instructions if the operands happen to fit though, since the older instructions have a shorter encoding. Based on a patch by Richard Sandiford. llvm-svn: 236524
59 lines
1.4 KiB
LLVM
59 lines
1.4 KiB
LLVM
; Test vector negation.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s
|
|
|
|
; Test a v16i8 negation.
|
|
define <16 x i8> @f1(<16 x i8> %dummy, <16 x i8> %val) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: vlcb %v24, %v26
|
|
; CHECK: br %r14
|
|
%ret = sub <16 x i8> zeroinitializer, %val
|
|
ret <16 x i8> %ret
|
|
}
|
|
|
|
; Test a v8i16 negation.
|
|
define <8 x i16> @f2(<8 x i16> %dummy, <8 x i16> %val) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: vlch %v24, %v26
|
|
; CHECK: br %r14
|
|
%ret = sub <8 x i16> zeroinitializer, %val
|
|
ret <8 x i16> %ret
|
|
}
|
|
|
|
; Test a v4i32 negation.
|
|
define <4 x i32> @f3(<4 x i32> %dummy, <4 x i32> %val) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: vlcf %v24, %v26
|
|
; CHECK: br %r14
|
|
%ret = sub <4 x i32> zeroinitializer, %val
|
|
ret <4 x i32> %ret
|
|
}
|
|
|
|
; Test a v2i64 negation.
|
|
define <2 x i64> @f4(<2 x i64> %dummy, <2 x i64> %val) {
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: vlcg %v24, %v26
|
|
; CHECK: br %r14
|
|
%ret = sub <2 x i64> zeroinitializer, %val
|
|
ret <2 x i64> %ret
|
|
}
|
|
|
|
; Test a v2f64 negation.
|
|
define <2 x double> @f5(<2 x double> %dummy, <2 x double> %val) {
|
|
; CHECK-LABEL: f5:
|
|
; CHECK: vflcdb %v24, %v26
|
|
; CHECK: br %r14
|
|
%ret = fsub <2 x double> <double -0.0, double -0.0>, %val
|
|
ret <2 x double> %ret
|
|
}
|
|
|
|
; Test an f64 negation that uses vector registers.
|
|
define double @f6(<2 x double> %val) {
|
|
; CHECK-LABEL: f6:
|
|
; CHECK: wflcdb %f0, %v24
|
|
; CHECK: br %r14
|
|
%scalar = extractelement <2 x double> %val, i32 0
|
|
%ret = fsub double -0.0, %scalar
|
|
ret double %ret
|
|
}
|