ptx_parser/type/instruction/
lop3.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 Boolop {
19 And, Or, }
22
23 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
24 pub struct Lop3B32 {
25 pub b32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub immlut: GeneralOperand, pub span: Span,
32 }
33
34 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
35 pub struct Lop3BoolopB32 {
36 pub boolop: Boolop, pub b32: (), pub d: GeneralOperand, pub p: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub immlut: GeneralOperand, pub q: GeneralOperand, pub span: Span,
46 }
47}
48
49pub use section_0::Boolop as Boolop0;
52pub use section_0::Lop3B32;
53pub use section_0::Lop3BoolopB32;