Home
last modified time | relevance | path

Searched refs:ContRef (Results 1 – 18 of 18) sorted by relevance

/wasmtime-44.0.1/crates/fuzzing/src/generators/
H A Dvalue.rs21 ContRef { null: bool }, enumerator
36 DiffValue::ContRef { .. } => DiffValueType::ContRef, in ty()
194 ContRef => DiffValue::ContRef { null: true }, in arbitrary_of_type()
242 DiffValue::ContRef { null } => null.hash(state), in hash()
280 (Self::ContRef { null: a }, Self::ContRef { null: b }) => a == b, in eq()
299 ContRef, enumerator
319 (true, HeapType::Cont) => Ok(Self::ContRef), in try_from()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/trampoline/
H A Dglobal.rs73 Val::ContRef(None) => { in generate_global_export()
77 Val::ContRef(Some(_)) => { in generate_global_export()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dvalues.rs16 pub struct ContRef; struct
65 ContRef(Option<ContRef>), enumerator
134 WasmHeapTopType::Cont => Val::ContRef(None), in null_top()
193 Val::ContRef(_) => { in load_ty()
239 | (Val::ContRef(_), _) => false, in _matches_ty()
291 Val::ContRef(_) => { in to_raw()
392 Val::ContRef(_) => None, // TODO(#10248): Return proper Ref::Cont when available in ref_()
541 Val::ContRef(_) => true, // TODO(#10248): Proper store association when implemented in comes_from_same_store()
H A Dcoredump.rs214 Val::ContRef(_) => { in _serialize()
H A Ddebug.rs823 FrameValType::ContRef => { in read_value()
852 FrameValType::ContRef | FrameValType::FuncRef => {} in gc_refs_in_frame()
/wasmtime-44.0.1/crates/fuzzing/src/oracles/
H A Ddiff_wasmtime.rs231 DiffValue::ContRef { null } => { in from()
251 Val::ContRef(c) => DiffValue::ContRef { null: c.is_none() }, in from()
H A Ddiff_spec.rs110 | DiffValue::ContRef { .. } => { in from()
H A Ddiff_v8.rs193 DiffValue::ContRef { .. } => unimplemented!(), in evaluate()
319 DiffValueType::ContRef => unimplemented!(), in get_diff_value()
H A Ddiff_wasmi.rs187 DiffValue::ContRef { .. } => unimplemented!(), in from()
/wasmtime-44.0.1/crates/environ/src/
H A Dframe_table.rs438 ContRef, enumerator
452 FrameValType::ContRef => 2 * pointer_size, in storage_size()
469 FrameValType::ContRef => 9, in from()
487 9 => Ok(Self::ContRef), in try_from()
/wasmtime-44.0.1/crates/c-api/src/
H A Dval.rs101 Val::ContRef(_) => crate::abort("creating a wasm_val_t from a contref"), in from_val()
289 Val::ContRef(_) => crate::abort("contrefs not yet supported in C API (#10248)"), in from_val_unscoped()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/gc/enabled/
H A Darrayref.rs279 Val::ContRef(_) => { in write_elem()
392 Val::ContRef(_) => { in initialize_elem()
H A Dstructref.rs236 Val::ContRef(_) => { in write_field()
395 Val::ContRef(_) => { in initialize_field_impl()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/wave/
H A Dcore.rs43 Self::ContRef(_) => WasmTypeKind::Unsupported, in kind()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/externals/
H A Dglobal.rs283 Val::ContRef(None) => { in set_unchecked()
287 Val::ContRef(Some(_)) => { in set_unchecked()
/wasmtime-44.0.1/crates/environ/src/compile/
H A Dframe_table.rs59 WasmHeapTopType::Cont => FrameValType::ContRef, in from()
/wasmtime-44.0.1/src/commands/
H A Drun.rs1072 Val::ContRef(None) => println!("<null contref>"), in invoke_func()
1073 Val::ContRef(Some(_)) => println!("<contref>"), in invoke_func()
/wasmtime-44.0.1/crates/debugger/src/host/
H A Dapi.rs53 Val::ExternRef(_) | Val::AnyRef(_) | Val::ContRef(_) => { in new()