]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
MIPSr6/math: Use builtin fma and fmaf
authorYunQiang Su <syq@gcc.gnu.org>
Tue, 4 Jun 2024 01:31:19 +0000 (09:31 +0800)
committerAndreas K. Hüttel <dilfridge@gentoo.org>
Mon, 24 Jun 2024 17:43:57 +0000 (19:43 +0200)
MIPSr6 has MADDF.s/MADDF.d instructions, which are fused.

In MIPS ISA, double support can be subsetted.  Only FMAF is enabled
for this case.

* sysdeps/mips/fpu/math-use-builtins-fma.h

Signed-off-by: YunQiang Su <syq@gcc.gnu.org>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
sysdeps/mips/fpu/math-use-builtins-fma.h [new file with mode: 0644]

diff --git a/sysdeps/mips/fpu/math-use-builtins-fma.h b/sysdeps/mips/fpu/math-use-builtins-fma.h
new file mode 100644 (file)
index 0000000..af8c1f9
--- /dev/null
@@ -0,0 +1,13 @@
+#if __mips_isa_rev >= 6
+# ifdef __mips_single_float
+#  define USE_FMA_BUILTIN 0
+# else
+#  define USE_FMA_BUILTIN 1
+# endif
+# define USE_FMAF_BUILTIN 1
+#else
+# define USE_FMA_BUILTIN 0
+# define USE_FMAF_BUILTIN 0
+#endif
+#define USE_FMAL_BUILTIN 0
+#define USE_FMAF128_BUILTIN 0