From patchwork Mon May 30 10:07:28 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [x86] fix FMA cost computation Date: Mon, 30 May 2011 00:07:28 -0000 From: Alexandre Oliva X-Patchwork-Id: 97900 Message-Id: To: gcc-patches@gcc.gnu.org One of my patches for PR48866 mysteriously regressed fma3-fma.c. It turned out that a rearrangement in the order of emitting insns during expansion caused combine to attempt combinations in a different order, and this ended up exposing a latent error in the cost computation of FMA insns, that caused a desirable combination to be regarded as not profitable. The problem was that, when stripping out NEGs from operands, that would be costless in FMA variants, we took the sub-operand from the wrong variable. Oops. I took the opportunity to fix the names of the fma_fnm* patterns, that were missing the ā€œnā€. Regstrapped on x86_64-linux-gnu and i686-linux-gnu. Ok to install? for gcc/ChangeLog from Alexandre Oliva * config/i386/i386.c (ix86_rtx_costs): Drop NEG from sub for FMA. * config/i386/sse.md: Add n to negated FMA pattern names. Index: gcc/config/i386/i386.c =================================================================== --- gcc/config/i386/i386.c.orig 2011-05-26 05:03:11.755995482 -0300 +++ gcc/config/i386/i386.c 2011-05-26 05:03:20.639013123 -0300 @@ -29231,12 +29231,12 @@ ix86_rtx_costs (rtx x, int code, int out /* Negate in op0 or op2 is free: FMS, FNMA, FNMS. */ sub = XEXP (x, 0); if (GET_CODE (sub) == NEG) - sub = XEXP (x, 0); + sub = XEXP (sub, 0); *total += rtx_cost (sub, FMA, speed); sub = XEXP (x, 2); if (GET_CODE (sub) == NEG) - sub = XEXP (x, 0); + sub = XEXP (sub, 0); *total += rtx_cost (sub, FMA, speed); return true; } Index: gcc/config/i386/sse.md =================================================================== --- gcc/config/i386/sse.md.orig 2011-05-26 05:03:11.755995482 -0300 +++ gcc/config/i386/sse.md 2011-05-26 05:03:20.642013129 -0300 @@ -1731,7 +1731,7 @@ [(set_attr "type" "ssemuladd") (set_attr "mode" "")]) -(define_insn "*fma_fmadd_" +(define_insn "*fma_fnmadd_" [(set (match_operand:FMAMODE 0 "register_operand" "=x,x,x") (fma:FMAMODE (neg:FMAMODE @@ -1746,7 +1746,7 @@ [(set_attr "type" "ssemuladd") (set_attr "mode" "")]) -(define_insn "*fma_fmsub_" +(define_insn "*fma_fnmsub_" [(set (match_operand:FMAMODE 0 "register_operand" "=x,x,x") (fma:FMAMODE (neg:FMAMODE