aboutsummaryrefslogtreecommitdiff
path: root/elfcpp
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2017-08-17 11:29:04 +0100
committerAndrew Burgess <andrew.burgess@embecosm.com>2017-08-24 12:41:34 +0100
commit5b5f4e6f8cd250e07ec98278f7223e57b3d3bb0c (patch)
tree55cb14623b168c916e2afa381d57f7e0e93a291d /elfcpp
parent34bb2571d40e1ca323a1b60e0827a25047890faa (diff)
downloadgdb-5b5f4e6f8cd250e07ec98278f7223e57b3d3bb0c.zip
gdb-5b5f4e6f8cd250e07ec98278f7223e57b3d3bb0c.tar.gz
gdb-5b5f4e6f8cd250e07ec98278f7223e57b3d3bb0c.tar.bz2
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.
Diffstat (limited to 'elfcpp')
0 files changed, 0 insertions, 0 deletions