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
516e5fa6
Commit
516e5fa6
authored
Jan 31, 1999
by
Richard Henderson
Committed by
Richard Henderson
Jan 31, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (recombine_givs): Dump recombination and derivation data.
From-SVN: r24948
parent
71b1d3ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
gcc/ChangeLog
+4
-0
gcc/loop.c
+18
-0
No files found.
gcc/ChangeLog
View file @
516e5fa6
Sun
Jan
31
22
:
04
:
37
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
loop
.
c
(
recombine_givs
)
:
Dump
recombination
and
derivation
data
.
Sun
Jan
31
20
:
34
:
29
1999
Zack
Weinberg
<
zack
@rabi
.
columbia
.
edu
>
*
flags
.
h
:
Declare
flag_no_ident
.
...
...
gcc/loop.c
View file @
516e5fa6
...
...
@@ -7119,6 +7119,15 @@ recombine_givs (bl, loop_start, loop_end, unroll_p)
last_giv
->
combined_with
++
;
/* No need to update lifetimes / benefits here since we have
already decided what to reduce. */
if
(
loop_dump_stream
)
{
fprintf
(
loop_dump_stream
,
"giv at %d recombined with giv at %d as "
,
INSN_UID
(
v
->
insn
),
INSN_UID
(
last_giv
->
insn
));
print_rtl
(
loop_dump_stream
,
v
->
new_reg
);
putc
(
'\n'
,
loop_dump_stream
);
}
continue
;
}
v
=
v
->
same
;
...
...
@@ -7324,6 +7333,15 @@ recombine_givs (bl, loop_start, loop_end, unroll_p)
v
->
derived
=
1
;
v
->
new_reg
=
v
->
dest_reg
;
life_end
=
stats
[
i
].
end_luid
;
if
(
loop_dump_stream
)
{
fprintf
(
loop_dump_stream
,
"giv at %d derived from %d as "
,
INSN_UID
(
v
->
insn
),
INSN_UID
(
last_giv
->
insn
));
print_rtl
(
loop_dump_stream
,
v
->
new_reg
);
putc
(
'\n'
,
loop_dump_stream
);
}
}
else
if
(
rescan
<
0
)
rescan
=
i
;
...
...
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