aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Dettinger <dettinge@de.ibm.com>2004-12-10 16:25:51 +0000
committerUlrich Weigand <uweigand@gcc.gnu.org>2004-12-10 16:25:51 +0000
commit2742a1edf52524ccaf6d406327695912a198bb65 (patch)
tree185c3d4fd7f0a425d23e5e76c41fcaf1f8d82bec
parent9bf0e5888c1217afef058dbb59cb5d7824c4bba2 (diff)
downloadgcc-2742a1edf52524ccaf6d406327695912a198bb65.zip
gcc-2742a1edf52524ccaf6d406327695912a198bb65.tar.gz
gcc-2742a1edf52524ccaf6d406327695912a198bb65.tar.bz2
s390.c (struct processor_costs): New fields ml, sqdbr, sqebr.
2004-12-06 Mark Dettinger <dettinge@de.ibm.com> * config/s390/s390.c (struct processor_costs): New fields ml, sqdbr, sqebr. (s390_rtx_costs): Added the missing handling of multiply & add, square root, and umulsidi. From-SVN: r91996
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/s390/s390.c43
2 files changed, 47 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4c3730b..829df47 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2004-12-10 Mark Dettinger <dettinge@de.ibm.com>
+
+ * config/s390/s390.c (struct processor_costs): New fields ml,
+ sqdbr, sqebr.
+ (s390_rtx_costs): Added the missing handling of multiply & add,
+ square root, and umulsidi.
+
2004-12-10 Kazu Hirata <kazu@cs.umass.edu>
* expmed.c (synth_mult): Initialize new_limit.latency before
diff --git a/gcc/config/s390/s390.c b/gcc/config/s390/s390.c
index 1526f90..856a0b7 100644
--- a/gcc/config/s390/s390.c
+++ b/gcc/config/s390/s390.c
@@ -94,6 +94,7 @@ struct processor_costs
const int mghi; /* cost of an MGHI instruction. */
const int mh; /* cost of an MH instruction. */
const int mhi; /* cost of an MHI instruction. */
+ const int ml; /* cost of an ML instruction. */
const int mr; /* cost of an MR instruction. */
const int ms; /* cost of an MS instruction. */
const int msg; /* cost of an MSG instruction. */
@@ -102,6 +103,8 @@ struct processor_costs
const int msgr; /* cost of an MSGR instruction. */
const int msr; /* cost of an MSR instruction. */
const int mult_df; /* cost of multiplication in DFmode. */
+ const int sqdbr; /* cost of square root in DFmode. */
+ const int sqebr; /* cost of square root in SFmode. */
};
const struct processor_costs *s390_cost;
@@ -113,6 +116,7 @@ struct processor_costs z900_cost =
COSTS_N_INSNS (10), /* MGHI */
COSTS_N_INSNS (5), /* MH */
COSTS_N_INSNS (4), /* MHI */
+ COSTS_N_INSNS (5), /* ML */
COSTS_N_INSNS (5), /* MR */
COSTS_N_INSNS (4), /* MS */
COSTS_N_INSNS (15), /* MSG */
@@ -121,6 +125,8 @@ struct processor_costs z900_cost =
COSTS_N_INSNS (10), /* MSGR */
COSTS_N_INSNS (4), /* MSR */
COSTS_N_INSNS (7), /* multiplication in DFmode */
+ COSTS_N_INSNS (44), /* SQDBR */
+ COSTS_N_INSNS (35), /* SQEBR */
};
static const
@@ -130,6 +136,7 @@ struct processor_costs z990_cost =
COSTS_N_INSNS (2), /* MGHI */
COSTS_N_INSNS (2), /* MH */
COSTS_N_INSNS (2), /* MHI */
+ COSTS_N_INSNS (4), /* ML */
COSTS_N_INSNS (4), /* MR */
COSTS_N_INSNS (5), /* MS */
COSTS_N_INSNS (6), /* MSG */
@@ -138,6 +145,8 @@ struct processor_costs z990_cost =
COSTS_N_INSNS (4), /* MSGR */
COSTS_N_INSNS (4), /* MSR */
COSTS_N_INSNS (1), /* multiplication in DFmode */
+ COSTS_N_INSNS (66), /* SQDBR */
+ COSTS_N_INSNS (38), /* SQEBR */
};
@@ -1882,21 +1891,36 @@ s390_rtx_costs (rtx x, int code, int outer_code, int *total)
case LSHIFTRT:
case ROTATE:
case ROTATERT:
- case PLUS:
case AND:
case IOR:
case XOR:
- case MINUS:
case NEG:
case NOT:
*total = COSTS_N_INSNS (1);
return false;
+ case PLUS:
+ case MINUS:
+ /* Check for multiply and add. */
+ if (GET_MODE (x) == DFmode
+ && GET_CODE (XEXP (x, 0)) == MULT
+ && TARGET_HARD_FLOAT && TARGET_IEEE_FLOAT && TARGET_FUSED_MADD)
+ {
+ /* This is the multiply and add case. */
+ *total = s390_cost->mult_df
+ + rtx_cost (XEXP (XEXP (x, 0), 0), MULT)
+ + rtx_cost (XEXP (XEXP (x, 0), 1), MULT)
+ + rtx_cost (XEXP (x, 1), code);
+ return true; /* Do not do an additional recursive descent. */
+ }
+ *total = COSTS_N_INSNS (1);
+ return false;
+
case MULT:
switch (GET_MODE (x))
{
case SImode:
- {
+ {
rtx left = XEXP (x, 0);
rtx right = XEXP (x, 1);
if (GET_CODE (right) == CONST_INT
@@ -1928,6 +1952,11 @@ s390_rtx_costs (rtx x, int code, int outer_code, int *total)
&& GET_CODE (right) == SIGN_EXTEND)
/* mulsidi case: mr, m */
*total = s390_cost->m;
+ else if (GET_CODE (left) == ZERO_EXTEND
+ && GET_CODE (right) == ZERO_EXTEND
+ && TARGET_CPU_ZARCH)
+ /* umulsidi case: ml, mlr */
+ *total = s390_cost->ml;
else
/* Complex calculation is required. */
*total = COSTS_N_INSNS (40);
@@ -1950,7 +1979,15 @@ s390_rtx_costs (rtx x, int code, int outer_code, int *total)
*total = COSTS_N_INSNS (33);
return false;
+ case SQRT:
+ if (GET_MODE (x) == SFmode)
+ *total = s390_cost->sqebr;
+ else /* DFmode */
+ *total = s390_cost->sqdbr;
+ return false;
+
case SIGN_EXTEND:
+ case ZERO_EXTEND:
if (outer_code == MULT)
*total = 0;
return false;