Skip to content
  1. Oct 20, 2016
    • Rui Ueyama's avatar
      Remove Config::Binary. · c3d15128
      Rui Ueyama authored
      This member is used only by LinkerDriver, so move it to LinkerDriver.
      
      llvm-svn: 284696
      c3d15128
    • Rui Ueyama's avatar
      Allow linker-script-defined entry symbols. · 8da7aa08
      Rui Ueyama authored
      Previously, we were checking the existence of an entry symbol
      too early. It was done before the linker script processor creates
      symbols defined in scripts. Fixes bug 30743.
      
      llvm-svn: 284676
      8da7aa08
  2. Oct 17, 2016
    • Peter Smith's avatar
      [ELF] Support for R_ARM_TARGET2 relocation · 9bbd4e27
      Peter Smith authored
      The R_ARM_TARGET2 relocation is used in ARM exception tables to encode
      a data dependency that will only be dereferenced by code in the
      run-time support library. In a similar way to R_ARM_TARGET1 the
      handling of the relocation is target specific, it maps to one of
      R_ARM_ABS32, R_ARM_REL32 or R_ARM_GOT_PREL. The choice depends on the 
      run-time library. R_ARM_GOT_PREL is used for linux and BSD,
      R_ARM_ABS32 and R_ARM_REL32 are used for bare-metal.
      
      The command line option --target2=<target> can be used to select the
      relocation used for R_ARM_TARGET2. The default is R_ARM_GOT_PREL.
      
      Differential revision: https://reviews.llvm.org/D25684
      
      llvm-svn: 284404
      9bbd4e27
  3. Oct 14, 2016
    • George Rimar's avatar
      [ELF] - Implemented -z wxneeded. · cc6e567c
      George Rimar authored
      -z wxneeded creates a PHDR PT_OPENBSD_WXNEEDED.
      
      PT_OPENBSD_WXNEEDED
      The array element specifies that a process executing this file may need to be able to map or protect memory regions as simultaneously executable and writable. If the system is unable or unwilling to permit that for this executable then it may fail immediately. This segment type is meaningful only for executable files and is ignored in other objects.
      
      http://man.openbsd.org/OpenBSD-current/man5/elf.5
      
      Differential revision: https://reviews.llvm.org/D25472
      
      llvm-svn: 284226
      cc6e567c
  4. Oct 11, 2016
  5. Sep 28, 2016
  6. Sep 16, 2016
  7. Sep 14, 2016
    • George Rimar's avatar
      [ELF] - Implemented --section-start, -Ttext, -Tdata, -Tbss options. · d73ef173
      George Rimar authored
      --section-start=sectionname=org
      Locate a section in the output file at the absolute address given by org. 
      You may use this option as many times as necessary to locate multiple sections in the command line.
       org must be a single hexadecimal integer; for compatibility with other linkers, 
      you may omit the leading `0x' usually associated with hexadecimal values. 
      Note: there should be no white space between sectionname, the equals sign (“<=>”), and org.
      
      -Tbss=org
      -Tdata=org
      -Ttext=org
      Same as --section-start, with .bss, .data or .text as the sectionname.
      
      Differential revision: https://reviews.llvm.org/D24294
      
      llvm-svn: 281458
      d73ef173
    • Rafael Espindola's avatar
      Use murmurhash2 instead of fnv. · d88d7166
      Rafael Espindola authored
      It is substantially faster by processing 8 bytes at a time.
      
      llvm-svn: 281454
      d88d7166
  8. Sep 10, 2016
  9. Sep 09, 2016
  10. Sep 08, 2016
  11. Sep 02, 2016
  12. Aug 31, 2016
  13. Aug 26, 2016
  14. Aug 25, 2016
  15. Aug 18, 2016
  16. Aug 01, 2016
  17. 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
  18. Jul 16, 2016
  19. Jul 13, 2016
  20. Jul 12, 2016
  21. Jul 08, 2016
  22. Jul 07, 2016
Loading