Skip to content
  1. Oct 16, 2011
  2. Oct 04, 2011
  3. Jul 26, 2011
    • Bruno Cardoso Lopes's avatar
      - Handle special scalar_to_vector case: splats. Using a native 128-bit · 123dff0f
      Bruno Cardoso Lopes authored
      shuffle before inserting on a 256-bit vector.
      - Add AVX versions of movd/movq instructions
      - Introduce a few COPY patterns to match insert_subvector instructions.
      This turns a trivial insert_subvector instruction into a register copy,
      coalescing the xmm into a ymm and avoid emiting on more instruction.
      
      llvm-svn: 136002
      123dff0f
  4. Jul 05, 2011
  5. Apr 04, 2011
  6. Mar 15, 2011
  7. Feb 22, 2011
  8. Nov 30, 2010
  9. Oct 31, 2010
  10. Oct 03, 2010
  11. Sep 17, 2010
  12. Aug 26, 2010
  13. Aug 19, 2010
  14. Jul 23, 2010
  15. Jul 20, 2010
  16. Jul 13, 2010
  17. Jul 08, 2010
  18. Jul 07, 2010
  19. Jul 01, 2010
    • Bruno Cardoso Lopes's avatar
      · 05166740
      Bruno Cardoso Lopes authored
      - Add AVX SSE2 Move doubleword and quadword instructions.
      - Add encode bits for VEX_W
      - All 128-bit SSE 1 & SSE2 instructions that are described
        in the .td file now have a AVX encoded form already working.
      
      llvm-svn: 107365
      05166740
  20. Jun 26, 2010
  21. Jun 24, 2010
  22. Jun 23, 2010
  23. Jun 19, 2010
  24. Jun 18, 2010
  25. Jun 12, 2010
  26. Jun 09, 2010
  27. Jun 05, 2010
    • Chris Lattner's avatar
      revert r105521, which is breaking the buildbots with stuff like this: · fdd26143
      Chris Lattner authored
      In file included from X86InstrInfo.cpp:16:
      X86GenInstrInfo.inc:2789: error: integer constant is too large for 'long' type
      X86GenInstrInfo.inc:2790: error: integer constant is too large for 'long' type
      X86GenInstrInfo.inc:2792: error: integer constant is too large for 'long' type
      X86GenInstrInfo.inc:2793: error: integer constant is too large for 'long' type
      X86GenInstrInfo.inc:2808: error: integer constant is too large for 'long' type
      X86GenInstrInfo.inc:2809: error: integer constant is too large for 'long' type
      X86GenInstrInfo.inc:2816: error: integer constant is too large for 'long' type
      X86GenInstrInfo.inc:2817: error: integer constant is too large for 'long' type
      
      llvm-svn: 105524
      fdd26143
    • Bruno Cardoso Lopes's avatar
      Initial AVX support for some instructions. No patterns matched · 594fa263
      Bruno Cardoso Lopes authored
      yet, only assembly encoding support.
      
      llvm-svn: 105521
      594fa263
  28. Apr 05, 2010
    • Eric Christopher's avatar
      Remove FIXME. · 1290fa0f
      Eric Christopher authored
      llvm-svn: 100466
      1290fa0f
    • Jakob Stoklund Olesen's avatar
      Replace TSFlagsFields and TSFlagsShifts with a simpler TSFlags field. · b93331f3
      Jakob Stoklund Olesen authored
      When a target instruction wants to set target-specific flags, it should simply
      set bits in the TSFlags bit vector defined in the Instruction TableGen class.
      
      This works well because TableGen resolves member references late:
      
      class I : Instruction {
        AddrMode AM = AddrModeNone;
        let TSFlags{3-0} = AM.Value;
      }
      
      let AM = AddrMode4 in
      def ADD : I;
      
      TSFlags gets the expected bits from AddrMode4 in this example.
      
      llvm-svn: 100384
      b93331f3
Loading