Skip to content
  1. Aug 16, 2005
  2. Aug 14, 2005
    • Nate Begeman's avatar
      Fix last night's PPC32 regressions by · d5e739dc
      Nate Begeman authored
      1. Not selecting the false value of a select_cc in the false arm, which
         isn't legal for nested selects.
      2. Actually returning the node we created and Legalized in the FP_TO_UINT
         Expander.
      
      llvm-svn: 22789
      d5e739dc
    • Nate Begeman's avatar
      Teach the legalizer how to legalize FP_TO_UINT. · 36853ee1
      Nate Begeman authored
      Teach the legalizer to promote FP_TO_UINT to FP_TO_SINT if the wider
        FP_TO_UINT is also illegal.  This allows us on PPC to codegen
        unsigned short foo(float a) { return a; }
      
      as:
      _foo:
      .LBB_foo_0:     ; entry
              fctiwz f0, f1
              stfd f0, -8(r1)
              lwz r2, -4(r1)
              rlwinm r3, r2, 0, 16, 31
              blr
      
      instead of:
      _foo:
      .LBB_foo_0:     ; entry
              fctiwz f0, f1
              stfd f0, -8(r1)
              lwz r2, -4(r1)
              lis r3, ha16(.CPI_foo_0)
              lfs f0, lo16(.CPI_foo_0)(r3)
              fcmpu cr0, f1, f0
              blt .LBB_foo_2  ; entry
      .LBB_foo_1:     ; entry
              fsubs f0, f1, f0
              fctiwz f0, f0
              stfd f0, -16(r1)
              lwz r2, -12(r1)
              xoris r2, r2, 32768
      .LBB_foo_2:     ; entry
              rlwinm r3, r2, 0, 16, 31
              blr
      
      llvm-svn: 22785
      36853ee1
  3. Aug 13, 2005
  4. Aug 11, 2005
    • Nate Begeman's avatar
      Add a select_cc optimization for recognizing abs(int). This speeds up an · 5c7656fd
      Nate Begeman authored
      integer MPEG encoding loop by a factor of two.
      
      llvm-svn: 22758
      5c7656fd
    • Nate Begeman's avatar
      Some SELECT_CC cleanups: · 180b0889
      Nate Begeman authored
      1. move assertions for node creation to getNode()
      2. legalize the values returned in ExpandOp immediately
      3. Move select_cc optimizations from SELECT's getNode() to SELECT_CC's,
         allowing them to be cleaned up significantly.
      
      This paves the way to pick up additional optimizations on SELECT_CC, such
      as sum-of-absolute-differences.
      
      llvm-svn: 22757
      180b0889
  5. Aug 10, 2005
  6. Aug 09, 2005
  7. Aug 08, 2005
  8. Aug 07, 2005
  9. Aug 05, 2005
  10. Aug 04, 2005
  11. Aug 03, 2005
  12. Aug 02, 2005
  13. Aug 01, 2005
  14. Jul 30, 2005
  15. Jul 29, 2005
  16. Jul 28, 2005
  17. Jul 27, 2005
  18. Jul 19, 2005
  19. Jul 18, 2005
  20. Jul 16, 2005
Loading