aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorYi-Hsiu Hsu <ahsu@marvell.com>2013-01-21 10:55:15 +0000
committerRamana Radhakrishnan <ramana@gcc.gnu.org>2013-01-21 10:55:15 +0000
commit4401981b4106ae376572e334f1386cb3893f20c0 (patch)
tree793f51dd975fe7bc449609bbe6cfaa077ff20505 /gcc/config
parent8e87740bab19968c43702431614b239c27a4dc02 (diff)
downloadgcc-4401981b4106ae376572e334f1386cb3893f20c0.zip
gcc-4401981b4106ae376572e334f1386cb3893f20c0.tar.gz
gcc-4401981b4106ae376572e334f1386cb3893f20c0.tar.bz2
marvell-pj4.md (pj4_shift_conds, [...]): Handle simple_alu_shift.
2013-01-21 Yi-Hsiu Hsu <ahsu@marvell.com> * config/arm/marvell-pj4.md (pj4_shift_conds, pj4_alu_shift, pj4_alu_shift_conds, pj4_shift): Handle simple_alu_shift. From-SVN: r195333
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/arm/marvell-pj4.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/arm/marvell-pj4.md b/gcc/config/arm/marvell-pj4.md
index 55b31f7..39f4c58 100644
--- a/gcc/config/arm/marvell-pj4.md
+++ b/gcc/config/arm/marvell-pj4.md
@@ -69,26 +69,26 @@
(define_insn_reservation "pj4_shift" 1
(and (eq_attr "tune" "marvell_pj4")
- (eq_attr "type" "alu_shift,alu_shift_reg")
+ (eq_attr "type" "alu_shift,alu_shift_reg,simple_alu_shift")
(not (eq_attr "conds" "set"))
(eq_attr "shift" "1")) "pj4_is,(pj4_alu1,pj4_w1+pj4_cp)|(pj4_alu2,pj4_w2+pj4_cp)")
(define_insn_reservation "pj4_shift_conds" 4
(and (eq_attr "tune" "marvell_pj4")
- (eq_attr "type" "alu_shift,alu_shift_reg")
+ (eq_attr "type" "alu_shift,alu_shift_reg,simple_alu_shift")
(eq_attr "conds" "set")
(eq_attr "shift" "1")) "pj4_is,(pj4_alu1,pj4_w1+pj4_cp)|(pj4_alu2,pj4_w2+pj4_cp)")
(define_insn_reservation "pj4_alu_shift" 1
(and (eq_attr "tune" "marvell_pj4")
(not (eq_attr "conds" "set"))
- (eq_attr "type" "alu_shift,alu_shift_reg"))
+ (eq_attr "type" "alu_shift,alu_shift_reg,simple_alu_shift"))
"pj4_is,(pj4_alu1,nothing,pj4_w1+pj4_cp)|(pj4_alu2,nothing,pj4_w2+pj4_cp)")
(define_insn_reservation "pj4_alu_shift_conds" 4
(and (eq_attr "tune" "marvell_pj4")
(eq_attr "conds" "set")
- (eq_attr "type" "alu_shift,alu_shift_reg"))
+ (eq_attr "type" "alu_shift,alu_shift_reg,simple_alu_shift"))
"pj4_is,(pj4_alu1,nothing,pj4_w1+pj4_cp)|(pj4_alu2,nothing,pj4_w2+pj4_cp)")
(define_bypass 2 "pj4_alu_shift,pj4_shift"