Home | History | Annotate | Download | only in i386
      1 # Check if objdump works correctly when some bits in instruction
      2 # has non-default value
      3 
      4 # vrndscalesd	{sae}, $123, %xmm4, %xmm5, %xmm6{%k7}	 # with null RC
      5 .byte 0x62, 0xf3, 0xd5, 0x1f, 0x0b, 0xf4, 0x7b
      6 # vrndscalesd	{sae}, $123, %xmm4, %xmm5, %xmm6{%k7}	 # with not-null RC
      7 .byte 0x62, 0xf3, 0xd5, 0x5f, 0x0b, 0xf4, 0x7b
      8 # vpminud	%zmm4, %zmm5, %zmm6{%k7}	 # with 111 REX
      9 .byte 0x62, 0xf2, 0x55, 0x1f, 0x3b, 0xf4
     10 # vpminud	%zmm4, %zmm5, %zmm6{%k7}	 # with not-111 REX
     11 .byte 0x62, 0xc2, 0x55, 0x1f, 0x3b, 0xf4
     12 # vpmovdb	%zmm6, 2032(%rdx) # with unset EVEX.B bit
     13 .byte 0x62, 0xf2, 0x7e, 0x48, 0x31, 0x72, 0x7f
     14 # vpmovdb	%zmm6, 2032(%rdx) # with set EVEX.B bit - we should get (bad) operand
     15 .byte 0x62, 0xf2, 0x7e, 0x58, 0x31, 0x72, 0x7f
     16