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
05279bcd
Commit
05279bcd
authored
Sep 10, 2012
by
Maciej W. Rozycki
Committed by
Maciej W. Rozycki
Sep 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/rs6000/rs6000.md: Move a splitter next to its insn.
From-SVN: r191162
parent
aadb5b43
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
14 deletions
+18
-14
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.md
+14
-14
No files found.
gcc/ChangeLog
View file @
05279bcd
2012-09-10 Maciej W. Rozycki <macro@codesourcery.com>
* config/rs6000/rs6000.md: Move a splitter next to its insn.
2012-09-10 Oleg Endo <olegendo@gcc.gnu.org>
2012-09-10 Oleg Endo <olegendo@gcc.gnu.org>
PR target/54089
PR target/54089
...
...
gcc/config/rs6000/rs6000.md
View file @
05279bcd
...
@@ -957,6 +957,20 @@
...
@@ -957,6 +957,20 @@
#"
#"
[
(set_attr "type" "compare")
[
(set_attr "type" "compare")
(set_attr "length" "4,8")])
(set_attr "length" "4,8")])
(define_split
[
(set (match_operand:CC 2 "cc_reg_not_micro_cr0_operand" "")
(compare:CC (sign_extend:SI (match_operand:HI 1 "gpc_reg_operand" ""))
(const_int 0)))
(set (match_operand:SI 0 "gpc_reg_operand" "")
(sign_extend:SI (match_dup 1)))]
"reload_completed"
[
(set (match_dup 0)
(sign_extend:SI (match_dup 1)))
(set (match_dup 2)
(compare:CC (match_dup 0)
(const_int 0)))]
"")
;; IBM 405, 440, 464 and 476 half-word multiplication operations.
;; IBM 405, 440, 464 and 476 half-word multiplication operations.
...
@@ -1489,20 +1503,6 @@
...
@@ -1489,20 +1503,6 @@
DONE;
DONE;
})
})
(define_split
[
(set (match_operand:CC 2 "cc_reg_not_micro_cr0_operand" "")
(compare:CC (sign_extend:SI (match_operand:HI 1 "gpc_reg_operand" ""))
(const_int 0)))
(set (match_operand:SI 0 "gpc_reg_operand" "")
(sign_extend:SI (match_dup 1)))]
"reload_completed"
[
(set (match_dup 0)
(sign_extend:SI (match_dup 1)))
(set (match_dup 2)
(compare:CC (match_dup 0)
(const_int 0)))]
"")
;; Fixed-point arithmetic insns.
;; Fixed-point arithmetic insns.
(define_expand "add
<mode>
3"
(define_expand "add
<mode>
3"
...
...
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