Skip to content
  1. Mar 28, 2006
  2. Mar 27, 2006
    • Evan Cheng's avatar
      Use pcmpeq to generate vector of all ones. · 9b9cc4fb
      Evan Cheng authored
      llvm-svn: 27167
      9b9cc4fb
    • Nate Begeman's avatar
      SelectionDAGISel can now natively handle Switch instructions, in the same · ed728c12
      Nate Begeman authored
      manner that the LowerSwitch LLVM to LLVM pass does: emitting a binary
      search tree of basic blocks.  The new approach has several advantages:
      it is faster, it generates significantly smaller code in many cases, and
      it paves the way for implementing dense switch tables as a jump table by
      handling switches directly in the instruction selector.
      
      This functionality is currently only enabled on x86, but should be safe for
      every target.  In anticipation of making it the default, the cfg is now
      properly updated in the x86, ppc, and sparc select lowering code.
      
      llvm-svn: 27156
      ed728c12
  3. Mar 26, 2006
  4. Mar 25, 2006
  5. Mar 24, 2006
  6. Mar 23, 2006
  7. Mar 22, 2006
  8. Mar 21, 2006
  9. Mar 20, 2006
  10. Mar 19, 2006
  11. Mar 17, 2006
  12. Mar 16, 2006
  13. Mar 14, 2006
  14. Mar 08, 2006
  15. Mar 07, 2006
  16. Mar 05, 2006
  17. Mar 04, 2006
    • Evan Cheng's avatar
      MEMSET / MEMCPY lowering bugs: we can't issue a single WORD / DWORD version of · 6dc73297
      Evan Cheng authored
      rep/stos and rep/mov if the count is not a constant. We could do
        rep/stosl; and $count, 3; rep/stosb
      For now, I will lower them to memset / memcpy calls. We will revisit this after
      a little bit experiment.
      
      Also need to take care of the trailing bytes even if the count is a constant.
      Since the max. number of trailing bytes are 3, we will simply issue loads /
      stores.
      
      llvm-svn: 26517
      6dc73297
    • Evan Cheng's avatar
      Typo · 084a102b
      Evan Cheng authored
      llvm-svn: 26512
      084a102b
  18. Mar 03, 2006
  19. Mar 01, 2006
  20. Feb 25, 2006
Loading