Skip to content
  1. Jun 29, 2016
  2. Jun 28, 2016
  3. Jun 27, 2016
  4. Jun 26, 2016
  5. Jun 25, 2016
  6. Jun 24, 2016
  7. Jun 23, 2016
    • Simon Atanasyan's avatar
      [ELF][MIPS] Support MIPS TLS relocations · 002e2447
      Simon Atanasyan authored
      The patch adds one more partition to the MIPS GOT. This time it is for
      TLS related GOT entries. Such entries are located after 'local' and 'global'
      ones. We cannot get a final offset for these entries at the time of
      creation because we do not know size of 'local' and 'global' partitions.
      So we have to adjust the offset later using `getMipsTlsOffset()` method.
      
      All MIPS TLS relocations which need GOT entries operates MIPS style GOT
      offset - 'offset from the GOT's beginning' - MipsGPOffset constant. That
      is why I add new types of relocation expressions.
      
      One more difference from othe ABIs is that the MIPS ABI does not support
      any TLS relocation relaxations. I decided to make a separate function
      `handleMipsTlsRelocation` and put MIPS TLS relocation handling code
      there. It is similar to `handleTlsRelocation` routine and duplicates its
      code. But it allows to make the code cleaner and prevent pollution of
      the `handleTlsRelocation` by MIPS 'if' statements.
      
      Differential Revision: http://reviews.llvm.org/D21606
      
      llvm-svn: 273569
      002e2447
    • George Rimar's avatar
      [ELF] - Reorder expressions in parseVersionSymbols()'s loop. NFC. · 85dbed53
      George Rimar authored
      llvm-svn: 273539
      85dbed53
    • George Rimar's avatar
      Revert r273427 "[ELF] - Simplify loop in parseVersionSymbols(). NFC." · da5fa1eb
      George Rimar authored
      llvm-svn: 273538
      da5fa1eb
    • Rui Ueyama's avatar
      Attempt to fix Windows buildbots. · 3cda384e
      Rui Ueyama authored
      llvm-svn: 273537
      3cda384e
    • Rui Ueyama's avatar
      Implement --trace-symbol=symbol option. · d60dae8a
      Rui Ueyama authored
      Patch by Shridhar Joshi.
      
      This option provides names of all the link time modules which define and
      reference symbols requested by user. This helps to speed up application
      development by detecting references causing undefined symbols.
      It also helps in detecting symbols being resolved to wrong (unintended)
      definitions in case of applications containing multiple definitions for
      same symbols with different types, bindings.
      
      Implements PR28226.
      
      llvm-svn: 273536
      d60dae8a
    • Rui Ueyama's avatar
      Fix a bug that MIPS thunks can overwrite other section contents. · 809d8e2d
      Rui Ueyama authored
      Peter Smith found while trying to support thunk creation for ARM that
      LLD sometimes creates broken thunks for MIPS. The cause of the bug is
      that we assign file offsets to input sections too early. We need to
      create all sections and then assign section offsets because appending
      thunks changes file offsets for all following sections.
      
      This patch separates the pass to assign file offsets from thunk
      creation pass. This effectively reverts r265673.
      
      Differential Revision: http://reviews.llvm.org/D21598
      
      llvm-svn: 273532
      809d8e2d
  8. Jun 22, 2016
Loading