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
399b9016
Commit
399b9016
authored
Jan 04, 2000
by
Jeffrey A Law
Committed by
Jeff Law
Jan 04, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* regclass.c: Revert my Jan 4 change to loop cost computation.
From-SVN: r31210
parent
64615302
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
gcc/ChangeLog
+4
-0
gcc/regclass.c
+4
-8
No files found.
gcc/ChangeLog
View file @
399b9016
Tue
Jan
4
11
:
44
:
13
2000
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
regclass
.
c
:
Revert
my
Jan
4
change
to
loop
cost
computation
.
Tue
Jan
4
19
:
22
:
39
MET
2000
Jan
Hubicka
<
hubicka
@freesoft
.
cz
>
*
regclass
.
c
(
regclass
)
:
Do
not
obey
REG_N_REFS
in
non
-
optimizing
...
...
gcc/regclass.c
View file @
399b9016
...
...
@@ -1100,17 +1100,13 @@ regclass (f, nregs, dump)
basic_block
bb
=
BASIC_BLOCK
(
index
);
/* Show that an insn inside a loop is likely to be executed three
times more than insns outside a loop. This is much more
aggressive than the assumptions made elsewhere and is being
tried as an experiment.
Note that a block's loop depth starts at zero, not one! We
must not subract one from the loop depth as that could give
a negative shift count below. */
times more than insns outside a loop. This is much more aggressive
than the assumptions made elsewhere and is being tried as an
experiment. */
if
(
optimize_size
)
loop_cost
=
1
;
else
loop_cost
=
1
<<
(
2
*
MIN
(
bb
->
loop_depth
,
5
));
loop_cost
=
1
<<
(
2
*
MIN
(
bb
->
loop_depth
-
1
,
5
));
for
(
insn
=
bb
->
head
;
;
insn
=
NEXT_INSN
(
insn
))
{
insn
=
scan_one_insn
(
insn
,
pass
);
...
...
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