remove naive interpreter

This commit is contained in:
nora 2022-04-12 20:21:54 +02:00
parent 2d854539aa
commit 66bd69e674
5 changed files with 73 additions and 28 deletions

View file

@ -0,0 +1,59 @@
use crate::opts::IrInstr;
use std::io::{Read, Write};
use std::num::Wrapping;
const MEM_SIZE: usize = 32_000;
type Memory = [Wrapping<u8>; MEM_SIZE];
pub fn run(instrs: &[IrInstr<'_>]) {
let mut mem = [Wrapping(0u8); MEM_SIZE];
let mut ptr = 0;
execute(&mut mem, &mut ptr, instrs);
}
fn execute(mem: &mut Memory, ptr: &mut usize, instrs: &[IrInstr<'_>]) {
for instr in instrs {
match instr {
IrInstr::Add(n) => {
mem[*ptr] += n;
}
IrInstr::Sub(n) => {
mem[*ptr] -= n;
}
IrInstr::Right(n) => {
*ptr += n;
if *ptr >= MEM_SIZE {
*ptr = 0;
}
}
IrInstr::Left(n) => {
if *ptr < *n {
let diff = *n - *ptr;
*ptr = MEM_SIZE - 1 - diff;
} else {
*ptr -= n;
}
}
IrInstr::Out => {
let char = mem[*ptr].0 as char;
print!("{char}");
std::io::stdout().flush().unwrap();
}
IrInstr::In => {
let mut buf = [0; 1];
std::io::stdin().read_exact(&mut buf).unwrap();
mem[*ptr] = Wrapping(buf[0]);
}
IrInstr::Loop(body) => {
while mem[*ptr] != Wrapping(0) {
execute(mem, ptr, body);
}
}
IrInstr::SetNull => {
mem[*ptr] = Wrapping(0);
}
}
}
}