mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-07 00:50:19 +08:00
8540.md: Use presence_set instead of absence_set.
2003-03-27 Vladimir Makarov <vmakarov@redhat.com> * config/rs6000/8540.md: Use presence_set instead of absence_set. From-SVN: r64926
This commit is contained in:
parent
544aef8cc9
commit
eaff4b90a0
@ -1,3 +1,7 @@
|
||||
2003-03-27 Vladimir Makarov <vmakarov@redhat.com>
|
||||
|
||||
* config/rs6000/8540.md: Use presence_set instead of absence_set.
|
||||
|
||||
2003-03-26 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* c-decl.c (finish_function): Always defer if DECL_DECLARED_INLINE_P.
|
||||
|
@ -55,26 +55,26 @@
|
||||
(define_cpu_unit "ppc8540_lsu" "ppc8540_most")
|
||||
|
||||
;; The following units are used to make automata deterministic
|
||||
(define_cpu_unit "absent_ppc8540_decode_0" "ppc8540_most")
|
||||
(define_cpu_unit "absent_ppc8540_issue_0" "ppc8540_most")
|
||||
(define_cpu_unit "absent_ppc8540_retire_0" "ppc8540_retire")
|
||||
(define_cpu_unit "absent_ppc8540_siu0_stage0" "ppc8540_most")
|
||||
(define_cpu_unit "present_ppc8540_decode_0" "ppc8540_most")
|
||||
(define_cpu_unit "present_ppc8540_issue_0" "ppc8540_most")
|
||||
(define_cpu_unit "present_ppc8540_retire_0" "ppc8540_retire")
|
||||
(define_cpu_unit "present_ppc8540_siu0_stage0" "ppc8540_most")
|
||||
|
||||
;; The following sets to make automata deterministic when option ndfa is used.
|
||||
(absence_set "absent_ppc8540_decode_0" "ppc8540_decode_0")
|
||||
(absence_set "absent_ppc8540_issue_0" "ppc8540_issue_0")
|
||||
(absence_set "absent_ppc8540_retire_0" "ppc8540_retire_0")
|
||||
(absence_set "absent_ppc8540_siu0_stage0" "ppc8540_siu0_stage0")
|
||||
(presence_set "present_ppc8540_decode_0" "ppc8540_decode_0")
|
||||
(presence_set "present_ppc8540_issue_0" "ppc8540_issue_0")
|
||||
(presence_set "present_ppc8540_retire_0" "ppc8540_retire_0")
|
||||
(presence_set "present_ppc8540_siu0_stage0" "ppc8540_siu0_stage0")
|
||||
|
||||
;; Some useful abbreviations.
|
||||
(define_reservation "ppc8540_decode"
|
||||
"ppc8540_decode_0|ppc8540_decode_1+absent_ppc8540_decode_0")
|
||||
"ppc8540_decode_0|ppc8540_decode_1+present_ppc8540_decode_0")
|
||||
(define_reservation "ppc8540_issue"
|
||||
"ppc8540_issue_0|ppc8540_issue_1+absent_ppc8540_issue_0")
|
||||
"ppc8540_issue_0|ppc8540_issue_1+present_ppc8540_issue_0")
|
||||
(define_reservation "ppc8540_retire"
|
||||
"ppc8540_retire_0|ppc8540_retire_1+absent_ppc8540_retire_0")
|
||||
"ppc8540_retire_0|ppc8540_retire_1+present_ppc8540_retire_0")
|
||||
(define_reservation "ppc8540_siu_stage0"
|
||||
"ppc8540_siu0_stage0|ppc8540_siu1_stage0+absent_ppc8540_siu0_stage0")
|
||||
"ppc8540_siu0_stage0|ppc8540_siu1_stage0+present_ppc8540_siu0_stage0")
|
||||
|
||||
;; Simple SIU insns
|
||||
(define_insn_reservation "ppc8540_siu" 1
|
||||
|
Loading…
Reference in New Issue
Block a user