1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
use crate::spirv;
/// Grammar for a SPIR-V instruction.
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct Instruction<'a> {
/// Opname.
pub opname: &'a str,
/// Opcode.
pub opcode: spirv::Op,
/// Capabilities required for this instruction.
pub capabilities: &'a [spirv::Capability],
/// Extensions required for this instruction.
pub extensions: &'a [&'a str],
/// Logical operands for this instruction.
///
/// This includes result type id and result id.
pub operands: &'a [LogicalOperand],
}
/// Grammar for an extended instruction.
pub struct ExtendedInstruction<'a> {
/// OpName.
pub opname: &'a str,
/// Opcode.
pub opcode: spirv::Word,
/// Capabilities required for this instruction.
pub capabilities: &'a [spirv::Capability],
/// Extensions required for this instruction.
pub extensions: &'a [&'a str],
/// Logical operands for this instruction.
pub operands: &'a [LogicalOperand],
}
/// Grammar for a SPIR-V logical operand.
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
pub struct LogicalOperand {
/// The kind of this logical operand.
pub kind: OperandKind,
/// The repeat specification for this logical operand.
pub quantifier: OperandQuantifier,
}
/// The repeat specification for a SPIR-V logical operand.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum OperandQuantifier {
/// This operand appears exactly one time.
One,
/// This operand can appear zero or one time.
ZeroOrOne,
/// This operand can appear zero or more times.
ZeroOrMore,
}
/// Declares the grammar for an SPIR-V instruction.
macro_rules! inst {
($op:ident, [$( $cap:ident ),*], [$( $ext:expr ),*], [$( ($kind:ident, $quant:ident) ),*]) => {
Instruction {
opname: stringify!($op),
opcode: spirv::Op::$op,
capabilities: &[
$( spirv::Capability::$cap ),*
],
extensions: &[
$( $ext ),*
],
operands: &[
$( LogicalOperand {
kind: OperandKind::$kind,
quantifier: OperandQuantifier::$quant }
),*
],
}
}
}
/// Declares the grammar for an extended instruction instruction.
macro_rules! ext_inst {
($opname:ident, $opcode: expr, [$( $cap:ident ),*], [$( $ext:expr ),*],
[$( ($kind:ident, $quant:ident) ),*]) => {
ExtendedInstruction {
opname: stringify!($opname),
opcode: $opcode,
capabilities: &[
$( spirv::Capability::$cap ),*
],
extensions: &[
$( $ext ),*
],
operands: &[
$( LogicalOperand {
kind: OperandKind::$kind,
quantifier: OperandQuantifier::$quant }
),*
],
}
}
}
/// The table for all SPIR-V core instructions.
///
/// This table is staic data stored in the library.
pub struct CoreInstructionTable;
impl CoreInstructionTable {
/// Looks up the given `opcode` in the instruction table and returns
/// a reference to the instruction grammar entry if found.
pub fn lookup_opcode(opcode: u16) -> Option<&'static Instruction<'static>> {
INSTRUCTION_TABLE
.iter()
.find(|inst| (inst.opcode as u16) == opcode)
}
/// Returns a reference to the instruction grammar entry with the given
/// `opcode`.
pub fn get(opcode: spirv::Op) -> &'static Instruction<'static> {
INSTRUCTION_TABLE
.iter()
.find(|inst| (inst.opcode == opcode))
.expect("internal error")
}
pub fn iter() -> impl Iterator<Item = &'static Instruction<'static>> {
INSTRUCTION_TABLE.iter()
}
}
include!("autogen_table.rs");
/// The table for all `GLSLstd450` extended instructions.
///
/// This table is staic data stored in the library.
pub struct GlslStd450InstructionTable;
impl GlslStd450InstructionTable {
/// Looks up the given `opcode` in the instruction table and returns
/// a reference to the instruction grammar entry if found.
pub fn lookup_opcode(opcode: u32) -> Option<&'static ExtendedInstruction<'static>> {
GLSL_STD_450_INSTRUCTION_TABLE
.iter()
.find(|inst| inst.opcode == opcode)
}
/// Returns a reference to the instruction grammar entry with the given
/// `opcode`.
pub fn get(opcode: spirv::GLOp) -> &'static ExtendedInstruction<'static> {
GLSL_STD_450_INSTRUCTION_TABLE
.iter()
.find(|inst| (inst.opcode == opcode as spirv::Word))
.expect("internal error")
}
pub fn iter() -> impl Iterator<Item = &'static ExtendedInstruction<'static>> {
GLSL_STD_450_INSTRUCTION_TABLE.iter()
}
}
include!("autogen_glsl_std_450.rs");
/// The table for all `OpenCLstd100` extended instructions.
///
/// This table is staic data stored in the library.
#[allow(clippy::upper_case_acronyms)]
pub struct OpenCLStd100InstructionTable;
impl OpenCLStd100InstructionTable {
/// Looks up the given `opcode` in the instruction table and returns
/// a reference to the instruction grammar entry if found.
pub fn lookup_opcode(opcode: u32) -> Option<&'static ExtendedInstruction<'static>> {
OPENCL_STD_100_INSTRUCTION_TABLE
.iter()
.find(|inst| inst.opcode == opcode)
}
/// Returns a reference to the instruction grammar entry with the given
/// `opcode`.
pub fn get(opcode: spirv::CLOp) -> &'static ExtendedInstruction<'static> {
OPENCL_STD_100_INSTRUCTION_TABLE
.iter()
.find(|inst| (inst.opcode == opcode as spirv::Word))
.expect("internal error")
}
pub fn iter() -> impl Iterator<Item = &'static ExtendedInstruction<'static>> {
OPENCL_STD_100_INSTRUCTION_TABLE.iter()
}
}
include!("autogen_opencl_std_100.rs");