use crate::{
Module, ModuleType, PrimaryMap, SignatureIndex, TypeConvert, TypeIndex, WasmFuncType,
WasmHeapType,
};
use serde_derive::{Deserialize, Serialize};
use std::collections::HashMap;
use std::ops::Index;
use wasmparser::types::CoreTypeId;
use wasmparser::UnpackedIndex;
#[derive(Default, Serialize, Deserialize)]
#[allow(missing_docs)]
pub struct ModuleTypes {
wasm_signatures: PrimaryMap<SignatureIndex, WasmFuncType>,
}
impl ModuleTypes {
pub fn wasm_signatures(&self) -> impl Iterator<Item = (SignatureIndex, &WasmFuncType)> {
self.wasm_signatures.iter()
}
}
impl Index<SignatureIndex> for ModuleTypes {
type Output = WasmFuncType;
fn index(&self, sig: SignatureIndex) -> &WasmFuncType {
&self.wasm_signatures[sig]
}
}
#[derive(Default)]
#[allow(missing_docs)]
pub struct ModuleTypesBuilder {
types: ModuleTypes,
interned_func_types: HashMap<WasmFuncType, SignatureIndex>,
wasmparser_to_wasmtime: HashMap<CoreTypeId, SignatureIndex>,
}
impl ModuleTypesBuilder {
pub fn reserve_wasm_signatures(&mut self, amt: usize) {
self.types.wasm_signatures.reserve(amt);
}
pub fn wasm_func_type(&mut self, id: CoreTypeId, sig: WasmFuncType) -> SignatureIndex {
let sig = self.intern_func_type(sig);
self.wasmparser_to_wasmtime.insert(id, sig);
sig
}
fn intern_func_type(&mut self, sig: WasmFuncType) -> SignatureIndex {
if let Some(idx) = self.interned_func_types.get(&sig) {
return *idx;
}
let idx = self.types.wasm_signatures.push(sig.clone());
self.interned_func_types.insert(sig, idx);
return idx;
}
pub fn finish(self) -> ModuleTypes {
self.types
}
pub fn wasm_signatures(&self) -> impl Iterator<Item = (SignatureIndex, &WasmFuncType)> {
self.types.wasm_signatures()
}
}
impl<T> Index<T> for ModuleTypesBuilder
where
ModuleTypes: Index<T>,
{
type Output = <ModuleTypes as Index<T>>::Output;
fn index(&self, sig: T) -> &Self::Output {
&self.types[sig]
}
}
#[allow(missing_docs)]
pub struct WasmparserTypeConverter<'a> {
pub types: &'a ModuleTypesBuilder,
pub module: &'a Module,
}
impl TypeConvert for WasmparserTypeConverter<'_> {
fn lookup_heap_type(&self, index: UnpackedIndex) -> WasmHeapType {
match index {
UnpackedIndex::Id(id) => {
let signature = self.types.wasmparser_to_wasmtime[&id];
WasmHeapType::TypedFunc(signature)
}
UnpackedIndex::RecGroup(_) => unreachable!(),
UnpackedIndex::Module(i) => {
let i = TypeIndex::from_u32(i);
match self.module.types[i] {
ModuleType::Function(sig) => WasmHeapType::TypedFunc(sig),
}
}
}
}
}