ld: Early detection of orphans we know will be discarded
authorAndrew Burgess <andrew.burgess@embecosm.com>
Thu, 17 Aug 2017 10:29:04 +0000 (11:29 +0100)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Thu, 24 Aug 2017 11:41:34 +0000 (12:41 +0100)
commit5b5f4e6f8cd250e07ec98278f7223e57b3d3bb0c
tree55cb14623b168c916e2afa381d57f7e0e93a291d
parent34bb2571d40e1ca323a1b60e0827a25047890faa
ld: Early detection of orphans we know will be discarded

When processing an orphan section we first call lang_place_orphans, this
function handles a few sections for which the behaviour is known COMMON
sections, or sections marked as SEC_EXCLUDE.

Any orphans that are not handled in lang_place_orphans are passed on to
ldlang_place_orphan, this is where we decide where to put the orphan,
and then call lang_add_section to perform the actual orphan placement.

We previously had a larger set of checks at the start of the function
lang_add_section to discard some sections that we _knew_ should not be
added into the output file, this was where .group sections (in a final
link) and .debug* sections (with --strip-debug) were dropped.

The problem with dropping these sections at the lang_add_section stage
is that a user might also be using --orphan-handling=error to prevent
orphans.  If they are then they should not be get errors about sections
that we know will be discarded, and which are not mentioned in the
linker script.

The solution proposed in this patch is to move the "will this section be
discarded" check into a separate function, and use this in
lang_place_orphans to have the early discard phase discard sections that
we know should not be included in the output file.

ld/ChangeLog:

PR 21961
* ldlang.c (lang_discard_section_p): New function.
(lang_add_section): Checks moved out into new function, which is
now called.
(lang_place_orphans): Call lang_discard_section_p instead of
duplicating some of the checks from lang_add_section.
* testsuite/ld-elf/orphan-11.d: New file.
* testsuite/ld-elf/orphan-11.ld: New file.
* testsuite/ld-elf/orphan-11.s: New file.
* testsuite/ld-elf/orphan-12.d: New file.
* testsuite/ld-elf/orphan-12.s: New file.
ld/ChangeLog
ld/ldlang.c
ld/testsuite/ld-elf/orphan-11.d [new file with mode: 0644]
ld/testsuite/ld-elf/orphan-11.ld [new file with mode: 0644]
ld/testsuite/ld-elf/orphan-11.s [new file with mode: 0644]
ld/testsuite/ld-elf/orphan-12.d [new file with mode: 0644]
ld/testsuite/ld-elf/orphan-12.s [new file with mode: 0644]