2024-05-15 07:36:38 -05:00
|
|
|
#![feature(iter_next_chunk)]
|
|
|
|
|
2024-09-20 01:20:48 -05:00
|
|
|
use std::{collections::HashSet, fmt::Write};
|
|
|
|
|
2024-05-15 07:36:38 -05:00
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
|
|
println!("cargo:rerun-if-changed=instructions.in");
|
|
|
|
|
|
|
|
let mut generated = String::new();
|
2024-09-20 01:20:48 -05:00
|
|
|
gen_instrs(&mut generated)?;
|
|
|
|
std::fs::write("src/instrs.rs", generated)?;
|
2024-05-15 07:36:38 -05:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2024-09-20 01:20:48 -05:00
|
|
|
fn gen_instrs(generated: &mut String) -> Result<(), Box<dyn std::error::Error>> {
|
2024-10-27 07:57:00 -05:00
|
|
|
writeln!(generated, "#![expect(dead_code)]")?;
|
2024-05-15 07:36:38 -05:00
|
|
|
writeln!(generated, "use crate::*;")?;
|
2024-09-20 01:20:48 -05:00
|
|
|
|
|
|
|
'_opcode_structs: {
|
|
|
|
let mut seen = HashSet::new();
|
|
|
|
for [.., args, _] in instructions() {
|
|
|
|
if !seen.insert(args) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
writeln!(generated, "#[derive(Clone, Copy, Debug)]")?;
|
|
|
|
writeln!(generated, "#[repr(packed)]")?;
|
|
|
|
write!(generated, "pub struct Ops{args}(")?;
|
|
|
|
let mut first = true;
|
|
|
|
for ch in args.chars().filter(|&ch| ch != 'N') {
|
|
|
|
if !std::mem::take(&mut first) {
|
|
|
|
write!(generated, ",")?;
|
|
|
|
}
|
|
|
|
write!(generated, "pub Op{ch}")?;
|
|
|
|
}
|
|
|
|
writeln!(generated, ");")?;
|
|
|
|
writeln!(generated, "unsafe impl BytecodeItem for Ops{args} {{}}")?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
'_max_size: {
|
|
|
|
let max = instructions()
|
|
|
|
.map(
|
|
|
|
|[_, _, ty, _]| {
|
|
|
|
if ty == "N" {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
iter_args(ty).map(arg_to_width).sum::<usize>() + 1
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.max()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
writeln!(generated, "pub const MAX_SIZE: usize = {max};")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
'_encoders: {
|
|
|
|
for [op, name, ty, doc] in instructions() {
|
|
|
|
writeln!(generated, "/// {}", doc.trim_matches('"'))?;
|
|
|
|
let name = name.to_lowercase();
|
|
|
|
let args = comma_sep(
|
|
|
|
iter_args(ty)
|
|
|
|
.enumerate()
|
|
|
|
.map(|(i, c)| format!("{}{i}: {}", arg_to_name(c), arg_to_type(c))),
|
|
|
|
);
|
|
|
|
writeln!(generated, "pub fn {name}({args}) -> (usize, [u8; MAX_SIZE]) {{")?;
|
|
|
|
let arg_names =
|
|
|
|
comma_sep(iter_args(ty).enumerate().map(|(i, c)| format!("{}{i}", arg_to_name(c))));
|
|
|
|
writeln!(generated, " unsafe {{ crate::encode({ty}({op}, {arg_names})) }}")?;
|
|
|
|
writeln!(generated, "}}")?;
|
2024-05-15 07:36:38 -05:00
|
|
|
}
|
2024-09-20 01:20:48 -05:00
|
|
|
}
|
2024-05-15 07:36:38 -05:00
|
|
|
|
2024-09-20 01:20:48 -05:00
|
|
|
'_structs: {
|
|
|
|
let mut seen = std::collections::HashSet::new();
|
|
|
|
for [_, _, ty, _] in instructions() {
|
|
|
|
if !seen.insert(ty) {
|
|
|
|
continue;
|
2024-05-15 07:36:38 -05:00
|
|
|
}
|
2024-09-20 01:20:48 -05:00
|
|
|
let types = comma_sep(iter_args(ty).map(arg_to_type).map(|s| s.to_string()));
|
|
|
|
writeln!(generated, "#[repr(packed)] pub struct {ty}(u8, {types});")?;
|
2024-05-15 07:36:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-20 01:20:48 -05:00
|
|
|
'_name_list: {
|
2024-09-28 14:56:39 -05:00
|
|
|
writeln!(generated, "pub const COUNT: u8 = {};", instructions().count())?;
|
2024-09-20 01:20:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let instr = "Instr";
|
|
|
|
let oper = "Oper";
|
|
|
|
|
|
|
|
'_instr_enum: {
|
|
|
|
writeln!(generated, "#[derive(Debug, Clone, Copy, PartialEq, Eq)] #[repr(u8)]")?;
|
|
|
|
writeln!(generated, "pub enum {instr} {{")?;
|
|
|
|
for [id, name, ..] in instructions() {
|
|
|
|
writeln!(generated, " {name} = {id},")?;
|
|
|
|
}
|
|
|
|
writeln!(generated, "}}")?;
|
|
|
|
}
|
2024-05-15 07:36:38 -05:00
|
|
|
|
2024-09-20 01:20:48 -05:00
|
|
|
'_arg_kind: {
|
|
|
|
writeln!(generated, "#[derive(Debug, Clone, Copy, PartialEq, Eq)]")?;
|
|
|
|
writeln!(generated, "pub enum {oper} {{")?;
|
|
|
|
let mut seen = HashSet::new();
|
|
|
|
for ty in instructions().flat_map(|[.., ty, _]| iter_args(ty)) {
|
|
|
|
if !seen.insert(ty) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
writeln!(generated, " {ty}({}),", arg_to_type(ty))?;
|
|
|
|
}
|
|
|
|
writeln!(generated, "}}")?;
|
2024-05-15 07:36:38 -05:00
|
|
|
}
|
2024-09-20 01:20:48 -05:00
|
|
|
|
|
|
|
'_parse_opers: {
|
|
|
|
writeln!(
|
|
|
|
generated,
|
|
|
|
"/// This assumes the instruction byte is still at the beginning of the buffer"
|
|
|
|
)?;
|
|
|
|
writeln!(generated, "#[cfg(feature = \"disasm\")]")?;
|
2024-09-30 12:09:17 -05:00
|
|
|
writeln!(generated, "pub fn parse_args(bytes: &mut &[u8], kind: {instr}, buf: &mut alloc::vec::Vec<{oper}>) -> Option<()> {{")?;
|
2024-09-20 01:20:48 -05:00
|
|
|
writeln!(generated, " match kind {{")?;
|
|
|
|
let mut instrs = instructions().collect::<Vec<_>>();
|
|
|
|
instrs.sort_unstable_by_key(|&[.., ty, _]| ty);
|
|
|
|
for group in instrs.chunk_by(|[.., a, _], [.., b, _]| a == b) {
|
|
|
|
let ty = group[0][2];
|
|
|
|
for &[_, name, ..] in group {
|
|
|
|
writeln!(generated, " | {instr}::{name}")?;
|
|
|
|
}
|
|
|
|
generated.pop();
|
|
|
|
writeln!(generated, " => {{")?;
|
|
|
|
if iter_args(ty).count() != 0 {
|
|
|
|
writeln!(generated, " let data = crate::decode::<{ty}>(bytes)?;")?;
|
|
|
|
writeln!(
|
|
|
|
generated,
|
|
|
|
" buf.extend([{}]);",
|
|
|
|
comma_sep(
|
|
|
|
iter_args(ty).zip(1u32..).map(|(t, i)| format!("{oper}::{t}(data.{i})"))
|
|
|
|
)
|
|
|
|
)?;
|
|
|
|
} else {
|
|
|
|
writeln!(generated, " crate::decode::<{ty}>(bytes)?;")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
writeln!(generated, " }}")?;
|
|
|
|
}
|
|
|
|
writeln!(generated, " }}")?;
|
|
|
|
writeln!(generated, " Some(())")?;
|
|
|
|
writeln!(generated, "}}")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::fs::write("src/instrs.rs", generated)?;
|
2024-05-15 07:36:38 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2024-09-20 01:20:48 -05:00
|
|
|
fn comma_sep(items: impl Iterator<Item = String>) -> String {
|
|
|
|
items.map(|item| item.to_string()).collect::<Vec<_>>().join(", ")
|
|
|
|
}
|
|
|
|
|
2024-05-15 07:36:38 -05:00
|
|
|
fn instructions() -> impl Iterator<Item = [&'static str; 4]> {
|
2024-10-10 08:48:08 -05:00
|
|
|
include_str!("instructions.in")
|
2024-05-15 07:36:38 -05:00
|
|
|
.lines()
|
2024-09-20 01:20:48 -05:00
|
|
|
.filter_map(|line| line.strip_suffix(';'))
|
2024-05-15 07:36:38 -05:00
|
|
|
.map(|line| line.splitn(4, ',').map(str::trim).next_chunk().unwrap())
|
|
|
|
}
|
2024-09-20 01:20:48 -05:00
|
|
|
|
|
|
|
fn arg_to_type(arg: char) -> &'static str {
|
|
|
|
match arg {
|
|
|
|
'R' | 'B' => "u8",
|
|
|
|
'H' => "u16",
|
|
|
|
'W' => "u32",
|
|
|
|
'D' | 'A' => "u64",
|
|
|
|
'P' => "i16",
|
|
|
|
'O' => "i32",
|
|
|
|
_ => panic!("unknown type: {}", arg),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn arg_to_width(arg: char) -> usize {
|
|
|
|
match arg {
|
|
|
|
'R' | 'B' => 1,
|
|
|
|
'H' => 2,
|
|
|
|
'W' => 4,
|
|
|
|
'D' | 'A' => 8,
|
|
|
|
'P' => 2,
|
|
|
|
'O' => 4,
|
|
|
|
_ => panic!("unknown type: {}", arg),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn arg_to_name(arg: char) -> &'static str {
|
|
|
|
match arg {
|
|
|
|
'R' => "reg",
|
|
|
|
'B' | 'H' | 'W' | 'D' => "imm",
|
|
|
|
'P' | 'O' => "offset",
|
|
|
|
'A' => "addr",
|
|
|
|
_ => panic!("unknown type: {}", arg),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn iter_args(ty: &'static str) -> impl Iterator<Item = char> {
|
|
|
|
ty.chars().filter(|c| *c != 'N')
|
|
|
|
}
|