1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 10:18:15 +09:00

LibWasm: Parse the "extend" set of instructions

This commit is contained in:
Ali Mohammad Pur 2021-06-01 21:55:14 +04:30 committed by Ali Mohammad Pur
parent 6b5d1eedcb
commit 02b3238c41
Notes: sideshowbarker 2024-07-18 17:01:06 +09:00
4 changed files with 20 additions and 0 deletions

View file

@ -187,6 +187,11 @@ static constexpr OpCode unreachable = 0x00,
i64_reinterpret_f64 = 0xbd,
f32_reinterpret_i32 = 0xbe,
f64_reinterpret_i64 = 0xbf,
i32_extend8_s = 0xc0,
i32_extend16_s = 0xc1,
i64_extend8_s = 0xc2,
i64_extend16_s = 0xc3,
i64_extend32_s = 0xc4,
ref_null = 0xd0,
ref_is_null = 0xd1,
ref_func = 0xd2;