From d959509cb53dcd9749478595f77b35b7ba623da7 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 10 Oct 2009 19:26:21 +0000 Subject: [PATCH] more tweaks llvm-svn: 83721 --- llvm/docs/ReleaseNotes-2.6.html | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/llvm/docs/ReleaseNotes-2.6.html b/llvm/docs/ReleaseNotes-2.6.html index 25be8602cdc8..e230e6c28357 100644 --- a/llvm/docs/ReleaseNotes-2.6.html +++ b/llvm/docs/ReleaseNotes-2.6.html @@ -579,16 +579,21 @@ it run faster:

  • The Machine Sinking pass is now enabled by default. This pass moves side-effect free operations down the CFG so that they are executed on fewer paths through a function.
  • +
  • The code generator now performs "Stack slot coloring" of register spills, + which allows spill slots to be reused. This leads to smaller stack frames + in cases where there are lots of register spills.
  • +
  • The register allocator has many improvements to take better advantage of + commutable operations, various spiller peephole optimizations, and can now + coalesce cross-register-class copies.
  • Tblgen now supports multiclass inheritance and a number of new string and list operations like !(subst), !(foreach), !car, !cdr, !null, !if, !cast. These make the .td files more expressive and allow more aggressive factoring of duplication across instruction patterns.
  • Target-specific intrinsics can now be added without having to hack VMCore to add them. This makes it easier to maintain out-of-tree targets.
  • -
  • Regalloc improvements for commuting, various spiller peephole optimizations, cross-class coalescing.
  • -
  • llc -enable-value-prop, propagation of value info (sign/zero ext info) from one MBB to another
  • -
  • Regalloc hints for allocation stuff: Evan r73381/r73671. Finished/enabled?
  • -
  • Stack slot coloring for register spills (denser stack frames)
  • +
  • The instruction selector is better at propagating information about values + (such as whether they are sign/zero extended etc) across basic block + boundaries.
  • SelectionDAGS: New BuildVectorSDNode (r65296), and ISD::VECTOR_SHUFFLE (r69952 / PR2957)
  • The Prolog/Epilog Insertion Pass now has experimental support for performing the "shrink wrapping" optimization, which moves spills and reloads around in