Skip to content
  1. Nov 14, 2010
  2. Nov 13, 2010
  3. Nov 12, 2010
  4. Nov 11, 2010
  5. Nov 09, 2010
  6. Nov 08, 2010
  7. Nov 07, 2010
  8. Nov 06, 2010
    • Chris Lattner's avatar
      implement aliases for div/idiv that have an explicit A register operand, · 0530c024
      Chris Lattner authored
      implementing rdar://8431864
      
      llvm-svn: 118364
      0530c024
    • Chris Lattner's avatar
      add aliases for movs between seg registers and mem. There are multiple · 9654e108
      Chris Lattner authored
      different forms of this instruction (movw/movl/movq) which we reported
      as being ambiguous.  Since they all do the same thing, gas just picks the
      one with the shortest encoding.  Follow its lead here.
      
      This implements rdar://8208615
      
      llvm-svn: 118362
      9654e108
    • Chris Lattner's avatar
      go to great lengths to work around a GAS bug my previous patch · ca7801e4
      Chris Lattner authored
      exposed:
      
      GAS doesn't accept "fcomip %st(1)", it requires "fcomip %st(1), %st(0)"
      even though st(0) is implicit in all other fp stack instructions.
      
      Fortunately, there is an alias for fcomip named "fcompi" and gas does
      accept the default argument for the alias (boggle!).
      
      As such, switch the canonical form of this instruction to "pi" instead
      of "ip".  This makes the code generator and disassembler generate pi,
      avoiding the gas bug.
      
      llvm-svn: 118356
      ca7801e4
    • Chris Lattner's avatar
      rework the rotate-by-1 instructions to be defined like the · 64f91b98
      Chris Lattner authored
      shift-by-1 instructions, where the asmstring doesn't contain
      the implicit 1.  It turns out that a bunch of these rotate
      instructions were completely broken because they used 1 
      instead of $1.
      
      This fixes assembly mismatches on "rclb	$1, %bl" and friends,
      where we used to generate the 3 byte form, we now generate the
      proper 2-byte form.
      
      llvm-svn: 118355
      64f91b98
    • Chris Lattner's avatar
      change the fp comparison instructions to not have %st0 explicitly · 05031e7f
      Chris Lattner authored
      listed in its asm string, for consistency with the other similar
      instructions.
      
      llvm-svn: 118354
      05031e7f
    • Chris Lattner's avatar
      correct suffix matching to search for s/l/t suffixes on · fab9413b
      Chris Lattner authored
      floating point stack instructions instead of looking for b/w/l/q.
      
      This fixes issues where we'd accidentally match fistp to fistpl,
      when it is in fact an ambiguous instruction.
      
      This changes the behavior of llvm-mc to reject fstp, which was the
      correct fix for rdar://8456389:
      t.s:1:1: error: ambiguous instructions require an explicit suffix (could be 'fstps', 'fstpl', or 'fstpt')
      fstp	(%rax)
      
      it also causes us to correctly reject fistp and fist, which addresses
      PR8528:
      
      t.s:2:1: error: ambiguous instructions require an explicit suffix (could be 'fistps', or 'fistpl')
      fistp (%rax)
      ^
      t.s:3:1: error: ambiguous instructions require an explicit suffix (could be 'fists', or 'fistl')
      fist (%rax)
      ^
      
      Thanks to Ismail Donmez for tracking down the issue here!
      
      llvm-svn: 118346
      fab9413b
  9. Nov 05, 2010
  10. Nov 04, 2010
  11. Nov 03, 2010
Loading