Skip to content
  1. Mar 12, 2008
  2. Mar 11, 2008
  3. Mar 05, 2008
  4. Feb 27, 2008
  5. Feb 26, 2008
  6. Feb 22, 2008
  7. Feb 20, 2008
  8. Feb 10, 2008
  9. Feb 08, 2008
  10. Jan 07, 2008
  11. Jan 01, 2008
  12. Dec 31, 2007
  13. Dec 30, 2007
    • Chris Lattner's avatar
      More cleanups for MachineOperand: · 6005589f
      Chris Lattner authored
        - Eliminate the static "print" method for operands, moving it
          into MachineOperand::print.
        - Change various set* methods for register flags to take a bool
          for the value to set it to.  Remove unset* methods.
        - Group methods more logically by operand flavor in MachineOperand.h
      
      llvm-svn: 45461
      6005589f
  14. Dec 29, 2007
  15. Dec 12, 2007
  16. Dec 05, 2007
  17. Dec 04, 2007
  18. Dec 03, 2007
  19. Dec 02, 2007
  20. Nov 29, 2007
  21. Nov 28, 2007
  22. 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
Loading