Skip to content
  1. Oct 28, 2016
    • Rui Ueyama's avatar
      Consolidate BumpPtrAllocators. · 55518e7d
      Rui Ueyama authored
      Previously, we have a lot of BumpPtrAllocators, but all these
      allocators virtually have the same lifetime because they are
      not freed until the linker finishes its job. This patch aggregates
      them into a single allocator.
      
      Differential revision: https://reviews.llvm.org/D26042
      
      llvm-svn: 285452
      55518e7d
  2. Oct 27, 2016
  3. Oct 26, 2016
    • Rafael Espindola's avatar
      Call _exit. · cb09daab
      Rafael Espindola authored
      As the state of lld gets more complicated, shutting down gets more
      expensive.
      
      In a normal lld run we can just call _exit immediately after renaming
      the temporary output file. We still want the ability to run a full
      shutdown since that is useful for detecting memory leaks.
      
      This patch adds a --full-shutdown flag and changes lit to use it.
      
      llvm-svn: 285224
      cb09daab
    • Rafael Espindola's avatar
      Reduce the number of allocators. · 5da1d884
      Rafael Espindola authored
      We used to have one allocator per file, which reduces the advantage of
      using an allocator in the first place.
      
      This is a small speed up is most cases. The largest speedup was in
      1.014X in chromium no-gc. The largest slowdown was scylla at 1.003X.
      
      llvm-svn: 285205
      5da1d884
    • Rui Ueyama's avatar
      Split LinkerDriver::link. NFC. · c5dd543d
      Rui Ueyama authored
      llvm-svn: 285169
      c5dd543d
    • Rui Ueyama's avatar
      Rename variable to be more consistent. · c773c9f4
      Rui Ueyama authored
      llvm-svn: 285164
      c773c9f4
    • Rui Ueyama's avatar
      Truncate a SVN path part from --version output. · 80695c1a
      Rui Ueyama authored
      This is in sync with what clang does.
      
      llvm-svn: 285163
      80695c1a
  4. Oct 20, 2016
  5. Oct 19, 2016
  6. Oct 17, 2016
  7. 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
  8. Oct 11, 2016
  9. Oct 01, 2016
  10. Sep 29, 2016
  11. Sep 28, 2016
  12. Sep 26, 2016
  13. Sep 23, 2016
  14. Sep 20, 2016
    • Rafael Espindola's avatar
      Don't produce an error for undefined entry symbol. · db62cbb9
      Rafael Espindola authored
      This is particularly important when the symbol comes from a linker
      script. It is common to use the same linker script for shared
      libraries and executables. Without this we would always fail to link
      shared libraries with -z,defs and a linker script with an ENTRY
      directive.
      
      llvm-svn: 281989
      db62cbb9
  15. Sep 16, 2016
  16. 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
    • 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
  17. Sep 13, 2016
  18. Sep 10, 2016
  19. Sep 08, 2016
    • Ed Maste's avatar
      ELF: clarify error when we don't know the output format · e349b6da
      Ed Maste authored
      lld differs from GNU ld in that it does not have a built-in default
      target emulation. Emulation is always specified via the -m option, or
      obtained from the object file(s) being linked. In most cases at least
      one ELF object is included in the link, so the emulation is known.
      
      When using lld's (not yet committed) -b binary support with -r, to
      convert a binary file into an ELF object we do not have a known
      emulation. The error message previously emitted in this case
      "-m or at least a .o file required" is accurate but does not offer
      much insight. Add text to the error message to give a hint why -m or an
      object file is required.
      
      Differential Revision:	https://reviews.llvm.org/D24348
      
      llvm-svn: 280989
      e349b6da
    • Ed Maste's avatar
      ELF: Report original emulation name in "unknown emulation" error · 2b68ada1
      Ed Maste authored
      A trailing _fbsd is stripped from emulation names, but if the result was
      still not a valid emulation the error was somewhat confusing.
      
      For example,
      
      % ld.lld -m elf_amd64_fbsd
      unknown emulation: elf_amd64
      
      Use the original emulation name in error messages.
      
      Differential Revision:	https://reviews.llvm.org/D24357
      
      llvm-svn: 280983
      2b68ada1
Loading