Searched refs:array_ref (Results 1 – 5 of 5) sorted by relevance
| /wasmtime-44.0.1/crates/cranelift/src/func_environ/gc/ |
| H A D | enabled.rs | 804 array_ref: ir::Value, in translate_array_fill() 813 let len = translate_array_len(func_env, builder, array_ref)?; in translate_array_fill() 833 array_ref, in translate_array_fill() 870 array_ref: ir::Value, in translate_array_len() 874 func_env.trapz(builder, array_ref, crate::TRAP_NULL_REFERENCE); in translate_array_len() 879 array_ref, in translate_array_len() 964 array_ref: ir::Value, in array_elem_addr() 977 let len = translate_array_len(func_env, builder, array_ref).unwrap(); in array_elem_addr() 1015 array_ref, in array_elem_addr() 1027 array_ref: ir::Value, in translate_array_get() [all …]
|
| /wasmtime-44.0.1/crates/cranelift/src/func_environ/gc/enabled/ |
| H A D | drc.rs | 409 let array_ref = emit_gc_raw_alloc( in alloc_array() localVariable 424 uextend_i32_to_pointer_type(builder, func_env.pointer_type(), array_ref); in alloc_array() 446 Ok(array_ref) in alloc_array()
|
| /wasmtime-44.0.1/crates/cranelift/src/translate/ |
| H A D | code_translator.rs | 2774 let array_ref = environ.translate_array_new(builder, array_type_index, elem, len)?; in translate_operator() localVariable 2775 environ.stacks.push1(array_ref); in translate_operator() 2780 let array_ref = environ.translate_array_new_default(builder, array_type_index, len)?; in translate_operator() localVariable 2781 environ.stacks.push1(array_ref); in translate_operator() 2790 let array_ref = environ.translate_array_new_fixed(builder, array_type_index, &elems)?; in translate_operator() localVariable 2792 environ.stacks.push1(array_ref); in translate_operator() 2801 let array_ref = environ.translate_array_new_data( in translate_operator() localVariable 2808 environ.stacks.push1(array_ref); in translate_operator() 2817 let array_ref = environ.translate_array_new_elem( in translate_operator() localVariable 2824 environ.stacks.push1(array_ref); in translate_operator()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/ |
| H A D | libcalls.rs | 856 let array_ref = store in array_new_data() localVariable 871 .gc_object_data(array_ref.as_gc_ref()) in array_new_data() 875 let raw = gc_store.expose_gc_ref_to_wasm(array_ref.into()); in array_new_data()
|
| /wasmtime-44.0.1/crates/cranelift/src/ |
| H A D | func_environ.rs | 2745 let array_ref = builder.func.dfg.first_result(call_inst); in translate_array_new_data() localVariable 2746 builder.declare_value_needs_stack_map(array_ref); in translate_array_new_data() 2747 Ok(array_ref) in translate_array_new_data() 2769 let array_ref = builder.func.dfg.first_result(call_inst); in translate_array_new_elem() localVariable 2770 builder.declare_value_needs_stack_map(array_ref); in translate_array_new_elem() 2771 Ok(array_ref) in translate_array_new_elem()
|