Add --srec-len and --srec-forceS3 switches to objcopy
[deliverable/binutils-gdb.git] / binutils / cxxfilt.man
CommitLineData
252b5132
RH
1.\" Copyright (c) 1991 Free Software Foundation
2.\" See section COPYING for conditions for redistribution
3.TH @PROGRAM@ 1 "June 1993" "cygnus support" "GNU Development Tools"
4.de BP
5.sp
6.ti \-.2i
7\(**
8..
9
10.SH NAME
11@PROGRAM@ \- demangle C++ symbols
12
13.SH SYNOPSIS
14.hy 0
15.na
16.TP
17.B @PROGRAM@
18.RB "[\|" \-_ | \-\-strip-underscores "\|]"
19.RB "[\|" "\-s {gnu,lucid,arm} " | " \-\-format={gnu,lucid,arm}" "\|]"
20.RB "[\|" \-\-help "\|]"
21.RB "[\|" \-\-version "\|]"
22.RB "[\|" symbol "...\|]"
23.SH DESCRIPTION
24The C++ language provides function overloading, which means that you can
25write many functions with the same name (providing each takes parameters
26of different types). All C++ function names are encoded into a
27low-level assembly label (this process is known as
28.I mangling\c
29). The
30.B @PROGRAM@
31program does the inverse mapping: it decodes (\fIdemangles\fR)
32low-level names into user-level names so that the linker can keep
33these overloaded functions from clashing.
34.PP
35Every alphanumeric word (consisting of letters, digits, underscores,
36dollars, or periods) seen in the input is a potential label. If the
37label decodes into a C++ name, the C++ name replaces the low-level
38name in the output.
39.PP
40You can use
41.B @PROGRAM@
42to decipher individual symbols by specifying these symbols on the
43command line.
44.PP
45If no
46.B symbol
47arguments are given,
48.B @PROGRAM@
49reads symbol names from the standard input and writes the demangled
50names to the standard output. All results are printed on the standard
51output.
52.SH OPTIONS
53.TP
54.B \-_
55.TP
56.B \-\-strip\-underscores
57On some systems, both the C and C++ compilers put an
58underscore in front of every name. For example, the C name
59.B foo
60gets the low-level name
61.BR _foo .
62This option removes the leading underscore.
63
64.TP
65.B "\-s {gnu,lucid,arm}"
66.TP
67.B \-\-format={gnu,lucid,arm}
68GNU
69.B nm
70can decode three different methods of mangling, used by different C++
71compilers. This option selects which method it uses: the one used by
72the GNU compiler, the one used by the Lucid compiler, or the one
73specified by the C++ Annotated Reference Manual. The default is the
74GNU style.
75
76.TP
77.B \-\-help
78Print a summary of the options to
79.B @PROGRAM@
80and exit.
81
82.TP
83.B \-\-version
84Print the version number of
85.B @PROGRAM@
86and exit.
87
88.SH "SEE ALSO"
89.RB "`\|" binutils "\|'"
90entry in
91.B
92info\c
93\&;
94.I
95The GNU Binary Utilities\c
96\&, Roland H. Pesch (June 1993).
97
98.SH COPYING
99Copyright (c) 1993 Free Software Foundation, Inc.
100.PP
101Permission is granted to make and distribute verbatim copies of
102this manual provided the copyright notice and this permission notice
103are preserved on all copies.
104.PP
105Permission is granted to copy and distribute modified versions of this
106manual under the conditions for verbatim copying, provided that the
107entire resulting derived work is distributed under the terms of a
108permission notice identical to this one.
109.PP
110Permission is granted to copy and distribute translations of this
111manual into another language, under the above conditions for modified
112versions, except that this permission notice may be included in
113translations approved by the Free Software Foundation instead of in
114the original English.
This page took 0.054842 seconds and 4 git commands to generate.