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
deeef0ac
Commit
deeef0ac
authored
Jan 23, 1998
by
J"orn Rennecke
Committed by
Jeff Law
Jan 23, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sh.md (movqi_i+1): New peephole.
From-SVN: r17463
parent
26452249
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletions
+17
-1
gcc/ChangeLog
+4
-0
gcc/config/sh/sh.md
+13
-1
No files found.
gcc/ChangeLog
View file @
deeef0ac
Fri Jan 23 23:28:59 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* sh.md (movqi_i+1): New peephole.
Fri Jan 23 15:39:42 1998 Jim Wilson <wilson@cygnus.com>
* Makefile.in: Remove remaining bytecode stuff.
...
...
gcc/config/sh/sh.md
View file @
deeef0ac
...
...
@@ -162,7 +162,7 @@
;; align them when relaxing.
;; Loads have a latency of two.
;; However, call insn
can have ;;
a delay slot, so that we want one more
;; However, call insn
s can have
a delay slot, so that we want one more
;; insn to be scheduled between the load of the function address and the call.
;; This is equivalent to a latency of three.
;; We cannot use a conflict list for this, because we need to distinguish
...
...
@@ -1885,6 +1885,18 @@
lds %1,%0"
[(set_attr "type" "move,load,store,move,move,move")])
;; For Big-endian, reload now sometimes generates something like
;; (insn 2107 2104 2099 (set (reg:QI 3 r3)
;; (subreg:QI (mem:SI (reg:SI 0 r0)) 0)) -1 (nil)
;; (nil))
;; To avoid clutter in the movqi pattern, we express this as a peephole.
(define_peephole
[(set (match_operand:QI 0 "arith_reg_operand" "r")
(subreg:QI (match_operand:SI 1 "memory_operand" "m") 0))]
""
"mov.l %1,%0")
(define_expand "movqi"
[(set (match_operand:QI 0 "general_operand" "")
(match_operand:QI 1 "general_operand" ""))]
...
...
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