#![allow(unused)]
use crate::r#type::common::*;
pub mod section_0 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
use serde::Serialize;
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Type {
U16x2, S16x2, U16, U32, U64, S16, S32, S64, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddType {
pub type_: Type, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddSatS32 {
pub sat: bool, pub s32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
}
pub mod section_1 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
use serde::Serialize;
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Rnd {
Rn, Rz, Rm, Rp, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddRndFtzSatF32 {
pub rnd: Option<Rnd>, pub ftz: bool, pub sat: bool, pub f32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddRndFtzF32x2 {
pub rnd: Option<Rnd>, pub ftz: bool, pub f32x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddRndF64 {
pub rnd: Option<Rnd>, pub f64: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
}
pub mod section_2 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
use serde::Serialize;
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Rnd {
Rn, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddRndFtzSatF16 {
pub rnd: Option<Rnd>, pub ftz: bool, pub sat: bool, pub f16: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddRndFtzSatF16x2 {
pub rnd: Option<Rnd>, pub ftz: bool, pub sat: bool, pub f16x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddRndBf16 {
pub rnd: Option<Rnd>, pub bf16: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddRndBf16x2 {
pub rnd: Option<Rnd>, pub bf16x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
}
pub mod section_3 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
use serde::Serialize;
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Rnd {
Rn, Rz, Rm, Rp, }
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Atype {
Bf16, F16, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AddRndSatF32Atype {
pub rnd: Option<Rnd>, pub sat: bool, pub f32: (), pub atype: Atype, pub d: GeneralOperand, pub a: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
}
pub use section_0::AddSatS32;
pub use section_0::AddType;
pub use section_0::Type as Type0;
pub use section_1::AddRndF64;
pub use section_1::AddRndFtzF32x2;
pub use section_1::AddRndFtzSatF32;
pub use section_1::Rnd as Rnd1;
pub use section_2::AddRndBf16;
pub use section_2::AddRndBf16x2;
pub use section_2::AddRndFtzSatF16;
pub use section_2::AddRndFtzSatF16x2;
pub use section_2::Rnd as Rnd2;
pub use section_3::AddRndSatF32Atype;
pub use section_3::Atype as Atype3;
pub use section_3::Rnd as Rnd3;