<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Oct 19, 2016 at 3:34 AM, Peter Smith 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">Thanks for the RFC.<br>
<br>
I'm in favour of the option of creating InputSections for some linker<br>
generated content. I think it would add extra flexibility to the<br>
linker. ARM's proprietary linker uses the equivalent of InputSections<br>
with a pseudo linker defined ObjectFile for SHF_ALLOC content. As<br>
Eugene points out it isn't always appropriate for meta-data sections.<br></blockquote><div><br></div><div>It is encouraging that the ARM's linker uses the same scheme.</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
In particular it would be great to have a pseudo InputFile that local<br>
symbols could be generated in as this would make supporting mapping<br>
symbols[*] in linker generated sections much easier. It would also<br>
make a Thunk implementation that generated standalone InputSections<br>
rather than adding as patches to existing InputSections.<br>
<br>
The disadvantage with extra flexibility is that it increases the<br>
amount of opportunities for both implementers and users to make<br>
mistakes, and it makes some implementation details more complicated.<br>
Where we would have been able to guarantee a single OutputSection, we<br>
may have many clumps of InputSections distributed across several<br>
OutputSections. In some cases it is user error to split InputSections<br>
apart as they need to be contiguous, which requites diagnostics, and<br>
in some cases algorithms need to be careful, for example in embedded<br>
systems it is not always appropriate to string merge between<br>
OutputSections as these OutputSections may not exist in memory on the<br>
at the same time (Overlays).<br>
<br>
Personally I think the additional flexibility is worth it.<br>
<br>
[*] Mapping symbols identify ranges of ARM code ($a), Thumb code ($t)<br>
and literal data ($d). It would be great to add these to Thunks and<br>
PLT entries as this would improve disassembly.<br>
<br>
On 19 October 2016 at 10:37, Eugene Leviant via llvm-dev<br>
<div><div class="h5"><<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
> I would suggest converting only part of linker generated sections to<br>
> input sections to reduce amount of code changes.<br>
> For example it's unlikely that SymbolTableSection or<br>
> StringTableSection would ever require such treatment, so why<br>
> converting them to input sections?<br></div></div></blockquote><div><br></div><div>I think if the scheme works for all sections, and if it doesn't unnecessarily complicate the code, we should convert all sections to input sections in order to keep the architecture simple. "The linker creates its own sections as input sections" is easier to explain/understand than "... as either input sections or output sections."</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
><br>
> 2016-10-19 11:03 GMT+03:00 George Rimar <<a href="mailto:grimar@accesssoftek.com">grimar@accesssoftek.com</a>>:<br>
>>>This idea popped up in the review thread for<br>
>>> <a href="https://reviews.llvm.org/D25627" rel="noreferrer" target="_blank">https://reviews.llvm.org/<wbr>D25627</a>.<br>
>><br>
>>><br>
>>>Problem:<br>
>>><br>
>>>Currently, LLD creates special sections that are not just concatenations of<br>
>>> input sections but need link-time data generation, such as .got, .plt,<br>
>>> interp, .mips.options, >etc., as output sections. We have OutputSectionBase<br>
>>> subclasses (e.g. GotSection, PltSection, etc.) to create data. Even though<br>
>>> this scheme works in most cases, >there are a few situations that doesn't<br>
>>> work well as you may have noticed. Here are a issues.<br>
>>><br>
>>  >- You cannot mix special sections with other types of sections.<br>
>>><br>
>>>  For example, using linker scripts, you can instruct the linker put<br>
>>> mergeable sections and non-mergeable sections into the same output section.<br>
>>> Such script makes >sense. However, LLD cannot handle such script because<br>
>>> string merging is the special mergeable output section's feature. The output<br>
>>> section doesn't know how to >handle other types of sections, so you cannot<br>
>>> feed non-mergeable sections to a mergeable output section.<br>
>>><br>
>>> - It cannot handle linker scripts like this as pointed by Eugene.<br>
>>><br>
>>>  .got { *(.got.plt) *(.got) }<br>
>>><br>
>>>   In our current architecture, .got section is an output section, so it<br>
>>> cannot be added to other output section. There's no clean way to handle this<br>
>>> linker script.<br>
>>><br>
>>>Proposal:<br>
>>><br>
>>>Here's my idea: how about creating all special sections as input sections<br>
>>> instead of output sections?<br>
>>><br>
>>>GotSection, PltSection, etc. will be subclasses of InputSection that don't<br>
>>> have corresponding input files. What they will do remain the same. They will<br>
>>> be added to >OutputSections just like other regular sections are added. I<br>
>>> think we could simplify OutputSection a lot -- OutputSection will probably<br>
>>> become a dumb container >that just concatenates all input sections.<br>
>>><br>
>>>This approach would solve the problems described above. Now that we create<br>
>>> .got as an special input section with ".got" as a name, so they can<br>
>>> naturally be added >to any output section. String merging occurs inside a<br>
>>> special mergeable input section, so they can be added to any section, too.<br>
>>><br>
>>>So, I think by moving the implementations from OutputSection to<br>
>>> InputSection, we can solve many problems. I do not think of any obvious<br>
>>> problem with the >approach.<br>
>>><br>
>>>What do you think?<br>
>><br>
>> For me that sounds as interesting idea. My consern and guess that amount of<br>
>> code changes can be really large for that.<br>
>> But generally I so not see real problems with this approach too.<br>
>><br>
>> George.<br>
>><br>
</div></div>> ______________________________<wbr>_________________<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/<wbr>mailman/listinfo/llvm-dev</a><br>
______________________________<wbr>_________________<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/<wbr>mailman/listinfo/llvm-dev</a><br>
</blockquote></div><br></div></div>