annotate gcc/doc/gcov-dump.texi @ 145:1830386684a0

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