ptx_parser/type/instruction/
madc.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 Hilo {
19 Hi, Lo, }
22
23 #[derive(Debug, Clone, PartialEq, Serialize)]
24 pub enum Type {
25 U32, S32, U64, S64, }
30
31 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
32 pub struct MadcHiloCcType {
33 pub hilo: Hilo, pub cc: bool, pub type_: Type, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
41 }
42}
43
44pub use section_0::Hilo as Hilo0;
47pub use section_0::MadcHiloCcType;
48pub use section_0::Type as Type0;