1*ec02198aSmrg@c Copyright (C) 2017-2020 Free Software Foundation, Inc.
210d565efSmrg@c This is part of the GCC manual.
310d565efSmrg@c For copying conditions, see the file gcc.texi.
410d565efSmrg
510d565efSmrg@ignore
610d565efSmrg@c man begin COPYRIGHT
7*ec02198aSmrgCopyright @copyright{} 2017-2020 Free Software Foundation, Inc.
810d565efSmrg
910d565efSmrgPermission is granted to copy, distribute and/or modify this document
1010d565efSmrgunder the terms of the GNU Free Documentation License, Version 1.3 or
1110d565efSmrgany later version published by the Free Software Foundation; with the
1210d565efSmrgInvariant Sections being ``GNU General Public License'' and ``Funding
1310d565efSmrgFree Software'', the Front-Cover texts being (a) (see below), and with
1410d565efSmrgthe Back-Cover Texts being (b) (see below).  A copy of the license is
1510d565efSmrgincluded in the gfdl(7) man page.
1610d565efSmrg
1710d565efSmrg(a) The FSF's Front-Cover Text is:
1810d565efSmrg
1910d565efSmrg     A GNU Manual
2010d565efSmrg
2110d565efSmrg(b) The FSF's Back-Cover Text is:
2210d565efSmrg
2310d565efSmrg     You have freedom to copy and modify this GNU Manual, like GNU
2410d565efSmrg     software.  Copies published by the Free Software Foundation raise
2510d565efSmrg     funds for GNU development.
2610d565efSmrg@c man end
2710d565efSmrg@c Set file name and title for the man page.
2810d565efSmrg@setfilename gcov-dump
2910d565efSmrg@settitle offline gcda and gcno profile dump tool
3010d565efSmrg@end ignore
3110d565efSmrg
3210d565efSmrg@node Gcov-dump
3310d565efSmrg@chapter @command{gcov-dump}---an Offline Gcda and Gcno Profile Dump Tool
3410d565efSmrg
3510d565efSmrg@menu
3610d565efSmrg* Gcov-dump Intro::             Introduction to gcov-dump.
3710d565efSmrg* Invoking Gcov-dump::          How to use gcov-dump.
3810d565efSmrg@end menu
3910d565efSmrg
4010d565efSmrg@node Gcov-dump Intro
4110d565efSmrg@section Introduction to @command{gcov-dump}
4210d565efSmrg@c man begin DESCRIPTION
4310d565efSmrg
4410d565efSmrg@command{gcov-dump} is a tool you can use in conjunction with GCC to
4510d565efSmrgdump content of gcda and gcno profile files offline.
4610d565efSmrg
4710d565efSmrg@c man end
4810d565efSmrg
4910d565efSmrg@node Invoking Gcov-dump
5010d565efSmrg@section Invoking @command{gcov-dump}
5110d565efSmrg
5210d565efSmrg@smallexample
5310d565efSmrgUsage: gcov-dump @r{[}@var{OPTION}@r{]} ... @var{gcovfiles}
5410d565efSmrg@end smallexample
5510d565efSmrg
5610d565efSmrg@command{gcov-dump} accepts the following options:
5710d565efSmrg
5810d565efSmrg@ignore
5910d565efSmrg@c man begin SYNOPSIS
6010d565efSmrggcov-dump [@option{-v}|@option{--version}]
6110d565efSmrg     [@option{-h}|@option{--help}]
6210d565efSmrg     [@option{-l}|@option{--long}]
6310d565efSmrg     [@option{-p}|@option{--positions}]
640fc04c29Smrg     @var{gcovfiles}
6510d565efSmrg@c man end
6610d565efSmrg@end ignore
6710d565efSmrg
6810d565efSmrg@c man begin OPTIONS
6910d565efSmrg@table @gcctabopt
7010d565efSmrg@item -h
7110d565efSmrg@itemx --help
7210d565efSmrgDisplay help about using @command{gcov-dump} (on the standard output), and
7310d565efSmrgexit without doing any further processing.
7410d565efSmrg
7510d565efSmrg@item -l
7610d565efSmrg@itemx --long
7710d565efSmrgDump content of records.
7810d565efSmrg
7910d565efSmrg@item -p
8010d565efSmrg@itemx --positions
8110d565efSmrgDump positions of records.
8210d565efSmrg
8310d565efSmrg@item -v
8410d565efSmrg@itemx --version
8510d565efSmrgDisplay the @command{gcov-dump} version number (on the standard output),
8610d565efSmrgand exit without doing any further processing.
8710d565efSmrg@end table
8810d565efSmrg
8910d565efSmrg@c man end
90