<br><br><div class="gmail_quote"><div dir="ltr">On Thu., 3 Aug. 2017, 5:19 pm Rafael Avila de Espindola via llvm-commits <<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@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">David Blaikie via Phabricator <<a href="mailto:reviews@reviews.llvm.org" target="_blank">reviews@reviews.llvm.org</a>> writes:<br>
<br>
> (aside: does anyone have an idea of how well LLD scales with the number of<br>
> relocations versus the number of bytes of data in a section? I'd love to know<br>
> how much this reduction in relocations is worth (like is runtime of the linker<br>
> roughly N*relocs + M*raw bytes? Could be interesting to know - obviously<br>
> varying on different configurations (cores, disk speed, etc))<br>
<br>
We have a special case for relocations in non alloc sections (like debug<br>
info) that make it pretty fast.<br>
<br>
I can try to build clang -O0 -g with and without<br>
--use-dwarf-ranges-base-address-specifier and compare if you want. Can<br>
you think of a better test?<br></blockquote></div><div><br></div><div>An optimised build would be better - more likely to produce discontinuous ranges that use debug_ranges.</div><div><br></div><div>That's where I was seeing this internally - release (O3) builds with debug info (debug info is archives for "just in case" situations)</div><div><br></div><div>It also might be dwarfed (Har Har) by other relocations in a normal -g build compared to split-dwarf (string relocations especially).</div><div><br></div><div>Depends how far you want to go. I mean I'd be curious about whatever data you can get, for sure.</div><div><br></div><div>If you could measure the size or number of relocations in debug_* sections of whatever you test, that might be good (but I realise it might be too much work). That way if we know this change removes X relocs and saves Y time, we have so many more Xs and Ys we can save. (If you do look that far, really most/all of the relocs we /need/ (ie: the lower bound) are those in debug_line))</div><div><br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Cheers,<br>
Rafael<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a><br>
</blockquote></div>