Skip to content
  1. Feb 23, 2017
  2. Feb 06, 2017
  3. 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
  4. Jan 28, 2017
  5. Jan 27, 2017
    • 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
  6. Jan 25, 2017
  7. Jan 18, 2017
    • Peter Smith's avatar
      [ELF] Move createThunks() after scanRelocations() · ee6d7186
      Peter Smith authored
          
      A necessary first step towards range extension thunks is to delay
      the creation of thunks until the layout of InputSections within
      OutputSections has been done.
          
      The change scans the relocations directly from InputSections rather
      than looking in the ELF File the InputSection came from. This will
      allow a future change to redirect the relocations to symbols defined
      by Thunks rather than indirect when resolving relocations.
          
      A side-effect of moving ThunkCreation is that the OutSecOff of
      InputSections may change in an OutputSection that contains Thunks.
      In well behaved programs thunks are not in OutputSections with
      dynamic relocations.
          
      Differential Revision: https://reviews.llvm.org/D28811
      
      llvm-svn: 292359
      ee6d7186
  8. Jan 06, 2017
  9. Dec 09, 2016
    • Peter Smith's avatar
      [ELF][I386] .got.plt entries for i386 should use VA of ifunc resolver · 4b360292
      Peter Smith authored
      The i386 glibc ld.so expects the .got.slot entry that is relocated by a 
      R_386_IRELATIVE relocation to point directly at the ifunc resolver and
      not the address of the PLT entry + 6 (thus entering the lazy resolver).
      This is also the case for ARM and I suspect it is because these use REL
      relocations and can't use the addend field to store the address of the
      ifunc resolver. If the lazy resolver is used we get an error message
      stating that only R_386_JUMP_SLOT is supported.
      
      As ARM and i386 share the same code, I've removed the ARM specific test
      and added a writeIgotPlt() function that by default calls writeGotPlt().
      ARM and i386 override this to write the address of the ifunc resolver.
      
      Differential Revision: https://reviews.llvm.org/D27581
      
      llvm-svn: 289198
      4b360292
  10. Dec 07, 2016
  11. Dec 05, 2016
  12. Nov 25, 2016
  13. Nov 23, 2016
    • Simon Atanasyan's avatar
      [ELF][MIPS] Fix handling of _gp/_gp_disp/__gnu_local_gp symbols · 8469b884
      Simon Atanasyan authored
      Offset between beginning of a .got section and _gp symbols used in MIPS
      GOT relocations calculations. Usually the expression looks like
      VA + Offset - GP, where VA is the .got section address, Offset - offset
      of the GOT entry, GP - offset between .got and _gp. Also there two "magic"
      symbols _gp_disp and __gnu_local_gp which hold the offset mentioned above.
      These symbols might be referenced by MIPS relocations.
      
      Now the linker always defines _gp symbol and uses hardcoded value for
      its initialization. So offset between .got and _gp is 0x7ff0. The _gp_disp
      and __gnu_local_gp defined if required and initialized by 0x7ff0.
      In fact that is not correct because _gp symbol might be defined by a linker
      script and holds arbitrary value. In that case we need to use this value
      in relocation calculation and initialize _gp_disp and __gnu_local_gp
      properly.
      
      The patch fixes the problem and completes fixing the bug #30311.
      https://llvm.org/bugs/show_bug.cgi?id=30311
      
      Differential revision: https://reviews.llvm.org/D27036
      
      llvm-svn: 287832
      8469b884
    • Rui Ueyama's avatar
      Define toString() as a generic function to get a string for error message. · 3fc0f7e5
      Rui Ueyama authored
      We have different functions to stringize objects to construct
      error messages. For InputFile, we have getFilename, and for
      InputSection, we have getName. You had to memorize them.
      
      I think this is the case where the function overloading comes in handy.
      
      This patch defines toString() functions that are overloaded for all these
      types, so that you just call it in error().
      
      Differential Revision: https://reviews.llvm.org/D27030
      
      llvm-svn: 287787
      3fc0f7e5
    • Ed Maste's avatar
      lld: Default image base address to 0x200000 on x86-64 · 8fd0196c
      Ed Maste authored
      Align to the large page size (known as a superpage or huge page).
      FreeBSD automatically promotes large, superpage-aligned allocations.
      
      Differential Revision:	https://reviews.llvm.org/D27042
      
      llvm-svn: 287782
      8fd0196c
  14. Nov 11, 2016
  15. Nov 10, 2016
  16. Aug 17, 2016
  17. Jul 20, 2016
    • Rafael Espindola's avatar
      Create thunks before regular relocation scan. · 0f7cedaa
      Rafael Espindola authored
      We will need to do something like this to support range extension
      thunks since that process is iterative.
      
      Doing this also has the advantage that when doing the regular
      relocation scan the offset in the output section is known and we can
      just store that. This reduces the number of times we have to run
      getOffset and I think will allow a more specialized .eh_frame
      representation.
      
      By itself this is already a performance win.
      
      firefox
        master 7.295045737
        patch  7.209466989 0.98826892235
      chromium
        master 4.531254468
        patch  4.509221804 0.995137623774
      chromium fast
        master 1.836928973
        patch  1.823805241 0.992855612714
      the gold plugin
        master 0.379768791
        patch  0.380043405 1.00072310839
      clang
        master 0.642698284
        patch  0.642215663 0.999249070657
      llvm-as
        master 0.036665467
        patch  0.036456225 0.994293213284
      the gold plugin fsds
        master 0.40395817
        patch  0.404384555 1.0010555177
      clang fsds
        master 0.722045545
        patch  0.720946135 0.998477367518
      llvm-as fsds
        master 0.03292646
        patch  0.032759965 0.994943428477
      scylla
        master 3.427376378
        patch  3.368316181 0.98276810292
      
      llvm-svn: 276146
      0f7cedaa
  18. Jul 14, 2016
  19. Jul 13, 2016
  20. Jul 10, 2016
    • Rui Ueyama's avatar
      Remove Target::writeThunk. · e2efadce
      Rui Ueyama authored
      Only MipsThunk were using the function, and the way how it wrote
      thunk contents was different from ARM thunks. This patch makes
      them consistent.
      
      llvm-svn: 274997
      e2efadce
  21. Jul 08, 2016
    • Peter Smith's avatar
      Recommit R274836 Add Thunk support framework for ARM and Mips · fb05cd99
      Peter Smith authored
      The TinyPtrVector of const Thunk<ELFT>* in InputSections.h can cause 
      build failures on certain compiler/library combinations when Thunk<ELFT> 
      is not a complete type or is an abstract class. Fixed by making Thunk<ELFT>
      non Abstract.
      
      type or is an abstract class 
      
      llvm-svn: 274863
      fb05cd99
    • Peter Smith's avatar
      Revert R274836 Add Thunk support framework for ARM and Mips · eeb82744
      Peter Smith authored
      This seems to be causing a buildbot failure on lld-x86_64-freebsd. Will
      reproduce locally and fix. 
      
      llvm-svn: 274841
      eeb82744
    • Peter Smith's avatar
      Add Thunk support framework for ARM and Mips · de01b98a
      Peter Smith authored
          
          Generalise the Mips LA25 Thunk code and implement ARM and Thumb
          interworking Thunks.
          
          - Introduce a new module Thunks.cpp to store the Target Specific Thunk
            implementations.
          - DefinedRegular and Shared have a ThunkData field to record Thunk.
          - A Target can have more than one type of Thunk.
          - Support PC-relative calls to Thunks.
          - Support Thunks to PLT entries.
          - Existing Mips LA25 Thunk code integrated.
          - Support for ARMv7A interworking Thunks.
          
          Limitations:
          - Only one Thunk per SymbolBody, this is sufficient for all currently
            implemented Thunks.
          - ARM thunks assume presence of V6T2 MOVT and MOVW instructions.
      
          Differential revision: http://reviews.llvm.org/D21891
      
      llvm-svn: 274836
      de01b98a
  22. Jun 17, 2016
  23. Jun 16, 2016
    • Rui Ueyama's avatar
      Rename PltZero -> PltHeader. · 4a90f57e
      Rui Ueyama authored
      PltZero (or PLT[0]) was an appropriate name for the little code
      we have at beginning of the PLT section when we only supported x86
      since the code for x86 just fits in the first PLT slot.
      
      It's not the case anymore. The code for ARM64 occupies first two
      slots, so PltZero spans PLT[0] and PLT[1], for example.
      This patch renames it to avoid confusion.
      
      llvm-svn: 272913
      4a90f57e
    • Rui Ueyama's avatar
      Eliminate unnecessary call of SymbolBody::getPltVA. · c9fee5fe
      Rui Ueyama authored
      For ARM and MIPS, we don't need to call this function.
      This patch passes a symbol instead of a PLT entry address
      so that the target handler can call it if necessary.
      
      llvm-svn: 272910
      c9fee5fe
  24. Jun 08, 2016
  25. Jun 05, 2016
  26. Jun 02, 2016
    • Rafael Espindola's avatar
      Start adding tlsdesc support for aarch64. · e37d13b9
      Rafael Espindola authored
      This is mostly extracted from http://reviews.llvm.org/D18960.
      
      The general idea for tlsdesc is that the two GD got entries are used
      for a function pointer and its argument. The dynamic linker sets
      both. In the non-dlopen case the dynamic linker sets the function to
      the identity and the argument to the offset in the tls block.
      
      All that the static linker has to do in the non-dlopen case is
      relocate the code to point to the got entries and create a dynamic
      relocation.
      
      The dlopen case is more complicated, but can be implemented in another patch.
      
      llvm-svn: 271569
      e37d13b9
  27. Jun 01, 2016
  28. May 26, 2016
  29. May 25, 2016
  30. May 24, 2016
Loading