<div dir="ltr">If you want to get the original name by a library function, as Jonathan mentioned, you can call __cxa_demangle in cxxabi.h. However, this API is only available in gcc. If you want something more portable, try glog or libibert, notice libibert is GPL licensed.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Dec 11, 2014 at 7:57 AM, Roel Jordans <span dir="ltr"><<a href="mailto:r.jordans@tue.nl" target="_blank">r.jordans@tue.nl</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">When a C++ compiler translates source code it will perform name mangling to avoid name collisions due to type overloading.  You can use a tool like c++filt to de-mangle the generated names<br>
<br>
Cheers,<br>
 Roel<div><div class="h5"><br>
<br>
On 11/12/14 11:52, zy jj wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
Hi, everyone!<br>
     I'm new here trapped by a simple problem for days.<br>
     When LLVM translates C++ source code to IR, it will add a prefix to<br>
the function name. For example:<br>
source code:<br>
int foo(){<br>
return 1;<br>
}<br>
IR form:<br>
define i32 @_Z3foov() #0 {<br>
entry:<br>
   ret i32 1, !dbg !20<br>
}<br>
     The getName() method returns _Z3foov, then how can I get foo? I<br>
know the debugging information is contained in metadata, but I've no<br>
idea on using it.<br>
     Thanks a lot for any help.<br>
<br>
<br>
<br>
<br></div></div><span class="">
______________________________<u></u>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu" target="_blank">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/llvmdev</a><br>
<br>
</span></blockquote><div class="HOEnZb"><div class="h5">
______________________________<u></u>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu" target="_blank">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/llvmdev</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature"><div dir="ltr">- Welson<br><div><div><div><br></div></div></div></div></div>
</div>