Skip to content
  1. Jan 05, 2008
  2. Dec 29, 2007
  3. 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
  4. Jul 06, 2007
  5. Nov 04, 2006
  6. Oct 11, 2006
  7. Aug 26, 2006
    • Evan Cheng's avatar
      A bit more clean up. · eaf9fba2
      Evan Cheng authored
      llvm-svn: 29893
      eaf9fba2
    • Evan Cheng's avatar
      - Clean up tablegen dag isel generator code. · 548bd0dc
      Evan Cheng authored
      - Clean up the code generated by tablegen:
        * AddToISelQueue now takes one argument.
        * ComplexPattern matching condition can now be shared.
        * Eliminate passing unnecessary arguments to emit routines.
        * Eliminate some unneeded SDOperand declarations in select routines.
        * Other minor clean ups.
      - This reduces foot print slightly: X86ISelDAGToDAG.o is reduced from 971k
        to 823k.
      
      llvm-svn: 29892
      548bd0dc
  8. Aug 08, 2006
  9. Jul 16, 2006
  10. Jul 15, 2006
    • Evan Cheng's avatar
      Reduce instruction selection code size and stack frame size by factoring · 69367fed
      Evan Cheng authored
      code that emit target specific nodes into emit functions that are uniquified
      and shared among selection routines.
      e.g. This reduces X86ISelDAGToDAG.o (release) from ~2M to ~1.5M. Stack frame
      size of Select_store from ~13k down to ~8k.
      This is the first step. Further work to enable more sharing will follow.
      
      llvm-svn: 29158
      69367fed
  11. May 17, 2006
  12. Apr 19, 2006
  13. Mar 25, 2006
    • Chris Lattner's avatar
      Change approach so that we get codegen for free for intrinsics. With this, · c8565ed6
      Chris Lattner authored
      intrinsics that don't take pointer arguments now work.  For example, we can
      compile this:
      
      int test3( __m128d *A) {
        return _mm_movemask_pd(*A);
      }
      int test4( __m128 *A) {
        return _mm_movemask_ps(*A);
      }
      
      to this:
      
      _test3:
              movl 4(%esp), %eax
              movapd (%eax), %xmm0
              movmskpd %xmm0, %eax
              ret
      _test4:
              movl 4(%esp), %eax
              movaps (%eax), %xmm0
              movmskps %xmm0, %eax
              ret
      
      llvm-svn: 27090
      c8565ed6
  14. Mar 24, 2006
  15. Mar 20, 2006
  16. Feb 09, 2006
  17. Feb 07, 2006
  18. Feb 05, 2006
    • Evan Cheng's avatar
      Allow more loads to be folded which were previously prevented from happening · 368f20e5
      Evan Cheng authored
      due to ordering issue. i.e. they were selected for chain use first.
      Now at load select time, check if it is being selected for a chain use and if
      it has only a single real use. If so, return a HANDLENODE (with the load as
      its operand) in its place and record it.
      When it is folded or the load is selected for a real use, the isel records it
      as the replacement for the HANDLENODE. The replacement is done when all nodes
      are selected.
      This scheme exposed a couple of problems where cycles can happen. (See comments
      in EmitMatchCode() for descriptions of the problems and their workaround /
      solutions.) These problems have been resolved with a small compile time
      penality.
      
      llvm-svn: 25995
      368f20e5
  19. Jan 29, 2006
  20. Jan 27, 2006
  21. Jan 17, 2006
  22. Jan 09, 2006
  23. Dec 30, 2005
  24. Dec 23, 2005
  25. Dec 22, 2005
  26. Dec 17, 2005
  27. Dec 14, 2005
  28. Dec 09, 2005
  29. Dec 08, 2005
  30. Dec 04, 2005
    • Evan Cheng's avatar
      * Commit the fix (by Chris) for a tblgen type inferencing bug. · f02bb9af
      Evan Cheng authored
      * Enhanced tblgen to handle instructions which have chain operand and writes a
      chain result.
      * Enhanced tblgen to handle instructions which produces no results. Part of
      the change is a temporary hack which relies on instruction property (e.g.
      isReturn, isBranch). The proper fix would be to change the .td syntax to
      separate results dag from ops dag.
      
      llvm-svn: 24587
      f02bb9af
Loading