summaryrefslogtreecommitdiff
path: root/test/dump/extended-names.txt
Commit message (Collapse)AuthorAgeFilesLines
* Update ID for tag name subsection (#2336)Michael Williamson2023-11-271-1/+1
| | | | | | | The tag name subsection currently has the speculative ID of 10. However, the extended-name-section proposal has now been updated to use an ID of 11 for the tag name section. This updates the NameSectionSubsection enum accordingly, as well as adding a field name section with the ID of 10.
* Share reading/validation code between elem exprs & other const exprs (#2288)Keith Winstein2023-09-061-1/+1
| | | | | | This continues the work from #1783 and reduces special handling of elem exprs, by treating them the same as other const expressions (init expressions).
* wasm-objdump: Improve disassembly of call_indirect (#1866)Sam Clegg2022-03-161-282/+309
| | | | | | | Use the text format convention of putting the table before the type. Also track type names so they can be reported along with the table name, if available. Fixes: #1865
* wasm-objdump: Print local names during disassembly (#1818)Michael Williamson2022-02-021-149/+319
| | | Fixes #1815
* Show tag names in objdump disassembly (#1774)Sam Clegg2021-12-071-135/+177
| | | | | | | | | Tag names are not officially part of the extended-name-section proposal (because it only deals with naming things that are in the spec already). However, I think its reasonable (and useful) to include these names under a speculative subsection ID, on the basis that tags can only exist when exceptions are enabled and that engines should ignore unknown name types.
* wasm-objdump: Report data segment names (#1588)Sam Clegg2020-12-091-77/+83
| | | Also fix ordering of data names and table segment names.
* Use stderr for all logging and error output (#1579)Sam Clegg2020-12-031-3/+3
| | | | I'm not sure why we were using stdout but the convention is normally to write all logging and error message to stderr.
* wasm-objdump: Honor extended names section (#1573)Sam Clegg2020-11-201-4/+4
| | | This should really have been part of #1554
* Update output from type to func type in binary writer and reader (#1570)Radu M2020-11-161-2/+2
| | | Signed-off-by: Radu M <root@radu.sh>
* Add initial support for extended names sections (#1554)Sam Clegg2020-10-021-0/+213
See: https://github.com/WebAssembly/extended-name-section Although this is only a phase 1 proposal its seems pretty straight forward, and is already being implemented in binaryen.