vote up 4 vote down star
1

How do I view the compiler-generated mangled names for overloaded functions in C++? I'm using VC9 but answers for other compilers are welcome too.

Edit: I find all the answers useful here. Accepting the one I liked best.

flag

48% accept rate

6 Answers

vote up 4 vote down check

You could look in the map file. Assuming you have map file generation turned on.

link|flag
What if you have multiple overloads of the same function? – Ofek Shilon May 8 at 20:04
Then you will see many functions with the same name wrapped in different mangled forms, for each overload. – Simeon Pilgrim May 10 at 10:24
Well you will then see multiple version of that function with each of there mangled names forms. Thus the purpose of name mangling, to avoid name conflicts. – Simeon Pilgrim May 10 at 10:25
vote up 1 vote down

While all the above works, there is a nicely documented way to view the mangled names by use of Listing Files: Project Property Pages -> C/C++ -> Output Files -> Assembler Output.

(EDIT:)

There is a reason only Listing files and DUMPBIN are documented as ways to see decorated names. Both the map file and dependency walker, suggested as solutions, display only decorated names. If you have multiple overloads of a function name, you'll have a hard time matching them to the various decorated names you'd see. (That's more or less reconstructing the decoration scheme. While possible, it defeats the whole original purpose.)

link|flag
vote up 4 vote down

Since you also ask about other compilers. There is a tool called nm on the gnu toolchain. You will get it on linux and cygwin, and I believe that it is also available in mingw. Calling it with no parameters will show the mangled symbols in the binary. Calling it with --demangle will do the obvious.

link|flag
vote up 6 vote down

You can see the decorated function names by using Dependency Walker.

Open any DLL\EXE in dependency walker and in right pane you can see a list of decorated function names.

link|flag
vote up 4 vote down

You can view decorated (mangled) names with Dumpbin.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.