<div dir="ltr">On Thu, May 5, 2016 at 5:45 PM, Rui Ueyama via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I'm wondering if we also want to have a demangler for MSVC name mangling scheme for those who want to cross-build Windows executables on Unix. (Or do we already have one?)</div></blockquote><div><br></div><div>+1 on this.  This sounds extremely useful (and I do often cross-compile for Windows on Unix).</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><div class="gmail_quote">On Thu, May 5, 2016 at 5:10 PM, Kate Stone via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><span><blockquote type="cite"><div>On May 5, 2016, at 11:50 AM, Duncan P. N. Exon Smith <<a href="mailto:dexonsmith@apple.com" target="_blank">dexonsmith@apple.com</a>> wrote:</div><div><div><br><blockquote type="cite">On 2016-May-05, at 11:14, David Majnemer <<a href="mailto:david.majnemer@gmail.com" target="_blank">david.majnemer@gmail.com</a>> wrote:<br><br>On Thu, May 5, 2016 at 10:58 AM, Duncan P. N. Exon Smith via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br><blockquote type="cite">+Kate<br><br>We already have two demangler implementations (LLDB and libcxxabi).  I'd rather not have three.  Have you looked at the LLDB one?  I think Kate has some patches she hasn't had a chance to commit yet that add functionality.  I heard something like 10x faster, and way less stack usage (although not quite fully functional yet).  Seems like a good starting point.<br></blockquote></blockquote></div></div></blockquote><div><br></div></span><div>I’d definitely support this and would happily answer inquiries about the existing design.  I don’t think we quite manage a ten-fold improvement, but 6-8 times faster than the libcxxabi implementation is typical at -O3.  The primary design constraint from LLDB’s perspective is raw throughput since we generally need to demangle <i>every</i> symbol associated with a process in order to resolve typical requests (break on a function whose base name is “main”.)</div><div><br></div><div>The existing design is intended to be 100% accurate for cases it can handle and to fail gracefully when it doesn’t support a particular mangling to enable fallback to the libcxxabi implementation.  Sadly, we also have a copy of the latter as we needed to work around a few crashes as they cropped up late in various product cycles.</div><span><br><blockquote type="cite"><div><div><blockquote type="cite"><blockquote type="cite">I don't have a problem with "the one true demangler" living in lib/Support, but ideally we'd find a way to reuse it in libc++abi so that we have one, well-tested, implementation.<br></blockquote><br>IIRC, LLDB has two demanglers: one is a copy of the libc++ demangler and the other is a "fast-path" demangler.  There are some cases that the fast-path demangler cannot handle which leads it to fall back to the libc++ clone.<br></blockquote><br>I think the goal of the fast-path LLDB demangler was to eventually<br>be fully-functional, it just isn't there yet.<br></div></div></blockquote><div><br></div></span>Absolutely.  We’d be happy to rely on a shared, fully functional implementation that meets our throughput needs and I believe this could be a reasonable starting point.</div><div><span><br><blockquote type="cite"><div><div><blockquote type="cite">My professional opinion, having worked a lot with mangling technology, would be for us to write a new mangler that had incredibly few dependencies on anything.  This would make it easy for us to copy the source or an object file generated by the source.<br></blockquote><br>This lines up with what I'm thinking, I just imagine that the LLDB<br>"fast-path" demangler could be a starting point.<br></div></div></blockquote><div><br></div></span><div>It’s entirely self-contained and largely stock C with a very few modern C++ conveniences.</div><div><div><br><blockquote type="cite"><div><div><blockquote type="cite"><blockquote type="cite">On 2016-May-05, at 06:37, Rafael Espíndola via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br><br>I really want to start simple. So if adding a demangler the first<br>objective is to add one that lets us drop the HAVE_CXXABI_H.<br><br>After that it can be expanded.<br><br>Cheers,<br>Rafael<br><br><br>On 5 May 2016 at 08:58, David Chisnall <<a href="mailto:David.Chisnall@cl.cam.ac.uk" target="_blank">David.Chisnall@cl.cam.ac.uk</a>> wrote:<br><blockquote type="cite">On 5 May 2016, at 13:47, Rafael Espíndola via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br><blockquote type="cite"><br>* Is having an itanium demangler in lib/Support something people find<br>desirable or at least acceptable?<br></blockquote><br>Yes.<br><br><blockquote type="cite">* The libcxxabi code is dual licensed, would the copy in lib/Support be as well?<br></blockquote><br>Please don’t use the one from libcxxabi.  Howard wrote one that was initially in libcxxabi but was replaced because it had memory requirements that were incompatible with one of the use cases in libcxxabi (on the out-of-memory exception path).  It is far more flexible and allows things to be hooked in at various points in the parse.  I believe that this one was written entirely by Howard during his time as an Apple employee so can likely be relicensed with Chris’s permission if required.<br><br><blockquote type="cite">* How much llvm-like should we try to make it? Should it take an<br>StringRef, return an Error and print to a raw_ostream? Or should it<br>look more like __cxa_demangle to try to make it easier to move code<br>in?<br></blockquote><br>I believe that it should be a generally useful demangler.  __cxa_demangle has a very poorly designed interface and is really only useful for turning mangled names into strings.  The earlier one makes it easy, for example, to extract the demangled name of each argument type for a function call.  This is something that I can imagine being useful in JIT FFI contexts, for example.<br><br>David<br><br></blockquote>_______________________________________________<br>LLVM Developers mailing list<br><a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br><a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br></blockquote><br>_______________________________________________<br>LLVM Developers mailing list<br><a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br><a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br></blockquote><br></div></div></blockquote></div></div></div><br></div><br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
<br></blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Saleem Abdulrasool<br>compnerd (at) compnerd (dot) org</div>
</div></div>