Skip to content
  1. Jun 25, 2015
    • Rui Ueyama's avatar
      COFF: Devirtualize mark(), markLive() and isCOMDAT(). · fc510f4c
      Rui Ueyama authored
      Only SectionChunk can be dead-stripped. Previously,
      all types of chunks implemented these functions,
      but their functions were blank.
      
      Likewise, only DefinedRegular and DefinedCOMDAT symbols
      can be dead-stripped. markLive() function was implemented
      for other symbol types, but they were blank.
      
      I started thinking that the change I made in r240319 was
      a mistake. I separated DefinedCOMDAT from DefinedRegular
      because I thought that would make the code cleaner, but now
      we want to handle them as the same type here. Maybe we
      should roll it back.
      
      This change should improve readability a bit as this removes
      some dubious uses of reinterpret_cast. Previously, we
      assumed that all COMDAT chunks are actually SectionChunks,
      which was not very obvious.
      
      llvm-svn: 240675
      fc510f4c
    • Rui Ueyama's avatar
      COFF: Simplify. NFC. · f34c0885
      Rui Ueyama authored
      llvm-svn: 240666
      f34c0885
    • Rui Ueyama's avatar
      COFF: Use std::equal to compare two lists of relocations. · c6fcfbc9
      Rui Ueyama authored
      llvm-svn: 240665
      c6fcfbc9
    • Rui Ueyama's avatar
      COFF: Don't use COFFHeader->NumberOfRelocations. · 02c30279
      Rui Ueyama authored
      The size of the field is 16 bit, so it's inaccurate if the
      number of relocations in a section is more than 65535.
      
      llvm-svn: 240661
      02c30279
    • Rafael Espindola's avatar
      Update for llvm change. · 69e942ae
      Rafael Espindola authored
      llvm-svn: 240658
      69e942ae
    • Rui Ueyama's avatar
      COFF: Fix a bug of __imp_ symbol. · 88e0f920
      Rui Ueyama authored
      The change I made in r240620 was not correct. If a symbol foo is
      defined, and if you use __imp_foo, __imp_foo symbol is automatically
      defined as a pointer (not just an alias) to foo.
      
      Now that we need to create a chunk for automatically-created symbols.
      I defined LocalImportChunk class for them.
      
      llvm-svn: 240622
      88e0f920
    • Rui Ueyama's avatar
      COFF: Handle undefined symbols starting with __imp_ in a special way. · d7666535
      Rui Ueyama authored
      MSVC linker is able to link an object file created from the following code.
      Note that __imp_hello is not defined anywhere.
      
        void hello() { printf("Hello\n"); }
        extern void (*__imp_hello)();
        int main() { __imp_hello(); }
      
      Function symbols exported from DLLs are automatically mangled by appending
      __imp_ prefix, so they have two names (original one and with the prefix).
      This "feature" seems to simulate that behavior even for non-DLL symbols.
      
      This is in my opnion very odd feature. Even MSVC linker warns if you use this.
      I'm adding that anyway for the sake of compatibiltiy.
      
      llvm-svn: 240620
      d7666535
    • Rui Ueyama's avatar
      COFF: Use COFFObjectFile::getRelocations(). NFC. · 42aa00b3
      Rui Ueyama authored
      llvm-svn: 240614
      42aa00b3
    • Rui Ueyama's avatar
      COFF: Cache raw pointers to relocation tables. · cde92423
      Rui Ueyama authored
      Getting an iterator to the relocation table is very hot operation
      in the linker. We do that not only to apply relocations but also
      to mark live sections and to do ICF.
      
      libObject's interface is slow. By caching pointers to the first
      relocation table entries makes the linker 6% faster to self-link.
      
      We probably need to fix libObject as well.
      
      llvm-svn: 240603
      cde92423
  2. Jun 24, 2015
    • Rui Ueyama's avatar
      COFF: Move code for ICF from Writer.cpp to ICF.cpp. · 49560c7a
      Rui Ueyama authored
      llvm-svn: 240590
      49560c7a
    • Adhemerval Zanella's avatar
      [ELF] Fix .init_array initialization · 3ebea27d
      Adhemerval Zanella authored
      Some compilers may not add the section symbol in '.symtab' for the
      .init_array and 'ldd' just ignore it.  It results in global constructor
      not being called in final executable.
      
      This patch add both '.init_array' and '.fini_array' to be added in
      Atom graph generation even when the section contains no symbol.  An
      already existing testcase is modified to check for such scenario.
      
      The issue fixes the llvm test-suite regressions for both Single
      and MultiSource files.
      
      llvm-svn: 240570
      3ebea27d
    • Rui Ueyama's avatar
      COFF: Initial implementation of Identical COMDAT Folding. · ddf71fc3
      Rui Ueyama authored
      Identical COMDAT Folding (ICF) is an optimization to reduce binary
      size by merging COMDAT sections that contain the same metadata,
      actual data and relocations. MSVC link.exe and many other linkers
      have this feature. LLD achieves on per with MSVC in terms produced
      binary size with this patch.
      
      This technique is pretty effective. For example, LLD's size is
      reduced from 64MB to 54MB by enaling this optimization.
      
      The algorithm implemented in this patch is extremely inefficient.
      It puts all COMDAT sections into a set to identify duplicates.
      Time to self-link with/without ICF are 3.3 and 320 seconds,
      respectively. So this option roughly makes LLD 100x slower.
      But it's okay as I wanted to achieve correctness first.
      LLD is still able to link itself with this optimization.
      I'm going to make it more efficient in followup patches.
      
      Note that this optimization is *not* entirely safe. C/C++ require
      different functions have different addresses. If your program
      relies on that property, your program wouldn't work with ICF.
      However, it's not going to be an issue on Windows because MSVC
      link.exe turns ICF on by default. As long as your program works
      with default settings (or not passing /opt:noicf), your program
      would work with LLD too.
      
      llvm-svn: 240519
      ddf71fc3
    • Peter Collingbourne's avatar
      COFF: Remove unused field SectionChunk::SectionIndex. · bd3a29d0
      Peter Collingbourne authored
      llvm-svn: 240512
      bd3a29d0
    • Peter Collingbourne's avatar
      2ed4c8f5
    • Peter Collingbourne's avatar
      COFF: Ignore debug symbols. · c7b685d9
      Peter Collingbourne authored
      Differential Revision: http://reviews.llvm.org/D10675
      
      llvm-svn: 240487
      c7b685d9
    • Rui Ueyama's avatar
      COFF: Add names for logging/debugging to COMDAT chunks. · 6a60be77
      Rui Ueyama authored
      Chunks are basically unnamed chunks of bytes, and we don't like
      to give them names. However, for logging or debugging, we want to
      know symbols names of functions for COMDAT chunks. (For example,
      we want to print out "we have removed unreferenced COMDAT section
      which contains a function FOOBAR.")
      
      This patch is to do that.
      
      llvm-svn: 240484
      6a60be77
    • Rui Ueyama's avatar
      COFF: Make link order compatible with MSVC link.exe. · 0d2e9990
      Rui Ueyama authored
      Previously, we added files in directive sections to the symbol
      table as we read the sections, so the link order was depth-first.
      That's not compatible with MSVC link.exe nor the old LLD.
      
      This patch is to queue files so that new files are added to the
      end of the queue and processed last. Now addFile() doesn't parse
      files nor resolve symbols. You need to call run() to process
      queued files.
      
      llvm-svn: 240483
      0d2e9990
  3. Jun 23, 2015
  4. Jun 22, 2015
  5. Jun 21, 2015
Loading