1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00
llvm-mirror/test/CodeGen/PowerPC/fp-strict-round.ll
Nemanja Ivanovic f6f0a5745d [PowerPC] Canonicalize shuffles to match more single-instruction masks on LE
We currently miss a number of opportunities to emit single-instruction
VMRG[LH][BHW] instructions for shuffles on little endian subtargets. Although
this in itself is not a huge performance opportunity since loading the permute
vector for a VPERM can always be pulled out of loops, producing such merge
instructions is useful to downstream optimizations.
Since VPERM is essentially opaque to all subsequent optimizations, we want to
avoid it as much as possible. Other permute instructions have semantics that can
be reasoned about much more easily in later optimizations.

This patch does the following:
- Canonicalize shuffles so that the first element comes from the first vector
  (since that's what most of the mask matching functions want)
- Switch the elements that come from splat vectors so that they match the
  corresponding elements from the other vector (to allow for merges)
- Adds debugging messages for when a shuffle is matched to a VPERM so that
  anyone interested in improving this further can get the info for their code

Differential revision: https://reviews.llvm.org/D77448
2020-06-18 21:54:22 -05:00

475 lines
14 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux \
; RUN: -mcpu=pwr8 -ppc-asm-full-reg-names -ppc-vsr-nums-as-vr | FileCheck \
; RUN: --check-prefix=P8 %s
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64le-unknown-linux \
; RUN: -mcpu=pwr9 -ppc-asm-full-reg-names -ppc-vsr-nums-as-vr | FileCheck \
; RUN: --check-prefix=P9 %s
; FIXME: Constrained fpext would fail if VSX feature disabled. Add no-vsx
declare float @llvm.experimental.constrained.ceil.f32(float, metadata)
declare double @llvm.experimental.constrained.ceil.f64(double, metadata)
declare <4 x float> @llvm.experimental.constrained.ceil.v4f32(<4 x float>, metadata)
declare <2 x double> @llvm.experimental.constrained.ceil.v2f64(<2 x double>, metadata)
declare float @llvm.experimental.constrained.floor.f32(float, metadata)
declare double @llvm.experimental.constrained.floor.f64(double, metadata)
declare <4 x float> @llvm.experimental.constrained.floor.v4f32(<4 x float>, metadata)
declare <2 x double> @llvm.experimental.constrained.floor.v2f64(<2 x double>, metadata)
declare double @llvm.experimental.constrained.nearbyint.f64(double, metadata, metadata)
declare <4 x float> @llvm.experimental.constrained.nearbyint.v4f32(<4 x float>, metadata, metadata)
declare <2 x double> @llvm.experimental.constrained.nearbyint.v2f64(<2 x double>, metadata, metadata)
declare <4 x double> @llvm.experimental.constrained.fpext.v4f64.v4f32(<4 x float>, metadata)
declare <2 x double> @llvm.experimental.constrained.fpext.v2f64.v2f32(<2 x float>, metadata)
declare float @llvm.experimental.constrained.fptrunc.f32.f64(double, metadata, metadata)
declare <4 x float> @llvm.experimental.constrained.fptrunc.v4f32.v4f64(<4 x double>, metadata, metadata)
declare <2 x float> @llvm.experimental.constrained.fptrunc.v2f32.v2f64(<2 x double>, metadata, metadata)
declare float @llvm.experimental.constrained.round.f32(float, metadata)
declare double @llvm.experimental.constrained.round.f64(double, metadata)
declare <4 x float> @llvm.experimental.constrained.round.v4f32(<4 x float>, metadata)
declare <2 x double> @llvm.experimental.constrained.round.v2f64(<2 x double>, metadata)
declare float @llvm.experimental.constrained.trunc.f32(float, metadata)
declare double @llvm.experimental.constrained.trunc.f64(double, metadata)
declare <4 x float> @llvm.experimental.constrained.trunc.v4f32(<4 x float>, metadata)
declare <2 x double> @llvm.experimental.constrained.trunc.v2f64(<2 x double>, metadata)
define float @ceil_f32(float %f1) {
; P8-LABEL: ceil_f32:
; P8: # %bb.0:
; P8-NEXT: xsrdpip f1, f1
; P8-NEXT: blr
;
; P9-LABEL: ceil_f32:
; P9: # %bb.0:
; P9-NEXT: xsrdpip f1, f1
; P9-NEXT: blr
%res = call float @llvm.experimental.constrained.ceil.f32(
float %f1,
metadata !"fpexcept.strict")
ret float %res
}
define double @ceil_f64(double %f1) {
; P8-LABEL: ceil_f64:
; P8: # %bb.0:
; P8-NEXT: xsrdpip f1, f1
; P8-NEXT: blr
;
; P9-LABEL: ceil_f64:
; P9: # %bb.0:
; P9-NEXT: xsrdpip f1, f1
; P9-NEXT: blr
%res = call double @llvm.experimental.constrained.ceil.f64(
double %f1,
metadata !"fpexcept.strict")
ret double %res
}
define <4 x float> @ceil_v4f32(<4 x float> %vf1) {
; P8-LABEL: ceil_v4f32:
; P8: # %bb.0:
; P8-NEXT: xvrspip v2, v2
; P8-NEXT: blr
;
; P9-LABEL: ceil_v4f32:
; P9: # %bb.0:
; P9-NEXT: xvrspip v2, v2
; P9-NEXT: blr
%res = call <4 x float> @llvm.experimental.constrained.ceil.v4f32(
<4 x float> %vf1,
metadata !"fpexcept.strict")
ret <4 x float> %res
}
define <2 x double> @ceil_v2f64(<2 x double> %vf1) {
; P8-LABEL: ceil_v2f64:
; P8: # %bb.0:
; P8-NEXT: xvrdpip v2, v2
; P8-NEXT: blr
;
; P9-LABEL: ceil_v2f64:
; P9: # %bb.0:
; P9-NEXT: xvrdpip v2, v2
; P9-NEXT: blr
%res = call <2 x double> @llvm.experimental.constrained.ceil.v2f64(
<2 x double> %vf1,
metadata !"fpexcept.strict")
ret <2 x double> %res
}
define float @floor_f32(float %f1) {
; P8-LABEL: floor_f32:
; P8: # %bb.0:
; P8-NEXT: xsrdpim f1, f1
; P8-NEXT: blr
;
; P9-LABEL: floor_f32:
; P9: # %bb.0:
; P9-NEXT: xsrdpim f1, f1
; P9-NEXT: blr
%res = call float @llvm.experimental.constrained.floor.f32(
float %f1,
metadata !"fpexcept.strict")
ret float %res
}
define double @floor_f64(double %f1) {
; P8-LABEL: floor_f64:
; P8: # %bb.0:
; P8-NEXT: xsrdpim f1, f1
; P8-NEXT: blr
;
; P9-LABEL: floor_f64:
; P9: # %bb.0:
; P9-NEXT: xsrdpim f1, f1
; P9-NEXT: blr
%res = call double @llvm.experimental.constrained.floor.f64(
double %f1,
metadata !"fpexcept.strict")
ret double %res;
}
define <4 x float> @floor_v4f32(<4 x float> %vf1) {
; P8-LABEL: floor_v4f32:
; P8: # %bb.0:
; P8-NEXT: xvrspim v2, v2
; P8-NEXT: blr
;
; P9-LABEL: floor_v4f32:
; P9: # %bb.0:
; P9-NEXT: xvrspim v2, v2
; P9-NEXT: blr
%res = call <4 x float> @llvm.experimental.constrained.floor.v4f32(
<4 x float> %vf1,
metadata !"fpexcept.strict")
ret <4 x float> %res;
}
define <2 x double> @floor_v2f64(<2 x double> %vf1) {
; P8-LABEL: floor_v2f64:
; P8: # %bb.0:
; P8-NEXT: xvrdpim v2, v2
; P8-NEXT: blr
;
; P9-LABEL: floor_v2f64:
; P9: # %bb.0:
; P9-NEXT: xvrdpim v2, v2
; P9-NEXT: blr
%res = call <2 x double> @llvm.experimental.constrained.floor.v2f64(
<2 x double> %vf1,
metadata !"fpexcept.strict")
ret <2 x double> %res;
}
define double @nearbyint_f64(double %f1, double %f2) {
; P8-LABEL: nearbyint_f64:
; P8: # %bb.0:
; P8-NEXT: xsrdpic f1, f1
; P8-NEXT: blr
;
; P9-LABEL: nearbyint_f64:
; P9: # %bb.0:
; P9-NEXT: xsrdpic f1, f1
; P9-NEXT: blr
%res = call double @llvm.experimental.constrained.nearbyint.f64(
double %f1,
metadata !"round.dynamic",
metadata !"fpexcept.strict")
ret double %res
}
define <4 x float> @nearbyint_v4f32(<4 x float> %vf1, <4 x float> %vf2) {
; P8-LABEL: nearbyint_v4f32:
; P8: # %bb.0:
; P8-NEXT: xvrspic v2, v2
; P8-NEXT: blr
;
; P9-LABEL: nearbyint_v4f32:
; P9: # %bb.0:
; P9-NEXT: xvrspic v2, v2
; P9-NEXT: blr
%res = call <4 x float> @llvm.experimental.constrained.nearbyint.v4f32(
<4 x float> %vf1,
metadata !"round.dynamic",
metadata !"fpexcept.strict")
ret <4 x float> %res
}
define <2 x double> @nearbyint_v2f64(<2 x double> %vf1, <2 x double> %vf2) {
; P8-LABEL: nearbyint_v2f64:
; P8: # %bb.0:
; P8-NEXT: xvrdpic v2, v2
; P8-NEXT: blr
;
; P9-LABEL: nearbyint_v2f64:
; P9: # %bb.0:
; P9-NEXT: xvrdpic v2, v2
; P9-NEXT: blr
%res = call <2 x double> @llvm.experimental.constrained.nearbyint.v2f64(
<2 x double> %vf1,
metadata !"round.dynamic",
metadata !"fpexcept.strict")
ret <2 x double> %res
}
define <4 x double> @fpext_v4f64_v4f32(<4 x float> %vf1) {
; P8-LABEL: fpext_v4f64_v4f32:
; P8: # %bb.0:
; P8-NEXT: xxsldwi vs0, v2, v2, 1
; P8-NEXT: xxsldwi vs1, v2, v2, 3
; P8-NEXT: xxswapd vs3, v2
; P8-NEXT: xscvspdpn f2, v2
; P8-NEXT: xscvspdpn f0, vs0
; P8-NEXT: xscvspdpn f1, vs1
; P8-NEXT: xscvspdpn f3, vs3
; P8-NEXT: xxmrghd v2, vs2, vs0
; P8-NEXT: xxmrghd v3, vs3, vs1
; P8-NEXT: blr
;
; P9-LABEL: fpext_v4f64_v4f32:
; P9: # %bb.0:
; P9-NEXT: xxsldwi vs0, v2, v2, 3
; P9-NEXT: xxswapd vs1, v2
; P9-NEXT: xscvspdpn f0, vs0
; P9-NEXT: xscvspdpn f1, vs1
; P9-NEXT: xxsldwi vs2, v2, v2, 1
; P9-NEXT: xscvspdpn f2, vs2
; P9-NEXT: xxmrghd vs0, vs1, vs0
; P9-NEXT: xscvspdpn f1, v2
; P9-NEXT: xxmrghd v3, vs1, vs2
; P9-NEXT: xxlor v2, vs0, vs0
; P9-NEXT: blr
%res = call <4 x double> @llvm.experimental.constrained.fpext.v4f64.v4f32(
<4 x float> %vf1,
metadata !"fpexcept.strict")
ret <4 x double> %res
}
define <2 x double> @fpext_v2f64_v2f32(<2 x float> %vf1) {
; P8-LABEL: fpext_v2f64_v2f32:
; P8: # %bb.0:
; P8-NEXT: xxsldwi vs0, v2, v2, 1
; P8-NEXT: xscvspdpn f1, v2
; P8-NEXT: xscvspdpn f0, vs0
; P8-NEXT: xxmrghd v2, vs1, vs0
; P8-NEXT: blr
;
; P9-LABEL: fpext_v2f64_v2f32:
; P9: # %bb.0:
; P9-NEXT: xxsldwi vs0, v2, v2, 3
; P9-NEXT: xxswapd vs1, v2
; P9-NEXT: xscvspdpn f0, vs0
; P9-NEXT: xscvspdpn f1, vs1
; P9-NEXT: xxmrghd v2, vs1, vs0
; P9-NEXT: blr
%res = call <2 x double> @llvm.experimental.constrained.fpext.v2f64.v2f32(
<2 x float> %vf1,
metadata !"fpexcept.strict")
ret <2 x double> %res
}
define float @fptrunc_f32_f64(double %f1) {
; P8-LABEL: fptrunc_f32_f64:
; P8: # %bb.0:
; P8-NEXT: xsrsp f1, f1
; P8-NEXT: blr
;
; P9-LABEL: fptrunc_f32_f64:
; P9: # %bb.0:
; P9-NEXT: xsrsp f1, f1
; P9-NEXT: blr
%res = call float @llvm.experimental.constrained.fptrunc.f32.f64(
double %f1,
metadata !"round.dynamic",
metadata !"fpexcept.strict")
ret float %res;
}
define <4 x float> @fptrunc_v4f32_v4f64(<4 x double> %vf1) {
; P8-LABEL: fptrunc_v4f32_v4f64:
; P8: # %bb.0:
; P8-NEXT: xxmrgld vs0, v2, v3
; P8-NEXT: xxmrghd vs1, v2, v3
; P8-NEXT: xvcvdpsp v2, vs0
; P8-NEXT: xvcvdpsp v3, vs1
; P8-NEXT: vmrgew v2, v3, v2
; P8-NEXT: blr
;
; P9-LABEL: fptrunc_v4f32_v4f64:
; P9: # %bb.0:
; P9-NEXT: xxmrgld vs0, v3, v2
; P9-NEXT: xvcvdpsp v4, vs0
; P9-NEXT: xxmrghd vs0, v3, v2
; P9-NEXT: xvcvdpsp v2, vs0
; P9-NEXT: vmrgew v2, v2, v4
; P9-NEXT: blr
%res = call <4 x float> @llvm.experimental.constrained.fptrunc.v4f32.v4f64(
<4 x double> %vf1,
metadata !"round.dynamic",
metadata !"fpexcept.strict")
ret <4 x float> %res
}
define <2 x float> @fptrunc_v2f32_v2f64(<2 x double> %vf1) {
; P8-LABEL: fptrunc_v2f32_v2f64:
; P8: # %bb.0:
; P8-NEXT: xxswapd vs0, v2
; P8-NEXT: xsrsp f1, v2
; P8-NEXT: xsrsp f0, f0
; P8-NEXT: xscvdpspn v2, f1
; P8-NEXT: xscvdpspn v3, f0
; P8-NEXT: vmrghw v2, v2, v3
; P8-NEXT: blr
;
; P9-LABEL: fptrunc_v2f32_v2f64:
; P9: # %bb.0:
; P9-NEXT: xsrsp f0, v2
; P9-NEXT: xscvdpspn vs0, f0
; P9-NEXT: xxsldwi v3, vs0, vs0, 3
; P9-NEXT: xxswapd vs0, v2
; P9-NEXT: xsrsp f0, f0
; P9-NEXT: xscvdpspn vs0, f0
; P9-NEXT: xxsldwi v2, vs0, vs0, 3
; P9-NEXT: vmrghw v2, v3, v2
; P9-NEXT: blr
%res = call <2 x float> @llvm.experimental.constrained.fptrunc.v2f32.v2f64(
<2 x double> %vf1,
metadata !"round.dynamic",
metadata !"fpexcept.strict")
ret <2 x float> %res
}
define float @round_f32(float %f1) {
; P8-LABEL: round_f32:
; P8: # %bb.0:
; P8-NEXT: xsrdpi f1, f1
; P8-NEXT: blr
;
; P9-LABEL: round_f32:
; P9: # %bb.0:
; P9-NEXT: xsrdpi f1, f1
; P9-NEXT: blr
%res = call float @llvm.experimental.constrained.round.f32(
float %f1,
metadata !"fpexcept.strict")
ret float %res
}
define double @round_f64(double %f1) {
; P8-LABEL: round_f64:
; P8: # %bb.0:
; P8-NEXT: xsrdpi f1, f1
; P8-NEXT: blr
;
; P9-LABEL: round_f64:
; P9: # %bb.0:
; P9-NEXT: xsrdpi f1, f1
; P9-NEXT: blr
%res = call double @llvm.experimental.constrained.round.f64(
double %f1,
metadata !"fpexcept.strict")
ret double %res
}
define <4 x float> @round_v4f32(<4 x float> %vf1) {
; P8-LABEL: round_v4f32:
; P8: # %bb.0:
; P8-NEXT: xvrspi v2, v2
; P8-NEXT: blr
;
; P9-LABEL: round_v4f32:
; P9: # %bb.0:
; P9-NEXT: xvrspi v2, v2
; P9-NEXT: blr
%res = call <4 x float> @llvm.experimental.constrained.round.v4f32(
<4 x float> %vf1,
metadata !"fpexcept.strict")
ret <4 x float> %res
}
define <2 x double> @round_v2f64(<2 x double> %vf1) {
; P8-LABEL: round_v2f64:
; P8: # %bb.0:
; P8-NEXT: xvrdpi v2, v2
; P8-NEXT: blr
;
; P9-LABEL: round_v2f64:
; P9: # %bb.0:
; P9-NEXT: xvrdpi v2, v2
; P9-NEXT: blr
%res = call <2 x double> @llvm.experimental.constrained.round.v2f64(
<2 x double> %vf1,
metadata !"fpexcept.strict")
ret <2 x double> %res
}
define float @trunc_f32(float %f1) {
; P8-LABEL: trunc_f32:
; P8: # %bb.0:
; P8-NEXT: xsrdpiz f1, f1
; P8-NEXT: blr
;
; P9-LABEL: trunc_f32:
; P9: # %bb.0:
; P9-NEXT: xsrdpiz f1, f1
; P9-NEXT: blr
%res = call float @llvm.experimental.constrained.trunc.f32(
float %f1,
metadata !"fpexcept.strict")
ret float %res
}
define double @trunc_f64(double %f1) {
; P8-LABEL: trunc_f64:
; P8: # %bb.0:
; P8-NEXT: xsrdpiz f1, f1
; P8-NEXT: blr
;
; P9-LABEL: trunc_f64:
; P9: # %bb.0:
; P9-NEXT: xsrdpiz f1, f1
; P9-NEXT: blr
%res = call double @llvm.experimental.constrained.trunc.f64(
double %f1,
metadata !"fpexcept.strict")
ret double %res
}
define <4 x float> @trunc_v4f32(<4 x float> %vf1) {
; P8-LABEL: trunc_v4f32:
; P8: # %bb.0:
; P8-NEXT: xvrspiz v2, v2
; P8-NEXT: blr
;
; P9-LABEL: trunc_v4f32:
; P9: # %bb.0:
; P9-NEXT: xvrspiz v2, v2
; P9-NEXT: blr
%res = call <4 x float> @llvm.experimental.constrained.trunc.v4f32(
<4 x float> %vf1,
metadata !"fpexcept.strict")
ret <4 x float> %res
}
define <2 x double> @trunc_v2f64(<2 x double> %vf1) {
; P8-LABEL: trunc_v2f64:
; P8: # %bb.0:
; P8-NEXT: xvrdpiz v2, v2
; P8-NEXT: blr
;
; P9-LABEL: trunc_v2f64:
; P9: # %bb.0:
; P9-NEXT: xvrdpiz v2, v2
; P9-NEXT: blr
%res = call <2 x double> @llvm.experimental.constrained.trunc.v2f64(
<2 x double> %vf1,
metadata !"fpexcept.strict")
ret <2 x double> %res
}