Skip to content
  1. Dec 08, 2016
    • Peter Smith's avatar
      [ELF] ifunc implementation using synthetic sections · baffdb8b
      Peter Smith authored
      This change introduces new synthetic sections IpltSection, IgotPltSection
      that represent the ifunc entries that would previously have been put in
      the PltSection and the GotPltSection. The separation makes sure that
      the R_*_IRELATIVE relocations are placed after the non R_*_IRELATIVE
      relocations, which permits ifunc resolvers to know that the .got.plt
      slots will be initialized prior to the resolver being called.
      
      A secondary benefit is that for ARM we can move the IgotPltSection and its
      dynamic relocations to the .got and .rel.dyn as the ARM glibc expects all
      the R_*_IRELATIVE relocations to be in the .rel.dyn
      
      Differential revision: https://reviews.llvm.org/D27406
      
      llvm-svn: 289045
      baffdb8b
    • Simon Atanasyan's avatar
      [ELF][MIPS] Make _gp, _gp_disp, __gnu_local_gp global symbols · 6a4eb75c
      Simon Atanasyan authored
      These MIPS specific symbols should be global because in general they can
      have an arbitrary value. By default this value is a fixed offset from .got
      section.
      
      This patch adds more checks to the mips-gp-local.s test case but marks
      it as XFAIL because LLD does not allow redefinition of absolute symbols
      value by a linker script. This should be fixed by D27276.
      
      Differential revision: https://reviews.llvm.org/D27524
      
      llvm-svn: 289025
      6a4eb75c
    • Rafael Espindola's avatar
      Delete dead code. · 41217616
      Rafael Espindola authored
      Thanks to George Rimar for pointing it out.
      
      llvm-svn: 289020
      41217616
    • Rui Ueyama's avatar
      Remove redundant call of std::unique_ptr::get. · 9a97acc0
      Rui Ueyama authored
      Obj is an instance of std::unique_ptr, so *Obj.get() is the same as *Obj.
      
      llvm-svn: 288996
      9a97acc0
    • Rui Ueyama's avatar
      Fix Windows buildbots. · 332e02a1
      Rui Ueyama authored
      clang-format-diff sorted these #include's in the asciibetical order,
      but they need to be in this order.
      
      llvm-svn: 288995
      332e02a1
    • Rui Ueyama's avatar
    • Rui Ueyama's avatar
      COFF: Define overloaded toString functions. · a45d45e2
      Rui Ueyama authored
      Previously, we had different way to stringize SymbolBody and InputFile
      to construct error messages. This patch defines overloaded function
      toString() so that we don't need to memorize all these different
      function names.
      
      With that change, it is now easy to include demangled names in error
      messages. Now, if there is a symbol name conflict, we'll print out
      both mangled and demangled names.
      
      llvm-svn: 288992
      a45d45e2
  2. Dec 07, 2016
  3. Dec 06, 2016
  4. Dec 05, 2016
Loading