2022-08-18 15:40:30 +03:00
|
|
|
package wasm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/wader/fq/pkg/scalar"
|
|
|
|
)
|
|
|
|
|
2022-09-30 14:58:23 +03:00
|
|
|
var sectionIDToSym = scalar.UintMapSymStr{
|
2022-08-19 08:50:56 +03:00
|
|
|
sectionIDCustom: "custom_section",
|
|
|
|
sectionIDType: "type_section",
|
|
|
|
sectionIDImport: "import_section",
|
|
|
|
sectionIDFunction: "function_section",
|
|
|
|
sectionIDTable: "table_section",
|
|
|
|
sectionIDMemory: "memory_section",
|
|
|
|
sectionIDGlobal: "global_section",
|
|
|
|
sectionIDExport: "export_section",
|
|
|
|
sectionIDStart: "start_section",
|
|
|
|
sectionIDElement: "element_section",
|
|
|
|
sectionIDCode: "code_section",
|
|
|
|
sectionIDData: "data_section",
|
|
|
|
sectionIDDataCount: "data_count_section",
|
2022-08-18 15:40:30 +03:00
|
|
|
}
|
|
|
|
|
2022-08-22 15:30:49 +03:00
|
|
|
// A map to convert valtypes to symbols.
|
2022-08-19 08:35:16 +03:00
|
|
|
//
|
2022-08-23 15:12:29 +03:00
|
|
|
// valtype ::= t:numtype => t
|
|
|
|
// | t:vectype => t
|
|
|
|
// | t:reftype => t
|
2022-08-19 08:35:16 +03:00
|
|
|
//
|
2022-08-23 15:12:29 +03:00
|
|
|
// numtype ::= 0x7F => i32
|
|
|
|
// | 0x7E => i64
|
|
|
|
// | 0x7D => f32
|
|
|
|
// | 0x7C => f64
|
2022-08-19 08:35:16 +03:00
|
|
|
//
|
2022-08-23 15:12:29 +03:00
|
|
|
// vectype ::= 0x7B => v128
|
2022-08-22 15:30:49 +03:00
|
|
|
//
|
2022-08-23 15:12:29 +03:00
|
|
|
// reftype ::= 0x70 => funcref
|
|
|
|
// | 0x6F => externref
|
2022-09-30 14:58:23 +03:00
|
|
|
var valtypeToSymMapper = scalar.UintMapSymStr{
|
2022-08-19 08:35:16 +03:00
|
|
|
0x7f: "i32",
|
|
|
|
0x7e: "i64",
|
|
|
|
0x7d: "f32",
|
|
|
|
0x7c: "f64",
|
|
|
|
0x7b: "v128",
|
|
|
|
0x70: "funcref",
|
|
|
|
0x6f: "externref",
|
2022-08-18 15:40:30 +03:00
|
|
|
}
|
|
|
|
|
2022-08-22 15:30:49 +03:00
|
|
|
// A map to convert tags of importdesc to symbols.
|
|
|
|
//
|
2022-08-23 15:12:29 +03:00
|
|
|
// importdesc ::= 0x00 x:typeidx => func x
|
|
|
|
// | 0x01 tt:tabletype => table tt
|
|
|
|
// | 0x02 mt:memtype => mem mt
|
|
|
|
// | 0x03 gt:globaltype => global gt
|
2022-09-30 14:58:23 +03:00
|
|
|
var importdescTagToSym = scalar.UintMapSymStr{
|
2022-08-19 08:35:16 +03:00
|
|
|
0x00: "func",
|
|
|
|
0x01: "table",
|
|
|
|
0x02: "mem",
|
|
|
|
0x03: "global",
|
2022-08-18 15:40:30 +03:00
|
|
|
}
|
|
|
|
|
2022-08-22 15:30:49 +03:00
|
|
|
// A map to convert tags of exportdesc to symbols.
|
|
|
|
//
|
2022-08-23 15:12:29 +03:00
|
|
|
// exportdesc ::= 0x00 x:funcidx => func x
|
|
|
|
// | 0x01 x:tableidx => table x
|
|
|
|
// | 0x02 x:memidx => mem x
|
|
|
|
// | 0x03 x:globalidx => global x
|
2022-09-30 14:58:23 +03:00
|
|
|
var exportdescTagToSym = scalar.UintMapSymStr{
|
2022-08-19 08:35:16 +03:00
|
|
|
0x00: "funcidx",
|
|
|
|
0x01: "tableidx",
|
|
|
|
0x02: "memidx",
|
|
|
|
0x03: "globalidx",
|
2022-08-18 15:40:30 +03:00
|
|
|
}
|
|
|
|
|
2022-08-22 15:30:49 +03:00
|
|
|
// A map to convert reftypes to symbols.
|
|
|
|
//
|
2022-08-23 15:12:29 +03:00
|
|
|
// reftype ::= 0x70 => funcref
|
|
|
|
// | 0x6F => externref
|
2022-09-30 14:58:23 +03:00
|
|
|
var reftypeTagToSym = scalar.UintMapSymStr{
|
2022-08-19 08:35:16 +03:00
|
|
|
0x70: "funcref",
|
|
|
|
0x6f: "externref",
|
2022-08-18 15:40:30 +03:00
|
|
|
}
|
|
|
|
|
2022-08-22 15:30:49 +03:00
|
|
|
// A map to convert mut to symbols.
|
|
|
|
//
|
2022-08-23 15:12:29 +03:00
|
|
|
// mut ::= 0x00 => const
|
|
|
|
// | 0x01 => var
|
2022-09-30 14:58:23 +03:00
|
|
|
var mutToSym = scalar.UintMapSymStr{
|
2022-08-19 08:35:16 +03:00
|
|
|
0x00: "const",
|
|
|
|
0x01: "var",
|
2022-08-18 15:40:30 +03:00
|
|
|
}
|
|
|
|
|
2022-08-22 15:30:49 +03:00
|
|
|
// A map to convert elemkind to symbols.
|
|
|
|
//
|
2022-08-23 15:12:29 +03:00
|
|
|
// elemkind ::= 0x00 => funcref
|
2022-09-30 14:58:23 +03:00
|
|
|
var elemkindTagToSym = scalar.UintMapSymStr{
|
2022-08-19 08:35:16 +03:00
|
|
|
0x00: "funcref",
|
2022-08-18 15:40:30 +03:00
|
|
|
}
|