|
c++filt does inverse mapping of encoded C++ symbols: it
decodes (demangles) low-level names into user-level names
so that the linker can keep 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.
|