diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-16 02:11:41 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-16 02:11:41 +0000 |
commit | e9e582c8e1d75f11aa4815539fc0925af146e9c2 (patch) | |
tree | 3739dcf7580afc63bc3bd7b2169b1ceb21fd48f7 /gcc/config/mips/7000.md | |
parent | 3ec8c2a1cf762f634aa5516ee83f7bf95ef04b54 (diff) | |
download | gcc-e9e582c8e1d75f11aa4815539fc0925af146e9c2.tar.gz |
Patch for SB-1 DFA scheduler work.
* config/mips/mips.md (type): Split load into load, fpload, fpidxload.
Split store into store, fpstore, fpidxstore. Fix all uses.
* config/mips/5400.md (ir_vr54_load, ir_vr54_store, ir_vr54_fstore):
Likewise.
* config/mips/5500.md (ir_vr55_load, i5_vr55_store): Likewise.
* config/mips/7000.md (rm7_ld, rm7_st): Likewise.
* config/mips/9000.md (rm9k_load, rm9k_store): Likewise.
* config/mips/sr71k.md (ir_sr70_load, ir_sr70_store, ir_sr70_fload,
ir_sr70_fstore): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79522 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips/7000.md')
-rw-r--r-- | gcc/config/mips/7000.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/7000.md b/gcc/config/mips/7000.md index 2ea6298fddf..86ec1971f88 100644 --- a/gcc/config/mips/7000.md +++ b/gcc/config/mips/7000.md @@ -92,11 +92,11 @@ "rm7_iaddsub") (define_insn_reservation "rm7_ld" 2 (and (eq_attr "cpu" "r7000") - (eq_attr "type" "load")) + (eq_attr "type" "load,fpload,fpidxload")) "rm7_imem") (define_insn_reservation "rm7_st" 1 (and (eq_attr "cpu" "r7000") - (eq_attr "type" "store")) + (eq_attr "type" "store,fpstore,fpidxstore")) "rm7_imem") (define_insn_reservation "rm7_idiv_si" 36 (and (eq_attr "cpu" "r7000") |