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
d53a5d8b
Commit
d53a5d8b
authored
Nov 18, 2017
by
Jan Hubicka
Committed by
Jan Hubicka
Nov 17, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cgraph.c (cgraph_node::dump): Do IPA sanity checking on IPA counts.
From-SVN: r254909
parent
c51081fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/cgraph.c
+3
-3
No files found.
gcc/ChangeLog
View file @
d53a5d8b
2017
-
11
-
17
Jan
Hubicka
<
hubicka
@
ucw
.
cz
>
*
cgraph
.
c
(
cgraph_node
::
dump
):
Do
IPA
sanity
checking
on
IPA
counts
.
2017
-
11
-
17
Steve
Ellcey
<
sellcey
@
cavium
.
com
>
*
config
/
aarch64
/
aarch64
-
simd
.
md
(
fnma
<
mode
>
4
):
Move
neg
operator
gcc/cgraph.c
View file @
d53a5d8b
...
...
@@ -2160,7 +2160,7 @@ cgraph_node::dump (FILE *f)
fprintf
(
f
,
"%s "
,
edge
->
caller
->
dump_name
());
edge
->
dump_edge_flags
(
f
);
if
(
edge
->
count
.
initialized_p
())
sum
+=
edge
->
count
;
sum
+=
edge
->
count
.
ipa
()
;
}
fprintf
(
f
,
"
\n
Calls: "
);
...
...
@@ -2184,7 +2184,7 @@ cgraph_node::dump (FILE *f)
if
(
global
.
inlined_to
||
(
symtab
->
state
<
EXPANSION
&&
ultimate_alias_target
()
==
this
&&
only_called_directly_p
()))
ok
=
!
count
.
differs_from_p
(
sum
);
ok
=
!
count
.
ipa
().
differs_from_p
(
sum
);
else
if
(
count
.
ipa
()
>
profile_count
::
from_gcov_type
(
100
)
&&
count
.
ipa
()
<
sum
.
apply_scale
(
99
,
100
))
ok
=
false
,
min
=
true
;
...
...
@@ -2196,7 +2196,7 @@ cgraph_node::dump (FILE *f)
fprintf
(
f
,
", should be at most "
);
else
fprintf
(
f
,
", should be "
);
count
.
dump
(
f
);
count
.
ipa
().
dump
(
f
);
fprintf
(
f
,
"
\n
"
);
}
}
...
...
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