| /wasmtime-44.0.1/crates/environ/src/ |
| H A D | types.rs | 36 EngineOrModuleTypeIndex::Module(_) | EngineOrModuleTypeIndex::RecGroup(_) => Ok(()), in trace_engine_indices() 72 EngineOrModuleTypeIndex::Module(_) | EngineOrModuleTypeIndex::RecGroup(_) => Err(()), in is_canonicalized_for_runtime_usage() 122 EngineOrModuleTypeIndex::Engine(_) | EngineOrModuleTypeIndex::RecGroup(_) => Ok(()), in is_canonicalized_for_hash_consing() 329 pub enum EngineOrModuleTypeIndex { enum 375 impl EngineOrModuleTypeIndex { implementation 455 ConcreteFunc(EngineOrModuleTypeIndex), 460 ConcreteExn(EngineOrModuleTypeIndex), 465 ConcreteCont(EngineOrModuleTypeIndex), 473 ConcreteArray(EngineOrModuleTypeIndex), 937 pub func_ty: EngineOrModuleTypeIndex, [all …]
|
| H A D | module.rs | 328 pub types: TryPrimaryMap<TypeIndex, EngineOrModuleTypeIndex>, 603 signature: impl Into<EngineOrModuleTypeIndex>, in push_tag() argument 604 exception: impl Into<EngineOrModuleTypeIndex>, in push_tag() argument 619 pub fn push_function(&mut self, signature: impl Into<EngineOrModuleTypeIndex>) -> FuncIndex { in push_function() 680 F: FnMut(EngineOrModuleTypeIndex) -> Result<(), E>, in trace() 732 F: FnMut(&mut EngineOrModuleTypeIndex) -> Result<(), E>, in trace_mut() 788 pub signature: EngineOrModuleTypeIndex, 797 F: FnMut(EngineOrModuleTypeIndex) -> Result<(), E>, in trace() 804 F: FnMut(&mut EngineOrModuleTypeIndex) -> Result<(), E>, in trace_mut()
|
| H A D | module_types.rs | 23 F: FnMut(crate::EngineOrModuleTypeIndex) -> Result<(), E>, in trace() 33 F: FnMut(&mut crate::EngineOrModuleTypeIndex) -> Result<(), E>, in trace_mut()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/trampoline/ |
| H A D | tag.rs | 7 use wasmtime_environ::EngineOrModuleTypeIndex; 27 signature: EngineOrModuleTypeIndex::Engine(func_ty.index()), in create_tag() 28 exception: EngineOrModuleTypeIndex::Engine(exn_ty.index()), in create_tag()
|
| /wasmtime-44.0.1/crates/environ/src/compile/ |
| H A D | module_types.rs | 2 EngineOrModuleTypeIndex, EntityRef, ModuleInternedRecGroupIndex, ModuleInternedTypeIndex, 349 func_ty: EngineOrModuleTypeIndex::Module(for_func_ty), in define_exception_type_for_tag() 519 let index = EngineOrModuleTypeIndex::Module(interned); in lookup_heap_type() 561 let index = EngineOrModuleTypeIndex::Module(interned); in lookup_heap_type() 608 fn lookup_type_index(&self, index: wasmparser::UnpackedIndex) -> EngineOrModuleTypeIndex { in lookup_type_index() argument 612 EngineOrModuleTypeIndex::Module(interned) in lookup_type_index() 617 EngineOrModuleTypeIndex::Module(interned) in lookup_type_index()
|
| H A D | module_environ.rs | 8 ConstExpr, ConstOp, DataIndex, DefinedFuncIndex, ElemIndex, EngineOrModuleTypeIndex, 374 exception: EngineOrModuleTypeIndex::Module(exception), in translate_payload() 951 fn lookup_type_index(&self, index: wasmparser::UnpackedIndex) -> EngineOrModuleTypeIndex { in lookup_type_index() argument
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | types.rs | 11 EngineOrModuleTypeIndex, EntityType, Global, IndexType, Limits, Memory, ModuleTypes, 1352 WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::Module(_)) in from_wasm_type() 1354 | WasmHeapType::ConcreteArray(EngineOrModuleTypeIndex::Module(_)) in from_wasm_type() 1358 | WasmHeapType::ConcreteCont(EngineOrModuleTypeIndex::Module(_)) in from_wasm_type() 1360 | WasmHeapType::ConcreteExn(EngineOrModuleTypeIndex::Module(_)) in from_wasm_type() 1498 EngineOrModuleTypeIndex::Engine(e) => { in from_wasmtime() 1501 EngineOrModuleTypeIndex::Module(m) => { in from_wasmtime() 1516 EngineOrModuleTypeIndex::RecGroup(_) => unreachable!(), in from_wasmtime() 2074 supertype: Option<EngineOrModuleTypeIndex>, in from_wasm_struct_type() argument 2324 supertype: Option<EngineOrModuleTypeIndex>, in from_wasm_array_type() argument [all …]
|
| H A D | type_registry.rs | 26 EngineOrModuleTypeIndex, EntityRef, GcLayout, ModuleInternedTypeIndex, ModuleTypes, TypeTrace, 128 EngineOrModuleTypeIndex::Module(_) => Ok(()), in register_and_canonicalize_types() 129 EngineOrModuleTypeIndex::Engine(_) | EngineOrModuleTypeIndex::RecGroup(_) => { in register_and_canonicalize_types() 1310 EngineOrModuleTypeIndex::RecGroup(_) | EngineOrModuleTypeIndex::Module(_) => { in assert_canonicalized_for_runtime_usage_in_this_registry() 1313 EngineOrModuleTypeIndex::Engine(idx) => { in assert_canonicalized_for_runtime_usage_in_this_registry()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/component/ |
| H A D | instance.rs | 20 use wasmtime_environ::{EngineOrModuleTypeIndex, component::*}; 1032 EngineOrModuleTypeIndex::Engine(e) => Some(e), in assert_type_matches() 1033 EngineOrModuleTypeIndex::Module(m) => module.signatures().shared_type(m), in assert_type_matches() 1034 EngineOrModuleTypeIndex::RecGroup(_) => unreachable!(), in assert_type_matches()
|
| /wasmtime-44.0.1/crates/environ/src/component/ |
| H A D | types.rs | 310 F: FnMut(crate::EngineOrModuleTypeIndex) -> Result<(), E>, in trace() 323 F: FnMut(&mut crate::EngineOrModuleTypeIndex) -> Result<(), E>, in trace_mut() 517 F: FnMut(crate::EngineOrModuleTypeIndex) -> Result<(), E>, in trace() 530 F: FnMut(&mut crate::EngineOrModuleTypeIndex) -> Result<(), E>, in trace_mut()
|
| H A D | types_builder.rs | 5 EngineOrModuleTypeIndex, EntityType, ModuleInternedTypeIndex, ModuleTypes, ModuleTypesBuilder, 910 fn lookup_type_index(&self, _index: wasmparser::UnpackedIndex) -> EngineOrModuleTypeIndex { in lookup_type_index() argument
|
| H A D | translate.rs | 6 EngineOrModuleTypeIndex, EntityIndex, FuncKey, ModuleEnvironment, ModuleInternedTypeIndex, 1783 fn lookup_type_index(&self, index: wasmparser::UnpackedIndex) -> EngineOrModuleTypeIndex { in lookup_type_index() argument
|
| /wasmtime-44.0.1/winch/codegen/src/codegen/ |
| H A D | env.rs | 415 ) -> wasmtime_environ::EngineOrModuleTypeIndex { in lookup_type_index() argument
|
| /wasmtime-44.0.1/crates/cranelift/src/ |
| H A D | func_environ.rs | 30 EngineOrModuleTypeIndex, FrameStateSlotBuilder, FrameValType, FuncIndex, FuncKey, 1673 pub(crate) fn exception_type_from_tag(&self, tag: TagIndex) -> EngineOrModuleTypeIndex { in exception_type_from_tag() argument 1980 WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::Module(table_ty)) => { in check_indirect_call_type_signature() 2040 WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::Engine(_)) in check_indirect_call_type_signature() 2041 | WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::RecGroup(_)) in check_indirect_call_type_signature() 2341 fn lookup_type_index(&self, index: wasmparser::UnpackedIndex) -> EngineOrModuleTypeIndex { in lookup_type_index() argument
|