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
9b7542b9
Commit
9b7542b9
authored
Nov 29, 2012
by
Joern Rennecke
Committed by
Joern Rennecke
Nov 29, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/epiphany/epiphany.md (isub_i+1): Work around generator bug.
From-SVN: r193919
parent
2d7aa578
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
gcc/ChangeLog
+2
-0
gcc/config/epiphany/epiphany.md
+10
-7
No files found.
gcc/ChangeLog
View file @
9b7542b9
...
...
@@ -10,6 +10,8 @@
*
config
/
epiphany
/
t
-
epiphany
(
SPECS
)
:
Set
.
(
specs
)
:
New
rule
.
*
config
/
epiphany
/
epiphany
.
md
(
isub_i
+
1
)
:
Work
around
generator
bug
.
2012
-
11
-
28
Jakub
Jelinek
<
jakub
@redhat
.
com
>
PR
debug
/
36728
gcc/config/epiphany/epiphany.md
View file @
9b7542b9
...
...
@@ -1024,19 +1024,22 @@
; use next_active_insn to look at the 'following' insn. That should
; exist, because peephole2 runs after reload, and there has to be
; a return after an fp_int insn.
; ??? However, we can not even ordinarily match the preceding insn;
; there is some bug in the generators such that then it leaves out
; the check for PARALLEL before the length check for the then-second
; main insn. Observed when compiling compatibility-atomic-c++0x.cc
; from libstdc++-v3.
(define_peephole2
[
(match_parallel 5 "float_operation" [(match_operand 6 "" "")
]
)
(match_parallel 3 "float_operation"
[
(match_parallel 3 "float_operation"
[
(set (match_operand:SI 0 "gpr_operand" "")
(match_operator:SI 4 "addsub_operator"
[
(match_operand:SI 1 "gpr_operand" "")
(match_operand:SI 2 "gpr_operand" "")]))
(clobber (reg:CC_FP CCFP_REGNUM))])]
"get_attr_sched_use_fpu (peep2_next_insn (0))
&& peep2_regno_dead_p (2, CC_REGNUM)
&& get_attr_sched_use_fpu (next_active_insn (peep2_next_insn (1)))"
[
(match_dup 5)
(parallel
[
(set (match_dup 0) (match_dup 4))
"get_attr_sched_use_fpu (prev_active_insn (peep2_next_insn (0)))
&& peep2_regno_dead_p (1, CC_REGNUM)
&& get_attr_sched_use_fpu (next_active_insn (peep2_next_insn (0)))"
[
(parallel
[
(set (match_dup 0) (match_dup 4))
(clobber (reg:CC CC_REGNUM))])]
)
...
...
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