File: inc.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 (130 lines) | stat: -rw-r--r-- 3,696 bytes parent folder | download | duplicates (8)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# RUN: llvm-mc -triple x86_64 -disassemble %s | FileCheck %s --check-prefix=ATT
# RUN: llvm-mc -triple x86_64 -disassemble -output-asm-variant=1 %s | FileCheck %s --check-prefix=INTEL

# ATT:   {evex}	incb	%bl
# INTEL: {evex}	inc	bl
0x62,0xf4,0x7c,0x08,0xfe,0xc3

# ATT:   {nf}	incb	%bl
# INTEL: {nf}	inc	bl
0x62,0xf4,0x7c,0x0c,0xfe,0xc3

# ATT:   incb	%bl, %bl
# INTEL: inc	bl, bl
0x62,0xf4,0x64,0x18,0xfe,0xc3

# ATT:   {nf}	incb	%bl, %bl
# INTEL: {nf}	inc	bl, bl
0x62,0xf4,0x64,0x1c,0xfe,0xc3

# ATT:   {evex}	incw	%dx
# INTEL: {evex}	inc	dx
0x62,0xf4,0x7d,0x08,0xff,0xc2

# ATT:   {nf}	incw	%dx
# INTEL: {nf}	inc	dx
0x62,0xf4,0x7d,0x0c,0xff,0xc2

# ATT:   incw	%dx, %dx
# INTEL: inc	dx, dx
0x62,0xf4,0x6d,0x18,0xff,0xc2

# ATT:   {nf}	incw	%dx, %dx
# INTEL: {nf}	inc	dx, dx
0x62,0xf4,0x6d,0x1c,0xff,0xc2

# ATT:   {evex}	incl	%ecx
# INTEL: {evex}	inc	ecx
0x62,0xf4,0x7c,0x08,0xff,0xc1

# ATT:   {nf}	incl	%ecx
# INTEL: {nf}	inc	ecx
0x62,0xf4,0x7c,0x0c,0xff,0xc1

# ATT:   incl	%ecx, %ecx
# INTEL: inc	ecx, ecx
0x62,0xf4,0x74,0x18,0xff,0xc1

# ATT:   {nf}	incl	%ecx, %ecx
# INTEL: {nf}	inc	ecx, ecx
0x62,0xf4,0x74,0x1c,0xff,0xc1

# ATT:   {evex}	incq	%r9
# INTEL: {evex}	inc	r9
0x62,0xd4,0xfc,0x08,0xff,0xc1

# ATT:   {nf}	incq	%r9
# INTEL: {nf}	inc	r9
0x62,0xd4,0xfc,0x0c,0xff,0xc1

# ATT:   incq	%r9, %r9
# INTEL: inc	r9, r9
0x62,0xd4,0xb4,0x18,0xff,0xc1

# ATT:   {nf}	incq	%r9, %r9
# INTEL: {nf}	inc	r9, r9
0x62,0xd4,0xb4,0x1c,0xff,0xc1

# ATT:   {evex}	incb	291(%r8,%rax,4)
# INTEL: {evex}	inc	byte ptr [r8 + 4*rax + 291]
0x62,0xd4,0x7c,0x08,0xfe,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {nf}	incb	291(%r8,%rax,4)
# INTEL: {nf}	inc	byte ptr [r8 + 4*rax + 291]
0x62,0xd4,0x7c,0x0c,0xfe,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   incb	291(%r8,%rax,4), %bl
# INTEL: inc	bl, byte ptr [r8 + 4*rax + 291]
0x62,0xd4,0x64,0x18,0xfe,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {nf}	incb	291(%r8,%rax,4), %bl
# INTEL: {nf}	inc	bl, byte ptr [r8 + 4*rax + 291]
0x62,0xd4,0x64,0x1c,0xfe,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {evex}	incw	291(%r8,%rax,4)
# INTEL: {evex}	inc	word ptr [r8 + 4*rax + 291]
0x62,0xd4,0x7d,0x08,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {nf}	incw	291(%r8,%rax,4)
# INTEL: {nf}	inc	word ptr [r8 + 4*rax + 291]
0x62,0xd4,0x7d,0x0c,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   incw	291(%r8,%rax,4), %dx
# INTEL: inc	dx, word ptr [r8 + 4*rax + 291]
0x62,0xd4,0x6d,0x18,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {nf}	incw	291(%r8,%rax,4), %dx
# INTEL: {nf}	inc	dx, word ptr [r8 + 4*rax + 291]
0x62,0xd4,0x6d,0x1c,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {evex}	incl	291(%r8,%rax,4)
# INTEL: {evex}	inc	dword ptr [r8 + 4*rax + 291]
0x62,0xd4,0x7c,0x08,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {nf}	incl	291(%r8,%rax,4)
# INTEL: {nf}	inc	dword ptr [r8 + 4*rax + 291]
0x62,0xd4,0x7c,0x0c,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   incl	291(%r8,%rax,4), %ecx
# INTEL: inc	ecx, dword ptr [r8 + 4*rax + 291]
0x62,0xd4,0x74,0x18,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {nf}	incl	291(%r8,%rax,4), %ecx
# INTEL: {nf}	inc	ecx, dword ptr [r8 + 4*rax + 291]
0x62,0xd4,0x74,0x1c,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {evex}	incq	291(%r8,%rax,4)
# INTEL: {evex}	inc	qword ptr [r8 + 4*rax + 291]
0x62,0xd4,0xfc,0x08,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {nf}	incq	291(%r8,%rax,4)
# INTEL: {nf}	inc	qword ptr [r8 + 4*rax + 291]
0x62,0xd4,0xfc,0x0c,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   incq	291(%r8,%rax,4), %r9
# INTEL: inc	r9, qword ptr [r8 + 4*rax + 291]
0x62,0xd4,0xb4,0x18,0xff,0x84,0x80,0x23,0x01,0x00,0x00

# ATT:   {nf}	incq	291(%r8,%rax,4), %r9
# INTEL: {nf}	inc	r9, qword ptr [r8 + 4*rax + 291]
0x62,0xd4,0xb4,0x1c,0xff,0x84,0x80,0x23,0x01,0x00,0x00