mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-15 15:15:40 +00:00
37 lines
1.2 KiB
Rust
37 lines
1.2 KiB
Rust
use std::sync::Arc;
|
|
use wasmer_runtime_core::{
|
|
backend::ProtectedCaller,
|
|
structures::Map,
|
|
types::{FuncIndex, FuncSig, SigIndex},
|
|
units::Pages,
|
|
};
|
|
use wasmparser::{Operator, Type as WpType};
|
|
|
|
pub trait ModuleCodeGenerator<FCG: FunctionCodeGenerator, PC: ProtectedCaller> {
|
|
fn next_function(&mut self) -> Result<&mut FCG, CodegenError>;
|
|
fn finalize(self) -> Result<PC, CodegenError>;
|
|
fn feed_signatures(
|
|
&mut self,
|
|
signatures: Map<SigIndex, Arc<FuncSig>>,
|
|
) -> Result<(), CodegenError>;
|
|
fn feed_function_signatures(
|
|
&mut self,
|
|
assoc: Map<FuncIndex, SigIndex>,
|
|
) -> Result<(), CodegenError>;
|
|
fn feed_import_function(&mut self) -> Result<(), CodegenError>;
|
|
}
|
|
|
|
pub trait FunctionCodeGenerator {
|
|
fn feed_return(&mut self, ty: WpType) -> Result<(), CodegenError>;
|
|
fn feed_param(&mut self, ty: WpType) -> Result<(), CodegenError>;
|
|
fn feed_local(&mut self, ty: WpType, n: usize) -> Result<(), CodegenError>;
|
|
fn begin_body(&mut self) -> 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,
|
|
}
|