Skip to content
  1. Apr 27, 2016
  2. Apr 26, 2016
  3. Apr 23, 2016
    • Rafael Espindola's avatar
      Bring r267164 back with a fix. · 0b9531c8
      Rafael Espindola authored
      The fix is to handle local symbols referring to SHF_MERGE sections.
      
      Original message:
      
      GC entries of SHF_MERGE sections.
      
      It is a fairly direct extension of the gc algorithm. For merge sections
      instead of remembering just a live bit, we remember which offsets
      were used.
      
      This reduces the .rodata sections in chromium from 9648861 to 9477472
      bytes.
      
      llvm-svn: 267233
      0b9531c8
  4. Apr 22, 2016
    • Rafael Espindola's avatar
      Revert "GC entries of SHF_MERGE sections." · 46c039f2
      Rafael Espindola authored
          This reverts commit r267164.
      
          Revert "Trying to fix the windows build."
      
          This reverts commit r267168.
      
      Debugging a bootstrap problem.
      
      llvm-svn: 267194
      46c039f2
    • Peter Collingbourne's avatar
      ELF: Move Visibility, IsUsedInRegularObj and MustBeInDynSym flags to Symbol. · dadcc17e
      Peter Collingbourne authored
      These are properties of a symbol name, rather than a particular instance
      of a symbol in an object file. We can simplify the code by collecting these
      properties in Symbol.
      
      The MustBeInDynSym flag has been renamed ExportDynamic, as its semantics
      have been changed to be the same as those of --dynamic-list and
      --export-dynamic-symbol, which do not cause hidden symbols to be exported.
      
      Differential Revision: http://reviews.llvm.org/D19400
      
      llvm-svn: 267183
      dadcc17e
    • Rafael Espindola's avatar
      GC entries of SHF_MERGE sections. · caa831d8
      Rafael Espindola authored
      It is a fairly direct extension of the gc algorithm. For merge sections
      instead of remembering just a live bit, we remember which offsets were
      used.
      
      This reduces the .rodata sections in chromium from 9648861 to 9477472
      bytes.
      
      llvm-svn: 267164
      caa831d8
    • Rafael Espindola's avatar
      This reverts commit r267154 and r267161. · 197d6a88
      Rafael Espindola authored
      It turns out that this will read data from the section to properly
      handle Elf_Rel implicit addends.
      
      Sorry for the noise.
      
      Original messages:
      
      Try to fix Windows lld build.
      
      Move getRelocTarget to ObjectFile.
      It doesn't use anything from the InputSection.
      
      llvm-svn: 267163
      197d6a88
    • Nico Weber's avatar
      Try to fix Windows lld build. · 104871f4
      Nico Weber authored
      llvm\tools\lld\ELF\MarkLive.cpp(49): error C2872: 'ObjectFile': ambiguous symbol
      llvm\tools\lld\elf\InputFiles.h(100): note: could be 'lld::elf::ObjectFile'
      llvm\include\llvm/Object/IRObjectFile.h(26): note: or       'llvm::object::ObjectFile'
      llvm\tools\lld\ELF\MarkLive.cpp(133): note: see reference to function template instantiation
          'void forEachSuccessor<ELFT>(lld::elf::InputSection<ELFT> *,
                                       std::function<void (lld::elf::InputSectionBase<ELFT> *)>)'
          being compiled with
                      [ ELFT=llvm::object::ELF32LE ]
      llvm\tools\lld\ELF\MarkLive.cpp(136): note: see reference to function template instantiation
          'void lld::elf::markLive<llvm::object::ELF32LE>(lld::elf::SymbolTable<llvm::object::ELF32LE> *)
          being compiled
      
      llvm-svn: 267161
      104871f4
    • Rafael Espindola's avatar
      Move getRelocTarget to ObjectFile. · ea4d1779
      Rafael Espindola authored
      It doesn't use anything from the InputSection.
      
      llvm-svn: 267154
      ea4d1779
    • Rafael Espindola's avatar
      Simplify. NFC. · 5221516a
      Rafael Espindola authored
      llvm-svn: 267147
      5221516a
    • Rafael Espindola's avatar
      Don't gc protected symbols. · 5be60649
      Rafael Espindola authored
      llvm-svn: 267081
      5be60649
  5. Apr 20, 2016
    • Rui Ueyama's avatar
      ELF: Template LinkerScript class. · 07320e40
      Rui Ueyama authored
      Originally, linker scripts were basically an alternative way to specify
      options to the command line options. But as we add more features to hanlde
      symbols and sections, many member functions needed to be templated.
      Now most the members are templated. It is probably time to template the
      entire class.
      
      Previously, LinkerScript is an executor of the linker script as well as
      a storage of linker script configurations. This is not suitable to template
      the class because when we are reading linker script files, we don't know
      the ELF type yet, so we can't instantiate ELF-templated classes.
      
      In this patch, I defined a new class, ScriptConfiguration, to store
      linker script configurations. ScriptParser writes parse results to it,
      and LinkerScript uses them.
      
      Differential Revision: http://reviews.llvm.org/D19302
      
      llvm-svn: 266908
      07320e40
  6. Apr 15, 2016
  7. Apr 14, 2016
  8. Apr 04, 2016
    • Rafael Espindola's avatar
      Don't store an Elf_Sym for most symbols. · ccfe3cb3
      Rafael Espindola authored
      Our symbol representation was redundant, and some times would get out of
      sync. It had an Elf_Sym, but some fields were copied to SymbolBody.
      
      Different parts of the code were checking the bits in SymbolBody and
      others were checking Elf_Sym.
      
      There are two general approaches to fix this:
      * Copy the required information and don't store and Elf_Sym.
      * Don't copy the information and always use the Elf_Smy.
      
      The second way sounds tempting, but has a big problem: we would have to
      template SymbolBody. I started doing it, but it requires templeting
      *everything* and creates a bit chicken and egg problem at the driver
      where we have to find ELFT before we can create an ArchiveFile for
      example.
      
      As much as possible I compared the test differences with what gold and
      bfd produce to make sure they are still valid. In most cases we are just
      adding hidden visibility to a local symbol, which is harmless.
      
      In most tests this is a small speedup. The only slowdown was scylla
      (1.006X). The largest speedup was clang with no --build-id, -O3 or
      --gc-sections (i.e.: focus on the relocations): 1.019X.
      
      llvm-svn: 265293
      ccfe3cb3
  9. Mar 15, 2016
  10. Mar 11, 2016
  11. Feb 28, 2016
  12. Feb 25, 2016
  13. Feb 24, 2016
    • Rui Ueyama's avatar
      ELF: Do not instantiate InputSectionBase::Discarded. · 733153de
      Rui Ueyama authored
      "Discarded" section is a marker for discarded sections, and we do not
      use the instance except for checking its identity. In that sense, it
      is just another type of a "null" pointer for InputSectionBase. So,
      it doesn't have to be a real instance of InputSectionBase class.
      
      In this patch, we no longer instantiate Discarded section but instead
      use -1 as a pointer value. This eliminates a global variable which
      needed initialization at startup.
      
      llvm-svn: 261761
      733153de
  14. Feb 23, 2016
    • George Rimar's avatar
      [ELF] - Linkerscript KEEP command. · 481c2ce6
      George Rimar authored
      When link-time garbage collection is in use (-gc-sections), it is 
      often useful to mark sections that should not be eliminated. 
      This is accomplished by surrounding an input section's wildcard 
      entry with KEEP(). Patch implements that command.
      
      Differential revision: http://reviews.llvm.org/D17242
      
      llvm-svn: 261616
      481c2ce6
  15. Jan 12, 2016
  16. Jan 06, 2016
  17. Jan 05, 2016
  18. Dec 24, 2015
    • Rafael Espindola's avatar
      Delete DefinedAbsolute. · 02ce26a1
      Rafael Espindola authored
      There are 3 symbol types that a .bc can provide during lto: defined,
      undefined, common.
      
      Defined and undefined symbols have already been refactored. I was
      working on common and noticed that absolute symbols would become an
      oddity: They would be the only symbol type present in a .o but not in
      a.bc.
      
      Looking a bit more, other than the special section number they were only
      used for special rules for computing values. In that way they are
      similar to TLS, and we don't have a DefinedTLS.
      
      This patch deletes it. With it we have a reasonable rule of the thumb
      for having a symbol kind: It exists if it has special resolution
      semantics.
      
      llvm-svn: 256383
      02ce26a1
    • Rui Ueyama's avatar
      Remove `continue` to make the code a bit shorter. NFC. · 74f598b2
      Rui Ueyama authored
      llvm-svn: 256379
      74f598b2
    • Rui Ueyama's avatar
      Mark .eh_frame sections as live by default. NFC. · da735325
      Rui Ueyama authored
      This change eliminates a string comparison from the
      garbage collector.
      
      llvm-svn: 256378
      da735325
    • Davide Italiano's avatar
      [ELF] Don't reclaim .ctors/.dtors sections. · bcbfedc9
      Davide Italiano authored
      In FreeBSD, rtld expects .ctors containing -1 (0xffffffff), and a
      .ctors section containing the correct bits is provided to the linker as
      input (/usr/lib/crtbegin.o).
      
      Contents of section .ctors:
       0000 ffffffff ffffffff                    ........
      
      This section is not stripped even if not referenced or empty, also in
      gold or ld.bfd. It would be nice to strip it when not needed but
      since existing object files rely on that we can't do better to keep it
      around.
      
      Differential Revision:   http://reviews.llvm.org/D15767
      
      llvm-svn: 256373
      bcbfedc9
    • Rui Ueyama's avatar
      Add a comment. · 7924fb81
      Rui Ueyama authored
      llvm-svn: 256372
      7924fb81
  19. Nov 12, 2015
  20. Nov 09, 2015
  21. Oct 27, 2015
  22. Oct 23, 2015
  23. Oct 22, 2015
    • Rui Ueyama's avatar
      ELF2: Keep .eh_frame even if they are not live. · 8a598f89
      Rui Ueyama authored
      .eh_frame sections need to be preserved if they refer to live sections.
      So the liveness relation is reverse for eh_frame sections. For now,
      we simply preserve all .eh_frame sections. Thanks Rafael for pointing
      this out. .jcr are kept for the same reason.
      
      llvm-svn: 251068
      8a598f89
    • Rui Ueyama's avatar
      ELF2: Implement --gc-sections. · c4aaed92
      Rui Ueyama authored
      Section garbage collection is a feature to remove unused sections
      from outputs. Unused sections are sections that cannot be reachable
      from known GC-root symbols or sections. Naturally the feature is
      implemented as a mark-sweep garbage collector.
      
      In this patch, I added Live bit to InputSectionBase. If and only
      if Live bit is on, the section will be written to the output.
      Starting from GC-root symbols or sections, a new function, markLive(),
      visits all reachable sections and sets their Live bits. Writer then
      ignores sections whose Live bit is off, so that such sections are
      excluded from the output.
      
      This change has small negative impact on performance if you use
      the feature because making sections means more work. The time to
      link Clang changes from 0.356s to 0.386s, or +8%.
      
      It reduces Clang size from 57,764,984 bytes to 55,296,600 bytes.
      That is 4.3% reduction.
      
      http://reviews.llvm.org/D13950
      
      llvm-svn: 251043
      c4aaed92
Loading