Skip to content
  1. Aug 19, 2010
  2. Aug 17, 2010
  3. Aug 16, 2010
  4. Aug 15, 2010
  5. Aug 13, 2010
  6. Aug 12, 2010
  7. Aug 11, 2010
  8. Aug 08, 2010
  9. Aug 06, 2010
  10. Jul 31, 2010
  11. Jul 30, 2010
    • Jim Grosbach's avatar
      Many Thumb2 instructions can reference the full ARM register set (i.e., · d343166a
      Jim Grosbach authored
      have 4 bits per register in the operand encoding), but have undefined
      behavior when the operand value is 13 or 15 (SP and PC, respectively).
      The trivial coalescer in linear scan sometimes will merge a copy from
      SP into a subsequent instruction which uses the copy, and if that
      instruction cannot legally reference SP, we get bad code such as:
        mls r0,r9,r0,sp
      instead of:
        mov r2, sp
        mls r0, r9, r0, r2
      
      This patch adds a new register class for use by Thumb2 that excludes
      the problematic registers (SP and PC) and is used instead of GPR
      for those operands which cannot legally reference PC or SP. The
      trivial coalescer explicitly requires that the register class
      of the destination for the COPY instruction contain the source
      register for the COPY to be considered for coalescing. This prevents
      errant instructions like that above.
      
      PR7499
      
      llvm-svn: 109842
      d343166a
  12. Jul 28, 2010
  13. Jul 27, 2010
  14. Jul 26, 2010
  15. Jul 23, 2010
  16. Jul 22, 2010
  17. Jul 20, 2010
  18. Jul 19, 2010
  19. Jul 17, 2010
  20. Jul 12, 2010
  21. Jul 11, 2010
  22. Jul 10, 2010
  23. Jul 09, 2010
    • Bruno Cardoso Lopes's avatar
      Start the support for AVX instructions with 256-bit %ymm registers. A couple of · 792e906b
      Bruno Cardoso Lopes authored
      notes:
      - The instructions are being added with dummy placeholder patterns using some 256
        specifiers, this is not meant to work now, but since there are some multiclasses
        generic enough to accept them,  when we go for codegen, the stuff will be already
        there.
      - Add VEX encoding bits to support YMM
      - Add MOVUPS and MOVAPS in the first round
      - Use "Y" as suffix for those Instructions: MOVUPSYrr, ...
      - All AVX instructions in X86InstrSSE.td will move soon to a new X86InstrAVX
        file.
      
      llvm-svn: 107996
      792e906b
Loading