armagnac 0.3.0

A simple ARM emulation library for simulating embedded systems
Documentation
//! Implements STRBT (Store Register Byte Unprivileged) instruction.

use super::Encoding;
use crate::{
    core::{
        ArmVersion::{V7EM, V7M, V8M},
        Effect, ItState, Processor, RunError,
    },
    decoder::DecodeError,
    instructions::{
        indexing_args, undefined, unpredictable, DecodeHelper, Encoding::T1, Instruction, Pattern,
    },
    registers::RegisterIndex,
};

/// STRBT instruction.
///
/// Store Register Byte Unprivileged.
pub struct Strbt {
    /// Source register.
    rt: RegisterIndex,
    /// Base register.
    rn: RegisterIndex,
    /// Offset to be added to Rn.
    imm32: u32,
}

impl Instruction for Strbt {
    fn patterns() -> &'static [Pattern] {
        &[Pattern {
            encoding: T1,
            versions: &[V7M, V7EM, V8M],
            expression: "111110000000xxxxxxxx1110xxxxxxxx",
        }]
    }

    fn try_decode(encoding: Encoding, ins: u32, _state: ItState) -> Result<Self, DecodeError> {
        debug_assert_eq!(encoding, T1);
        let rt = ins.reg4(12);
        let rn = ins.reg4(16);
        undefined(rn.is_pc())?;
        unpredictable(rt.is_sp_or_pc())?;
        Ok(Self {
            rt,
            rn,
            imm32: ins.imm8(0),
        })
    }

    fn execute(&self, proc: &mut Processor) -> Result<Effect, RunError> {
        let address = proc[self.rn].wrapping_add(self.imm32);
        let value = proc[self.rt] as u8;
        proc.write_u8_with_priv(address, value, false)?;
        Ok(Effect::None)
    }

    fn name(&self) -> String {
        "strbt".into()
    }

    fn args(&self, _pc: u32) -> String {
        format!(
            "{}, {}",
            self.rt,
            indexing_args(self.rn, self.imm32, false, true, true, false)
        )
    }
}