Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / config / sparc / niagara2.md
blob298ebe013f999dbfc80e888737f5c5d8fa655c11
1 ;; Scheduling description for Niagara-2.
2 ;;   Copyright (C) 2007 Free Software Foundation, Inc.
3 ;;
4 ;; This file is part of GCC.
5 ;;
6 ;; GCC is free software; you can redistribute it and/or modify
7 ;; it under the terms of the GNU General Public License as published by
8 ;; the Free Software Foundation; either version 3, or (at your option)
9 ;; any later version.
11 ;; GCC is distributed in the hope that it will be useful,
12 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;; GNU General Public License for more details.
16 ;; You should have received a copy of the GNU General Public License
17 ;; along with GCC; see the file COPYING3.  If not see
18 ;; <http://www.gnu.org/licenses/>. 
20 ;; Niagara-2 is a single-issue processor.
22 (define_automaton "niagara2_0")
24 (define_cpu_unit "niag2_pipe" "niagara2_0")
26 (define_insn_reservation "niag2_25cycle" 25
27   (and (eq_attr "cpu" "niagara2")
28     (eq_attr "type" "flushw"))
29   "niag2_pipe*25")
31 (define_insn_reservation "niag2_5cycle" 5
32   (and (eq_attr "cpu" "niagara2")
33     (eq_attr "type" "multi,flushw,iflush,trap"))
34   "niag2_pipe*5")
36 (define_insn_reservation "niag2_6cycle" 4
37   (and (eq_attr "cpu" "niagara2")
38     (eq_attr "type" "savew"))
39   "niag2_pipe*4")
41 /* Most basic operations are single-cycle. */
42 (define_insn_reservation "niag2_ialu" 1
43  (and (eq_attr "cpu" "niagara2")
44    (eq_attr "type" "ialu,shift,compare,cmove"))
45  "niag2_pipe")
47 (define_insn_reservation "niag2_imul" 5
48  (and (eq_attr "cpu" "niagara2")
49    (eq_attr "type" "imul"))
50  "niag2_pipe*5")
52 (define_insn_reservation "niag2_idiv" 31
53  (and (eq_attr "cpu" "niagara2")
54    (eq_attr "type" "idiv"))
55  "niag2_pipe*31")
57 (define_insn_reservation "niag2_branch" 5
58   (and (eq_attr "cpu" "niagara2")
59     (eq_attr "type" "call,sibcall,call_no_delay_slot,uncond_branch,branch"))
60   "niag2_pipe*5")
62 (define_insn_reservation "niag2_3cycle_load" 3
63   (and (eq_attr "cpu" "niagara2")
64     (eq_attr "type" "load,fpload"))
65   "niag2_pipe*3")
67 (define_insn_reservation "niag2_1cycle_store" 1
68   (and (eq_attr "cpu" "niagara2")
69     (eq_attr "type" "store,fpstore"))
70   "niag2_pipe")
72 (define_insn_reservation "niag2_fp" 3
73   (and (eq_attr "cpu" "niagara2")
74     (eq_attr "type" "fpmove,fpcmove,fpcrmove,fpcmp,fpmul"))
75   "niag2_pipe*3")
77 (define_insn_reservation "niag2_fdivs" 19
78   (and (eq_attr "cpu" "niagara2")
79     (eq_attr "type" "fpdivs"))
80   "niag2_pipe*19")
82 (define_insn_reservation "niag2_fdivd" 33
83   (and (eq_attr "cpu" "niagara2")
84     (eq_attr "type" "fpdivd"))
85   "niag2_pipe*33")
87 (define_insn_reservation "niag2_vis" 6
88   (and (eq_attr "cpu" "niagara2")
89     (eq_attr "type" "fga,fgm_pack,fgm_mul,fgm_cmp,fgm_pdist"))
90   "niag2_pipe*6")