<div dir="ltr">Yep, in theory maybe "partial units" could be used to address this - though any solution that's linker-agnostic will have some size overhead most likely (like type units) & I've never looked at them closely enough to know if just saying "partial units" is enough to describe the solution in detail or whether there's lots of other unknowns/options to pick between.<br><br>The alternative is full DWARF-aware merging, which would be much more expensive - and then you'd really want to only do this in something like a DWP tool, not in the hot-path of the linker. (this is what dsymutil already does - would be great to generalize its DWARF-aware merging logic and see what it'd be like to use it DWP and maybe to use it in the linker for folks where adding work to the hot-path isn't such a concern (or maybe to find out that it doesn't have a very bad effect on that situation - especially if it parallelizes well (I think LLD doesn't scale beyond a few cores - so if we have cores to spare and we can use one or more of them for DWARF merging, that might be totally fine))</div><br><div class="gmail_quote"><div dir="ltr">On Thu, Sep 20, 2018 at 9:34 PM Venkata Ramanaiah Nalamothu via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Thank you all for your time in responding to my query.</div><div><br></div><div>My understanding was also similar to what you all mentioned here but wanted to check if there are any recent developments in solving this problem.</div><div><br></div><div>Thanks,</div><div>Ramana<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Sep 20, 2018 at 9:32 PM, Rui Ueyama <span dir="ltr"><<a href="mailto:ruiu@google.com" target="_blank">ruiu@google.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Right. Technically we can get rid of debug info that corresponds to dead sections, but in order to do that, you have to scan the entire debug info. Debug info is actually one of only few pieces of information that the linker has to have a special logic to merge them, and that is already slow. IIUC, debug info for dead sections doesn't do any harm, so spending time in the linker to get rid of it isn't probably worth the cost. If we really need to do, I want a new mechanism as Paul wrote.</div><div class="m_227995681864170593HOEnZb"><div class="m_227995681864170593h5"><br><div class="gmail_quote"><div dir="ltr">On Thu, Sep 20, 2018 at 8:57 AM via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
> -----Original Message-----<br>
> From: llvm-dev [mailto:<a href="mailto:llvm-dev-bounces@lists.llvm.org" target="_blank">llvm-dev-bounces@lists.llvm.org</a>] On Behalf Of<br>
> Davide Italiano via llvm-dev<br>
> Sent: Thursday, September 20, 2018 10:55 AM<br>
> To: <a href="mailto:ramana.venkat83@gmail.com" target="_blank">ramana.venkat83@gmail.com</a>; Cary Coutant<br>
> Cc: llvm-dev; LLDB<br>
> Subject: Re: [llvm-dev] [lldb-dev] [LLD] How to get rid of debug info of<br>
> sections deleted by garbage collector<br>
> <br>
> On Wed, Sep 19, 2018 at 8:35 PM Venkata Ramanaiah Nalamothu via<br>
> lldb-dev <<a href="mailto:lldb-dev@lists.llvm.org" target="_blank">lldb-dev@lists.llvm.org</a>> wrote:<br>
> ><br>
> > Hi,<br>
> ><br>
> > After compiling an example.cpp file with "-c -ffunction-sections" and<br>
> linking with "--gc-sections" (used ld.lld), I am still seeing debug info<br>
> for the sections deleted by garbage collector in the generated executable.<br>
> ><br>
> > Are there any compiler/linker options and/or other tools in LLVM to get<br>
> rid of the above mentioned unneeded debug info?<br>
> ><br>
> > If such options does not exist, what needs to be changed in the linker<br>
> (lld)?<br>
> ><br>
> <br>
> It's not easy. It's also format dependent. I assume you're talking<br>
> about ELF here. In first approximation, the linker does not GC section<br>
> marked without SHF_ALLOC. At some point we did an analysis and in<br>
> practice it turns out most of them are debug info.<br>
> I seem to recall that Cary Coutant had a proposal for ld.gold on how<br>
> to reclaim them without breaking, but I can't find it easily (cc:ing<br>
> him directly).<br>
<br>
The short answer is: Nothing you can do currently.<br>
<br>
I had a chat with some of the Sony linker guys last week about this.<br>
Currently .debug_info is monolithic; we'd have to break it up in some<br>
fashion that would correspond with the way .text is broken up with<br>
-ffunction-sections, in such a way that the linker would automatically<br>
paste the right pieces back together to form a syntactically correct <br>
.debug_info section in the final executable.  There are some gotchas<br>
that would need to be designed correctly (e.g. reference from an<br>
inlined-subprogram to its abstract instance) but it didn't seem like<br>
the problems were insurmountable.<br>
<br>
The ultimate design almost certainly requires agreement about what the<br>
ELF pieces should look like, and a description in the DWARF spec so<br>
that consumers (e.g. dumpers) of the .o files would understand about<br>
the fragmented sections.  And then the linkers and dumpers have to<br>
be modified to implement it all. :-)<br>
<br>
Even without gc-sections, there is duplicate info to get rid of:<br>
everything that ends up in a COMDAT, like template instantiations<br>
and inline functions.  This is actually a much bigger win than<br>
anything you'd see left behind by GC.<br>
--paulr<br>
<br>
> <br>
> Thanks,<br>
> <br>
> --<br>
> Davide<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>
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>
</blockquote></div>
</div></div></blockquote></div><br></div>
_______________________________________________<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>
</blockquote></div>