Skip to main content

ptx_parser/type/instruction/
discard.rs

1//! Original PTX specification:
2//!
3//! discard{.global}.level  [a], size;
4//! .level = { .L2 };
5
6#![allow(unused)]
7use crate::r#type::common::*;
8
9pub mod section_0 {
10    use crate::Spanned;
11    use crate::parser::Span;
12    use crate::r#type::common::*;
13
14    use serde::Serialize;
15
16    #[derive(Debug, Clone, PartialEq, Serialize)]
17    pub enum Level {
18        L2, // .L2
19    }
20
21    #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
22    pub struct DiscardGlobalLevel {
23        pub global: bool,         // {.global}
24        pub level: Level,         // .level
25        pub a: AddressOperand,    // [a]
26        pub size: GeneralOperand, // size
27        pub span: Span,
28    }
29}
30
31// Re-export types with section suffixes to avoid naming conflicts
32// e.g., Type0 for section_0::Type, Type1 for section_1::Type
33pub use section_0::DiscardGlobalLevel;
34pub use section_0::Level as Level0;