Skip to content
  1. Dec 06, 2005
  2. Dec 05, 2005
    • Chris Lattner's avatar
      Several things: · 3c0b8f57
      Chris Lattner authored
      1. Remove redundant type casts now that PR673 is implemented.
      2. Implement the OUT*ir instructions correctly.  The port number really
         *is* a 16-bit value, but the patterns should only match if the number
         is 0-255.  Update the patterns so they now match.
      3. Fix patterns for shifts to reflect that the shift amount is always an
         i8, not an i16 as they were believed to be before.  This previous fib
         stopped working when we started knowing that CL has type i8.
      4. Change use of i16i8imm in SH*ri patterns to all be imm.
      
      llvm-svn: 24599
      3c0b8f57
  3. Dec 04, 2005
  4. Dec 01, 2005
  5. Nov 30, 2005
  6. Nov 29, 2005
  7. Nov 20, 2005
  8. Nov 19, 2005
  9. Nov 18, 2005
  10. Nov 17, 2005
  11. Nov 16, 2005
  12. Oct 15, 2005
  13. Sep 14, 2005
  14. Aug 19, 2005
    • Chris Lattner's avatar
      add a few missing cases · 423d7cbb
      Chris Lattner authored
      llvm-svn: 22891
      423d7cbb
    • Chris Lattner's avatar
      Give ADJCALLSTACKDOWN/UP the correct operands. · e2967ac5
      Chris Lattner authored
      Give a whole bunch of other stuff variable operands, particularly FP.  The
      FP stackifier is playing fast and loose with operands here, so we have to
      mark them all as variable.  This will have to be fixed before we can dag->dag
      the X86 backend.  The solution is for the pre-stackifier and post-stackifier
      instructions to all be disjoint.
      
      llvm-svn: 22890
      e2967ac5
  15. Aug 04, 2005
  16. Jul 15, 2005
  17. Jul 06, 2005
    • Nate Begeman's avatar
      First round of support for doing scalar FP using the SSE2 ISA extension and · 8a093360
      Nate Begeman authored
      XMM registers.  There are many known deficiencies and fixmes, which will be
      addressed ASAP.  The major benefit of this work is that it will allow the
      LLVM register allocator to allocate FP registers across basic blocks.
      
      The x86 backend will still default to x87 style FP.  To enable this work,
      you must pass -enable-sse-scalar-fp and either -sse2 or -sse3 to llc.
      
      An example before and after would be for:
      double foo(double *P) { double Sum = 0; int i; for (i = 0; i < 1000; ++i)
                              Sum += P[i]; return Sum; }
      
      The inner loop looks like the following:
      x87:
      .LBB_foo_1:     # no_exit
              fldl (%esp)
              faddl (%eax,%ecx,8)
              fstpl (%esp)
              incl %ecx
              cmpl $1000, %ecx
              #FP_REG_KILL
              jne .LBB_foo_1  # no_exit
      
      SSE2:
              addsd (%eax,%ecx,8), %xmm0
              incl %ecx
              cmpl $1000, %ecx
              #FP_REG_KILL
              jne .LBB_foo_1  # no_exit
      
      llvm-svn: 22340
      8a093360
  18. Jun 27, 2005
    • Nate Begeman's avatar
      Initial set of .td file changes necessary to get scalar fp in xmm registers · db329215
      Nate Begeman authored
      working.  The instruction selector changes will hopefully be coming later
      this week once they are debugged.  This is necessary to support the darwin
      x86 FP model, and is recommended by intel as the replacement for x87.  As
      a bonus, the register allocator knows how to deal with these registers
      across basic blocks, unliky the FP stackifier.  This leads to significantly
      better codegen in several cases.
      
      llvm-svn: 22300
      db329215
  19. May 15, 2005
  20. May 13, 2005
  21. May 09, 2005
  22. Apr 28, 2005
  23. Apr 06, 2005
  24. Apr 02, 2005
  25. Feb 27, 2005
  26. Jan 19, 2005
  27. Jan 10, 2005
  28. Jan 03, 2005
  29. Jan 02, 2005
    • Chris Lattner's avatar
      Two changes here: · 295e45e6
      Chris Lattner authored
      1. Add new instructions for checking parity flags: JP, JNP, SETP, SETNP.
      2. Set the isCommutable and isPromotableTo3Address bits on several
         instructions.
      
      llvm-svn: 19246
      295e45e6
  30. Nov 10, 2004
  31. Oct 06, 2004
  32. Oct 04, 2004
Loading