FIRST INSTRUCTION WORKING
This commit is contained in:
@@ -1,7 +1,16 @@
|
|||||||
use once_cell::sync::Lazy;
|
use once_cell::sync::Lazy;
|
||||||
|
|
||||||
static INSTRUCTIONS: Lazy<[Option<OpcodeHandler>; 32]> = Lazy::new(|| {
|
mod gen_tools;
|
||||||
let mut instructions = std::array::from_fn(|_i| None);
|
mod opcodes;
|
||||||
|
mod rvi;
|
||||||
|
|
||||||
|
static INSTRUCTIONS: Lazy<[OpcodeHandler; 32]> = Lazy::new(|| {
|
||||||
|
let mut instructions = std::array::from_fn(|_i| OpcodeHandler {
|
||||||
|
handler: None,
|
||||||
|
splitter: None,
|
||||||
|
});
|
||||||
|
|
||||||
|
rvi::add_instrs(&mut instructions);
|
||||||
|
|
||||||
instructions
|
instructions
|
||||||
});
|
});
|
||||||
@@ -26,10 +35,7 @@ struct OpcodeHandler {
|
|||||||
|
|
||||||
pub fn find_runner(instruction: Instruction) -> Option<Runner> {
|
pub fn find_runner(instruction: Instruction) -> Option<Runner> {
|
||||||
let opcode_handler = &INSTRUCTIONS[instruction.opcode_noncompressed() as usize];
|
let opcode_handler = &INSTRUCTIONS[instruction.opcode_noncompressed() as usize];
|
||||||
match opcode_handler {
|
opcode_handler.find_runner(instruction)
|
||||||
Some(h) => h.find_runner(instruction),
|
|
||||||
None => None,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl OpcodeHandler {
|
impl OpcodeHandler {
|
||||||
@@ -43,16 +49,16 @@ impl OpcodeHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
enum Splitter {
|
enum Splitter {
|
||||||
Funct3Splitter(Box<[Option<OpcodeHandler>; 8]>),
|
Funct3Splitter(Box<[OpcodeHandler; 8]>),
|
||||||
GeneralSplitter(Box<[GeneralSplitterEntry]>),
|
GeneralSplitter(Box<[GeneralSplitterEntry]>),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Splitter {
|
impl Splitter {
|
||||||
fn find_runner(&self, instruction: Instruction) -> Option<Runner> {
|
fn find_runner(&self, instruction: Instruction) -> Option<Runner> {
|
||||||
match self {
|
match self {
|
||||||
Splitter::Funct3Splitter(f3s) => f3s[instruction.funct3() as usize]
|
Splitter::Funct3Splitter(f3s) => {
|
||||||
.as_ref()
|
f3s[instruction.funct3() as usize].find_runner(instruction)
|
||||||
.and_then(|h| h.find_runner(instruction)),
|
}
|
||||||
Splitter::GeneralSplitter(entries) => {
|
Splitter::GeneralSplitter(entries) => {
|
||||||
for entry in entries {
|
for entry in entries {
|
||||||
if instruction.0 & entry.mask == entry.value {
|
if instruction.0 & entry.mask == entry.value {
|
||||||
|
|||||||
22
src/instructions/gen_tools.rs
Normal file
22
src/instructions/gen_tools.rs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
use std::hint::unreachable_unchecked;
|
||||||
|
|
||||||
|
use crate::instructions::{OpcodeHandler, Splitter};
|
||||||
|
|
||||||
|
pub fn insert_funct3_splitter(splitter: &mut Option<Splitter>) -> &mut [OpcodeHandler; 8] {
|
||||||
|
match splitter {
|
||||||
|
Some(Splitter::Funct3Splitter(s)) => s.as_mut(),
|
||||||
|
Some(_) => panic!("Unexpected splitter variant"),
|
||||||
|
None => {
|
||||||
|
*splitter = Some(Splitter::Funct3Splitter(Box::new(std::array::from_fn(
|
||||||
|
|_i| OpcodeHandler {
|
||||||
|
handler: None,
|
||||||
|
splitter: None,
|
||||||
|
},
|
||||||
|
))));
|
||||||
|
match splitter {
|
||||||
|
Some(Splitter::Funct3Splitter(s)) => s.as_mut(),
|
||||||
|
_ => unsafe { unreachable_unchecked() },
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
6
src/instructions/opcodes.rs
Normal file
6
src/instructions/opcodes.rs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
//! Includes opcodes, funct3 values, and match/mask values.
|
||||||
|
//! Opcodes (unless compressed) have the last 2 bits stripped off as they are always 1s for non-compressed instructions.
|
||||||
|
|
||||||
|
pub(super) const OP_IMM: u8 = 0b00100;
|
||||||
|
|
||||||
|
pub(super) const FUNCT3_ADDI: u8 = 0x0;
|
||||||
28
src/instructions/rvi.rs
Normal file
28
src/instructions/rvi.rs
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
use crate::{
|
||||||
|
core::{Core, InstructionResult},
|
||||||
|
decode::Instruction,
|
||||||
|
instructions::{
|
||||||
|
OpcodeHandler,
|
||||||
|
gen_tools::insert_funct3_splitter,
|
||||||
|
opcodes::{FUNCT3_ADDI, OP_IMM},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
pub(super) fn add_instrs(list: &mut [OpcodeHandler; 32]) {
|
||||||
|
let funct3_split_op_imm = insert_funct3_splitter(&mut list[OP_IMM as usize].splitter);
|
||||||
|
funct3_split_op_imm[FUNCT3_ADDI as usize].handler =
|
||||||
|
Some(super::InstructionHandler { runner: addi });
|
||||||
|
}
|
||||||
|
|
||||||
|
fn addi(core: &mut Core, instr: Instruction) -> InstructionResult {
|
||||||
|
eprintln!("Running ADDI");
|
||||||
|
|
||||||
|
core.reg_write(
|
||||||
|
instr.rd(),
|
||||||
|
core.reg_read(instr.rs1()).wrapping_add(instr.imm_i()),
|
||||||
|
);
|
||||||
|
|
||||||
|
core.pc = core.pc.wrapping_add(4);
|
||||||
|
|
||||||
|
InstructionResult::Normal
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user