Skip to content
  1. Sep 29, 2011
  2. Sep 28, 2011
  3. Sep 26, 2011
  4. Sep 22, 2011
    • Devang Patel's avatar
      Do not unnecessarily use AT_specification DIE because it does not add any value. · 5e6b65cf
      Devang Patel authored
      Few weeks ago, llvm completely inverted the debug info graph. Earlier each debug info node used to keep track of its compile unit, now compile unit keeps track of important nodes. One impact of this change is that the global variable's do not have any context, which should be checked before deciding to use AT_specification DIE.
      
      llvm-svn: 140282
      5e6b65cf
  5. Sep 21, 2011
  6. Sep 15, 2011
  7. Sep 02, 2011
  8. Aug 31, 2011
    • David Greene's avatar
      Fix Size Typing · 7df940d6
      David Greene authored
      Stores sizes as uint64_t to avoid possible truncation.
      
      llvm-svn: 138901
      7df940d6
    • David Greene's avatar
      Compress Repeated Byte Output · cdef71f4
      David Greene authored
      Emit a repeated sequence of bytes using .zero.  This saves an enormous
      amount of asm file space for certain programs.
      
      llvm-svn: 138864
      cdef71f4
  9. Aug 28, 2011
  10. Aug 24, 2011
  11. Aug 20, 2011
  12. Aug 19, 2011
  13. Aug 17, 2011
    • Devang Patel's avatar
      Until now all debug info MDNodes referred to a root MDNode, a compile unit.... · eb1bb4e4
      Devang Patel authored
      Until now all debug info MDNodes referred to a root MDNode, a compile unit. This simplified handling of these needs in dwarf writer.  However, one side effect of this is that during link time optimization all these MDNodes are _not_ uniqued. In other words there will be N number of MDNodes describing "int", "char" and all other types, which would suddenly grow when each object file starts using libraries like STL.
      
      MDNodes graph structure such that compiler unit keeps track of important MDNodes and update dwarf writer to process mdnodes top-down instead of bottom up.
      
      llvm-svn: 137778
      eb1bb4e4
  14. Aug 16, 2011
  15. Aug 15, 2011
  16. Aug 12, 2011
  17. Aug 11, 2011
  18. Aug 10, 2011
  19. Aug 08, 2011
  20. Aug 05, 2011
    • Chandler Carruth's avatar
      Temporarily revert r135528 which distinguishes between two copies of one · 81b7e11c
      Chandler Carruth authored
      inlined variable, based on the discussion in PR10542.
      
      This explodes the runtime of several passes down the pipeline due to
      a large number of "copies" remaining live across a large function. This
      only shows up with both debug and opt, but when it does it creates
      a many-minute compile when self-hosting LLVM+Clang. There are several
      other cases that show these types of regressions.
      
      All of this is tracked in PR10542, and progress is being made on fixing
      the issue. Once its addressed, the re-instated, but until then this
      restores the performance for self-hosting and other opt+debug builds.
      
      Devang, let me know if this causes any trouble, or impedes fixing it in
      any way, and thanks for working on this!
      
      llvm-svn: 136953
      81b7e11c
  21. Aug 03, 2011
Loading