File: andn.txt

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (50 lines) | stat: -rw-r--r-- 1,669 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# RUN: llvm-mc --disassemble %s -triple=x86_64 | FileCheck %s --check-prefixes=ATT
# RUN: llvm-mc --disassemble %s -triple=x86_64 -x86-asm-syntax=intel --output-asm-variant=1 | FileCheck %s --check-prefixes=INTEL

# ATT:   {nf}	andnl	%ecx, %edx, %r10d
# INTEL: {nf}	andn	r10d, edx, ecx
0x62,0x72,0x6c,0x0c,0xf2,0xd1

# ATT:   andnl	%ecx, %edx, %r10d
# INTEL: andn	r10d, edx, ecx
0x62,0x72,0x6c,0x08,0xf2,0xd1

# ATT:   {nf}	andnq	%r9, %r15, %r11
# INTEL: {nf}	andn	r11, r15, r9
0x62,0x52,0x84,0x0c,0xf2,0xd9

# ATT:   andnq	%r9, %r15, %r11
# INTEL: andn	r11, r15, r9
0x62,0x52,0x84,0x08,0xf2,0xd9

# ATT:   {nf}	andnl	123(%rax,%rbx,4), %ecx, %edx
# INTEL: {nf}	andn	edx, ecx, dword ptr [rax + 4*rbx + 123]
0x62,0xf2,0x74,0x0c,0xf2,0x54,0x98,0x7b

# ATT:   andnl	123(%rax,%rbx,4), %ecx, %edx
# INTEL: andn	edx, ecx, dword ptr [rax + 4*rbx + 123]
0x62,0xf2,0x74,0x08,0xf2,0x54,0x98,0x7b

# ATT:   {nf}	andnq	123(%rax,%rbx,4), %r9, %r15
# INTEL: {nf}	andn	r15, r9, qword ptr [rax + 4*rbx + 123]
0x62,0x72,0xb4,0x0c,0xf2,0x7c,0x98,0x7b

# ATT:   andnq	123(%rax,%rbx,4), %r9, %r15
# INTEL: andn	r15, r9, qword ptr [rax + 4*rbx + 123]
0x62,0x72,0xb4,0x08,0xf2,0x7c,0x98,0x7b

# ATT:   andnl	%r18d, %r22d, %r26d
# INTEL: andn	r26d, r22d, r18d
0x62,0x6a,0x4c,0x00,0xf2,0xd2

# ATT:   andnq	%r19, %r23, %r27
# INTEL: andn	r27, r23, r19
0x62,0x6a,0xc4,0x00,0xf2,0xdb

# ATT:   andnl	291(%r28,%r29,4), %r18d, %r22d
# INTEL: andn	r22d, r18d, dword ptr [r28 + 4*r29 + 291]
0x62,0x8a,0x68,0x00,0xf2,0xb4,0xac,0x23,0x01,0x00,0x00

# ATT:   andnq	291(%r28,%r29,4), %r19, %r23
# INTEL: andn	r23, r19, qword ptr [r28 + 4*r29 + 291]
0x62,0x8a,0xe0,0x00,0xf2,0xbc,0xac,0x23,0x01,0x00,0x00