| /wasmtime-44.0.1/crates/fuzzing/src/generators/ |
| H A D | value.rs | 21 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 D | global.rs | 73 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 D | values.rs | 16 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 D | coredump.rs | 214 Val::ContRef(_) => { in _serialize()
|
| H A D | debug.rs | 823 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 D | diff_wasmtime.rs | 231 DiffValue::ContRef { null } => { in from() 251 Val::ContRef(c) => DiffValue::ContRef { null: c.is_none() }, in from()
|
| H A D | diff_spec.rs | 110 | DiffValue::ContRef { .. } => { in from()
|
| H A D | diff_v8.rs | 193 DiffValue::ContRef { .. } => unimplemented!(), in evaluate() 319 DiffValueType::ContRef => unimplemented!(), in get_diff_value()
|
| H A D | diff_wasmi.rs | 187 DiffValue::ContRef { .. } => unimplemented!(), in from()
|
| /wasmtime-44.0.1/crates/environ/src/ |
| H A D | frame_table.rs | 438 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 D | val.rs | 101 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 D | arrayref.rs | 279 Val::ContRef(_) => { in write_elem() 392 Val::ContRef(_) => { in initialize_elem()
|
| H A D | structref.rs | 236 Val::ContRef(_) => { in write_field() 395 Val::ContRef(_) => { in initialize_field_impl()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/wave/ |
| H A D | core.rs | 43 Self::ContRef(_) => WasmTypeKind::Unsupported, in kind()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/externals/ |
| H A D | global.rs | 283 Val::ContRef(None) => { in set_unchecked() 287 Val::ContRef(Some(_)) => { in set_unchecked()
|
| /wasmtime-44.0.1/crates/environ/src/compile/ |
| H A D | frame_table.rs | 59 WasmHeapTopType::Cont => FrameValType::ContRef, in from()
|
| /wasmtime-44.0.1/src/commands/ |
| H A D | run.rs | 1072 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 D | api.rs | 53 Val::ExternRef(_) | Val::AnyRef(_) | Val::ContRef(_) => { in new()
|