Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/environ/src/
H A Dgc.rs244 fn gc_layout(&self, ty: &WasmCompositeType) -> Option<GcLayout> { in gc_layout() argument
269 pub enum GcLayout { enum
277 impl From<GcArrayLayout> for GcLayout { implementation
283 impl From<Arc<GcStructLayout>> for GcLayout { implementation
289 impl TryClone for GcLayout { implementation
295 impl GcLayout { impl
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dtype_registry.rs26 EngineOrModuleTypeIndex, EntityRef, GcLayout, ModuleInternedTypeIndex, ModuleTypes, TypeTrace,
253 layout: Option<GcLayout>,
417 layout: Option<GcLayout>, in from_parts() argument
451 pub fn layout(&self) -> Option<&GcLayout> { in layout() argument
638 type_to_gc_layout: TrySecondaryMap<VMSharedTypeIndex, Option<GcLayout>>,
1608 pub fn layout(&self, index: VMSharedTypeIndex) -> Option<GcLayout> { in layout() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/enabled/
H A Dexnref.rs17 use wasmtime_environ::{GcLayout, GcStructLayout, VMGcKind, VMSharedTypeIndex};
576 GcLayout::Struct(s) => Ok(s), in layout()
577 GcLayout::Array(_) => unreachable!(), in layout()
H A Dstructref.rs17 use wasmtime_environ::{GcLayout, GcStructLayout, VMGcKind, VMSharedTypeIndex};
528 GcLayout::Struct(s) => Ok(s), in layout()
529 GcLayout::Array(_) => unreachable!(), in layout()
H A Darrayref.rs16 use wasmtime_environ::{GcArrayLayout, GcLayout, VMGcKind, VMSharedTypeIndex};
723 GcLayout::Array(a) => Ok(a), in layout()
724 GcLayout::Struct(_) => unreachable!(), in layout()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/gc/enabled/
H A Ddrc.rs67 GcArrayLayout, GcLayout, GcStructLayout, GcTypeLayouts, POISON, VMGcKind, VMSharedTypeIndex,
290 GcLayout::Array(l) => { in insert_new_trace_info()
298 GcLayout::Struct(l) => TraceInfo::Struct { in insert_new_trace_info()
/wasmtime-44.0.1/crates/cranelift/src/func_environ/gc/
H A Denabled.rs17 Collector, GcArrayLayout, GcLayout, GcStructLayout, I31_DISCRIMINANT, ModuleInternedTypeIndex,
1416 fn gc_layout(&mut self, type_index: ModuleInternedTypeIndex) -> &GcLayout { in gc_layout() argument
/wasmtime-44.0.1/crates/cranelift/src/
H A Dfunc_environ.rs150 wasmtime_environ::GcLayout,