Skip to content
  1. Feb 01, 2017
    • Peter Smith's avatar
      [ELF] Use SyntheticSections for Thunks · 3a52eb00
      Peter Smith authored
          
      Thunks are now implemented by redirecting the relocation to the
      symbol S, to a symbol TS in a Thunk. The Thunk will transfer control
      to S. This has the following implications:
      - All the side-effects of Thunks happen within createThunks()
      - Thunks are no longer stored in InputSections and Symbols no longer
        need to hold a pointer to a Thunk
      - The synthetic Thunk sections need to be merged into OutputSections
          
      This implementation is almost a direct conversion of the existing
      Thunks with the following exceptions:
      - Mips LA25 Thunks are placed before the InputSection that defines
        the symbol that needs a Thunk.
      - All ARM Thunks are placed at the end of the OutputSection of the
        first caller to the Thunk.
          
      Range extension Thunks are not supported yet so it is optimistically
      assumed that all Thunks can be reused.
      
      This is a recommit of r293283 with a fixed comparison predicate as
      std::merge requires a strict weak ordering.
      
      Differential revision: https://reviews.llvm.org/D29327
      
      llvm-svn: 293757
      3a52eb00
    • George Rimar's avatar
      [ELF] - Recommit r293749. Improve comment. NFC. · 69750755
      George Rimar authored
      llvm-svn: 293751
      69750755
    • George Rimar's avatar
      [ELF] - Revert r293749 · 091f9b35
      George Rimar authored
      Accidentally lost the commit title and message,
      will recommit.
      
      llvm-svn: 293750
      091f9b35
    • George Rimar's avatar
      (no commit message) · f46e54f0
      George Rimar authored
      llvm-svn: 293749
      f46e54f0
    • George Rimar's avatar
      [ELF] - Linkerscript: properly mark minus expression with non-absolute flag · cc4d3e57
      George Rimar authored
      This is alternative to D28857 which was incorrect.
      
      One of linux scripts contains:
      
      vvar_start = . - 2 * (1 << 12);
      vvar_page = vvar_start;
      vvar_vsyscall_gtod_data = vvar_page + 128;
      Previously we did not mark first expression as non-absolute,
      though it contains location counter.
      
      And LLD failed with error:
      relocation R_X86_64_PC32 cannot refer to absolute symbol
      
      This patch should fix the issue, and opens road for doing the same for other operators
      (though not clear if that is needed).
      
      Differential revision: https://reviews.llvm.org/D29332
      
      llvm-svn: 293748
      cc4d3e57
  2. Jan 31, 2017
  3. Jan 30, 2017
  4. Jan 29, 2017
  5. Jan 28, 2017
  6. Jan 27, 2017
    • Rafael Espindola's avatar
      Revert commits r293276 and r293278. · fe12450e
      Rafael Espindola authored
          [ELF] Fixed formatting. NFC
      
      and
      
          [ELF] Bypass section type check
      
          Differential revision: https://reviews.llvm.org/D28761
      
      They do the opposite of what was asked for in the code review.
      
      llvm-svn: 293320
      fe12450e
    • Rafael Espindola's avatar
      Fix and simplify the reporting of undefined symbols. · 403b093e
      Rafael Espindola authored
      Now reportUndefined only has to look at Config->UnresolvedSymbols and
      the symbol. getUnresolvedSymbolOption does all the hard work of
      mapping options like -shared and -z defs to one of the
      UnresolvedPolicy enum entries.
      
      The critical fix is that now "-z defs --warn-unresolved-symbols" only
      warns.
      
      llvm-svn: 293290
      403b093e
    • Peter Smith's avatar
      [ELF][ARM] Use SyntheticSections for Thunks · 5191c6f9
      Peter Smith authored
          
      Thunks are now implemented by redirecting the relocation to the
      symbol S, to a symbol TS in a Thunk. The Thunk will transfer control
      to S. This has the following implications:
      - All the side-effects of Thunks happen within createThunks()
      - Thunks are no longer stored in InputSections and Symbols no longer
        need to hold a pointer to a Thunk
      - The synthetic Thunk sections need to be merged into OutputSections
          
      This implementation is almost a direct conversion of the existing
      Thunks with the following exceptions:
      - Mips LA25 Thunks are placed before the InputSection that defines
        the symbol that needs a Thunk.
      - All ARM Thunks are placed at the end of the OutputSection of the
        first caller to the Thunk.
          
      Range extension Thunks are not supported yet so it is optimistically
      assumed that all Thunks can be reused.
      
      Differential Revision:  https://reviews.llvm.org/D29129
      
      llvm-svn: 293283
      5191c6f9
    • Eugene Leviant's avatar
      [ELF] Fixed formatting. NFC · bcff495b
      Eugene Leviant authored
      llvm-svn: 293278
      bcff495b
    • Eugene Leviant's avatar
      [ELF] Bypass section type check · 8b7cadcf
      Eugene Leviant authored
      Differential revision: https://reviews.llvm.org/D28761
      
      llvm-svn: 293276
      8b7cadcf
  7. Jan 26, 2017
  8. Jan 25, 2017
  9. Jan 24, 2017
    • Rui Ueyama's avatar
      Add a file comment to SyntheticSections.h. · 8981f3aa
      Rui Ueyama authored
      llvm-svn: 292980
      8981f3aa
    • George Rimar's avatar
      [ELF] - Fixed crash after incrementing end iterator. · 3a934abe
      George Rimar authored
      Next code crashed under MSVS2015 for me:
      this->OutSec->Info = this->Info = 1 + It - Symbols.begin();
      
      Because It was end() and addition of 1 is not allowed. 
      vector implementation catched and failed that inside:
      
      _Myiter& operator+=(difference_type _Off)
      {	// increment by integer
       #if _ITERATOR_DEBUG_LEVEL == 2
      if (this->_Getcont() == 0
      	|| this->_Ptr + _Off < ((_Myvec *)this->_Getcont())->_Myfirst
      	|| ((_Myvec *)this->_Getcont())->_Mylast < this->_Ptr + _Off)
         {	// report error
      	_DEBUG_ERROR("vector iterator + offset out of range");
      	_SCL_SECURE_OUT_OF_RANGE;
      
      llvm-svn: 292940
      3a934abe
    • Peter Smith's avatar
      [ELF] Correct sh_info for static symbol table · ccb34efa
      Peter Smith authored
          
      The sh_info field of the SHT_SYMTAB section holds the index for the
      first non-local symbol. When there are global symbols that are output
      with STB_LOCAL binding due to having hidden visibility or matching
      the local version from a version script, the calculated value of
      NumLocals + 1 does not account for them. This change accounts for
      global symbols being output with local binding.
      
      Differential Revision: https://reviews.llvm.org/D28950
      
      llvm-svn: 292910
      ccb34efa
    • George Rimar's avatar
      [ELF] - Added additional comments on top of r292789 (D29021) · e3c2051d
      George Rimar authored
      It was requested during post commit review.
      
      llvm-svn: 292903
      e3c2051d
    • Rui Ueyama's avatar
      Do not allocate space for common symbols with -r · b2a23cf3
      Rui Ueyama authored
      Currently ld.lld -r allocates space for common symbols, whereas ld.bfd
      -r doesn't.  As a result the OpenBSD makefile bits for creating libraries
      fail as they use ld -X -r to strip local symbols, which results in
      duplicate symbol errors because space for the common symbols has been
      allocated.
      
      The diff also implements the --define-commons option such that allocation
      of commons can be forced even if -r is used.
      
      Patch by Mark Kettenis.
      
      llvm-svn: 292878
      b2a23cf3
Loading