Skip to content
  1. Mar 27, 2018
    • Rafael Espindola's avatar
      Force SHF_MERGE optimizations with -r. · 35aad41c
      Rafael Espindola authored
      Some tools (dwarfdump for example) get confused by the current -O0 -r
      output since it has multiple copies of .debug_str.
      
      We cannot just merge sections with the same name as they can have
      different sh_entsize.
      
      We could have duplicated logic for merging sections based on name and
      sh_entsize, but it seems better to just use the existing logic by
      enabling optimizations.
      
      llvm-svn: 328640
      35aad41c
    • Rui Ueyama's avatar
      Remove extraneous local variable. NFC. · bc0d3b4e
      Rui Ueyama authored
      llvm-svn: 328605
      bc0d3b4e
    • Rui Ueyama's avatar
      Update comments. · b3e2f745
      Rui Ueyama authored
      llvm-svn: 328604
      b3e2f745
  2. Mar 26, 2018
  3. Mar 24, 2018
    • Rui Ueyama's avatar
      Do not add a dummy entry to SharedFile::Verdefs. NFC. · d37c33af
      Rui Ueyama authored
      Previously, we used 0 as an alias for VER_NDX_GLOBAL and had a dummy
      entry in SharedFile::Verdefs so that the access to the array is within
      its boundary. But that's not straightforwad. We can just stop doing both.
      
      llvm-svn: 328401
      d37c33af
  4. Mar 23, 2018
  5. Mar 21, 2018
  6. Mar 15, 2018
  7. Mar 12, 2018
  8. Mar 08, 2018
    • George Rimar's avatar
      [ELF] - Fix crash relative to SHF_LINK_ORDER sections. · 1136ec64
      George Rimar authored
      Our code assumes all input sections in an output SHF_LINK_ORDER
      section has SHF_LINK_ORDER flag. We do not check that and that can cause a crash.
      
      That happens because we call 
      std::stable_sort(Sections.begin(), Sections.end(), compareByFilePosition);, 
      where compareByFilePosition predicate does not expect to see
      null when calls getLinkOrderDep. 
      
      The same might happen when sections refer to non-regular sections. 
      Test cases demonstrate the issues, patch fixes them.
      
      Differential revision: https://reviews.llvm.org/D44193
      
      llvm-svn: 327006
      1136ec64
    • Rui Ueyama's avatar
      Return early. NFC. · e66d7a79
      Rui Ueyama authored
      We don't need to handle an object file having more than one symbol table,
      so as soon as we find the first one, we can process it and then return
      from the function.
      
      llvm-svn: 326977
      e66d7a79
    • Rui Ueyama's avatar
      Simplify LazyobjFile and readElfSymbols. · c13d858b
      Rui Ueyama authored
      addElfSymbols and readJustSymbolsFile still has duplicate code, but
      I didn't come up with a good idea to eliminate them. Since this patch
      is an improvement, I'm sending this for review.
      
      Differential Revision: https://reviews.llvm.org/D44187
      
      llvm-svn: 326972
      c13d858b
  9. Mar 07, 2018
  10. Mar 06, 2018
  11. Feb 27, 2018
  12. Feb 16, 2018
  13. Feb 07, 2018
  14. Feb 05, 2018
  15. Feb 02, 2018
  16. Jan 29, 2018
  17. Dec 23, 2017
    • Rafael Espindola's avatar
      Detemplate reportDuplicate. · 9a84f6b9
      Rafael Espindola authored
      We normally avoid "switch (Config->EKind)", but in this case I think
      it is worth it.
      
      It is only executed when there is an error and it allows detemplating
      a lot of code.
      
      llvm-svn: 321404
      9a84f6b9
  18. Dec 21, 2017
  19. Dec 20, 2017
  20. Dec 15, 2017
  21. Dec 13, 2017
  22. Dec 12, 2017
    • Rafael Espindola's avatar
      Compact symbols from 96 to 88 bytes. · 8f619ab8
      Rafael Espindola authored
      By using an index instead of a pointer for verdef we can put the index
      next to the alignment field. This uses the otherwise wasted area and
      reduces the shared symbol size.
      
      By itself the performance change of this is in the noise, but I have a
      followup patch to remove another 8 bytes that improves performance
      when combined with this.
      
      llvm-svn: 320449
      8f619ab8
  23. Dec 07, 2017
  24. Dec 06, 2017
Loading