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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
//! Original PTX specification:
//!
//! // SIMD instruction with secondary SIMD merge operation
//! vop4.dtype.atype.btype{.sat} d{.mask}, a{.asel}, b{.bsel}, c;
//! // SIMD instruction with secondary accumulate operation
//! vop4.dtype.atype.btype.add d{.mask}, a{.asel}, b{.bsel}, c;
//! vop4 = { vadd4, vsub4, vavrg4, vabsdiff4, vmin4, vmax4 };
//! .dtype = .atype = .btype = { .u32, .s32 };
//! .mask = { .b0,
//! .b1, .b10,
//! .b2, .b20, .b21, .b210,
//! .b3, .b30, .b31, .b310, .b32, .b320, .b321, .b3210 };
//! // defaults to .b3210
//! .asel = .bsel = { .b.n.n.n.n };
//! .n = { 0, 1, 2, 3, 4, 5, 6, 7};
//! // .asel defaults to .b3210
//! // .bsel defaults to .b7654
#![allow(unused)]
use crate::r#type::common::*;
pub mod section_0 {
use crate::r#type::common::*;
#[derive(Debug, Clone, PartialEq)]
pub enum Dtype {
U32, // .u32
S32, // .s32
}
#[derive(Debug, Clone, PartialEq)]
pub enum Atype {
U32, // .u32
S32, // .s32
}
#[derive(Debug, Clone, PartialEq)]
pub enum Btype {
U32, // .u32
S32, // .s32
}
#[derive(Debug, Clone, PartialEq)]
pub enum Mask {
B3210, // .b3210
B210, // .b210
B310, // .b310
B320, // .b320
B321, // .b321
B10, // .b10
B20, // .b20
B21, // .b21
B30, // .b30
B31, // .b31
B32, // .b32
B0, // .b0
B1, // .b1
B2, // .b2
B3, // .b3
}
#[derive(Debug, Clone, PartialEq)]
pub enum N {
_0, // 0
_1, // 1
_2, // 2
_3, // 3
_4, // 4
_5, // 5
_6, // 6
_7, // 7
}
#[derive(Debug, Clone, PartialEq)]
pub enum Asel {
BNNNN((), N, N, N, N), // .b.n.n.n.n
}
#[derive(Debug, Clone, PartialEq)]
pub enum Bsel {
BNNNN((), N, N, N, N), // .b.n.n.n.n
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vadd4DtypeAtypeBtypeSat {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub sat: bool, // {.sat}
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vsub4DtypeAtypeBtypeSat {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub sat: bool, // {.sat}
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vavrg4DtypeAtypeBtypeSat {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub sat: bool, // {.sat}
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vabsdiff4DtypeAtypeBtypeSat {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub sat: bool, // {.sat}
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vmin4DtypeAtypeBtypeSat {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub sat: bool, // {.sat}
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vmax4DtypeAtypeBtypeSat {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub sat: bool, // {.sat}
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vadd4DtypeAtypeBtypeAdd {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub add: (), // .add
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vsub4DtypeAtypeBtypeAdd {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub add: (), // .add
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vavrg4DtypeAtypeBtypeAdd {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub add: (), // .add
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vabsdiff4DtypeAtypeBtypeAdd {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub add: (), // .add
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vmin4DtypeAtypeBtypeAdd {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub add: (), // .add
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
#[derive(Debug, Clone, PartialEq)]
pub struct Vmax4DtypeAtypeBtypeAdd {
pub dtype: Dtype, // .dtype
pub atype: Atype, // .atype
pub btype: Btype, // .btype
pub add: (), // .add
pub d: GeneralOperand, // d
pub mask: Option<Mask>, // {.mask}
pub a: GeneralOperand, // a
pub asel: Option<Asel>, // {.asel}
pub b: GeneralOperand, // b
pub bsel: Option<Bsel>, // {.bsel}
pub c: GeneralOperand, // c
}
}
// Re-export types with section suffixes to avoid naming conflicts
// e.g., Type0 for section_0::Type, Type1 for section_1::Type
pub use section_0::Asel as Asel0;
pub use section_0::Atype as Atype0;
pub use section_0::Bsel as Bsel0;
pub use section_0::Btype as Btype0;
pub use section_0::Dtype as Dtype0;
pub use section_0::Mask as Mask0;
pub use section_0::N as N0;
pub use section_0::Vabsdiff4DtypeAtypeBtypeAdd;
pub use section_0::Vabsdiff4DtypeAtypeBtypeSat;
pub use section_0::Vadd4DtypeAtypeBtypeAdd;
pub use section_0::Vadd4DtypeAtypeBtypeSat;
pub use section_0::Vavrg4DtypeAtypeBtypeAdd;
pub use section_0::Vavrg4DtypeAtypeBtypeSat;
pub use section_0::Vmax4DtypeAtypeBtypeAdd;
pub use section_0::Vmax4DtypeAtypeBtypeSat;
pub use section_0::Vmin4DtypeAtypeBtypeAdd;
pub use section_0::Vmin4DtypeAtypeBtypeSat;
pub use section_0::Vsub4DtypeAtypeBtypeAdd;
pub use section_0::Vsub4DtypeAtypeBtypeSat;