diff options
author | Doug Evans <dje@gnu.org> | 1996-04-10 22:38:36 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-04-10 22:38:36 +0000 |
commit | 3f79ef9b646c6eb2e7c229c9f23bdd96da4a0bcf (patch) | |
tree | 124d0900aef6ad5d66b65a15b1414ffae81cc98b | |
parent | 9b7c06d217135655fa9c51cb265bfdf5975729d4 (diff) | |
download | gcc-3f79ef9b646c6eb2e7c229c9f23bdd96da4a0bcf.zip gcc-3f79ef9b646c6eb2e7c229c9f23bdd96da4a0bcf.tar.gz gcc-3f79ef9b646c6eb2e7c229c9f23bdd96da4a0bcf.tar.bz2 |
* sparc/sparc.md (attr cpu): 90c701 renamed to tsc701.
From-SVN: r11693
-rw-r--r-- | gcc/config/sparc/sparc.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index bf6f1e2..d2c5730 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -34,7 +34,7 @@ ;; Attribute for cpu type. ;; These must match the values for enum processor_type in sparc.h. -(define_attr "cpu" "v7,cypress,v8,supersparc,sparclite,f930,f934,sparclet,90c701,v8plus,v9,ultrasparc" +(define_attr "cpu" "v7,cypress,v8,supersparc,sparclite,f930,f934,sparclet,tsc701,v8plus,v9,ultrasparc" (const (symbol_ref "sparc_cpu_attr"))) ;; Attribute for the instruction set. @@ -255,22 +255,22 @@ (define_function_unit "fp_mds" 1 0 (and (eq_attr "type" "imul") (eq_attr "cpu" "supersparc")) 12 12) -;; ----- sparclet 90c701 scheduling -;; The 90c701 issues 1 insn per cycle. +;; ----- sparclet tsc701 scheduling +;; The tsc701 issues 1 insn per cycle. ;; Results may be written back out of order. ;; Loads take 2 extra cycles to complete and 4 can be buffered at a time. -(define_function_unit "s90c701_load" 4 1 - (and (eq_attr "type" "load") (eq_attr "cpu" "90c701")) 3 1) +(define_function_unit "tsc701_load" 4 1 + (and (eq_attr "type" "load") (eq_attr "cpu" "tsc701")) 3 1) ;; Stores take 2(?) extra cycles to complete. ;; It is desirable to not have any memory operation in the following 2 cycles. ;; (??? or 2 memory ops in the case of std). -(define_function_unit "s90c701_store" 1 0 - (and (eq_attr "type" "store") (eq_attr "cpu" "90c701")) 3 3 +(define_function_unit "tsc701_store" 1 0 + (and (eq_attr "type" "store") (eq_attr "cpu" "tsc701")) 3 3 [(eq_attr "type" "load,store")]) ;; The multiply unit has a latency of 5. -(define_function_unit "s90c701_mul" 1 0 - (and (eq_attr "type" "imul") (eq_attr "cpu" "90c701")) 5 5) +(define_function_unit "tsc701_mul" 1 0 + (and (eq_attr "type" "imul") (eq_attr "cpu" "tsc701")) 5 5) ;; Compare instructions. ;; This controls RTL generation and register allocation. |