[PATCH] D102621: [X86] Pre-commit test for D90901

Jim Lin via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 20 19:45:55 PDT 2021


Jim updated this revision to Diff 346912.
Jim added a comment.

Update comment in the test.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D102621/new/

https://reviews.llvm.org/D102621

Files:
  llvm/test/CodeGen/X86/fma-signed-zero.ll


Index: llvm/test/CodeGen/X86/fma-signed-zero.ll
===================================================================
--- /dev/null
+++ llvm/test/CodeGen/X86/fma-signed-zero.ll
@@ -0,0 +1,57 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mattr=+fma | FileCheck %s
+
+; This test checks that (fneg (fma (fneg x), y, (fneg z))) can't be folded to (fma x, y, z)
+; without no signed zeros flag (nsz).
+
+declare float @llvm.fma.f32(float, float, float)
+
+define float @fneg_fma32(float %x, float %y, float %z) {
+; CHECK-LABEL: fneg_fma32:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    vfmadd213ss {{.*#+}} xmm0 = (xmm1 * xmm0) + xmm2
+; CHECK-NEXT:    retq
+  %negx = fneg float %x
+  %negz = fneg float %z
+  %fma = call float @llvm.fma.f32(float %negx, float %y, float %negz)
+  %n = fneg float %fma
+  ret float %n
+}
+
+define float @fneg_fma32_nsz(float %x, float %y, float %z) {
+; CHECK-LABEL: fneg_fma32_nsz:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    vfmadd213ss {{.*#+}} xmm0 = (xmm1 * xmm0) + xmm2
+; CHECK-NEXT:    retq
+  %negx = fneg float %x
+  %negz = fneg float %z
+  %fma = call nsz float @llvm.fma.f32(float %negx, float %y, float %negz)
+  %n = fneg float %fma
+  ret float %n
+}
+
+declare double @llvm.fma.f64(double, double, double)
+
+define double @fneg_fma64(double %x, double %y, double %z) {
+; CHECK-LABEL: fneg_fma64:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    vfmadd213sd {{.*#+}} xmm0 = (xmm1 * xmm0) + xmm2
+; CHECK-NEXT:    retq
+  %negx = fneg double %x
+  %negz = fneg double %z
+  %fma = call double @llvm.fma.f64(double %negx, double %y, double %negz)
+  %n = fneg double %fma
+  ret double %n
+}
+
+define double @fneg_fma64_nsz(double %x, double %y, double %z) {
+; CHECK-LABEL: fneg_fma64_nsz:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    vfmadd213sd {{.*#+}} xmm0 = (xmm1 * xmm0) + xmm2
+; CHECK-NEXT:    retq
+  %negx = fneg double %x
+  %negz = fneg double %z
+  %fma = call nsz double @llvm.fma.f64(double %negx, double %y, double %negz)
+  %n = fneg double %fma
+  ret double %n
+}


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D102621.346912.patch
Type: text/x-patch
Size: 2107 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210521/5d20a786/attachment.bin>


More information about the llvm-commits mailing list