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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
|
use std::convert::From;
use std::{marker::PhantomData, num::ParseIntError};
quick_error! {
#[derive(Debug)]
pub enum PtxError {
ParseInt (err: ParseIntError) {
from()
display("{}", err)
cause(err)
}
SyntaxError {}
NonF32Ftz {}
}
}
pub trait UnwrapWithVec<E, To> {
fn unwrap_with(self, errs: &mut Vec<E>) -> To;
}
impl<R: Default, EFrom: std::convert::Into<EInto>, EInto> UnwrapWithVec<EInto, R>
for Result<R, EFrom>
{
fn unwrap_with(self, errs: &mut Vec<EInto>) -> R {
self.unwrap_or_else(|e| {
errs.push(e.into());
R::default()
})
}
}
impl<
R1: Default,
EFrom1: std::convert::Into<EInto>,
R2: Default,
EFrom2: std::convert::Into<EInto>,
EInto,
> UnwrapWithVec<EInto, (R1, R2)> for (Result<R1, EFrom1>, Result<R2, EFrom2>)
{
fn unwrap_with(self, errs: &mut Vec<EInto>) -> (R1, R2) {
let (x, y) = self;
let r1 = x.unwrap_with(errs);
let r2 = y.unwrap_with(errs);
(r1, r2)
}
}
pub struct Module<'a> {
pub version: (u8, u8),
pub functions: Vec<Function<'a>>,
}
pub struct Function<'a> {
pub kernel: bool,
pub name: &'a str,
pub args: Vec<Argument<'a>>,
pub body: Vec<Statement<ParsedArgParams<'a>>>,
}
#[derive(Default)]
pub struct Argument<'a> {
pub name: &'a str,
pub a_type: ScalarType,
pub length: u32,
}
#[derive(PartialEq, Eq, Hash, Clone, Copy)]
pub enum Type {
Scalar(ScalarType),
ExtendedScalar(ExtendedScalarType),
}
impl From<FloatType> for Type {
fn from(t: FloatType) -> Self {
match t {
FloatType::F16 => Type::Scalar(ScalarType::F16),
FloatType::F16x2 => Type::ExtendedScalar(ExtendedScalarType::F16x2),
FloatType::F32 => Type::Scalar(ScalarType::F32),
FloatType::F64 => Type::Scalar(ScalarType::F64),
}
}
}
#[derive(PartialEq, Eq, Hash, Clone, Copy)]
pub enum ScalarType {
B8,
B16,
B32,
B64,
U8,
U16,
U32,
U64,
S8,
S16,
S32,
S64,
F16,
F32,
F64,
}
impl From<IntType> for ScalarType {
fn from(t: IntType) -> Self {
match t {
IntType::S8 => ScalarType::S8,
IntType::S16 => ScalarType::S16,
IntType::S32 => ScalarType::S32,
IntType::S64 => ScalarType::S64,
IntType::U8 => ScalarType::U8,
IntType::U16 => ScalarType::U16,
IntType::U32 => ScalarType::U32,
IntType::U64 => ScalarType::U64,
}
}
}
#[derive(PartialEq, Eq, Hash, Clone, Copy)]
pub enum IntType {
U8,
U16,
U32,
U64,
S8,
S16,
S32,
S64,
}
impl IntType {
pub fn is_signed(self) -> bool {
match self {
IntType::U8 | IntType::U16 | IntType::U32 | IntType::U64 => false,
IntType::S8 | IntType::S16 | IntType::S32 | IntType::S64 => true,
}
}
pub fn width(self) -> u8 {
match self {
IntType::U8 => 1,
IntType::U16 => 2,
IntType::U32 => 4,
IntType::U64 => 8,
IntType::S8 => 1,
IntType::S16 => 2,
IntType::S32 => 4,
IntType::S64 => 8,
}
}
}
#[derive(PartialEq, Eq, Hash, Clone, Copy)]
pub enum FloatType {
F16,
F16x2,
F32,
F64,
}
#[derive(PartialEq, Eq, Hash, Clone, Copy)]
pub enum ExtendedScalarType {
F16x2,
Pred,
}
impl Default for ScalarType {
fn default() -> Self {
ScalarType::B8
}
}
pub enum Statement<P: ArgParams> {
Label(P::ID),
Variable(Variable<P>),
Instruction(Option<PredAt<P::ID>>, Instruction<P>),
}
pub struct Variable<P: ArgParams> {
pub space: StateSpace,
pub v_type: Type,
pub name: P::ID,
pub count: Option<u32>,
}
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum StateSpace {
Reg,
Sreg,
Const,
Global,
Local,
Shared,
}
pub struct PredAt<ID> {
pub not: bool,
pub label: ID,
}
pub enum Instruction<P: ArgParams> {
Ld(LdData, Arg2<P>),
Mov(MovData, Arg2Mov<P>),
Mul(MulDetails, Arg3<P>),
Add(AddDetails, Arg3<P>),
Setp(SetpData, Arg4<P>),
SetpBool(SetpBoolData, Arg5<P>),
Not(NotType, Arg2<P>),
Bra(BraData, Arg1<P>),
Cvt(CvtDetails, Arg2<P>),
Shl(ShlType, Arg3<P>),
St(StData, Arg2St<P>),
Ret(RetData),
}
pub trait ArgParams {
type ID;
type Operand;
type MovOperand;
}
pub struct ParsedArgParams<'a> {
_marker: PhantomData<&'a ()>,
}
impl<'a> ArgParams for ParsedArgParams<'a> {
type ID = &'a str;
type Operand = Operand<&'a str>;
type MovOperand = MovOperand<&'a str>;
}
pub struct Arg1<P: ArgParams> {
pub src: P::ID, // it is a jump destination, but in terms of operands it is a source operand
}
pub struct Arg2<P: ArgParams> {
pub dst: P::ID,
pub src: P::Operand,
}
pub struct Arg2St<P: ArgParams> {
pub src1: P::Operand,
pub src2: P::Operand,
}
pub struct Arg2Mov<P: ArgParams> {
pub dst: P::ID,
pub src: P::MovOperand,
}
pub struct Arg3<P: ArgParams> {
pub dst: P::ID,
pub src1: P::Operand,
pub src2: P::Operand,
}
pub struct Arg4<P: ArgParams> {
pub dst1: P::ID,
pub dst2: Option<P::ID>,
pub src1: P::Operand,
pub src2: P::Operand,
}
pub struct Arg5<P: ArgParams> {
pub dst1: P::ID,
pub dst2: Option<P::ID>,
pub src1: P::Operand,
pub src2: P::Operand,
pub src3: P::Operand,
}
#[derive(Copy, Clone)]
pub enum Operand<ID> {
Reg(ID),
RegOffset(ID, i32),
Imm(i128),
}
pub enum MovOperand<ID> {
Op(Operand<ID>),
Vec(String, String),
}
pub enum VectorPrefix {
V2,
V4,
}
pub struct LdData {
pub qualifier: LdStQualifier,
pub state_space: LdStateSpace,
pub caching: LdCacheOperator,
pub vector: Option<VectorPrefix>,
pub typ: ScalarType,
}
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum LdStQualifier {
Weak,
Volatile,
Relaxed(LdScope),
Acquire(LdScope),
}
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum LdScope {
Cta,
Gpu,
Sys,
}
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum LdStateSpace {
Generic,
Const,
Global,
Local,
Param,
Shared,
}
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum LdCacheOperator {
Cached,
L2Only,
Streaming,
LastUse,
Uncached,
}
pub struct MovData {
pub typ: Type,
}
pub enum MulDetails {
Int(MulIntDesc),
Float(MulFloatDesc),
}
pub struct MulIntDesc {
pub typ: IntType,
pub control: MulIntControl,
}
pub enum MulIntControl {
Low,
High,
Wide,
}
pub struct MulFloatDesc {
pub typ: FloatType,
pub rounding: Option<RoundingMode>,
pub flush_to_zero: bool,
pub saturate: bool,
}
#[derive(PartialEq, Eq, Copy, Clone)]
pub enum RoundingMode {
NearestEven,
Zero,
NegativeInf,
PositiveInf,
}
pub enum AddDetails {
Int(AddIntDesc),
Float(AddFloatDesc),
}
pub struct AddIntDesc {
pub typ: IntType,
pub saturate: bool,
}
pub struct AddFloatDesc {
pub typ: FloatType,
pub rounding: Option<RoundingMode>,
pub flush_to_zero: bool,
pub saturate: bool,
}
pub struct SetpData {
pub typ: ScalarType,
pub flush_to_zero: bool,
pub cmp_op: SetpCompareOp,
}
#[derive(PartialEq, Eq, Copy, Clone)]
pub enum SetpCompareOp {
Eq,
NotEq,
Less,
LessOrEq,
Greater,
GreaterOrEq,
NanEq,
NanNotEq,
NanLess,
NanLessOrEq,
NanGreater,
NanGreaterOrEq,
IsNotNan,
IsNan,
}
pub enum SetpBoolPostOp {
And,
Or,
Xor,
}
pub struct SetpBoolData {
pub typ: ScalarType,
pub flush_to_zero: bool,
pub cmp_op: SetpCompareOp,
pub bool_op: SetpBoolPostOp,
}
#[derive(PartialEq, Eq, Copy, Clone)]
pub enum NotType {
Pred,
B16,
B32,
B64,
}
pub struct BraData {
pub uniform: bool,
}
pub enum CvtDetails {
IntFromInt(CvtIntToIntDesc),
FloatFromFloat(CvtDesc<FloatType, FloatType>),
IntFromFloat(CvtDesc<IntType, FloatType>),
FloatFromInt(CvtDesc<FloatType, IntType>),
}
pub struct CvtIntToIntDesc {
pub dst: IntType,
pub src: IntType,
pub saturate: bool,
}
pub struct CvtDesc<Dst, Src> {
pub rounding: Option<RoundingMode>,
pub flush_to_zero: bool,
pub saturate: bool,
pub dst: Dst,
pub src: Src,
}
impl CvtDetails {
pub fn new_int_from_int_checked(
saturate: bool,
dst: IntType,
src: IntType,
err: &mut Vec<PtxError>,
) -> Self {
if saturate {
if src.is_signed() {
if dst.is_signed() && dst.width() >= src.width() {
err.push(PtxError::SyntaxError);
}
} else {
if dst == src || dst.width() >= src.width() {
err.push(PtxError::SyntaxError);
}
}
}
CvtDetails::IntFromInt(CvtIntToIntDesc { dst, src, saturate })
}
pub fn new_float_from_int_checked(
rounding: RoundingMode,
flush_to_zero: bool,
saturate: bool,
dst: FloatType,
src: IntType,
err: &mut Vec<PtxError>,
) -> Self {
if flush_to_zero && dst != FloatType::F32 {
err.push(PtxError::NonF32Ftz);
}
CvtDetails::FloatFromInt(CvtDesc {
dst,
src,
saturate,
flush_to_zero,
rounding: Some(rounding),
})
}
pub fn new_int_from_float_checked(
rounding: RoundingMode,
flush_to_zero: bool,
saturate: bool,
dst: IntType,
src: FloatType,
err: &mut Vec<PtxError>,
) -> Self {
if flush_to_zero && src != FloatType::F32 {
err.push(PtxError::NonF32Ftz);
}
CvtDetails::IntFromFloat(CvtDesc {
dst,
src,
saturate,
flush_to_zero,
rounding: Some(rounding),
})
}
}
#[derive(PartialEq, Eq, Copy, Clone)]
pub enum ShlType {
B16,
B32,
B64,
}
pub struct StData {
pub qualifier: LdStQualifier,
pub state_space: StStateSpace,
pub caching: StCacheOperator,
pub vector: Option<VectorPrefix>,
pub typ: ScalarType,
}
#[derive(PartialEq, Eq, Copy, Clone)]
pub enum StStateSpace {
Generic,
Global,
Local,
Param,
Shared,
}
#[derive(PartialEq, Eq)]
pub enum StCacheOperator {
Writeback,
L2Only,
Streaming,
Writethrough,
}
pub struct RetData {
pub uniform: bool,
}
|