// Copyright (c) 2025 taitep // SPDX-License-Identifier: MIT // // This file is part of TRVE (https://gitea.taitep.se/taitep/trve) // See LICENSE file in the project root for full license text. use crate::{ consts::{Addr, Byte, DWord, HWord, Word}, core::Core, exceptions::ExceptionType, instructions::Instruction, mem::PageNum, }; // TODO: Support misaligned memory access pub fn sd(core: &mut Core, instr: Instruction) -> Result<(), ExceptionType> { let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_s()); if !addr.is_multiple_of(std::mem::size_of::() as Addr) { return Err(ExceptionType::StoreAmoAddressMisaligned); } let page = (addr / 4096) as PageNum; let offset = (addr / 8 & ((4096 / 8 as Addr) - 1)) as u16; let value = core.reg_read(instr.rs2()); core.mem.write_dword(page, offset, value)?; core.advance_pc(); Ok(()) } pub fn ld(core: &mut Core, instr: Instruction) -> Result<(), ExceptionType> { let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_i()); if !addr.is_multiple_of(std::mem::size_of::() as Addr) { return Err(ExceptionType::LoadAddressMisaligned); } let page = (addr / 4096) as PageNum; let offset = (addr / 8 & ((4096 / 8 as Addr) - 1)) as u16; core.reg_write(instr.rd(), core.mem.read_dword(page, offset)?); core.advance_pc(); Ok(()) } pub fn sw(core: &mut Core, instr: Instruction) -> Result<(), ExceptionType> { let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_s()); if !addr.is_multiple_of(std::mem::size_of::() as Addr) { return Err(ExceptionType::StoreAmoAddressMisaligned); } let page = (addr / 4096) as PageNum; let offset = (addr / 4 & ((4096 / 4 as Addr) - 1)) as u16; let value = core.reg_read(instr.rs2()) as Word; core.mem.write_word(page, offset, value)?; core.advance_pc(); Ok(()) } pub fn lw(core: &mut Core, instr: Instruction) -> Result<(), ExceptionType> { let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_i()); if !addr.is_multiple_of(std::mem::size_of::() as Addr) { return Err(ExceptionType::LoadAddressMisaligned); } let page = (addr / 4096) as PageNum; let offset = (addr / 4 & ((4096 / 4 as Addr) - 1)) as u16; core.reg_write( instr.rd(), core.mem.read_word(page, offset)? as i32 as i64 as DWord, ); core.advance_pc(); Ok(()) } pub fn sh(core: &mut Core, instr: Instruction) -> Result<(), ExceptionType> { let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_s()); if !addr.is_multiple_of(std::mem::size_of::() as Addr) { return Err(ExceptionType::StoreAmoAddressMisaligned); } let page = (addr / 4096) as PageNum; let offset = (addr / 2 & ((4096 / 2 as Addr) - 1)) as u16; let value = core.reg_read(instr.rs2()) as HWord; core.mem.write_hword(page, offset, value)?; core.advance_pc(); Ok(()) } pub fn lh(core: &mut Core, instr: Instruction) -> Result<(), ExceptionType> { let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_i()); if !addr.is_multiple_of(std::mem::size_of::() as Addr) { return Err(ExceptionType::LoadAddressMisaligned); } let page = (addr / 4096) as PageNum; let offset = (addr / 2 & ((4096 / 2 as Addr) - 1)) as u16; core.reg_write( instr.rd(), core.mem.read_hword(page, offset)? as i16 as i64 as DWord, ); core.advance_pc(); Ok(()) } pub fn sb(core: &mut Core, instr: Instruction) -> Result<(), ExceptionType> { let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_s()); let page = (addr / 4096) as PageNum; let offset = (addr & (4096 as Addr - 1)) as u16; let value = core.reg_read(instr.rs2()) as Byte; core.mem.write_byte(page, offset, value)?; core.advance_pc(); Ok(()) } pub fn lb(core: &mut Core, instr: Instruction) -> Result<(), ExceptionType> { let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_i()); let page = (addr / 4096) as PageNum; let offset = (addr & (4096 as Addr - 1)) as u16; core.reg_write( instr.rd(), core.mem.read_byte(page, offset)? as i8 as i64 as DWord, ); core.advance_pc(); Ok(()) } pub fn lbu(core: &mut Core, instr: Instruction) -> Result<(), ExceptionType> { let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_i()); let page = (addr / 4096) as PageNum; let offset = (addr & (4096 as Addr - 1)) as u16; core.reg_write(instr.rd(), core.mem.read_byte(page, offset)? as DWord); core.advance_pc(); Ok(()) }