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

Function extended

pulley/src/decode.rs:781–783  ·  view source on GitHub ↗

Decode an extended opcode from `pc` to match the payload of the "extended" opcode.

(pc: &mut T)

Source from the content-addressed store, hash-verified

779 /// Decode an extended opcode from `pc` to match the payload of the
780 /// "extended" opcode.
781 pub fn extended<T: BytecodeStream>(pc: &mut T) -> Result<(ExtendedOpcode,), T::Error> {
782 Ok((ExtendedOpcode::decode(pc)?,))
783 }
784
785 for_each_extended_op!(define_operands_decoder);
786}

Callers

nothing calls this directly

Calls 2

OkFunction · 0.85
decodeFunction · 0.85

Tested by

no test coverage detected