Code generation framework.

This commit is contained in:
losfair
2019-02-12 00:51:49 +08:00
parent af19f5c097
commit bbb27bedbe
2 changed files with 412 additions and 0 deletions

View File

@ -0,0 +1,17 @@
use wasmparser::{Operator, Type as WpType};
pub trait ModuleCodeGenerator<FCG: FunctionCodeGenerator> {
fn next_function(&mut self) -> Result<&mut FCG, CodegenError>;
}
pub trait FunctionCodeGenerator {
fn feed_param(&mut self, ty: WpType) -> Result<(), CodegenError>;
fn feed_local(&mut self, ty: WpType, n: usize) -> Result<(), CodegenError>;
fn feed_opcode(&mut self, op: Operator) -> Result<(), CodegenError>;
fn finalize(&mut self) -> Result<(), CodegenError>;
}
#[derive(Debug)]
pub struct CodegenError {
pub message: &'static str,
}