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
3ec6c6ee
Commit
3ec6c6ee
authored
May 14, 2003
by
Nathan Sidwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (check_dbra_loop): Factor common test.
From-SVN: r66803
parent
c62347f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
gcc/ChangeLog
+5
-0
gcc/loop.c
+6
-4
No files found.
gcc/ChangeLog
View file @
3ec6c6ee
2003-05-14 Nathan Sidwell <nathan@codesourcery.com>
* loop.c (check_dbra_loop): Factor common test.
2003-05-14 Ben Elliston <bje@wasabisystems.com>
* doc/md.texi (Automaton pipeline description): Grammar fixes.
...
...
@@ -504,6 +508,7 @@ Mon May 12 11:32:53 CEST 2003 Jan Hubicka <jh@suse.cz>
(s390_function_arg): Likewise.
(s390_va_arg): Likewise
>>>>>>> 1.17806
2003-05-11 Nathan Sidwell <nathan@codesourcery.com>
* coverage.h (coverage_counter_alloc): New function.
...
...
gcc/loop.c
View file @
3ec6c6ee
...
...
@@ -8274,9 +8274,11 @@ check_dbra_loop (loop, insn_count)
&&
REGNO
(
SET_DEST
(
set
))
==
bl
->
regno
)
/* An insn that sets the biv is okay. */
;
else
if
((
p
==
prev_nonnote_insn
(
prev_nonnote_insn
(
loop_end
))
||
p
==
prev_nonnote_insn
(
loop_end
))
&&
reg_mentioned_p
(
bivreg
,
PATTERN
(
p
)))
else
if
(
!
reg_mentioned_p
(
bivreg
,
PATTERN
(
p
)))
/* An insn that doesn't mention the biv is okay. */
;
else
if
(
p
==
prev_nonnote_insn
(
prev_nonnote_insn
(
loop_end
))
||
p
==
prev_nonnote_insn
(
loop_end
))
{
/* If either of these insns uses the biv and sets a pseudo
that has more than one usage, then the biv has uses
...
...
@@ -8290,7 +8292,7 @@ check_dbra_loop (loop, insn_count)
break
;
}
}
else
if
(
reg_mentioned_p
(
bivreg
,
PATTERN
(
p
)))
else
{
no_use_except_counting
=
0
;
break
;
...
...
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