Skip to content
  1. Mar 01, 2017
  2. Feb 28, 2017
  3. Feb 27, 2017
  4. Feb 25, 2017
  5. Feb 24, 2017
  6. Feb 23, 2017
  7. Feb 20, 2017
    • Peter Smith's avatar
      [ELF] Allow local symbols to be added after global symbols · 55865432
      Peter Smith authored
          
      This change moves the SymbolBodies with isLocal() == true before the global
      symbols then calculating NumLocals rather than assuming all locals are
      added before globals and the first NumLocals have isLocal() == true. This
      permits Thunks to be moved after the pass that adds global symbols from
      synthetics to the symbol table.
      
      Differential revision: https://reviews.llvm.org/D30085
      
      llvm-svn: 295650
      55865432
  8. Feb 17, 2017
  9. Feb 16, 2017
    • Rafael Espindola's avatar
      Share more output section creation code. · 8290274c
      Rafael Espindola authored
      We can do this now that the linker script and the writer agree on
      which sections should be combined.
      
      llvm-svn: 295341
      8290274c
    • Rui Ueyama's avatar
      Add comments. · 26ad0570
      Rui Ueyama authored
      llvm-svn: 295283
      26ad0570
    • Rui Ueyama's avatar
      Add comments. · dec4ab0d
      Rui Ueyama authored
      llvm-svn: 295280
      dec4ab0d
    • Rui Ueyama's avatar
      Add CopyRelSection instances to BSS in the regular way. · da5cc846
      Rui Ueyama authored
      Previously, space in a BSS section for copy relocations are reserved
      in a special way. We directly manipulated size of the BSS section.
      r294577 changed the way of doing it. Now, we create an instance of
      CopyRelSection (which is a synthetic input section) for each copy
      relocation.
      
      This patch removes the remains of the old way and add CopyRelSections
      to BSS sections using `addSections` function, which is the usual
      way to add an input section to an output section.
      
      llvm-svn: 295278
      da5cc846
  10. Feb 15, 2017
    • Ed Schouten's avatar
      Make --export-dynamic work on non-PIC/PIE targets. · 3bf71304
      Ed Schouten authored
      For CloudABI I'm only interested in generating non-PIC/PIE executables
      on armv6 and i686, as PIE introduces larger overhead than on aarch64 and
      x86_64. Still, I want to be able to instruct the linker to generate a
      dynamic symbol table if requested. One example use for this is that
      dynamic symbol tables can be used by programs to print nicely formatted
      stacktraces, including symbol names.
      
      Right now there seems to be some logic in LLD that it only wants to emit
      dynamic symbol tables when either linking against libraries or when
      building PIC. Let's extend this to also take --export-dynamic into
      account.
      
      Reviewed by:	ruiu
      Differential Revision:	https://reviews.llvm.org/D29982
      
      llvm-svn: 295240
      3bf71304
    • Rui Ueyama's avatar
      Explicitly return a new value instead of implicitly mutating a reference. · 35723f09
      Rui Ueyama authored
      I think this is more readable than before.
      
      llvm-svn: 295121
      35723f09
  11. Feb 14, 2017
  12. Feb 11, 2017
    • Rafael Espindola's avatar
      Create only one section symbol per section. · 08d6a3f1
      Rafael Espindola authored
      Unfortunately some consumers of our .o files produced with -r expect
      only one section symbol per section. That is true of at least of go's
      own linker.
      
      Combining them is a somewhat convoluted process. We have to create a
      symbol for every section since we don't know which ones will be
      needed. The relocation sections also have to be written first to
      handle the Elf_Rel addend.
      
      I did consider a completely different approach:
      
      We could remove the -r special case of relocation sections when
      reading. We would instead have a copyRelocs function that is used
      instead of scanRelocs. It would create a DynamicReloc for each
      relocation and a RelocationSection for each input relocation section.
      
      A complication of such change is that DynamicReloc would have to take
      a section index and a input section instead of a symbol since with
      -emit-relocs some DynamicReloc would hold relocations referring to the
      dynamic symbol table and other to the static symbol table.
      
      That would be a pretty big change, and if we do it it is probably
      better to do it as a refactoring.
      
      llvm-svn: 294816
      08d6a3f1
  13. Feb 09, 2017
  14. Feb 08, 2017
    • George Rimar's avatar
      Recommit r294464 "[ELF] - Added partial support for --emit-relocs (no... · 82bd8be6
      George Rimar authored
      Recommit r294464 "[ELF] - Added partial support for --emit-relocs (no --gc-section case, no /DISCARD/ support) #3"
      
      with temporarily file name fix in testcase.
      
      Original commit message:
      
      -q, --emit-relocs - Generate relocations in output
      
      Simplest implementation: 
      * no GC case, 
      * no "/DISCARD/" linkerscript command support.
      
      This patch is extracted from D28612 / D29636,
      
      Relative to PR31579.
      
      Differential revision: https://reviews.llvm.org/D29663
      
      llvm-svn: 294469
      82bd8be6
Loading