~ubuntu-branches/ubuntu/raring/yasm/raring

« back to all changes in this revision

Viewing changes to modules/arch/x86/tests/bmi1.asm

  • Committer: Package Import Robot
  • Author(s): Sam Hocevar
  • Date: 2013-01-15 21:05:07 UTC
  • mfrom: (1.1.6) (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20130115210507-6dof3v3wo8cpbw8c
Tags: 1.2.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[bits 64]
 
2
andn eax, ebx, ecx      ; c4 e2 60 f2 c1
 
3
andn eax, ebx, [0]      ; c4 e2 60 f2 04 25 00 00 00 00
 
4
andn rax, rbx, rcx      ; c4 e2 e0 f2 c1
 
5
andn rax, rbx, [0]      ; c4 e2 e0 f2 04 25 00 00 00 00
 
6
 
 
7
bextr eax, ebx, ecx     ; c4 e2 70 f7 c3
 
8
bextr eax, [0], ecx     ; c4 e2 70 f7 04 25 00 00 00 00
 
9
bextr rax, rbx, rcx     ; c4 e2 f0 f7 c3
 
10
bextr rax, [0], rcx     ; c4 e2 f0 f7 04 25 00 00 00 00
 
11
 
 
12
blsi eax, ecx           ; c4 e2 78 f3 d9
 
13
blsi eax, [0]           ; c4 e2 78 f3 1c 25 00 00 00 00
 
14
blsi rax, rcx           ; c4 e2 f8 f3 d9
 
15
blsi rax, [0]           ; c4 e2 f8 f3 1c 25 00 00 00 00
 
16
 
 
17
blsmsk eax, ecx         ; c4 e2 78 f3 d1
 
18
blsmsk eax, [0]         ; c4 e2 78 f3 14 25 00 00 00 00
 
19
blsmsk rax, rcx         ; c4 e2 f8 f3 d1
 
20
blsmsk rax, [0]         ; c4 e2 f8 f3 14 25 00 00 00 00
 
21
 
 
22
blsr eax, ecx           ; c4 e2 78 f3 c9
 
23
blsr eax, [0]           ; c4 e2 78 f3 0c 25 00 00 00 00
 
24
blsr rax, rcx           ; c4 e2 f8 f3 c9
 
25
blsr rax, [0]           ; c4 e2 f8 f3 0c 25 00 00 00 00
 
26
 
 
27
tzcnt ax, bx            ; 66 f3 0f bc c3
 
28
tzcnt ax, [0]           ; 66 f3 0f bc 04 25 00 00 00 00
 
29
tzcnt eax, ebx          ; f3 0f bc c3
 
30
tzcnt eax, [0]          ; f3 0f bc 04 25 00 00 00 00
 
31
tzcnt rax, rbx          ; f3 48 0f bc c3
 
32
tzcnt rax, [0]          ; f3 48 0f bc 04 25 00 00 00 00