Skip to content
  1. Jan 07, 2008
  2. Dec 31, 2007
    • Chris Lattner's avatar
      Rename SSARegMap -> MachineRegisterInfo in keeping with the idea · a10fff51
      Chris Lattner authored
      that "machine" classes are used to represent the current state of
      the code being compiled.  Given this expanded name, we can start 
      moving other stuff into it.  For now, move the UsedPhysRegs and
      LiveIn/LoveOuts vectors from MachineFunction into it.
      
      Update all the clients to match.
      
      This also reduces some needless #includes, such as MachineModuleInfo
      from MachineFunction.
      
      llvm-svn: 45467
      a10fff51
    • Chris Lattner's avatar
      Add new shorter predicates for testing machine operands for various types: · a5bb370a
      Chris Lattner authored
      e.g. MO.isMBB() instead of MO.isMachineBasicBlock().  I don't plan on 
      switching everything over, so new clients should just start using the 
      shorter names.
      
      Remove old long accessors, switching everything over to use the short
      accessor: getMachineBasicBlock() -> getMBB(), 
      getConstantPoolIndex() -> getIndex(), setMachineBasicBlock -> setMBB(), etc.
      
      llvm-svn: 45464
      a5bb370a
  3. Dec 30, 2007
  4. Dec 29, 2007
  5. 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
  6. Nov 08, 2007
  7. Nov 05, 2007
  8. Sep 14, 2007
  9. Sep 13, 2007
  10. Sep 12, 2007
  11. Aug 01, 2007
  12. Jul 21, 2007
  13. Jul 17, 2007
  14. Jun 27, 2007
  15. Jun 26, 2007
  16. May 14, 2007
  17. May 08, 2007
  18. May 03, 2007
  19. May 02, 2007
  20. May 01, 2007
  21. Apr 26, 2007
  22. Apr 25, 2007
  23. Apr 18, 2007
  24. Apr 17, 2007
  25. Mar 17, 2007
  26. Mar 09, 2007
  27. Feb 19, 2007
  28. Feb 17, 2007
  29. Feb 13, 2007
  30. Dec 07, 2006
  31. Nov 15, 2006
  32. Nov 10, 2006
Loading