MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / append_user_stack_map_entries

Method append_user_stack_map_entries

cranelift/codegen/src/ir/dfg.rs:626–634  ·  view source on GitHub ↗

Append multiple stack map entries for the given call instruction. # Panics Panics if the given instruction is not a (non-tail) call instruction.

(
        &mut self,
        inst: Inst,
        entries: impl IntoIterator<Item = UserStackMapEntry>,
    )

Source from the content-addressed store, hash-verified

624 ///
625 /// Panics if the given instruction is not a (non-tail) call instruction.
626 pub fn append_user_stack_map_entries(
627 &mut self,
628 inst: Inst,
629 entries: impl IntoIterator<Item = UserStackMapEntry>,
630 ) {
631 for entry in entries {
632 self.append_user_stack_map_entry(inst, entry);
633 }
634 }
635
636 /// Take the stack map entries for a given instruction, leaving the
637 /// instruction without stack maps.

Callers 1

append_stack_map_entriesFunction · 0.80

Calls 1

Tested by

no test coverage detected