summaryrefslogtreecommitdiff
path: root/src/instructions/rvi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/instructions/rvi.rs')
-rw-r--r--src/instructions/rvi.rs26
1 files changed, 4 insertions, 22 deletions
diff --git a/src/instructions/rvi.rs b/src/instructions/rvi.rs
index 5597de4..feff85b 100644
--- a/src/instructions/rvi.rs
+++ b/src/instructions/rvi.rs
@@ -8,28 +8,10 @@ use crate::{
consts::{Addr, DWord},
core::{Core, InstructionResult},
decode::Instruction,
- instructions::{
- OpcodeHandler,
- gen_tools::insert_funct3_splitter,
- opcodes::{OP_IMM, OP_IMM_32, STORE},
- },
mem::PageNum,
};
-pub(super) fn add_instrs(list: &mut [OpcodeHandler; 32]) {
- let funct3_splitter = insert_funct3_splitter(&mut list[OP_IMM as usize].splitter); // OP-IMM
- funct3_splitter[0b000].handler = Some(super::InstructionHandler { runner: addi }); // ADDI
-
- let funct3_splitter = insert_funct3_splitter(&mut list[OP_IMM_32 as usize].splitter); // OP-IMM-32
- funct3_splitter[0b000].handler = Some(super::InstructionHandler { runner: addiw }); //ADDIW
-
- let funct3_splitter = insert_funct3_splitter(&mut list[STORE as usize].splitter); // STORE
- funct3_splitter[0b011].handler = Some(super::InstructionHandler { runner: sd }); // SD
-
- list[0b01101].handler = Some(super::InstructionHandler { runner: lui }); //LUI
-}
-
-fn addi(core: &mut Core, instr: Instruction) -> InstructionResult {
+pub(super) fn addi(core: &mut Core, instr: Instruction) -> InstructionResult {
core.reg_write(
instr.rd(),
core.reg_read(instr.rs1()).wrapping_add(instr.imm_i()),
@@ -40,7 +22,7 @@ fn addi(core: &mut Core, instr: Instruction) -> InstructionResult {
InstructionResult::Normal
}
-fn addiw(core: &mut Core, instr: Instruction) -> InstructionResult {
+pub(super) fn addiw(core: &mut Core, instr: Instruction) -> InstructionResult {
let res = core.reg_read(instr.rs1()).wrapping_add(instr.imm_i()) as i32;
core.reg_write(instr.rd(), res as i64 as u64);
@@ -51,7 +33,7 @@ fn addiw(core: &mut Core, instr: Instruction) -> InstructionResult {
}
// TODO: Support misaligned memory access
-fn sd(core: &mut Core, instr: Instruction) -> InstructionResult {
+pub(super) fn sd(core: &mut Core, instr: Instruction) -> InstructionResult {
let addr = core.reg_read(instr.rs1()).wrapping_add(instr.imm_s());
if !addr.is_multiple_of(std::mem::size_of::<DWord>() as Addr) {
@@ -71,7 +53,7 @@ fn sd(core: &mut Core, instr: Instruction) -> InstructionResult {
}
}
-fn lui(core: &mut Core, instr: Instruction) -> InstructionResult {
+pub(super) fn lui(core: &mut Core, instr: Instruction) -> InstructionResult {
core.reg_write(instr.rd(), instr.imm_u());
core.pc = core.pc.wrapping_add(4);
InstructionResult::Normal