Skip to content
  1. Sep 29, 2016
  2. Sep 28, 2016
  3. Sep 27, 2016
    • Rafael Espindola's avatar
      Use xxhash for fast --build-id. · a42b3bca
      Rafael Espindola authored
      The speed improvements I got were:
      
      firefox
        master 7.050784981
        patch  6.842361079 0.970439617353
      chromium
        master 4.260626249
        patch  4.183148025 0.981815296749
      chromium fast
        master 1.829028591
        patch  1.806439277 0.987649556649
      the gold plugin
        master 0.336154128
        patch  0.331893374 0.987324998728
      clang
        master 0.561869781
        patch  0.558640828 0.994253200458
      llvm-as
        master 0.034025959
        patch  0.033984389 0.99877828572
      the gold plugin fsds
        master 0.360710529
        patch  0.356483564 0.988281559145
      clang fsds
        master 0.640518422
        patch  0.632329874 0.987215749432
      llvm-as fsds
        master 0.031569416
        patch  0.030822055 0.976326423017
      scylla
        master 3.154770529
        patch  3.11982016 0.988921422754
      
      llvm-svn: 282505
      a42b3bca
    • George Rimar's avatar
      [ELF] - Fixed linkage error when using -g --gc-sections together. · 74661eb0
      George Rimar authored
      r282444 introduced new issue, sample program below
      fails to link on
      
      assert(Piece.Live);
      int main() { return 0; }
      clang test.cpp -c -o out.o -g
      ld.lld -flavor gnu --gc-sections out.o -o out
      
      Problem is that .debug_info contains relocations to .debug_str:
      Section (7) .rela.debug_info {
      ..
      
      0xC R_X86_64_32 .debug_str 0x0
      0x12 R_X86_64_32 .debug_str 0x37
      ..
      But we do not preserve .debug_str in a right way now.
      
      To fix this we should ignore relocations from non-allocatable sections to allocatable
      to allow GC work at full power, but still should proccess relocations from non-allocatable to non-allocatable sections
      as usual to mark some parts of debug sections alive to keep them so we do not end 
      up with such assert when trying to access dead pieces. That looks like what gold/ld do, they do 
      not strip .debug_str section from what I saw using sample provided.
      
      Thanks to Evgeny Leviant for suggestions about how to fix this.
      
      Differential revision: https://reviews.llvm.org/D24967
      
      llvm-svn: 282495
      74661eb0
  4. Sep 26, 2016
  5. Sep 24, 2016
  6. Sep 23, 2016
Loading