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