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
9dd07f87
Commit
9dd07f87
authored
May 14, 1998
by
J"orn Rennecke
Committed by
Jeff Law
May 13, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (scan_loop): Don't call move_moveables for optimize_size.
From-SVN: r19736
parent
029b38ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+2
-0
gcc/loop.c
+7
-3
No files found.
gcc/ChangeLog
View file @
9dd07f87
...
...
@@ -7,6 +7,8 @@ Thu May 14 08:41:46 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
Thu May 14 02:17:17 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* loop.c (scan_loop): Don't call move_moveables for optimize_size.
* reload1.c (merge_assigned_reloads): When merging, reset
reload_spill_index for the eliminated reload.
...
...
gcc/loop.c
View file @
9dd07f87
...
...
@@ -1063,10 +1063,14 @@ scan_loop (loop_start, end, nregs, unroll_p)
combine_movables
(
movables
,
nregs
);
/* Now consider each movable insn to decide whether it is worth moving.
Store 0 in n_times_set for each reg that is moved.
*/
Store 0 in n_times_set for each reg that is moved.
move_movables
(
movables
,
threshold
,
insn_count
,
loop_start
,
end
,
nregs
);
Generally this increases code size, so do not move moveables when
optimizing for code size. */
if
(
!
optimize_size
)
move_movables
(
movables
,
threshold
,
insn_count
,
loop_start
,
end
,
nregs
);
/* Now candidates that still are negative are those not moved.
Change n_times_set to indicate that those are not actually invariant. */
...
...
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