<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 21, 2016 at 3:10 PM, Greg Clayton <span dir="ltr"><<a href="mailto:gclayton@apple.com" target="_blank">gclayton@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">There is no external demangling plug-in infrastructure at the moment, but you could add functionality that would allow it. No one is going to have D installed by default. Where do you expect your demangler dylib to live? </blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Would you just add code that tries to locate the dylib in N places on the current system and try to dlopen it? Avoiding duplication and just not having the functionality at all unless something else is might not make it that useful. Is D stable? Is the mangling changing at all? Will you require a demangler to be vended with each new version of the tool? Are all previous demanglings still valid in newer versions? Can you figure out the version of the D from a compiled executable so that you might be able to locate one of 5 different installs of D and select the right one? Let me know what you use case is.<br>
<span class="gmail-HOEnZb"><font color="#888888"><br>
Greg<br></font></span></blockquote><div><br></div><div><br></div><div>one simple flexible backward compatible option would be to have a generic environment variable:</div><div><br></div><div>```</div><div>export LLDB_DEMANGLER_EXE="/usr/bin/ddemangle"</div><div><div>lldb myprog<br></div></div><div>```</div><div><br></div><div>inside lldb (D-like pseudo code):<br></div><div><br></div><div>```</div><div>bool demangle(string symbol, string* output){</div><div>  auto path=env["LLDB_DEMANGLER_EXE"];</div><div>  if(!path.empty) {</div><div>     auto demangleCustom=cast(proper_type) dlopen(path);<br></div><div>     if(demangleCustom(symbol, output)) return true;</div><div>     // fallsback to default code if custom code didn't handle symbol</div><div>  }</div><div>  return run_default_lldb_demangle(symbol, output);<br></div><div>}<br></div><div>```</div><div><br></div><div>user defined demangler (eg D's demangler)</div><div>```</div><div>// return true if can demangle symbol (ie it's a D symbol in our case)</div><div>bool demangleCustom(string symbol, string* output);<br></div><div><br></div><div>```</div><div><br></div><div>>> Is the mangling changing at all?<br></div><div><br></div><div>yes, there's some ongoing work on making the mangling scheme produce much shorter symbols. The logic is complex, and it'd be a lot of work to reproduce this.</div><div><br></div><div>Bottomline: this scheme is very flexible, and it'd be no less useful than current situation, where lldb just returns the symbol unchanged if it can't demangle. </div><div><br></div><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="gmail-HOEnZb"><font color="#888888">
</font></span><div class="gmail-HOEnZb"><div class="gmail-h5"><br>
> On Sep 21, 2016, at 3:00 PM, Timothee Cour <<a href="mailto:thelastmammoth@gmail.com">thelastmammoth@gmail.com</a>> wrote:<br>
><br>
> Is there a way to provide a hook (eg, via an extern(C) function, or using a dynamically loaded shared library) to do this, so as to simply reuse D's <a href="https://dlang.org/phobos/std_demangle.html" rel="noreferrer" target="_blank">https://dlang.org/phobos/std_<wbr>demangle.html</a> and make sure it's always in sync with D's demangling instead of duplicating code<br>
><br>
> On Wed, Sep 21, 2016 at 10:24 AM, Greg Clayton via lldb-dev <<a href="mailto:lldb-dev@lists.llvm.org">lldb-dev@lists.llvm.org</a>> wrote:<br>
> It might be nice to add demangling support to llvm and then use it by modifying "Mangled::GetDemangledName()" in Mangled.cpp. This is where all demangling happens. Hopefully you have a great prefix that won't conflict with other languages "_Z" for C++, "_T" for swift. But the code in Mangled::GetDemangledName() will look at the prefix and attempt to demangle the name based on what prefix it starts with.<br>
><br>
><br>
> > On Sep 21, 2016, at 5:52 AM, Johan Engelen via lldb-dev <<a href="mailto:lldb-dev@lists.llvm.org">lldb-dev@lists.llvm.org</a>> wrote:<br>
> ><br>
> > Hi all,<br>
> >   I recently looked into adding demangling support for D in LLDB, but got lost in the code.<br>
> > (right now, basic D support is there with: <a href="https://reviews.llvm.org/D24794" rel="noreferrer" target="_blank">https://reviews.llvm.org/<wbr>D24794</a>)<br>
> ><br>
> > I'd like some pointers to where demangling is done for the other languages, and to where I should add D support for it.<br>
> ><br>
> > Thanks a lot,<br>
> >   Johan<br>
> ><br>
> > ______________________________<wbr>_________________<br>
> > lldb-dev mailing list<br>
> > <a href="mailto:lldb-dev@lists.llvm.org">lldb-dev@lists.llvm.org</a><br>
> > <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/lldb-dev</a><br>
><br>
> ______________________________<wbr>_________________<br>
> lldb-dev mailing list<br>
> <a href="mailto:lldb-dev@lists.llvm.org">lldb-dev@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/lldb-dev</a><br>
><br>
<br>
</div><div class="gmail-h5"><br></div></div></blockquote></div></div></div>