is there any C++ name mangling decoder for g++ ?

link|improve this question

another g++? :) – ruslik Dec 17 '10 at 8:28
9  
Some guys will soon answer c++filt – Johannes Schaub - litb Dec 17 '10 at 8:29
possible duplicate of Why typeid.name() returns weird characters using gcc? - difference is just that the questioner over there didn't know the term "mangling", or that the mangled name is what g++ returns from type_info::name. Answer over there mentions __cxa_demangle. – Steve Jessop Dec 17 '10 at 12:57
feedback

2 Answers

up vote 15 down vote accepted

You can use c++filt to demangle c++ symbols. For instance

$ c++filt -n _Z1fv
f()
link|improve this answer
feedback

c++filt, example usage here:

Can we see the template instantiated code by C++ compiler

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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