ptx_parser/type/instruction/
shfl.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 Mode {
18 Down, Bfly, Idx, Up, }
23
24 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
25 pub struct ShflModeB32 {
26 pub mode: Mode, pub b32: (), pub d: GeneralOperand, pub p: Option<GeneralOperand>, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
34 }
35}
36
37pub use section_0::Mode as Mode0;
40pub use section_0::ShflModeB32;