Skip to content
  1. Dec 07, 2017
  2. Dec 06, 2017
  3. Dec 05, 2017
  4. Dec 02, 2017
  5. Dec 01, 2017
    • Rafael Espindola's avatar
      Revert r318924 Skip over empty sections when checking for contiguous relro · b70824c1
      Rafael Espindola authored
      PR35478 https://bugs.llvm.org/show_bug.cgi?id=35478 points out a flaw
      in the implementation of r318924 from D40364. The implementation
      depends on the Size field being set or the SyntheticSection::empty()
      being accurate. These functions are not reliable as some linker script
      commands that have yet to be processed may affect the results, causing
      some non-zero size sections to be reported as zero size.
      
      I think the first step is to revert r318924 and come up with a better
      solution for the underlying problem rather than trying to layer more
      heuristics onto the zero sized output section.
      
      Chances are I'll be out of office by the time anyone sees this so feel
      free to commit the revert if you agree with me.
      
      Fixes PR35478
      
      Current thoughts on the underlying problem:
      
      Revisiting the motivation for adding the zero size check in the first
      place; it was to prevent 0 sized SyntheticSections that a user does
      not have full control over from needlessly breaking the PT_GNU_RELRO,
      rather than trying to accommodate arbitrarily complex linker
      scripts. Looking at the code, it looks like
      removeUnusedSyntheticSections() should remove zero sized synthetic
      sections. It does, but it doesn't set the Parent to nullptr, this has
      the side effect that Sec == InX::BssRelRo->getParent() will make the
      parent OutputSection of InX::BssRelRo RelRo even if there is no
      InX::BssRelRo.
      
      I tried a quick experiment with setting the Parent to nullptr and this
      flushed out a few interesting test failures, it feels like playing
      Jenga with every change:
      
          In the isRelroSection() we have to consider the case where there
          is no .plt and .plt.got but there is a ifunc plt with accompanying
          (ifunc .got or .plt.got)
      
          The PPC64 has PltHeaderSize == 0. Unfortunately HeaderSize == 0 is
          used to choose between the ifunc plt or normal plt. We seem to get
          away with this at the moment, but tests start to fail when Parent
          is set to nullptr for the .got.plt.
      
          The InX::BssRelRo and InX::Bss never get their sizes set and they
          are always removed by removeUnusedSyntheticSections(), their
          purpose seems to be as some kind of proxy for add .bss or
          .bss.relro InputSections into their parent OutputSections, they
          therefore don't behave like other SyntheticSections anyway.
      
      My thinking is that some work is needed to make sure that the Sec ==
      SyntheticSection->getParent() does a bit more checking before
      returning true, particularly for InX::BssRelRo as that has special
      behaviour. I'll hope to post something for review as soon as possible.
      
      Patch by Peter Smith!
      
      llvm-svn: 319563
      b70824c1
    • George Rimar's avatar
      [ELF] - Rename excessive variable. NFC. · 196be4a1
      George Rimar authored
      It is a follow up for 
      https://reviews.llvm.org/D40652 requested during review.
      
      llvm-svn: 319527
      196be4a1
    • George Rimar's avatar
      [ELF] - Produce relocation section name consistent with output section name... · 78e27e83
      George Rimar authored
      [ELF] - Produce relocation section name consistent with output section name when --emit-reloc used with linker script.
      
      This is for "Bug 35474 - --emit-relocs produces wrongly-named reloc sections".
      
      LLD currently for scripts like:
      
      .text.boot : { *(.text.boot) }
      emits relocation section with name .rela.text because does not take
      redefined name of output section into account and builds section name
      using rules for non-scripted case. Patch fixes this oddness.
      
      Differential revision: https://reviews.llvm.org/D40652
      
      llvm-svn: 319526
      78e27e83
    • Rui Ueyama's avatar
      Make .gnu.hash section smaller. · 1cf7f9cc
      Rui Ueyama authored
      Our on-disk hash table was unnecessarily large. The cost of collision is
      not high in the .gnu.hash table because each symbol in the .gnu.hash
      table has a hash value with it. So, for each collided symbol, the
      dynamic linker just compares an integer, which is pretty cheap.
      
      This patch increases the load factor by about 8. Here's a comparison.
      
        $ readelf --histogram libclangSema.so.6.0.0svn-new-lld
        Histogram for `.gnu.hash' bucket list length (total of 582 buckets):
         Length  Number     % of total  Coverage
              0  11         (  1.9%)
              1  35         (  6.0%)      1.5%
              2  93         ( 16.0%)      9.5%
              3  108        ( 18.6%)     23.4%
              4  121        ( 20.8%)     44.1%
              5  86         ( 14.8%)     62.6%
              6  63         ( 10.8%)     78.8%
              7  38         (  6.5%)     90.2%
              8  18         (  3.1%)     96.4%
              9  6          (  1.0%)     98.7%
             10  3          (  0.5%)    100.0%
      
        $ readelf --histogram libclangSema.so.6.0.0svn-old-lld
        Histogram for `.gnu.hash' bucket list length (total of 4093 buckets):
         Length  Number     % of total  Coverage
              0  1498       ( 36.6%)
              1  1545       ( 37.7%)     37.7%
              2  712        ( 17.4%)     72.5%
              3  251        (  6.1%)     90.9%
              4  66         (  1.6%)     97.3%
              5  16         (  0.4%)     99.3%
              6  5          (  0.1%)    100.0%
      
        $ readelf --histogram libclangSema.so.6.0.0svn-bfd
        Histogram for `.gnu.hash' bucket list length (total of 1004 buckets):
         Length  Number     % of total  Coverage
            0  92         (  9.2%)
              1  227        ( 22.6%)      9.8%
              2  266        ( 26.5%)     32.6%
              3  222        ( 22.1%)     61.2%
              4  115        ( 11.5%)     81.0%
              5  55         (  5.5%)     92.8%
              6  21         (  2.1%)     98.2%
              7  6          (  0.6%)    100.0%
      
        $ readelf --histogram libclangSema.so.6.0.0svn-gold
        Histogram for `.gnu.hash' bucket list length (total of 2053 buckets):
         Length  Number     % of total  Coverage
              0  671        ( 32.7%)
              1  709        ( 34.5%)     30.4%
              2  470        ( 22.9%)     70.7%
              3  141        (  6.9%)     88.9%
              4  54         (  2.6%)     98.2%
              5  5          (  0.2%)     99.2%
              6  3          (  0.1%)    100.0%
      
      Differential Revision: https://reviews.llvm.org/D40683
      
      llvm-svn: 319503
      1cf7f9cc
  6. Nov 30, 2017
  7. Nov 29, 2017
Loading