Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c8fa6556
Commit
c8fa6556
authored
Aug 14, 2000
by
Ralf Gütlein
Committed by
Jeff Law
Aug 14, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* h8300.md: Remove obsolete peepholes.
From-SVN: r35678
parent
2c54abce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
47 deletions
+4
-47
gcc/ChangeLog
+4
-0
gcc/config/h8300/h8300.md
+0
-47
No files found.
gcc/ChangeLog
View file @
c8fa6556
2000-08-13 Ralf Gtlein <ralf.guetlein@aranea.de>
* h8300.md: Remove obsolete peepholes.
2000-08-13 Kazu Hirata <kazu@hxi.com>
* invoke.texi (H8/300 Options): Fix typos.
...
...
gcc/config/h8300/h8300.md
View file @
c8fa6556
...
...
@@ -2262,50 +2262,3 @@
[
(set_attr "cc" "clobber")
(set_attr "length" "6")
(set_attr "adjust_length" "no")])
;; ----------------------------------------------
;; Peepholes go at the end.
;; ----------------------------------------------
;; Notice a move which could be post incremented.
(define_peephole
[
(set (match_operand:QI 0 "register_operand" "")
(mem:QI (match_operand:HI 1 "register_operand" "")))
(set (match_dup 1) (plus:HI (match_dup 1) (const_int 1)))]
"REGNO (operands
[
1
]
) != REGNO (operands
[
0
]
)"
"mov.b @%T1+,%X0"
[
(set_attr "length" "2")
(set_attr "cc" "set_znv")])
(define_peephole
[
(set (match_operand:HI 0 "register_operand" "")
(mem:HI (match_operand:HI 1 "register_operand" "")))
(set (match_dup 1) (plus:HI (match_dup 1) (const_int 2)))]
"REGNO (operands
[
1
]
) != REGNO (operands
[
0
]
)"
"mov.w @%T1+,%T0"
[
(set_attr "length" "2")
(set_attr "cc" "set_znv")])
;; Notice a move which could be predecremented.
(define_peephole
[
(set (match_operand:HI 1 "register_operand" "")
(plus:HI (match_dup 1) (const_int -1)))
(set (mem:QI (match_dup 1))
(match_operand:QI 0 "register_operand" ""))]
"REGNO (operands
[
1
]
) != REGNO (operands
[
0
]
)"
"mov.b %X0,@-%T1"
[
(set_attr "length" "2")
(set_attr "cc" "set_znv")])
(define_peephole
[
(set (match_operand:HI 1 "register_operand" "")
(plus:HI (match_dup 1) (const_int -2)))
(set (mem:HI (match_dup 1))
(match_operand:HI 0 "register_operand" ""))]
"REGNO (operands
[
1
]
) != REGNO (operands
[
0
]
)"
"mov.w %T0,@-%T1"
[
(set_attr "length" "2")
(set_attr "cc" "set_znv")])
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment