Skip to content
  1. Jan 17, 2008
    • Chris Lattner's avatar
      This commit changes: · 1ea55cf8
      Chris Lattner authored
      1. Legalize now always promotes truncstore of i1 to i8. 
      2. Remove patterns and gunk related to truncstore i1 from targets.
      3. Rename the StoreXAction stuff to TruncStoreAction in TLI.
      4. Make the TLI TruncStoreAction table a 2d table to handle from/to conversions.
      5. Mark a wide variety of invalid truncstores as such in various targets, e.g.
         X86 currently doesn't support truncstore of any of its integer types.
      6. Add legalize support for truncstores with invalid value input types.
      7. Add a dag combine transform to turn store(truncate) into truncstore when
         safe.
      
      The later allows us to compile CodeGen/X86/storetrunc-fp.ll to:
      
      _foo:
      	fldt	20(%esp)
      	fldt	4(%esp)
      	faddp	%st(1)
      	movl	36(%esp), %eax
      	fstps	(%eax)
      	ret
      
      instead of:
      
      _foo:
      	subl	$4, %esp
      	fldt	24(%esp)
      	fldt	8(%esp)
      	faddp	%st(1)
      	fstps	(%esp)
      	movl	40(%esp), %eax
      	movss	(%esp), %xmm0
      	movss	%xmm0, (%eax)
      	addl	$4, %esp
      	ret
      
      llvm-svn: 46140
      1ea55cf8
  2. Jan 15, 2008
  3. Jan 10, 2008
  4. Jan 06, 2008
  5. Dec 29, 2007
  6. Nov 24, 2007
  7. Nov 13, 2007
  8. Sep 25, 2007
  9. Sep 13, 2007
    • Evan Cheng's avatar
      Initial support for multi-result patterns: · 59c39dc1
      Evan Cheng authored
      1.
      [(set GR32:$dst, (add GR32:$src1, GR32:$src2)),
       (modify EFLAGS)]
      This indicates the source pattern expects the instruction would produce 2 values. The first is the result of the addition. The second is an implicit definition in register EFLAGS.
      2.
      def : Pat<(parallel (addc GR32:$src1, GR32:$src2), (modify EFLAGS)), ()>
      Similar to #1 except this is used for def : Pat patterns.
      
      llvm-svn: 41897
      59c39dc1
  10. Aug 05, 2007
  11. Jul 26, 2007
  12. Jul 16, 2007
  13. Apr 20, 2007
  14. Jan 26, 2007
  15. Nov 14, 2006
  16. Nov 09, 2006
  17. Oct 26, 2006
  18. Oct 13, 2006
  19. Oct 11, 2006
  20. Oct 09, 2006
  21. Oct 04, 2006
  22. Jun 15, 2006
  23. Apr 22, 2006
  24. Apr 19, 2006
  25. Apr 16, 2006
  26. Mar 31, 2006
  27. Mar 28, 2006
  28. Mar 27, 2006
  29. Mar 26, 2006
  30. Mar 25, 2006
  31. Mar 24, 2006
  32. Mar 21, 2006
  33. Mar 20, 2006
Loading