mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-04 01:12:56 +00:00
LibWasm: Parse the "extend" set of instructions
This commit is contained in:
parent
6b5d1eedcb
commit
02b3238c41
Notes:
sideshowbarker
2024-07-18 17:01:06 +09:00
Author: https://github.com/alimpfard
Commit: 02b3238c41
Pull-request: https://github.com/SerenityOS/serenity/pull/7670
4 changed files with 20 additions and 0 deletions
|
@ -798,6 +798,11 @@ HashMap<Wasm::OpCode, String> Wasm::Names::instruction_names {
|
|||
{ Instructions::i64_reinterpret_f64, "i64.reinterpret.f64" },
|
||||
{ Instructions::f32_reinterpret_i32, "f32.reinterpret.i32" },
|
||||
{ Instructions::f64_reinterpret_i64, "f64.reinterpret.i64" },
|
||||
{ Instructions::i32_extend8_s, "i32.extend8_s" },
|
||||
{ Instructions::i32_extend16_s, "i32.extend16_s" },
|
||||
{ Instructions::i64_extend8_s, "i64.extend8_s" },
|
||||
{ Instructions::i64_extend16_s, "i64.extend16_s" },
|
||||
{ Instructions::i64_extend32_s, "i64.extend32_s" },
|
||||
{ Instructions::ref_null, "ref.null" },
|
||||
{ Instructions::ref_is_null, "ref.is.null" },
|
||||
{ Instructions::ref_func, "ref.func" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue