Skip to content
  1. Jul 15, 2016
  2. Jul 14, 2016
  3. Jul 13, 2016
  4. Jul 12, 2016
  5. Jul 10, 2016
  6. Jul 08, 2016
    • Rui Ueyama's avatar
      Attempt to fix buildbots. · 8c8db476
      Rui Ueyama authored
      llvm-svn: 274917
      8c8db476
    • Rafael Espindola's avatar
      fix use of uninitialized. · 6091492e
      Rafael Espindola authored
      llvm-svn: 274909
      6091492e
    • Rui Ueyama's avatar
      Fix memory leak. · 8b8d0055
      Rui Ueyama authored
      Symbol's dtors are not called because they are allocated using
      BumpPtrAllocators. So, members of std::unique_ptr type are not
      freed when symbols are deallocated.
      
      This patch is to allocate Thunks using BumpPtrAllocators.
      
      llvm-svn: 274896
      8b8d0055
    • 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
    • George Rimar's avatar
      [ELF] - Do not error out when version declaration not found when building executable. · c61bcd80
      George Rimar authored
        When building executable usually version script is absent.
      Before this patch error was shown in the case when
      symbol name contained version and there was no script to match it.
        Instead of error out patch allows
      to create new version declaration in this case and use it.
      gnu linkers do the same.
      
      That is PR28359.
      
      Differential revision: http://reviews.llvm.org/D21890
      
      llvm-svn: 274828
      c61bcd80
Loading