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
b418c26e
Commit
b418c26e
authored
Dec 23, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(check_dbra_loop): Don't reverse loop if there is a
single memory store to an invariant address. From-SVN: r6290
parent
fb99c21c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
gcc/loop.c
+13
-0
No files found.
gcc/loop.c
View file @
b418c26e
...
...
@@ -5685,6 +5685,9 @@ check_dbra_loop (loop_end, insn_count, loop_start)
int
num_nonfixed_reads
=
0
;
/* 1 if the iteration var is used only to count iterations. */
int
no_use_except_counting
=
0
;
/* 1 if the loop has no memory store, or it has a single memory store
which is reversible. */
int
reversible_mem_store
=
1
;
for
(
p
=
loop_start
;
p
!=
loop_end
;
p
=
NEXT_INSN
(
p
))
if
(
GET_RTX_CLASS
(
GET_CODE
(
p
))
==
'i'
)
...
...
@@ -5721,6 +5724,15 @@ check_dbra_loop (loop_end, insn_count, loop_start)
}
}
/* If the loop has a single store, and the destination address is
invariant, then we can't reverse the loop, because this address
might then have the wrong value at loop exit.
This would work if the source was invariant also, however, in that
case, the insn should have been moved out of the loop. */
if
(
num_mem_sets
==
1
)
reversible_mem_store
=
!
invariant_p
(
XEXP
(
loop_store_mems
[
0
],
0
));
/* This code only acts for innermost loops. Also it simplifies
the memory address check by only reversing loops with
zero or one memory access.
...
...
@@ -5730,6 +5742,7 @@ check_dbra_loop (loop_end, insn_count, loop_start)
if
(
num_nonfixed_reads
<=
1
&&
!
loop_has_call
&&
!
loop_has_volatile
&&
reversible_mem_store
&&
(
no_use_except_counting
||
(
bl
->
giv_count
+
bl
->
biv_count
+
num_mem_sets
+
num_movables
+
2
==
insn_count
)))
...
...
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