use std::collections::HashMap;
use super::chunk::{Chunk, FunctionDef};
use super::instruction::Instruction;
use super::opcode::Opcode;
use super::value::Value;
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub struct Label(u32);
pub struct ChunkBuilder {
name: String,
constants: Vec<Value>,
code: Vec<Instruction>,
functions: Vec<FunctionDef>,
next_label: u32,
label_targets: HashMap<Label, u32>,
pending_jumps: Vec<(usize, Label)>,
fn_starts: HashMap<String, u32>,
}
impl ChunkBuilder {
pub fn new(name: impl Into<String>) -> Self {
ChunkBuilder {
name: name.into(),
constants: Vec::new(),
code: Vec::new(),
functions: Vec::new(),
next_label: 0,
label_targets: HashMap::new(),
pending_jumps: Vec::new(),
fn_starts: HashMap::new(),
}
}
pub fn const_(&mut self, v: Value) -> u32 {
if let Some(pos) = self.constants.iter().position(|c| c == &v) {
return pos as u32;
}
self.constants.push(v);
(self.constants.len() - 1) as u32
}
pub fn new_label(&mut self) -> Label {
let l = Label(self.next_label);
self.next_label += 1;
l
}
pub fn bind_label(&mut self, label: Label) {
self.label_targets.insert(label, self.code.len() as u32);
}
fn emit(&mut self, instr: Instruction) -> usize {
self.code.push(instr);
self.code.len() - 1
}
pub fn emit_halt(&mut self) {
self.emit(Instruction::nullary(Opcode::Halt));
}
pub fn emit_load_const(&mut self, dst: u8, konst: u32) {
self.emit(Instruction::new(Opcode::LoadConst, dst, 0, 0, konst as i32));
}
pub fn emit_load_imm(&mut self, dst: u8, imm: i32) {
self.emit(Instruction::a_imm(Opcode::LoadImm, dst, imm));
}
pub fn emit_move(&mut self, dst: u8, src: u8) {
self.emit(Instruction::abc(Opcode::Move, dst, src, 0));
}
pub fn emit_binop(&mut self, op: Opcode, dst: u8, lhs: u8, rhs: u8) {
debug_assert!(matches!(
op,
Opcode::Add | Opcode::Sub | Opcode::Mul | Opcode::Div | Opcode::Mod
| Opcode::Eq | Opcode::Lt | Opcode::Le
));
self.emit(Instruction::abc(op, dst, lhs, rhs));
}
pub fn emit_neg(&mut self, dst: u8, src: u8) {
self.emit(Instruction::abc(Opcode::Neg, dst, src, 0));
}
pub fn emit_jump(&mut self, target: Label) {
let idx = self.emit(Instruction::only_imm(Opcode::Jump, 0));
self.pending_jumps.push((idx, target));
}
pub fn emit_branch(&mut self, cond: u8, target: Label) {
let idx = self.emit(Instruction::a_imm(Opcode::Branch, cond, 0));
self.pending_jumps.push((idx, target));
}
pub fn emit_spawn(&mut self, dst: u8, function: u32, argc: u8) {
self.emit(Instruction::new(Opcode::Spawn, dst, argc, 0, function as i32));
}
pub fn emit_yield(&mut self) {
self.emit(Instruction::nullary(Opcode::Yield));
}
pub fn emit_sleep(&mut self, millis_reg: u8) {
self.emit(Instruction::abc(Opcode::Sleep, millis_reg, 0, 0));
}
pub fn emit_exit(&mut self, reg: u8) {
self.emit(Instruction::abc(Opcode::Exit, reg, 0, 0));
}
pub fn emit_self_pid(&mut self, dst: u8) {
self.emit(Instruction::abc(Opcode::SelfPid, dst, 0, 0));
}
pub fn emit_send(&mut self, target_cap_reg: u8, msg_reg: u8) {
self.emit(Instruction::abc(Opcode::Send, target_cap_reg, msg_reg, 0));
}
pub fn emit_receive(&mut self, dst: u8) {
self.emit(Instruction::abc(Opcode::Receive, dst, 0, 0));
}
pub fn emit_receive_timeout(&mut self, dst: u8, millis_reg: u8) {
self.emit(Instruction::abc(Opcode::ReceiveTimeout, dst, millis_reg, 0));
}
pub fn emit_receive_match(&mut self, dst: u8, tag_reg: u8) {
self.emit(Instruction::abc(Opcode::ReceiveMatch, dst, tag_reg, 0));
}
pub fn emit_receive_match_imm(&mut self, dst: u8, tag: u16) {
self.emit(Instruction::a_imm(Opcode::ReceiveMatchImm, dst, i32::from(tag)));
}
pub fn emit_ask(&mut self, dest: u8, target_cap_reg: u8, msg_reg: u8) {
self.emit(Instruction::abc(Opcode::Ask, dest, target_cap_reg, msg_reg));
}
pub fn emit_trap(&mut self, code: i32) {
self.emit(Instruction::only_imm(Opcode::Trap, code));
}
pub fn emit_call(&mut self, dst: u8, function: u32, argc: u8) {
self.emit(Instruction::new(Opcode::Call, dst, argc, 0, function as i32));
}
pub fn emit_call_native(&mut self, dst: u8, native_index: u32, argc: u8) {
self.emit(Instruction::new(
Opcode::CallNative,
dst,
argc,
0,
native_index as i32,
));
}
pub fn emit_native1_from(&mut self, dst: u8, src: u8, native_index: u32) {
self.emit_move(dst, src);
self.emit_call_native(dst, native_index, 1);
}
pub fn emit_native_n(&mut self, base: u8, native_index: u32, argc: u8) {
self.emit_call_native(base, native_index, argc);
}
pub fn emit_return(&mut self, reg: u8) {
self.emit(Instruction::abc(Opcode::Return, reg, 0, 0));
}
pub fn begin_function(&mut self, name: impl Into<String>, arity: u8, num_registers: u8) -> u32 {
let name = name.into();
let entry = self.code.len() as u32;
let idx = self.functions.len() as u32;
self.functions.push(FunctionDef {
name: name.clone(),
entry,
arity,
num_registers,
});
self.fn_starts.insert(name, idx);
idx
}
pub fn function_index(&self, name: &str) -> Option<u32> {
self.fn_starts.get(name).copied()
}
pub fn set_num_registers(&mut self, function_index: u32, num_registers: u8) {
if let Some(def) = self.functions.get_mut(function_index as usize) {
def.num_registers = num_registers;
}
}
pub fn finish(mut self) -> Chunk {
for (idx, label) in self.pending_jumps.drain(..) {
let target = match self.label_targets.get(&label) {
Some(t) => *t,
None => panic!(
"byteflow-bytecode: unbound label {label:?} in chunk '{}'",
self.name
),
};
let offset = target as i64 - (idx as i64 + 1);
self.code[idx].imm = offset as i32;
}
Chunk {
name: self.name,
constants: self.constants,
code: self.code,
functions: self.functions,
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn emit_native1_from_never_clobbers_source_register() {
let mut b = ChunkBuilder::new("clobber-test");
b.begin_function("main", 0, 8);
b.emit_native1_from(1, 0, 10);
b.emit_native1_from(2, 0, 11);
b.emit_native1_from(3, 0, 12);
let chunk = b.finish();
assert_eq!(chunk.code.len(), 6);
for (move_idx, call_idx, expected_native) in
[(0usize, 1usize, 10i32), (2, 3, 11), (4, 5, 12)]
{
assert_eq!(chunk.code[move_idx].op, Opcode::Move);
assert_eq!(chunk.code[move_idx].b, 0);
assert_eq!(chunk.code[call_idx].op, Opcode::CallNative);
assert_ne!(chunk.code[call_idx].a, 0);
assert_eq!(chunk.code[call_idx].imm, expected_native);
}
}
#[test]
fn emit_native_n_is_a_plain_call_native_with_no_extra_instructions() {
let mut b = ChunkBuilder::new("native-n-test");
b.begin_function("main", 0, 8);
b.emit_load_imm(1, 7);
b.emit_load_imm(2, 1);
b.emit_native_n(1, 99, 2);
let chunk = b.finish();
assert_eq!(chunk.code.len(), 3);
assert_eq!(chunk.code[2].op, Opcode::CallNative);
assert_eq!(chunk.code[2].a, 1);
assert_eq!(chunk.code[2].b, 2);
assert_eq!(chunk.code[2].imm, 99);
}
#[test]
fn macro_forms_produce_identical_bytecode_to_the_methods() {
let mut via_method = ChunkBuilder::new("via-method");
via_method.begin_function("main", 0, 8);
via_method.emit_native1_from(1, 0, 10);
via_method.emit_native_n(1, 99, 2);
let mut via_macro = ChunkBuilder::new("via-macro");
via_macro.begin_function("main", 0, 8);
crate::emit_native1_from!(via_macro, 1, 0, 10);
crate::emit_native_n!(via_macro, 1, 99, 2);
assert_eq!(via_method.finish().code, via_macro.finish().code);
}
}