File: faminmax.s

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,696 kB
  • sloc: cpp: 7,438,781; ansic: 1,393,871; asm: 1,012,926; python: 241,771; f90: 86,635; objc: 75,411; lisp: 42,144; pascal: 17,286; sh: 8,596; ml: 5,082; perl: 4,730; makefile: 3,591; awk: 3,523; javascript: 2,251; xml: 892; fortran: 672
file content (145 lines) | stat: -rw-r--r-- 6,154 bytes parent folder | download | duplicates (14)
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2,+faminmax < %s \
// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST

// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2,+faminmax < %s \
// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST

// RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \
// RUN:        | FileCheck %s --check-prefix=CHECK-ERROR

// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2,+faminmax < %s \
// RUN:        | llvm-objdump -d --mattr=+sve2,+faminmax - | FileCheck %s --check-prefix=CHECK-INST

// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2,+faminmax < %s \
// RUN:        | llvm-objdump -d --mattr=-faminmax - | FileCheck %s --check-prefix=CHECK-UNKNOWN

// Disassemble encoding and check the re-encoding (-show-encoding) matches.
// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2,+faminmax < %s \
// RUN:        | sed '/.text/d' | sed 's/.*encoding: //g' \
// RUN:        | llvm-mc -triple=aarch64 -mattr=+sve2,+faminmax -disassemble -show-encoding \
// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST

// FAMIN

famin   z0.h, p0/m, z0.h, z1.h  // 01100101-01001111-10000000-00100000
// CHECK-INST: famin   z0.h, p0/m, z0.h, z1.h
// CHECK-ENCODING: [0x20,0x80,0x4f,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 654f8020 <unknown>

movprfx z23, z31
famin   z23.h, p3/m, z23.h, z13.h  // 01100101-01001111-10001101-10110111
// CHECK-INST:  movprfx z23, z31
// CHECK-INST: famin   z23.h, p3/m, z23.h, z13.h
// CHECK-ENCODING: [0xb7,0x8d,0x4f,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 654f8db7 <unknown>

famin   z31.h, p7/m, z31.h, z30.h  // 01100101-01001111-10011111-11011111
// CHECK-INST: famin   z31.h, p7/m, z31.h, z30.h
// CHECK-ENCODING: [0xdf,0x9f,0x4f,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 654f9fdf <unknown>

famin   z0.s, p0/m, z0.s, z1.s  // 01100101-10001111-10000000-00100000
// CHECK-INST: famin   z0.s, p0/m, z0.s, z1.s
// CHECK-ENCODING: [0x20,0x80,0x8f,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 658f8020 <unknown>

movprfx z23, z31
famin   z23.s, p3/m, z23.s, z13.s  // 01100101-10001111-10001101-10110111
// CHECK-INST:  movprfx z23, z31
// CHECK-INST: famin   z23.s, p3/m, z23.s, z13.s
// CHECK-ENCODING: [0xb7,0x8d,0x8f,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 658f8db7 <unknown>

famin   z31.s, p7/m, z31.s, z30.s  // 01100101-10001111-10011111-11011111
// CHECK-INST: famin   z31.s, p7/m, z31.s, z30.s
// CHECK-ENCODING: [0xdf,0x9f,0x8f,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 658f9fdf <unknown>

famin   z0.d, p0/m, z0.d, z1.d  // 01100101-11001111-10000000-00100000
// CHECK-INST: famin   z0.d, p0/m, z0.d, z1.d
// CHECK-ENCODING: [0x20,0x80,0xcf,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 65cf8020 <unknown>

movprfx z23, z31
famin   z23.d, p3/m, z23.d, z13.d  // 01100101-11001111-10001101-10110111
// CHECK-INST:  movprfx z23, z31
// CHECK-INST: famin   z23.d, p3/m, z23.d, z13.d
// CHECK-ENCODING: [0xb7,0x8d,0xcf,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 65cf8db7 <unknown>

famin   z31.d, p7/m, z31.d, z30.d  // 01100101-11001111-10011111-11011111
// CHECK-INST: famin   z31.d, p7/m, z31.d, z30.d
// CHECK-ENCODING: [0xdf,0x9f,0xcf,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 65cf9fdf <unknown>


// FAMAX

famax   z0.h, p0/m, z0.h, z1.h  // 01100101-01001110-10000000-00100000
// CHECK-INST: famax   z0.h, p0/m, z0.h, z1.h
// CHECK-ENCODING: [0x20,0x80,0x4e,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 654e8020 <unknown>

movprfx z23, z31
famax   z23.h, p3/m, z23.h, z13.h  // 01100101-01001110-10001101-10110111
// CHECK-INST:  movprfx z23, z31
// CHECK-INST: famax   z23.h, p3/m, z23.h, z13.h
// CHECK-ENCODING: [0xb7,0x8d,0x4e,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 654e8db7 <unknown>

famax   z31.h, p7/m, z31.h, z30.h  // 01100101-01001110-10011111-11011111
// CHECK-INST: famax   z31.h, p7/m, z31.h, z30.h
// CHECK-ENCODING: [0xdf,0x9f,0x4e,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 654e9fdf <unknown>

famax   z0.s, p0/m, z0.s, z1.s  // 01100101-10001110-10000000-00100000
// CHECK-INST: famax   z0.s, p0/m, z0.s, z1.s
// CHECK-ENCODING: [0x20,0x80,0x8e,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 658e8020 <unknown>

movprfx z23, z31
famax   z23.s, p3/m, z23.s, z13.s  // 01100101-10001110-10001101-10110111
// CHECK-INST:  movprfx z23, z31
// CHECK-INST: famax   z23.s, p3/m, z23.s, z13.s
// CHECK-ENCODING: [0xb7,0x8d,0x8e,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 658e8db7 <unknown>

famax   z31.s, p7/m, z31.s, z30.s  // 01100101-10001110-10011111-11011111
// CHECK-INST: famax   z31.s, p7/m, z31.s, z30.s
// CHECK-ENCODING: [0xdf,0x9f,0x8e,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 658e9fdf <unknown>

famax   z0.d, p0/m, z0.d, z1.d  // 01100101-11001110-10000000-00100000
// CHECK-INST: famax   z0.d, p0/m, z0.d, z1.d
// CHECK-ENCODING: [0x20,0x80,0xce,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 65ce8020 <unknown>

movprfx z23, z31
famax   z23.d, p3/m, z23.d, z13.d  // 01100101-11001110-10001101-10110111
// CHECK-INST:  movprfx z23, z31
// CHECK-INST: famax   z23.d, p3/m, z23.d, z13.d
// CHECK-ENCODING: [0xb7,0x8d,0xce,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 65ce8db7 <unknown>

famax   z31.d, p7/m, z31.d, z30.d  // 01100101-11001110-10011111-11011111
// CHECK-INST: famax   z31.d, p7/m, z31.d, z30.d
// CHECK-ENCODING: [0xdf,0x9f,0xce,0x65]
// CHECK-ERROR: instruction requires: faminmax sve2 or sme2
// CHECK-UNKNOWN: 65ce9fdf <unknown>