summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Update libwabt.js; fix some runtime issues (#1468)Ben Smith2020-06-181-11/+11
| | | | | | | libwabt.js is meant to be included in multiple environments (web, node.js, etc.) so it shouldn't be using NODERAWFS. A recent change to the build system include `-s NODERAWFS` for all link steps, but those are only needed for the wabt executables (e.g. wasm2wast.js).
* Reference types changes to remove subtyping (#1407)Ben Smith2020-05-281-4/+4
| | | | | | | | Main changes: * Rename `anyref` -> `externref` * Remove `nullref` * Rename `hostref` -> `externref` * `ref.null` and `ref.is_null` now have "ref kind" parameter * Add ref kind keywords: `func`, `extern`, `exn`
* Update emscripten build after SIMD changeBen Smith2020-05-051-10/+10
|
* Update JS demos (#1398)Ben Smith2020-04-273-32/+93
| | | | | | * Recompile libwabt.js using latest emscripten * Add features checkbox for wasm2wat (like wat2wasm) * Remove call to `_wabt_resolve_names_module`, since that's always done now when parsing text
* Add documentation for wast2json (#1383)Ben Smith2020-04-071-0/+566
| | | This primarily is documentation for the JSON format produced.
* wasm-decompile: use symbols from linking section for names. (#1318)Wouter van Oortmerssen2020-01-271-3/+14
| | | | | | | | | | | | This allows wasm .o files to have more readable names, or even final linked modules if the linking information is preserved (with e.g. --emit-relocs in LLD). This is implemented as part of the WABT IR representation, so benefits wasm2wat as well. Named obtained this way are only set for functions if the function doesn't also have a name in the name section, but is preferred over the export name if there is one.
* Put rendered man page html in docs, not .1 filesBen Smith2020-01-1723-729/+1079
|
* Move documentation to docs/ directoryBen Smith2020-01-1730-0/+12466
| | | | It's easier to update than gh-pages
* wasm-decompile: documentation. (#1295)Wouter van Oortmerssen2020-01-091-0/+169
Added a language description, a man page, and some links in the general readme.