Skip to content
  1. Jan 11, 2010
  2. Jan 09, 2010
  3. Jan 08, 2010
  4. Jan 07, 2010
  5. Jan 06, 2010
    • Evan Cheng's avatar
      Teach dag combine to fold the following transformation more aggressively: · 166a4e6c
      Evan Cheng authored
      (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
      
      Unfortunately this simple change causes dag combine to infinite looping. The problem is the shrink demanded ops optimization tend to canonicalize expressions in the opposite manner. That is badness. This patch disable those optimizations in dag combine but instead it is done as a late pass in sdisel.
      
      This also exposes some deficiencies in dag combine and x86 setcc / brcond lowering. Teach them to look pass ISD::TRUNCATE in various places.
      
      llvm-svn: 92849
      166a4e6c
  6. Jan 05, 2010
  7. Jan 04, 2010
  8. Dec 29, 2009
  9. Dec 28, 2009
  10. Dec 26, 2009
  11. Dec 23, 2009
Loading