Skip to content
  1. Oct 11, 2011
  2. Oct 10, 2011
  3. Oct 09, 2011
  4. Oct 07, 2011
  5. Oct 06, 2011
  6. Oct 03, 2011
  7. Oct 02, 2011
  8. Sep 09, 2011
  9. Sep 05, 2011
  10. Aug 30, 2011
  11. Aug 26, 2011
  12. Aug 23, 2011
  13. Jul 28, 2011
    • Kevin Enderby's avatar
      Fix llvm-mc handing of x86 instructions that take 8-bit unsigned immediates. · 5ef6c453
      Kevin Enderby authored
      llvm-mc gives an "invalid operand" error for instructions that take an unsigned
      immediate which have the high bit set such as:
          pblendw $0xc5, %xmm2, %xmm1
      llvm-mc treats all x86 immediates as signed values and range checks them.
      A small number of x86 instructions use the imm8 field as a set of bits.
      This change only changes those instructions and where the high bit is not
      ignored.  The others remain unchanged.
      
      llvm-svn: 136287
      5ef6c453
  14. Jul 14, 2011
  15. Jul 08, 2011
    • Evan Cheng's avatar
      Eliminate asm parser's dependency on TargetMachine: · 4d1ca96b
      Evan Cheng authored
      - Each target asm parser now creates its own MCSubtatgetInfo (if needed).
      - Changed AssemblerPredicate to take subtarget features which tablegen uses
        to generate asm matcher subtarget feature queries. e.g.
        "ModeThumb,FeatureThumb2" is translated to
        "(Bits & ModeThumb) != 0 && (Bits & FeatureThumb2) != 0".
      
      llvm-svn: 134678
      4d1ca96b
  16. Jul 06, 2011
  17. Jun 04, 2011
  18. Jun 02, 2011
  19. Jun 01, 2011
  20. May 23, 2011
  21. May 20, 2011
  22. Apr 20, 2011
  23. Apr 18, 2011
  24. Apr 17, 2011
  25. Apr 14, 2011
  26. Feb 22, 2011
  27. Feb 19, 2011
  28. Feb 18, 2011
  29. Jan 26, 2011
  30. Dec 30, 2010
  31. Dec 23, 2010
  32. Dec 20, 2010
    • Chris Lattner's avatar
      Change the X86 backend to stop using the evil ADDC/ADDE/SUBC/SUBE nodes (which · 846c20d4
      Chris Lattner authored
      their carry depenedencies with MVT::Flag operands) and use clean and beautiful
      EFLAGS dependences instead.
      
      We do this by changing the modelling of SBB/ADC to have EFLAGS input and outputs
      (which is what requires the previous scheduler change) and change X86 ISelLowering
      to custom lower ADDC and friends down to X86ISD::ADD/ADC/SUB/SBB nodes.
      
      With the previous series of changes, this causes no changes in the testsuite, woo.
      
      llvm-svn: 122213
      846c20d4
Loading