mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 07:04:58 +00:00
LibWasm: Parse the "extend" set of instructions
This commit is contained in:
parent
6b5d1eedcb
commit
02b3238c41
4 changed files with 20 additions and 0 deletions
|
@ -900,6 +900,11 @@ void BytecodeInterpreter::interpret(Configuration& configuration, InstructionPoi
|
|||
case Instructions::table_grow.value():
|
||||
case Instructions::table_size.value():
|
||||
case Instructions::table_fill.value():
|
||||
case Instructions::i32_extend8_s.value():
|
||||
case Instructions::i32_extend16_s.value():
|
||||
case Instructions::i64_extend8_s.value():
|
||||
case Instructions::i64_extend16_s.value():
|
||||
case Instructions::i64_extend32_s.value():
|
||||
default:
|
||||
unimplemented:;
|
||||
dbgln("Instruction '{}' not implemented", instruction_name(instruction.opcode()));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue