ab-riscv-interpreter 0.0.4

Composable and generic RISC-V interpreter
Documentation
//! RV64 Zbc extension

pub mod rv64_zbc_helpers;
#[cfg(test)]
mod tests;

use crate::{ExecutableInstruction, ExecutionError, RegisterFile};
use ab_riscv_macros::instruction_execution;
use ab_riscv_primitives::prelude::*;
use core::ops::ControlFlow;

#[instruction_execution]
impl<Reg, Regs, ExtState, Memory, PC, InstructionHandler, CustomError>
    ExecutableInstruction<Regs, ExtState, Memory, PC, InstructionHandler, CustomError>
    for Rv64ZbcInstruction<Reg>
where
    Reg: Register<Type = u64>,
    Regs: RegisterFile<Reg>,
{
    #[inline(always)]
    fn execute(
        self,
        regs: &mut Regs,
        _ext_state: &mut ExtState,
        _memory: &mut Memory,
        _program_counter: &mut PC,
        _system_instruction_handler: &mut InstructionHandler,
    ) -> Result<ControlFlow<()>, ExecutionError<Reg::Type, CustomError>> {
        match self {
            Self::Clmul { rd, rs1, rs2 } => {
                let a = regs.read(rs1);
                let b = regs.read(rs2);

                regs.write(rd, rv64_zbc_helpers::clmul(a, b));
            }
            Self::Clmulh { rd, rs1, rs2 } => {
                let a = regs.read(rs1);
                let b = regs.read(rs2);

                regs.write(rd, rv64_zbc_helpers::clmulh(a, b));
            }
            Self::Clmulr { rd, rs1, rs2 } => {
                let a = regs.read(rs1);
                let b = regs.read(rs2);

                regs.write(rd, rv64_zbc_helpers::clmulr(a, b));
            }
        }

        Ok(ControlFlow::Continue(()))
    }
}