GCOV-TOOL(1) GNU GCOV-TOOL(1)

gcov-tool - offline gcda profile processing tool

gcov-tool [-v|--version] [-h|--help]

gcov-tool merge [merge-options] directory1 directory2
[-o|--output directory]
[-v|--verbose]
[-w|--weight w1,w2]

gcov-tool rewrite [rewrite-options] directory
[-n|--normalize long_long_value]
[-o|--output directory]
[-s|--scale float_or_simple-frac_value]
[-v|--verbose]

gcov-tool overlap [overlap-options] directory1 directory2
[-f|--function]
[-F|--fullname]
[-h|--hotonly]
[-o|--object]
[-t|--hot_threshold] float
[-v|--verbose]

gcov-tool is an offline tool to process gcc's gcda profile files.

Current gcov-tool supports the following functionalities:

Examples of the use cases for this tool are:

Note that for the merging operation, this profile generated offline may contain slight different values from the online merged profile. Here are a list of typical differences:

Display help about using gcov-tool (on the standard output), and exit without doing any further processing.
Display the gcov-tool version number (on the standard output), and exit without doing any further processing.
Merge two profile directories.
Set the output profile directory. Default output directory name is merged_profile.
Set the verbose mode.
Set the merge weights of the directory1 and directory2, respectively. The default weights are 1 for both.
Read the specified profile directory and rewrite to a new directory.
Normalize the profile. The specified value is the max counter value in the new profile.
Set the output profile directory. Default output name is rewrite_profile.
Scale the profile counters. The specified value can be in floating point value, or simple fraction value form, such 1, 2, 2/3, and 5/3.
Set the verbose mode.
Compute the overlap score between the two specified profile directories. The overlap score is computed based on the arc profiles. It is defined as the sum of min (p1_counter[i] / p1_sum_all, p2_counter[i] / p2_sum_all), for all arc counter i, where p1_counter[i] and p2_counter[i] are two matched counters and p1_sum_all and p2_sum_all are the sum of counter values in profile 1 and profile 2, respectively.
Print function level overlap score.
Print full gcda filename.
Only print info for hot objects/functions.
Print object level overlap score.
Set the threshold for hot counter value.
Set the verbose mode.

gpl(7), gfdl(7), fsf-funding(7), gcc(1), gcov(1) and the Info entry for gcc.

Copyright (c) 2014-2017 Free Software Foundation, Inc.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being "GNU General Public License" and "Funding Free Software", the Front-Cover texts being (a) (see below), and with the Back-Cover Texts being (b) (see below). A copy of the license is included in the gfdl(7) man page.

(a) The FSF's Front-Cover Text is:

     A GNU Manual

(b) The FSF's Back-Cover Text is:

     You have freedom to copy and modify this GNU Manual, like GNU
     software.  Copies published by the Free Software Foundation raise
     funds for GNU development.
2019-11-14 gcc-7.5.0