Skip to content
  1. Aug 18, 2016
  2. Aug 01, 2016
  3. Jul 17, 2016
    • Rui Ueyama's avatar
      Remove dead code. · 77fa5ee1
      Rui Ueyama authored
      llvm-svn: 275724
      77fa5ee1
    • 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
  4. Jul 16, 2016
  5. Jul 13, 2016
  6. Jul 12, 2016
  7. Jul 08, 2016
  8. Jul 07, 2016
  9. Jul 04, 2016
  10. Jul 01, 2016
    • George Rimar's avatar
      [ELF] - Depricate version references. · 33b9de4b
      George Rimar authored
      This is PR28358
      
      According to
      https://www.akkadia.org/drepper/dsohowto.pdf
      
      "The fourth point, the VERS 1.0 version being referred to in the VERS 2.0 definition, is not really important in symbol versioning. It marks the predecessor relationship of the two versions and it is done to maintain the similar- ities with Solaris’ internal versioning. It does not cause any problem it might in fact be useful to a human reader so predecessors should always be mentioned."
      
      Patch partially reverts 273423 "[ELF] - Implemented version script hierarchies.",
      version references are just ignored now.
      
      Differential revision: http://reviews.llvm.org/D21888
      
      llvm-svn: 274345
      33b9de4b
  11. Jun 29, 2016
    • George Rimar's avatar
      [ELF] - Added support for --unresolved-symbols option. · e86dcd0c
      George Rimar authored
      Option has next description (http://linux.die.net/man/1/ld):
      "--unresolved-symbols=method
      Determine how to handle unresolved symbols. There are four possible values for method
      according to documentation:
      
      ignore-all: Do not report any unresolved symbols.
      report-all: Report all unresolved symbols. This is the default.
      ignore-in-object-files: Report unresolved symbols that are contained in shared libraries, but ignore them if they come from regular object files.
      ignore-in-shared-libs: Report unresolved symbols that come from regular object files, but ignore them if they come from shared libraries."
      
      Since report-all is default and we traditionally do not report about undefined symbols in lld,
      report-all does not report about undefines from DSO. 
      ignore-in-object-files also does not do that. Handling of that option differs from what gnu linkers do.
      
      Option works in next way in lld:
      ignore-all: Do not report any unresolved symbols.
      report-all: Report all unresolved symbols except symbols from DSOs. This is the default.
      ignore-in-object-files: The same as ignore-all.
      gnore-in-shared-libs: The same as report-all.
      
      This is PR24524.
      
      Differential revision: http://reviews.llvm.org/D21794
      
      llvm-svn: 274123
      e86dcd0c
  12. Jun 28, 2016
  13. Jun 23, 2016
    • Rui Ueyama's avatar
      Implement --trace-symbol=symbol option. · d60dae8a
      Rui Ueyama authored
      Patch by Shridhar Joshi.
      
      This option provides names of all the link time modules which define and
      reference symbols requested by user. This helps to speed up application
      development by detecting references causing undefined symbols.
      It also helps in detecting symbols being resolved to wrong (unintended)
      definitions in case of applications containing multiple definitions for
      same symbols with different types, bindings.
      
      Implements PR28226.
      
      llvm-svn: 273536
      d60dae8a
  14. Jun 22, 2016
  15. Jun 20, 2016
  16. Jun 17, 2016
    • Rafael Espindola's avatar
      Make local: optional. · f70fb04e
      Rafael Espindola authored
      Doing that in an anonymous version is a bit silly, but this opens the
      way for supporting it in general.
      
      Since we don't support actual versions, for now we just disable the
      version script if we detect that it is missing a local.
      
      llvm-svn: 273000
      f70fb04e
  17. Jun 03, 2016
  18. May 15, 2016
  19. May 13, 2016
    • Rui Ueyama's avatar
      Support --build-id=0x<hexstring>. · 9194db78
      Rui Ueyama authored
      If you specify the option in the form of --build-id=0x<hexstring>,
      that hexstring is set as a build ID. We observed that the feature
      is actually in use in some builds, so we want this feature.
      
      llvm-svn: 269495
      9194db78
  20. May 11, 2016
  21. May 10, 2016
  22. Apr 28, 2016
  23. Apr 26, 2016
  24. Apr 22, 2016
    • Rui Ueyama's avatar
      LTO: Merge -lto-no-discard-value-names with -save-temps. · 1e9e615f
      Rui Ueyama authored
      This patch is to remove -lto-no-discard-value-names flag and
      instead to use -save-temps as we discussed in the post-commit
      review thread for r267020.
      
      Differential Revision: http://reviews.llvm.org/D19437
      
      llvm-svn: 267230
      1e9e615f
    • Peter Collingbourne's avatar
      ELF: Implement basic support for --version-script. · 66ac1d61
      Peter Collingbourne authored
      This patch only implements support for version scripts of the form:
        { [ global: symbol1; symbol2; [...]; symbolN; ] local: *; };
      No wildcards are supported, other than for the local entry. Symbol versioning
      is also not supported.
      
      It works by introducing a new Symbol flag which tracks whether a symbol
      appears in the global section of a version script.
      
      This patch also simplifies the logic in SymbolBody::isPreemptible(), and
      teaches it to handle the case where symbols with default visibility in DSOs
      do not appear in the dynamic symbol table because of a version script.
      
      Fixes PR27482.
      
      Differential Revision: http://reviews.llvm.org/D19430
      
      llvm-svn: 267208
      66ac1d61
  25. Apr 21, 2016
  26. Apr 16, 2016
  27. Apr 15, 2016
Loading