p5600.md: Add missing cpu tests.
gcc/ * config/mips/p5600.md: Add missing cpu tests. From-SVN: r212765
This commit is contained in:
parent
13caea3d9d
commit
1435fa485e
@ -1,3 +1,7 @@
|
||||
2014-07-17 Richard Sandiford <rdsandiford@googlemail.com>
|
||||
|
||||
* config/mips/p5600.md: Add missing cpu tests.
|
||||
|
||||
2014-07-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
|
||||
|
||||
* config/aarch64/arm_neon.h (vfma_f64): New intrinsic.
|
||||
|
@ -47,52 +47,62 @@
|
||||
|
||||
;; fadd, fsub
|
||||
(define_insn_reservation "p5600_fpu_fadd" 4
|
||||
(eq_attr "type" "fadd,fabs,fneg")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "fadd,fabs,fneg"))
|
||||
"p5600_fpu_long, p5600_fpu_apu")
|
||||
|
||||
;; fabs, fneg, fcmp
|
||||
(define_insn_reservation "p5600_fpu_fabs" 2
|
||||
(eq_attr "type" "fabs,fneg,fcmp,fmove")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "fabs,fneg,fcmp,fmove"))
|
||||
"p5600_fpu_short, p5600_fpu_apu")
|
||||
|
||||
;; fload
|
||||
(define_insn_reservation "p5600_fpu_fload" 8
|
||||
(eq_attr "type" "fpload,fpidxload")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "fpload,fpidxload"))
|
||||
"p5600_fpu_long, p5600_fpu_apu")
|
||||
|
||||
;; fstore
|
||||
(define_insn_reservation "p5600_fpu_fstore" 1
|
||||
(eq_attr "type" "fpstore,fpidxstore")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "fpstore,fpidxstore"))
|
||||
"p5600_fpu_short, p5600_fpu_apu")
|
||||
|
||||
;; fmadd
|
||||
(define_insn_reservation "p5600_fpu_fmadd" 9
|
||||
(eq_attr "type" "fmadd")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "fmadd"))
|
||||
"p5600_fpu_long, p5600_fpu_apu")
|
||||
|
||||
;; fmul
|
||||
(define_insn_reservation "p5600_fpu_fmul" 5
|
||||
(eq_attr "type" "fmul")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "fmul"))
|
||||
"p5600_fpu_long, p5600_fpu_apu")
|
||||
|
||||
;; fdiv, fsqrt
|
||||
(define_insn_reservation "p5600_fpu_div" 17
|
||||
(eq_attr "type" "fdiv,frdiv,fsqrt,frsqrt")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "fdiv,frdiv,fsqrt,frsqrt"))
|
||||
"p5600_fpu_long, p5600_fpu_apu*17")
|
||||
|
||||
;; fcvt
|
||||
(define_insn_reservation "p5600_fpu_fcvt" 4
|
||||
(eq_attr "type" "fcvt")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "fcvt"))
|
||||
"p5600_fpu_long, p5600_fpu_apu")
|
||||
|
||||
;; mtc
|
||||
(define_insn_reservation "p5600_fpu_fmtc" 7
|
||||
(eq_attr "type" "mtc")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "mtc"))
|
||||
"p5600_fpu_short, p5600_fpu_store")
|
||||
|
||||
;; mfc
|
||||
(define_insn_reservation "p5600_fpu_fmfc" 4
|
||||
(eq_attr "type" "mfc")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "mfc"))
|
||||
"p5600_fpu_short, p5600_fpu_store")
|
||||
|
||||
;; madd/msub feeding into the add source
|
||||
@ -105,100 +115,120 @@
|
||||
|
||||
;; and
|
||||
(define_insn_reservation "p5600_int_and" 1
|
||||
(eq_attr "move_type" "logical")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "move_type" "logical"))
|
||||
"p5600_alq_alu")
|
||||
|
||||
;; lui
|
||||
(define_insn_reservation "p5600_int_lui" 1
|
||||
(eq_attr "move_type" "const")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "move_type" "const"))
|
||||
"p5600_alq_alu")
|
||||
|
||||
;; Load lb, lbu, lh, lhu, lq, lw, lw_i2f, lwxs
|
||||
(define_insn_reservation "p5600_int_load" 4
|
||||
(eq_attr "move_type" "load")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "move_type" "load"))
|
||||
"p5600_agq_ldsta")
|
||||
|
||||
;; store
|
||||
(define_insn_reservation "p5600_int_store" 3
|
||||
(eq_attr "move_type" "store")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "move_type" "store"))
|
||||
"p5600_agq_ldsta")
|
||||
|
||||
;; andi, sll, srl, seb, seh
|
||||
(define_insn_reservation "p5600_int_arith_1" 1
|
||||
(eq_attr "move_type" "andi,sll0,signext")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "move_type" "andi,sll0,signext"))
|
||||
"p5600_agq_al2 | p5600_alq_alu")
|
||||
|
||||
;; addi, addiu, ori, xori, add, addu
|
||||
(define_insn_reservation "p5600_int_arith_2" 1
|
||||
(eq_attr "alu_type" "add,or,xor")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "alu_type" "add,or,xor"))
|
||||
"p5600_agq_al2 | p5600_alq_alu")
|
||||
|
||||
;; nor, sub
|
||||
(define_insn_reservation "p5600_int_arith_3" 1
|
||||
(eq_attr "alu_type" "nor,sub")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "alu_type" "nor,sub"))
|
||||
"p5600_alq_alu")
|
||||
|
||||
;; srl, sra, rotr, slt, sllv, srlv
|
||||
(define_insn_reservation "p5600_int_arith_4" 1
|
||||
(eq_attr "type" "shift,slt,move")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "shift,slt,move"))
|
||||
"p5600_agq_al2 | p5600_alq_alu")
|
||||
|
||||
;; nop
|
||||
(define_insn_reservation "p5600_int_nop" 0
|
||||
(eq_attr "type" "nop")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "nop"))
|
||||
"p5600_agq_al2")
|
||||
|
||||
;; clo, clz
|
||||
(define_insn_reservation "p5600_int_countbits" 1
|
||||
(eq_attr "type" "clz")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "clz"))
|
||||
"p5600_agq_al2")
|
||||
|
||||
;; Conditional moves
|
||||
(define_insn_reservation "p5600_int_condmove" 1
|
||||
(eq_attr "type" "condmove")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "condmove"))
|
||||
"p5600_agq_al2")
|
||||
|
||||
;; madd, msub
|
||||
(define_insn_reservation "p5600_dsp_mac" 5
|
||||
(eq_attr "type" "imadd")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "imadd"))
|
||||
"p5600_agq_al2")
|
||||
|
||||
;; mfhi/lo
|
||||
(define_insn_reservation "p5600_dsp_mfhilo" 1
|
||||
(eq_attr "type" "mfhi,mflo")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "mfhi,mflo"))
|
||||
"p5600_agq_al2")
|
||||
|
||||
;; mthi/lo
|
||||
(define_insn_reservation "p5600_dsp_mthilo" 5
|
||||
(eq_attr "type" "mthi,mtlo")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "mthi,mtlo"))
|
||||
"p5600_agq_al2")
|
||||
|
||||
;; mult, multu, mul
|
||||
(define_insn_reservation "p5600_dsp_mult" 5
|
||||
(eq_attr "type" "imul3,imul")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "imul3,imul"))
|
||||
"p5600_agq_al2")
|
||||
|
||||
;; branch and jump
|
||||
(define_insn_reservation "p5600_int_branch" 1
|
||||
(eq_attr "type" "branch,jump")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "branch,jump"))
|
||||
"p5600_agq_ctistd")
|
||||
|
||||
;; prefetch
|
||||
(define_insn_reservation "p5600_int_prefetch" 3
|
||||
(eq_attr "type" "prefetch,prefetchx")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "prefetch,prefetchx"))
|
||||
"p5600_agq_ldsta")
|
||||
|
||||
;; divide
|
||||
(define_insn_reservation "p5600_int_div" 8
|
||||
(eq_attr "type" "idiv")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "idiv"))
|
||||
"p5600_agq_al2+p5600_gpdiv*8")
|
||||
|
||||
;; arith
|
||||
(define_insn_reservation "p5600_int_arith_5" 2
|
||||
(eq_attr "type" "arith")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "type" "arith"))
|
||||
"p5600_agq_al2")
|
||||
|
||||
;; call
|
||||
(define_insn_reservation "p5600_int_call" 2
|
||||
(eq_attr "jal" "indirect,direct")
|
||||
(and (eq_attr "cpu" "p5600")
|
||||
(eq_attr "jal" "indirect,direct"))
|
||||
"p5600_agq_ctistd")
|
||||
|
Loading…
Reference in New Issue
Block a user