Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/environ/src/component/
H A Dtypes_builder.rs57 module_types: ModuleTypesBuilder, field
79 self.module_types.index(idx) in index()
103 module_types: ModuleTypesBuilder::new(validator), in new()
159 self.component_types.module_types = Some(self.module_types.finish()); in finish()
173 self.module_types in find_resource_drop_signature()
190 &self.module_types in module_types_builder()
195 &mut self.module_types in module_types_builder_mut()
245 assert_eq!(types.id(), self.module_types.validator_id()); in convert_component_func_type()
276 assert_eq!(types.id(), self.module_types.validator_id()); in convert_component_entity_type()
303 assert_eq!(types.id(), self.module_types.validator_id()); in convert_type()
[all …]
H A Dtypes.rs297 pub(super) module_types: Option<ModuleTypes>, field
315 if let Some(m) = self.module_types.as_ref() { in trace()
328 if let Some(m) = self.module_types.as_mut() { in trace_mut()
337 pub fn module_types(&self) -> &ModuleTypes { in module_types() method
338 self.module_types.as_ref().unwrap() in module_types()
343 self.module_types.as_mut().unwrap() in module_types_mut()
442 self.module_types.as_ref().unwrap().index(idx) in index()
/wasmtime-44.0.1/crates/environ/src/
H A Dlib.rs34 mod module_types; module
57 pub use crate::module_types::*;
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dcode.rs151 pub fn module_types(&self) -> &ModuleTypes { in module_types() method
152 self.types.module_types() in module_types()
280 fn module_types(&self) -> &ModuleTypes { in module_types() method
284 Types::Component(c) => c.module_types(), in module_types()
H A Dtype_registry.rs118 module_types: &mut ModuleTypes, in register_and_canonicalize_types()
126 module_types in register_and_canonicalize_types()
144 .register_module_types(gc_runtime, module_types)?; in register_and_canonicalize_types()
152 for (module_ty, module_trampoline_ty) in module_types.trampoline_types() { in register_and_canonicalize_types()
167 module_types.canonicalize_for_runtime_usage(&mut |idx| types[idx]); in register_and_canonicalize_types()
H A Dmodule.rs655 self.inner.code.module_types() in types()
/wasmtime-44.0.1/crates/environ/src/compile/
H A Dmod.rs22 mod module_types; module
30 pub use self::module_types::*;
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dtypes.rs1000 ExternType::from_wasmtime(engine, self.0.types.module_types(), ty), in imports()
1013 ExternType::from_wasmtime(engine, self.0.types.module_types(), ty), in exports()