ptx_parser/type/instruction/
bfi.rs1#![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 Type {
18 B32, B64, }
21
22 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
23 pub struct BfiType {
24 pub type_: Type, pub f: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub d: GeneralOperand, pub span: Span,
31 }
32}
33
34pub use section_0::BfiType;
37pub use section_0::Type as Type0;