gcov-dump.texi revision 1.5 1 1.5 mrg @c Copyright (C) 2017-2019 Free Software Foundation, Inc.
2 1.1 mrg @c This is part of the GCC manual.
3 1.1 mrg @c For copying conditions, see the file gcc.texi.
4 1.1 mrg
5 1.1 mrg @ignore
6 1.1 mrg @c man begin COPYRIGHT
7 1.5 mrg Copyright @copyright{} 2017-2019 Free Software Foundation, Inc.
8 1.1 mrg
9 1.1 mrg Permission is granted to copy, distribute and/or modify this document
10 1.1 mrg under the terms of the GNU Free Documentation License, Version 1.3 or
11 1.1 mrg any later version published by the Free Software Foundation; with the
12 1.1 mrg Invariant Sections being ``GNU General Public License'' and ``Funding
13 1.1 mrg Free Software'', the Front-Cover texts being (a) (see below), and with
14 1.1 mrg the Back-Cover Texts being (b) (see below). A copy of the license is
15 1.1 mrg included in the gfdl(7) man page.
16 1.1 mrg
17 1.1 mrg (a) The FSF's Front-Cover Text is:
18 1.1 mrg
19 1.1 mrg A GNU Manual
20 1.1 mrg
21 1.1 mrg (b) The FSF's Back-Cover Text is:
22 1.1 mrg
23 1.1 mrg You have freedom to copy and modify this GNU Manual, like GNU
24 1.1 mrg software. Copies published by the Free Software Foundation raise
25 1.1 mrg funds for GNU development.
26 1.1 mrg @c man end
27 1.1 mrg @c Set file name and title for the man page.
28 1.1 mrg @setfilename gcov-dump
29 1.1 mrg @settitle offline gcda and gcno profile dump tool
30 1.1 mrg @end ignore
31 1.1 mrg
32 1.1 mrg @node Gcov-dump
33 1.1 mrg @chapter @command{gcov-dump}---an Offline Gcda and Gcno Profile Dump Tool
34 1.1 mrg
35 1.1 mrg @menu
36 1.1 mrg * Gcov-dump Intro:: Introduction to gcov-dump.
37 1.1 mrg * Invoking Gcov-dump:: How to use gcov-dump.
38 1.1 mrg @end menu
39 1.1 mrg
40 1.1 mrg @node Gcov-dump Intro
41 1.1 mrg @section Introduction to @command{gcov-dump}
42 1.1 mrg @c man begin DESCRIPTION
43 1.1 mrg
44 1.1 mrg @command{gcov-dump} is a tool you can use in conjunction with GCC to
45 1.1 mrg dump content of gcda and gcno profile files offline.
46 1.1 mrg
47 1.1 mrg @c man end
48 1.1 mrg
49 1.1 mrg @node Invoking Gcov-dump
50 1.1 mrg @section Invoking @command{gcov-dump}
51 1.1 mrg
52 1.1 mrg @smallexample
53 1.1 mrg Usage: gcov-dump @r{[}@var{OPTION}@r{]} ... @var{gcovfiles}
54 1.1 mrg @end smallexample
55 1.1 mrg
56 1.1 mrg @command{gcov-dump} accepts the following options:
57 1.1 mrg
58 1.1 mrg @ignore
59 1.1 mrg @c man begin SYNOPSIS
60 1.1 mrg gcov-dump [@option{-v}|@option{--version}]
61 1.1 mrg [@option{-h}|@option{--help}]
62 1.1 mrg [@option{-l}|@option{--long}]
63 1.1 mrg [@option{-p}|@option{--positions}]
64 1.5 mrg @var{gcovfiles}
65 1.1 mrg @c man end
66 1.1 mrg @end ignore
67 1.1 mrg
68 1.1 mrg @c man begin OPTIONS
69 1.1 mrg @table @gcctabopt
70 1.1 mrg @item -h
71 1.1 mrg @itemx --help
72 1.1 mrg Display help about using @command{gcov-dump} (on the standard output), and
73 1.1 mrg exit without doing any further processing.
74 1.1 mrg
75 1.1 mrg @item -l
76 1.1 mrg @itemx --long
77 1.1 mrg Dump content of records.
78 1.1 mrg
79 1.1 mrg @item -p
80 1.1 mrg @itemx --positions
81 1.1 mrg Dump positions of records.
82 1.1 mrg
83 1.1 mrg @item -v
84 1.1 mrg @itemx --version
85 1.1 mrg Display the @command{gcov-dump} version number (on the standard output),
86 1.1 mrg and exit without doing any further processing.
87 1.1 mrg @end table
88 1.1 mrg
89 1.1 mrg @c man end
90