+2019-05-21 Alan Modra <amodra@gmail.com>
+
+ PR target/90545
+ * config/rs6000/rs6000.c (rs6000_register_move_cost): Increase
+ power9 direct move cost.
+ * testsuite/gcc.target/powerpc/fold-vec-splats-floatdouble.c:
+ Correct comments and rename functions to suit parameters.
+
2019-05-21 Richard Biener <rguenther@suse.de>
PR middle-end/90510
{
if (TARGET_DIRECT_MOVE)
{
+ /* Keep the cost for direct moves above that for within
+ a register class even if the actual processor cost is
+ comparable. We do this because a direct move insn
+ can't be a nop, whereas with ideal register
+ allocation a move within the same class might turn
+ out to be a nop. */
if (rs6000_tune == PROCESSOR_POWER9)
- ret = 2 * hard_regno_nregs (FIRST_GPR_REGNO, mode);
+ ret = 3 * hard_regno_nregs (FIRST_GPR_REGNO, mode);
else
ret = 4 * hard_regno_nregs (FIRST_GPR_REGNO, mode);
/* SFmode requires a conversion when moving between gprs
#include <altivec.h>
vector float
-test1d (float x)
+test1f (float x)
{
return vec_splats (x);
}
vector double
-test1f (double x)
+test1d (double x)
{
return vec_splats (x);
}
-// float test generates the permute instruction.
+// double test generates the permute instruction.
/* { dg-final { scan-assembler-times "xxpermdi" 1 } } */
-// double test generates a convert (double to single non-signalling) followed by a splat.
+// float test generates a convert (double to single non-signalling) followed by a splat.
/* { dg-final { scan-assembler-times {\mxscvdpspn?\M} 1 } } */
/* { dg-final { scan-assembler-times {\mvspltw\M|\mxxspltw\M} 1 } } */