Home
last modified time | relevance | path

Searched refs:needs_stack_map (Results 1 – 5 of 5) sorted by relevance

/wasmtime-44.0.1/crates/cranelift/src/translate/
H A Dfunc_translator.rs176 let (ty, init, needs_stack_map) = match wasm_type { in declare_locals()
207 let (ty, needs_stack_map) = environ.reference_type(hty); in declare_locals()
213 (ty, init, needs_stack_map) in declare_locals()
220 if needs_stack_map { in declare_locals()
H A Dtranslation_utils.rs67 let (ty, needs_stack_map) = environ.reference_type(hty); in block_with_params()
69 if needs_stack_map { in block_with_params()
H A Dcode_translator.rs4451 let (exn_ref_ty, needs_stack_map) = environ.reference_type(WasmHeapType::Exn); in create_catch_block()
4467 if needs_stack_map { in create_catch_block()
/wasmtime-44.0.1/crates/cranelift/src/func_environ/gc/
H A Denabled.rs338 let (ty, needs_stack_map) = func_env.reference_type(r.heap_type); in default_value()
341 let _ = needs_stack_map; in default_value()
/wasmtime-44.0.1/crates/cranelift/src/
H A Dfunc_environ.rs2356 let needs_stack_map = self.heap_ty_needs_stack_map(wasm_ty); in reference_type() localVariable
2357 (ty, needs_stack_map) in reference_type()