Home
last modified time | relevance | path

Searched refs:component_types (Results 1 – 8 of 8) sorted by relevance

/wasmtime-44.0.1/crates/environ/src/component/
H A Dtypes_builder.rs12 use wasmparser::component_types::{
56 component_types: ComponentTypes, field
120 component_types: ComponentTypes::default(), in new()
160 (self.component_types, ty) in finish()
200 &self.component_types in component_types()
206 self.component_types.resource_tables.len() in num_resource_tables()
212 self.component_types.future_tables.len() in num_future_tables()
218 self.component_types.stream_tables.len() in num_stream_tables()
235 (&mut self.resources, &self.component_types) in resources_mut_and_types()
398 Ok(self.component_types.modules.push(result)) in convert_module()
[all …]
H A Dtranslate.rs16 use wasmparser::component_types::{
1667 fn ty_eq(a: &InterfaceType, b: &wasmparser::component_types::ComponentValType) -> bool { in check_unsafe_intrinsics_import()
1668 use wasmparser::{PrimitiveValType as P, component_types::ComponentValType as C}; in check_unsafe_intrinsics_import()
1688 … actual: impl ExactSizeIterator<Item = &'a wasmparser::component_types::ComponentValType>, in check_unsafe_intrinsics_import()
H A Dtypes.rs7 use wasmparser::component_types::ComponentAnyTypeId;
405 &self.component_types()[idx]
H A Ddfg.rs40 use wasmparser::component_types::ComponentCoreModuleTypeId;
/wasmtime-44.0.1/crates/environ/fuzz/fuzz_targets/
H A Dfact-valid-module.rs61 let mut component_types = ComponentTypesBuilder::new(&validator); in target() localVariable
64 Translator::new(&tunables, &mut validator, &mut component_types, &adapters) in target()
/wasmtime-44.0.1/crates/environ/examples/
H A Dfactc.rs62 let mut component_types = ComponentTypesBuilder::new(&validator); in execute() localVariable
65 Translator::new(&tunables, &mut validator, &mut component_types, &adapters) in execute()
/wasmtime-44.0.1/crates/environ/src/component/types_builder/
H A Dresources.rs76 use wasmparser::component_types::{ComponentAnyTypeId, ComponentEntityType, ResourceId};
/wasmtime-44.0.1/crates/environ/src/component/translate/
H A Dinline.rs52 use wasmparser::component_types::{ComponentAnyTypeId, ComponentCoreModuleTypeId};
1330 let module_ty = &types.component_types()[*module_ty]; in initializer()