Home
last modified time | relevance | path

Searched refs:func_env (Results 1 – 6 of 6) sorted by relevance

/wasmtime-44.0.1/crates/cranelift/src/func_environ/gc/enabled/
H A Ddrc.rs29 func_env: &mut FuncEnvironment<'_>, in load_ref_count()
53 func_env: &mut FuncEnvironment<'_>, in store_ref_count()
160 offset: func_env in set_next_over_approximated_stack_root()
410 func_env, in alloc_array()
436 func_env, in alloc_array()
469 func_env, in alloc_struct()
486 func_env, in alloc_struct()
522 func_env, in alloc_exn()
540 func_env, in alloc_exn()
555 func_env, in alloc_exn()
[all …]
H A Dnull.rs42 func_env: &mut FuncEnvironment<'_>, in emit_inline_alloc()
187 func_env: &mut FuncEnvironment<'_>, in alloc_array()
211 func_env, in alloc_array()
234 func_env, in alloc_array()
250 func_env: &mut FuncEnvironment<'_>, in alloc_struct()
272 func_env, in alloc_struct()
286 func_env, in alloc_struct()
324 func_env, in alloc_exn()
338 func_env, in alloc_exn()
353 func_env, in alloc_exn()
[all …]
/wasmtime-44.0.1/crates/cranelift/src/func_environ/gc/
H A Denabled.rs31 func_env.needs_gc_heap = true; in gc_compiler()
317 gc_compiler(func_env)?.alloc_struct(func_env, builder, struct_type_index, &fields) in translate_struct_new()
361 gc_compiler(func_env)?.alloc_struct(func_env, builder, struct_type_index, &fields) in translate_struct_new_default()
405 func_env, in translate_struct_get()
454 func_env, in translate_struct_set()
524 func_env, in translate_exn_throw()
585 func_env, in translate_array_new()
606 func_env, in translate_array_new_default()
623 func_env, in translate_array_new_fixed()
698 func_env, in initialize()
[all …]
/wasmtime-44.0.1/crates/cranelift/src/func_environ/
H A Dgc.rs51 func_env: &mut FuncEnvironment<'_>, in alloc_array()
64 func_env: &mut FuncEnvironment<'_>, in alloc_struct()
80 func_env: &mut FuncEnvironment<'_>, in alloc_exn()
122 func_env: &mut FuncEnvironment<'_>, in translate_read_gc_reference()
163 func_env: &mut FuncEnvironment<'_>, in translate_write_gc_reference()
180 func_env: &mut FuncEnvironment<'_>,
185 func_env.needs_gc_heap = true;
186 return Ok(func_env.builtin_functions.$name(func));
191 let _ = (func, func_env);
/wasmtime-44.0.1/crates/cranelift/src/func_environ/stack_switching/
H A Dmod.rs11 func_env: &mut crate::func_environ::FuncEnvironment<'_>,
16 return Ok(func_env.builtin_functions.$name(func));
21 let _ = (func, func_env);
/wasmtime-44.0.1/crates/cranelift/src/
H A Dcompiler.rs262 let mut func_env = FuncEnvironment::new(self, translation, types, wasm_func_ty, key); in compile_function() localVariable
302 offset: i32::from(func_env.offsets.ptr.vmctx_store_context()).into(), in compile_function()
308 offset: i32::from(func_env.offsets.ptr.vmstore_context_stack_limit()).into(), in compile_function()
315 func_env.stack_limit_at_function_entry = Some(stack_limit); in compile_function()
325 &mut func_env, in compile_function()
336 let needs_gc_heap = func_env.needs_gc_heap(); in compile_function()
338 if let Some((_, slot_builder)) = func_env.state_slot { in compile_function()