Skip to content
  1. Oct 20, 2016
  2. Sep 29, 2016
  3. Sep 14, 2016
    • Rui Ueyama's avatar
      Simplify InputFile ownership management. · 38dbd3ee
      Rui Ueyama authored
      Previously, all input files were owned by the symbol table.
      Files were created at various places, such as the Driver, the lazy
      symbols, or the bitcode compiler, and the ownership of new files
      was transferred to the symbol table using std::unique_ptr.
      All input files were then free'd when the symbol table is freed
      which is on program exit.
      
      I think we don't have to transfer ownership just to free all
      instance at once on exit.
      
      In this patch, all instances are automatically collected to a
      vector and freed on exit. In this way, we no longer have to
      use std::unique_ptr.
      
      Differential Revision: https://reviews.llvm.org/D24493
      
      llvm-svn: 281425
      38dbd3ee
  4. Aug 31, 2016
  5. Aug 30, 2016
  6. Aug 22, 2016
  7. Aug 02, 2016
    • Rui Ueyama's avatar
      Remove DefinedCommon::Section. · 07784904
      Rui Ueyama authored
      Since CommonInputSection is a singleton class, we don't need
      to store pointers to all DefinedCommon symbols.
      
      llvm-svn: 277410
      07784904
  8. Jul 28, 2016
  9. Jul 21, 2016
    • Rui Ueyama's avatar
      Simplify symbol version handling. · dace8381
      Rui Ueyama authored
      r275711 for "speedng up symbol version handling" was committed
      by misunderstanding; the benchmark number was measured with
      a debug build. The number with a release build didn't actually change.
      This patch removes false optimizations added in that patch.
      
      llvm-svn: 276267
      dace8381
  10. Jul 18, 2016
    • Rui Ueyama's avatar
      Remove SymbolBody::PlaceholderKind. · e3357907
      Rui Ueyama authored
      In the last patch for --trace-symbol, I introduced a new symbol type
      PlaceholderKind and store it to SymVector storage. It made all code
      that iterates over SymVector to recognize and skip PlaceholderKind
      symbols. I found that that's annoying.
      
      In this patch, I removed PlaceholderKind and stop storing them to SymVector.
      Now the information whether a symbol is being watched by --trace-symbol
      is stored to the Symtab hash table.
      
      llvm-svn: 275747
      e3357907
  11. Jul 17, 2016
    • Rui Ueyama's avatar
      Implement almost-zero-cost --trace-symbol. · 69c778c0
      Rui Ueyama authored
      --trace-symbol is a command line option to watch a symbol.
      Previosly, we looked up a hash table for a new symbol if the
      option is given. Any code that looks up a hash table for each
      symbol is expensive because the linker handles a lot of symbols.
      In our design, we look up a hash table strictly only once
      for a symbol, so --trace-symbol was an exception.
      
      This patch improves efficiency of the option by merging the
      hash table into the symbol table.
      
      Instead of looking up a separate hash table with a string,
      this patch sets `Traced` flag to symbols specified by --trace-symbol.
      So, if you insert a symbol and get a symbol with `Traced` flag on,
      you know that you need to print out a log message for the symbol.
      This is nearly zero cost.
      
      llvm-svn: 275716
      69c778c0
    • Rui Ueyama's avatar
      b06700fa
    • Rui Ueyama's avatar
      Remove duplicate public specifier. · bef5d16a
      Rui Ueyama authored
      llvm-svn: 275714
      bef5d16a
    • Rui Ueyama's avatar
      Print out file names for common symbols for --trace-symbol. · 2a7c1c15
      Rui Ueyama authored
      Previously, there was no way to get a file name for a DefinedCommon
      symbol. This patch adds it.
      
      llvm-svn: 275712
      2a7c1c15
    • Rui Ueyama's avatar
      Handle versioned symbols efficiently. · 663b8c27
      Rui Ueyama authored
      Versions can be assigned to symbols in two different ways.
      One is the usual version scripts, and the other is special
      symbol suffix '@'. If a symbol contains '@', the string after
      that is considered to specify a version name.
      
      Previously, we look for '@' for all symbols.
      
      Anything that works on every symbol can be expensive because
      the linker has to handle a lot of symbols. The search for '@'
      was not an exception.
      
      In this patch, I made two optimizations.
      
      The first optimization is to handle '@' only when at least one
      version is defined. If no versions are defined, no versions can
      be assigned to any symbols, so it's waste of time to search for '@'.
      
      The second optimization is to scan only suffixes of symbol names
      instead of entire symbol names. Symbol names can be very long, but
      symbol versions are usually short, so scanning entire symbol names
      is waste of time, too.
      
      There are some error cases which we no longer be able to detect
      with this patch. I don't think it's a major drawback because they
      are minor errors. Speed is more important.
      
      This change improves LLD with debug info self-link time from
      6.6993 seconds to 6.3426 seconds (or -5.3%).
      
      Differential Revision: https://reviews.llvm.org/D22433
      
      llvm-svn: 275711
      663b8c27
    • Rui Ueyama's avatar
      Add a pointer to a source file to SymbolBody. · 434b5617
      Rui Ueyama authored
      Previously, each subclass of SymbolBody had a pointer to a source
      file from which it was created. So, there was no single way to get
      a source file for a symbol. We had getSourceFile<ELFT>(), but the
      function was a bit inconvenient as it's a template.
      
      This patch makes SymbolBody have a pointer to a source file.
      If a symbol is not created from a file, the pointer has a nullptr.
      
      llvm-svn: 275701
      434b5617
  12. Jul 16, 2016
    • Rui Ueyama's avatar
      Rename Version VersionDefinition. · bc94dd9b
      Rui Ueyama authored
      The identifier `Version` was used too often in the code to handle
      symbol versions. The struct that contains version definitions is
      named `Version`. Local variables for version ID are named `Version`.
      Local varaible for version string are named `Version`.
      
      This patch give them different names.
      
      llvm-svn: 275673
      bc94dd9b
  13. Jul 08, 2016
    • Rui Ueyama's avatar
      Attempt to fix buildbots. · 8c8db476
      Rui Ueyama authored
      llvm-svn: 274917
      8c8db476
    • Rafael Espindola's avatar
      fix use of uninitialized. · 6091492e
      Rafael Espindola authored
      llvm-svn: 274909
      6091492e
    • Rui Ueyama's avatar
      Fix memory leak. · 8b8d0055
      Rui Ueyama authored
      Symbol's dtors are not called because they are allocated using
      BumpPtrAllocators. So, members of std::unique_ptr type are not
      freed when symbols are deallocated.
      
      This patch is to allocate Thunks using BumpPtrAllocators.
      
      llvm-svn: 274896
      8b8d0055
    • Peter Smith's avatar
      Recommit R274836 Add Thunk support framework for ARM and Mips · fb05cd99
      Peter Smith authored
      The TinyPtrVector of const Thunk<ELFT>* in InputSections.h can cause 
      build failures on certain compiler/library combinations when Thunk<ELFT> 
      is not a complete type or is an abstract class. Fixed by making Thunk<ELFT>
      non Abstract.
      
      type or is an abstract class 
      
      llvm-svn: 274863
      fb05cd99
    • Peter Smith's avatar
      Revert R274836 Add Thunk support framework for ARM and Mips · eeb82744
      Peter Smith authored
      This seems to be causing a buildbot failure on lld-x86_64-freebsd. Will
      reproduce locally and fix. 
      
      llvm-svn: 274841
      eeb82744
    • Peter Smith's avatar
      Add Thunk support framework for ARM and Mips · de01b98a
      Peter Smith authored
          
          Generalise the Mips LA25 Thunk code and implement ARM and Thumb
          interworking Thunks.
          
          - Introduce a new module Thunks.cpp to store the Target Specific Thunk
            implementations.
          - DefinedRegular and Shared have a ThunkData field to record Thunk.
          - A Target can have more than one type of Thunk.
          - Support PC-relative calls to Thunks.
          - Support Thunks to PLT entries.
          - Existing Mips LA25 Thunk code integrated.
          - Support for ARMv7A interworking Thunks.
          
          Limitations:
          - Only one Thunk per SymbolBody, this is sufficient for all currently
            implemented Thunks.
          - ARM thunks assume presence of V6T2 MOVT and MOVW instructions.
      
          Differential revision: http://reviews.llvm.org/D21891
      
      llvm-svn: 274836
      de01b98a
    • Rui Ueyama's avatar
      Move demangle() from Symbols.cpp to Strings.cpp. · f4d9338d
      Rui Ueyama authored
      Symbols.cpp contains functions to handle ELF symbols.
      demangle() function is essentially a function to work on a
      string rather than on an ELF symbol. So Strings.cpp is a
      better place to put that function.
      
      This change also make demangle to demangle symbols unconditionally.
      Previously, it demangled symbols only when Config->Demangle is true.
      
      llvm-svn: 274804
      f4d9338d
  14. Jun 28, 2016
    • George Rimar's avatar
      [ELF] - Implemented support of default/non-default symbols versions · 43651586
      George Rimar authored
      t is possible to create new version of symbol instead of depricated one
      using combination of version script and asm commands. For example:
      
      __asm__(".symver b_1,b@LIBSAMPLE_1.0");
      int b_1() { return 10; }
      __asm__(".symver b_2,b@@LIBSAMPLE_2.0");
      int b_2() { return 20; }
      
      This code makes b_2() to be default implementation for b().
      b_1() is used for compatibility with binaries compiled against
      library of older version LIBSAMPLE_1.0.
      
      This patch implements support for above functionality in lld.
      
      Differential revision: http://reviews.llvm.org/D21681
      
      llvm-svn: 274002
      43651586
  15. Jun 20, 2016
  16. Jun 19, 2016
    • Simon Atanasyan's avatar
      [ELF][MIPS] Support GOT entries for non-preemptible symbols with different addends · 4132511c
      Simon Atanasyan authored
      There are two motivations for this patch. The first one is a preparation
      for support MIPS TLS relocations. It might sound like a joke but for GOT
      entries related to TLS relocations MIPS ABI uses almost regular approach
      with creation of dynamic relocations for each GOT enty etc. But we need
      to separate these 'regular' TLS related entries from MIPS specific local
      and global parts of GOT. ABI declare simple solution - all TLS related
      entries allocated at the end of GOT after local/global parts. The second
      motivation it to support GOT relocations for non-preemptible symbols
      with addends. If we have more than one GOT relocations against symbol S
      with different addends we need to create GOT entries for each unique
      Symbol/Addend pairs.
      
      So we store all MIPS GOT entries in separate containers. For non-preemptible
      symbols we have to maintain two data structures. The first one is MipsLocal
      vector. Each entry corresponds to the GOT entry from the 'local' part
      of the GOT contains the symbol's address plus addend. The second one
      is MipsLocalMap. It is a map from Symbol/Addend pair to the GOT index.
      
      Differential Revision: http://reviews.llvm.org/D21297
      
      llvm-svn: 273127
      4132511c
  17. Jun 14, 2016
  18. Jun 05, 2016
  19. May 24, 2016
  20. May 03, 2016
  21. May 02, 2016
  22. May 01, 2016
Loading