This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs. |
Demangle C++ and Java symbols
c++filt [-_|--strip-underscores] [-j|--java] [-n|--no-strip-underscores] [-p|--no-params] [-s format|--format=format] [--help] [--version] [symbol...]
The C++ and Java languages provides function overloading, which means that you can write many functions with the same name (providing each takes parameters of different types). All C++ and Java function names are encoded into a low-level assembly label (this process is known as mangling). The c++filt program does the inverse mapping: it decodes (demangles) low-level names into user-level names so that the linker can keep these overloaded functions from clashing.
Every alphanumeric word (consisting of letters, digits, underscores, dollars, or periods) seen in the input is a potential label. If the label decodes into a C++ name, the C++ name replaces the low-level name in the output.
You can use c++filt to decipher individual symbols:
c++filt symbol
If no symbol arguments are given, c++filt reads symbol names from the standard input and writes the demangled names to the standard output. All results are printed on the standard output.
GNU