1;; Pipeline model for Loongson gs264e cores. 2 3;; Copyright (C) 2018-2020 Free Software Foundation, Inc. 4;; 5;; This file is part of GCC. 6;; 7;; GCC is free software; you can redistribute it and/or modify it 8;; under the terms of the GNU General Public License as published 9;; by the Free Software Foundation; either version 3, or (at your 10;; option) any later version. 11;; 12;; GCC is distributed in the hope that it will be useful, but WITHOUT 13;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 14;; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 15;; License for more details. 16;; 17;; You should have received a copy of the GNU General Public License 18;; along with GCC; see the file COPYING3. If not see 19;; <http://www.gnu.org/licenses/>. 20 21;; Uncomment the following line to output automata for debugging. 22;; (automata_option "v") 23 24;; Automaton for integer instructions. 25(define_automaton "gs264e_a_alu") 26 27;; Automaton for floating-point instructions. 28(define_automaton "gs264e_a_falu") 29 30;; Automaton for memory operations. 31(define_automaton "gs264e_a_mem") 32 33;; Describe the resources. 34 35(define_cpu_unit "gs264e_alu1" "gs264e_a_alu") 36(define_cpu_unit "gs264e_mem1" "gs264e_a_mem") 37(define_cpu_unit "gs264e_falu1" "gs264e_a_falu") 38 39;; Describe instruction reservations. 40 41(define_insn_reservation "gs264e_arith" 1 42 (and (eq_attr "cpu" "gs264e") 43 (eq_attr "type" "arith,clz,const,logical, 44 move,nop,shift,signext,slt")) 45 "gs264e_alu1") 46 47(define_insn_reservation "gs264e_branch" 1 48 (and (eq_attr "cpu" "gs264e") 49 (eq_attr "type" "branch,jump,call,condmove,trap")) 50 "gs264e_alu1") 51 52(define_insn_reservation "gs264e_mfhilo" 1 53 (and (eq_attr "cpu" "gs264e") 54 (eq_attr "type" "mfhi,mflo,mthi,mtlo")) 55 "gs264e_alu1") 56 57;; Operation imul3nc is fully pipelined. 58(define_insn_reservation "gs264e_imul3nc" 7 59 (and (eq_attr "cpu" "gs264e") 60 (eq_attr "type" "imul3nc")) 61 "gs264e_alu1") 62 63(define_insn_reservation "gs264e_imul" 7 64 (and (eq_attr "cpu" "gs264e") 65 (eq_attr "type" "imul,imadd")) 66 "gs264e_alu1") 67 68(define_insn_reservation "gs264e_idiv_si" 12 69 (and (eq_attr "cpu" "gs264e") 70 (and (eq_attr "type" "idiv") 71 (eq_attr "mode" "SI"))) 72 "gs264e_alu1") 73 74(define_insn_reservation "gs264e_idiv_di" 25 75 (and (eq_attr "cpu" "gs264e") 76 (and (eq_attr "type" "idiv") 77 (eq_attr "mode" "DI"))) 78 "gs264e_alu1") 79 80(define_insn_reservation "gs264e_load" 4 81 (and (eq_attr "cpu" "gs264e") 82 (eq_attr "type" "load")) 83 "gs264e_mem1") 84 85(define_insn_reservation "gs264e_fpload" 4 86 (and (eq_attr "cpu" "gs264e") 87 (eq_attr "type" "load,mfc,mtc")) 88 "gs264e_mem1") 89 90(define_insn_reservation "gs264e_prefetch" 0 91 (and (eq_attr "cpu" "gs264e") 92 (eq_attr "type" "prefetch,prefetchx")) 93 "gs264e_mem1") 94 95(define_insn_reservation "gs264e_store" 0 96 (and (eq_attr "cpu" "gs264e") 97 (eq_attr "type" "store,fpstore,fpidxstore")) 98 "gs264e_mem1") 99 100(define_insn_reservation "gs264e_fadd" 4 101 (and (eq_attr "cpu" "gs264e") 102 (eq_attr "type" "fadd,fmul,fmadd")) 103 "gs264e_falu1") 104 105(define_insn_reservation "gs264e_fcmp" 2 106 (and (eq_attr "cpu" "gs264e") 107 (eq_attr "type" "fabs,fcmp,fmove,fneg")) 108 "gs264e_falu1") 109 110(define_insn_reservation "gs264e_fcvt" 4 111 (and (eq_attr "cpu" "gs264e") 112 (eq_attr "type" "fcvt")) 113 "gs264e_falu1") 114 115(define_insn_reservation "gs264e_fdiv_sf" 12 116 (and (eq_attr "cpu" "gs264e") 117 (and (eq_attr "type" "fdiv,frdiv,fsqrt,frsqrt") 118 (eq_attr "mode" "SF"))) 119 "gs264e_falu1") 120 121(define_insn_reservation "gs264e_fdiv_df" 19 122 (and (eq_attr "cpu" "gs264e") 123 (and (eq_attr "type" "fdiv,frdiv,fsqrt,frsqrt") 124 (eq_attr "mode" "DF"))) 125 "gs264e_falu1") 126 127;; Force single-dispatch for unknown or multi. 128(define_insn_reservation "gs264e_unknown" 1 129 (and (eq_attr "cpu" "gs264e") 130 (eq_attr "type" "unknown,multi,atomic,syncloop")) 131 "gs264e_alu1 + gs264e_falu1 + gs264e_mem1") 132 133;; End of DFA-based pipeline description for gs264e 134