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
7eacb691
Commit
7eacb691
authored
Jul 16, 2004
by
Jeff Law
Committed by
Jeff Law
Jul 16, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* analyze_brprob: Fix comments. More consistent output format.
From-SVN: r84828
parent
cc440d71
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
contrib/ChangeLog
+4
-0
contrib/analyze_brprob
+3
-3
No files found.
contrib/ChangeLog
View file @
7eacb691
2004
-
07
-
16
Jeff
Law
<
law
@redhat
.
com
>
*
analyze_brprob
:
Fix
comments
.
More
consistent
output
format
.
2004
-
06
-
17
Diego
Novillo
<
dnovillo
@redhat
.
com
>
*
tree
-
ssa
.
doxy
:
Update
for
doxygen
1
.
3
.
5
.
...
...
contrib/analyze_brprob
View file @
7eacb691
...
...
@@ -33,7 +33,7 @@
# Step 1: Compile and profile your program. You need to use -fprofile-arcs
# flag to get the profiles
# Step 2: Generate log files. The information about given heuristics are
# saved into *.
life dumps. You need to pass the -df
switch to the compiler as well
# saved into *.
bp dumps. You need to pass the -db
switch to the compiler as well
# as -fbranch-probabilities to get the results of profiling noted in the dumps.
# Ensure that there are no "Arc profiling: some edge counts were bad." warnings.
# Step 3: Run this script to concatenate all *.life files:
...
...
@@ -131,12 +131,12 @@ END {
maxcounts
=
longeval
(
counts
[
"combined"
])
maxbranches
=
branches
[
"combined"
]
max
=
names
[
"combined"
]
printf
(
"HEURISTICS
BRANCHES (REL) HITRATE
COVERAGE (REL)\n"
)
printf
(
"HEURISTICS
BRANCHES (REL) HITRATE
COVERAGE (REL)\n"
)
for
(
i
=
0
;
i
<
nnames
;
i
++
)
{
name
=
names
[
i
]
counts
[
name
]
=
longeval
(
counts
[
name
])
printf
(
"%-2
7s %8i %5.1f%% %6s%%/
%6s%% %12s %5.1f%%\n"
,
printf
(
"%-2
6s %8i %5.1f%% %6s%% /
%6s%% %12s %5.1f%%\n"
,
name
,
branches
[
name
],
branches
[
name
]
*
100
/
maxbranches
,
longeval
(
"("
hits
[
name
]
") * 100 /("
counts
[
name
]
"-0.00001)"
),
...
...
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