MCPcopy Create free account
hub / github.com/WasmVM/WasmVM / Array_copy

Method Array_copy

src/include/structures/WasmInstr.hpp:199–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

197};
198struct Array_copy : public Base {
199 Array_copy() : Base(Opcode::Array_copy), dst_typeidx(0), src_typeidx(0) {}
200 Array_copy(index_t dst, index_t src) : Base(Opcode::Array_copy), dst_typeidx(dst), src_typeidx(src) {}
201 index_t dst_typeidx;
202 index_t src_typeidx;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected