ptx_parser/type/instruction/
dp2a.rs1#![allow(unused)]
8use crate::r#type::common::*;
9
10pub mod section_0 {
11 use crate::Spanned;
12 use crate::parser::Span;
13 use crate::r#type::common::*;
14
15 use serde::Serialize;
16
17 #[derive(Debug, Clone, PartialEq, Serialize)]
18 pub enum Mode {
19 Lo, Hi, }
22
23 #[derive(Debug, Clone, PartialEq, Serialize)]
24 pub enum Atype {
25 U32, S32, }
28
29 #[derive(Debug, Clone, PartialEq, Serialize)]
30 pub enum Btype {
31 U32, S32, }
34
35 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
36 pub struct Dp2aModeAtypeBtype {
37 pub mode: Mode, pub atype: Atype, pub btype: Btype, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
45 }
46}
47
48pub use section_0::Atype as Atype0;
51pub use section_0::Btype as Btype0;
52pub use section_0::Dp2aModeAtypeBtype;
53pub use section_0::Mode as Mode0;