Skip to content
  1. Jan 12, 2017
  2. Jan 11, 2017
    • Rafael Espindola's avatar
      Make the -b binary .data section rw. · 79114a67
      Rafael Espindola authored
      This matches what bfd and gold do. It also matches the common flags of
      other .data sections.
      
      llvm-svn: 291674
      79114a67
    • George Rimar's avatar
      [ELF] - Ignore R_386_NONE. · 7fa220f5
      George Rimar authored
      We had an error when met this relocation
      after latest changes aboult listing
      x86 relocations explicitly.
      
      Since we support R_X86_64_NONE,
      and GNU ld supports R_386_NONE,
      it seems reasonable to have.
      
      Differential revision: https://reviews.llvm.org/D28552
      
      llvm-svn: 291672
      7fa220f5
    • George Rimar's avatar
      [ELF] - Explicitly list supported relocations for x86 target. · 57b0e6a5
      George Rimar authored
      Previously some value was returned by default for relocations by getRelExpr(),
      even if relocation actually was not supported.
      
      This is orthogonal alternative to D28094.
      Instead of implementing probably useless R_386_PC8/R_386_8 relocations,
      this patch uses them in a testcase to demonstrate what happens
      when LLD mets unsupported relocations.
      
      Patch passes all testcases and changes logic only for x86.
      
      Differential revision: https://reviews.llvm.org/D28516
      
      llvm-svn: 291658
      57b0e6a5
  3. Jan 10, 2017
  4. Jan 09, 2017
    • Peter Collingbourne's avatar
      ELF: Discard .gnu.linkonce.* sections. · c39e5d64
      Peter Collingbourne authored
      The linkonce feature is a sort of proto-comdat. As far as I am aware no
      compiler produces linkonce sections anymore, but some glibc i386 object
      files contain definitions of symbol "__x86.get_pc_thunk.bx" in linkonce
      sections. Drop those sections to avoid duplicate symbol errors.
      
      This is glibc PR20543, we should remove this hack once that has been
      fixed for a while.
      
      Fixes PR31215.
      
      Differential Revision: https://reviews.llvm.org/D28430
      
      llvm-svn: 291474
      c39e5d64
    • Meador Inge's avatar
      [ELF] Allow defined symbols to be assigned from linker script · 8f1f3c40
      Meador Inge authored
      This patch allows for linker scripts to assign a new value
      to a symbol that is already defined (either in an object file
      or the linker script itself).
      
      llvm-svn: 291459
      8f1f3c40
    • Rui Ueyama's avatar
      Add linker-script-included files to reproduce tar files. · ec1c75e0
      Rui Ueyama authored
      Previously, files added using INCLUDE directive weren't added
      to reproduce archives. In this patch, I defined a function to
      open a file and use that from Driver and LinkerScript.
      
      llvm-svn: 291413
      ec1c75e0
  5. Jan 06, 2017
  6. Jan 05, 2017
    • Rafael Espindola's avatar
      Move code to the .cpp file. NFC. · bd3ab097
      Rafael Espindola authored
      llvm-svn: 291113
      bd3ab097
    • Rafael Espindola's avatar
      Detemplate SectionKey. NFC. · 7244708f
      Rafael Espindola authored
      llvm-svn: 291110
      7244708f
    • Rafael Espindola's avatar
      Change which input sections we concatenate · 33713983
      Rafael Espindola authored
      After Mark's patch I was wondering what was the rationale for the ELF
      spec requiring us to merge only sections with matching flags and
      types. I tried emailing
      https://groups.google.com/forum/#!forum/generic-abi, but looks like my
      emails are not being posted (the list is probably moderated). I
      emailed Cary Coutant instead.
      
      Cary pointed out that the section was a late addition and didn't got
      the scrutiny it deserved. Given that and the problems found by
      implementing the letter of the standard, I propose changing lld to
      merge all sections with the same name and issue errors if the types or
      some critical flags are different.
      
      This should allow an unmodified firefox linked with lld to run.
      
      This also merges some code with the linkerscript path.
      
      llvm-svn: 291107
      33713983
  7. Jan 04, 2017
  8. Dec 25, 2016
  9. Dec 23, 2016
  10. Dec 22, 2016
  11. Dec 21, 2016
Loading