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
444b3995
Commit
444b3995
authored
Apr 19, 2011
by
Xinliang David Li
Committed by
Xinliang David Li
Apr 19, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert 172213 and add assertion
From-SVN: r172722
parent
d708ce50
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
22 deletions
+11
-22
gcc/ChangeLog
+10
-0
gcc/ipa-cp.c
+1
-22
No files found.
gcc/ChangeLog
View file @
444b3995
2011-04-19 Xinliang David Li <davidxl@google.com>
* ipa-cp.c (ipcp_update_profiling): asserting
scale_completement is not negative.
2011-04-19 Jakub Jelinek <jakub@redhat.com>
PR target/48678
...
...
@@ -1654,6 +1659,11 @@
2011-04-08 Xinliang David Li <davidxl@google.com>
* ipa-cp.c (ipcp_update_profiling): Correct
negative scale factor due to insane profile data.
2011-04-08 Xinliang David Li <davidxl@google.com>
* final.c (dump_basic_block_info): New function.
(final): Dump basic block.
(final_scan_insn): Remove old dump.
...
...
gcc/ipa-cp.c
View file @
444b3995
...
...
@@ -1115,28 +1115,7 @@ ipcp_update_profiling (void)
node
->
count
=
orig_node
->
count
*
scale
/
REG_BR_PROB_BASE
;
scale_complement
=
REG_BR_PROB_BASE
-
scale
;
/* Negative scale complement can result from insane profile data
in which the total incoming edge counts in this module is
larger than the callee's entry count. The insane profile data
usually gets generated due to the following reasons:
1) in multithreaded programs, when profile data is dumped
to gcda files in gcov_exit, some other threads are still running.
The profile counters are dumped in bottom up order (call graph).
The caller's BB counters may still be updated while the callee's
counter data is already saved to disk.
2) Comdat functions: comdat functions' profile data are not
allocated in comdat. When a comdat callee function gets inlined
at some callsites after instrumentation, and the remaining calls
to this function resolves to a comdat copy in another module,
the profile counters for this function are split. This can
result in sum of incoming edge counts from this module being
larger than callee instance's entry count. */
if
(
scale_complement
<
0
&&
flag_profile_correction
)
scale_complement
=
0
;
gcc_assert
(
scale_complement
>=
0
);
orig_node
->
count
=
orig_node
->
count
*
scale_complement
/
REG_BR_PROB_BASE
;
for
(
cs
=
node
->
callees
;
cs
;
cs
=
cs
->
next_callee
)
...
...
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