diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-23 19:44:46 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-23 19:44:46 +0000 |
commit | f01296c39cd412be6672e98ba61ff61b1a6e0a3b (patch) | |
tree | f080f1d15e8f6c996c1bc90396c01b53fa475cc4 /gcc/config/mips/24k.md | |
parent | 34e7d7fea2eb9cc2dbc81a7d3ada86de472346e5 (diff) | |
download | gcc-f01296c39cd412be6672e98ba61ff61b1a6e0a3b.tar.gz |
* config/mips/mips.md (type, hazard, *movdi_32bit,
*movdi_gp32_fp64, *movdi_64bit, *movsi_internal, movcc,
*movhi_internal, *movqi_internal, *movsf_hardfloat,
*movdf_hardfloat_64bit, *movdf_hardfloat_32bit, *movdf_softfloat,
movv2sf_hardfloat_64bit, load_df_low, load_df_high, store_df_high,
mthc1, mfhc1): Change xfer instruction type to mfc and mtc, as
applicable.
(movcc): Change first xfer to multi.
* config/mips/24k.md, config/mips/4100.md, config/mips/4300.md,
config/mips/5000.md, config/mips/5400.md, config/mips/5500.md,
config/mips/5k.md, config/mips/7000.md, config/mips/9000.md,
config/mips/generic.md: Change reservations using "xfer" to use
"mfc,mtc".
* config/mips/sb1.md (ir_sb1_mtxfer): Use "mtc" instead of
using match_operand.
(ir_sb1_mfxfer): Use "mfc" instead of using match_operand.
* config/mips/sr71k.md (ir_sr70_xfer_from): Use "mfc" instead of
examining mode.
(ir_sr70_xfer_to): Use "mtc" instead of examining mode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123164 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips/24k.md')
-rw-r--r-- | gcc/config/mips/24k.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/24k.md b/gcc/config/mips/24k.md index 1012677d100..79b74ca8f8b 100644 --- a/gcc/config/mips/24k.md +++ b/gcc/config/mips/24k.md @@ -319,7 +319,7 @@ ;; fxfer (mfc1, mfhc1, mtc1, mthc1) (define_insn_reservation "r24k_fxfer" 4 (and (eq_attr "cpu" "24kf") - (eq_attr "type" "xfer")) + (eq_attr "type" "mfc,mtc")) "r24k_fpu_iss") ;; -------------------------------------------------------------- @@ -435,7 +435,7 @@ ;; fxfer (mfc1, mfhc1, mtc1, mthc1) (define_insn_reservation "r24kx_fxfer" 2 (and (eq_attr "cpu" "24kx") - (eq_attr "type" "xfer")) + (eq_attr "type" "mfc,mtc")) "r24kx_fpu_iss") ;; -------------------------------------------------------------- |