diff options
author | David Edelsohn <edelsohn@gnu.org> | 2003-04-01 18:05:46 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2003-04-01 13:05:46 -0500 |
commit | 9259f3b0f00c69cc4d6f146c85fc2510e80cdc26 (patch) | |
tree | 9f7e12feaafa90dcaf089b23a2dd1836d970a254 /gcc/config/rs6000/rs64.md | |
parent | 7fe317e4eaba64967d11ac62c117c756303a25bd (diff) | |
download | gcc-9259f3b0f00c69cc4d6f146c85fc2510e80cdc26.zip gcc-9259f3b0f00c69cc4d6f146c85fc2510e80cdc26.tar.gz gcc-9259f3b0f00c69cc4d6f146c85fc2510e80cdc26.tar.bz2 |
{40x.md,603.md,6xx.md,7450.md,7xx.md,mpc.md, [...]: Change mult_compare to imul_compare.
* config/rs6000/{40x.md,603.md,6xx.md,7450.md,7xx.md,mpc.md,
power4.md,rios1.md,rios2.md,rs64.md}: Change mult_compare to
imul_compare. Add lmul_compare.
* config/rs6000/power4.md: Bump some latencies. Model extra cycle
in second pair of dispatch slots. Model stores more accurately.
Tweak multiply model. Add bypasses for CR instructions dependent
on complicated compares.
* config/rs6000/rs6000.md (mulsi3): Name imul_compare patterns.
(muldi3): Add lmul_compare patterns.
* config/rs6000/rs6000.c (rs6000_variable_issue): Move FPLOAD_UX
and FPSTORE_UX to split instructions and add COMPARE,
DELAYED_COMPARE, IMUL_COMPARE, LMUL_COMPARE, IDIV, LDIV.
(rs6000_adjust_cost): Add IMUL_COMPARE and LMUL_COMPARE.
(rs6000_rtx_costs): Separate POWER4 multiply case.
From-SVN: r65135
Diffstat (limited to 'gcc/config/rs6000/rs64.md')
-rw-r--r-- | gcc/config/rs6000/rs64.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs64.md b/gcc/config/rs6000/rs64.md index 46291b30..011b3df 100644 --- a/gcc/config/rs6000/rs64.md +++ b/gcc/config/rs6000/rs64.md @@ -47,7 +47,7 @@ "iu_rs64") (define_insn_reservation "rs64a-imul" 20 - (and (eq_attr "type" "imul,mult_compare") + (and (eq_attr "type" "imul,imul_compare") (eq_attr "cpu" "rs64a")) "mciu_rs64*13") @@ -62,7 +62,7 @@ "mciu_rs64*2") (define_insn_reservation "rs64a-lmul" 34 - (and (eq_attr "type" "lmul") + (and (eq_attr "type" "lmul,lmul_compare") (eq_attr "cpu" "rs64a")) "mciu_rs64*34") |