Skip to content
  1. Dec 29, 2007
  2. Nov 17, 2007
    • Evan Cheng's avatar
      Live interval splitting: · 8e223793
      Evan Cheng authored
      When a live interval is being spilled, rather than creating short, non-spillable
      intervals for every def / use, split the interval at BB boundaries. That is, for
      every BB where the live interval is defined or used, create a new interval that
      covers all the defs and uses in the BB.
      
      This is designed to eliminate one common problem: multiple reloads of the same
      value in a single basic block. Note, it does *not* decrease the number of spills
      since no copies are inserted so the split intervals are *connected* through
      spill and reloads (or rematerialization). The newly created intervals can be
      spilled again, in that case, since it does not span multiple basic blocks, it's
      spilled in the usual manner. However, it can reuse the same stack slot as the
      previously split interval.
      
      This is currently controlled by -split-intervals-at-bb.
      
      llvm-svn: 44198
      8e223793
  3. Nov 08, 2007
  4. Nov 05, 2007
  5. Sep 14, 2007
  6. Sep 13, 2007
  7. Sep 12, 2007
  8. Aug 01, 2007
  9. Jul 21, 2007
  10. Jul 17, 2007
  11. Jun 27, 2007
  12. Jun 26, 2007
  13. May 14, 2007
  14. May 08, 2007
  15. May 03, 2007
  16. May 02, 2007
  17. May 01, 2007
  18. Apr 26, 2007
  19. Apr 25, 2007
  20. Apr 18, 2007
  21. Apr 17, 2007
  22. Mar 17, 2007
  23. Mar 09, 2007
  24. Feb 19, 2007
  25. Feb 17, 2007
  26. Feb 13, 2007
  27. Dec 07, 2006
  28. Nov 15, 2006
  29. Nov 10, 2006
  30. Nov 02, 2006
    • Reid Spencer's avatar
      For PR786: · de46e484
      Reid Spencer authored
      Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting
      fall out by removing unused variables. Remaining warnings have to do with
      unused functions (I didn't want to delete code without review) and unused
      variables in generated code. Maintainers should clean up the remaining
      issues when they see them. All changes pass DejaGnu tests and Olden.
      
      llvm-svn: 31380
      de46e484
  31. Oct 03, 2006
  32. Sep 05, 2006
  33. Sep 03, 2006
  34. Aug 28, 2006
Loading