Avoid using predefined insn name for instruction with different semantics
authorJeff Law <jeffreyalaw@gmail.com>
Wed, 9 Feb 2022 19:10:53 +0000 (14:10 -0500)
committerJeff Law <jeffreyalaw@gmail.com>
Wed, 9 Feb 2022 19:10:53 +0000 (14:10 -0500)
This isn't technically a regression, but it only impacts the v850 target and
fixes a long standing code correctness issue.

As outlined in slightly more detail in the PR, the v850 is using the pattern
name "fnmasf4" and "fnmssf4" to generate fnmaf.s and fnmsf.s instructions
 respectively.

Unfortunately fnmasf4 is expected to produce (-a * b) + c and
fnmssf4 (-a * b) - c.  Those v850 instructions actually negate the entire
result.

The fix is trivial.  Use a different pattern name so that the combiner can
still generate those instructions, but prevent those instructions from being
used to implement GCC's notion of what fnmas and fnmss should be.

This fixes pr97040 as well as a handful of testsuite failures for the v3e5
multilib.

gcc/
PR target/97040
* config/v850/v850.md (*v850_fnmasf4): Renamed from fnmasf4.
(*v850_fnmssf4): Renamed from fnmssf4

gcc/config/v850/v850.md

index ed51157..6ca31e3 100644 (file)
    (set_attr "type" "fpu")])
 
 ;;; negative-multiply-add
-(define_insn "fnmasf4"
+;; Note the name on this and the following insn were previously fnmasf4
+;; and fnmssf4.  Those names are known to the gimple->rtl expanders and
+;; must implement specific semantics (negating one of the inputs to the
+;; multiplication).  The v850 instructions actually negate the entire
+;; result.  Thus the names have been changed and hidden.
+(define_insn "*v850_fnmasf4"
   [(set (match_operand:SF                 0 "register_operand" "=r")
        (neg:SF (fma:SF (match_operand:SF 1 "register_operand" "r")
                        (match_operand:SF 2 "register_operand" "r")
    (set_attr "type" "fpu")])
 
 ;; negative-multiply-subtract
-(define_insn "fnmssf4"
+(define_insn "*v850_fnmssf4"
   [(set (match_operand:SF                         0 "register_operand" "=r")
        (neg:SF (fma:SF (match_operand:SF         1 "register_operand" "r")
                        (match_operand:SF         2 "register_operand" "r")