Skip to content
  1. Mar 10, 2011
  2. Mar 09, 2011
  3. Mar 08, 2011
    • Jakob Stoklund Olesen's avatar
      Delete dead code after rematerializing. · ea5ebfed
      Jakob Stoklund Olesen authored
      LiveRangeEdit::eliminateDeadDefs() will eventually be used by coalescing,
      splitting, and spilling for dead code elimination. It can delete chains of dead
      instructions as long as there are no dependency loops.
      
      llvm-svn: 127287
      ea5ebfed
  4. Mar 07, 2011
  5. Mar 03, 2011
  6. Feb 19, 2011
  7. Feb 18, 2011
  8. Feb 03, 2011
    • Eric Christopher's avatar
      Reapply this. · ede62679
      Eric Christopher authored
      llvm-svn: 124779
      ede62679
    • Eric Christopher's avatar
    • Jakob Stoklund Olesen's avatar
      Defer SplitKit value mapping until all defs are available. · dca2917e
      Jakob Stoklund Olesen authored
      The greedy register allocator revealed some problems with the value mapping in
      SplitKit. We would sometimes start mapping values before all defs were known,
      and that could change a value from a simple 1-1 mapping to a multi-def mapping
      that requires ssa update.
      
      The new approach collects all defs and register assignments first without
      filling in any live intervals. Only when finish() is called, do we compute
      liveness and mapped values. At this time we know with certainty which values map
      to multiple values in a split range.
      
      This also has the advantage that we can compute live ranges based on the
      remaining uses after rematerializing at split points.
      
      The current implementation has many opportunities for compile time optimization.
      
      llvm-svn: 124765
      dca2917e
  9. Dec 18, 2010
  10. Nov 10, 2010
  11. Nov 01, 2010
  12. Oct 29, 2010
  13. Oct 27, 2010
  14. Oct 21, 2010
  15. Oct 15, 2010
Loading