summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-09-08 07:35:33 -0700
committerGitHub <noreply@github.com>2017-09-08 07:35:33 -0700
commit6a582bccddb48009414c5d909dea1544bcfcc512 (patch)
treec6b4d83de2aa9764c0208e05549960e100a7c498 /README.md
parent0ecaaacb27d03a1aafc40397740f9bdd04bf8d73 (diff)
downloadwabt-6a582bccddb48009414c5d909dea1544bcfcc512.tar.gz
wabt-6a582bccddb48009414c5d909dea1544bcfcc512.tar.bz2
wabt-6a582bccddb48009414c5d909dea1544bcfcc512.zip
Rename wast2wasm -> wat2wasm, wast2json (#617)
* wat2wasm only parses wat files (individual modules) * wast2json parses spec test files and generates json + wasm
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/README.md b/README.md
index 7395e3ac..6068e61f 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@
WABT (we pronounce it "wabbit") is a suite of tools for WebAssembly, including:
- - **wast2wasm**: translate from [WebAssembly text format](http://webassembly.github.io/spec/text/index.html) to the [WebAssembly binary format](http://webassembly.github.io/spec/binary/index.html)
- - **wasm2wat**: the inverse of wast2wasm, translate from the binary format back to the text format (also known as a .wat)
+ - **wat2wasm**: translate from [WebAssembly text format](http://webassembly.github.io/spec/text/index.html) to the [WebAssembly binary format](http://webassembly.github.io/spec/binary/index.html)
+ - **wasm2wat**: the inverse of wat2wasm, translate from the binary format back to the text format (also known as a .wat)
- **wasm-objdump**: print information about a wasm binary. Similiar to objdump.
- **wasm-interp**: decode and run a WebAssembly binary file using a stack-based interpreter
- **wast-desugar**: parse .wast text form as supported by the spec interpreter (s-expressions, flat syntax, or mixed) and print "canonical" flat format
@@ -25,7 +25,7 @@ target; instead they aim for full fidelity and compliance with the spec (e.g.
Wabt has been compiled to JavaScript via emscripten. Some of the functionality is available in the following demos:
- [index](https://cdn.rawgit.com/WebAssembly/wabt/7e56ca56/demo/index.html)
-- [wast2wasm](https://cdn.rawgit.com/WebAssembly/wabt/7e56ca56/demo/wast2wasm/)
+- [wat2wasm](https://cdn.rawgit.com/WebAssembly/wabt/7e56ca56/demo/wast2wasm/)
- [wasm2wat](https://cdn.rawgit.com/WebAssembly/wabt/7e56ca56/demo/wasm2wast/)
## Cloning
@@ -129,30 +129,30 @@ update-re2c` to update the prebuilt C sources in `src/prebuilt/`.
CMake will detect if you don't have re2c installed and use the prebuilt source
files instead.
-## Running wast2wasm
+## Running wat2wasm and wast2json
Some examples:
```sh
-# parse and typecheck test.wast
-$ out/wast2wasm test.wast
+# parse and typecheck test.wat
+$ out/wat2wasm test.wat
-# parse test.wast and write to binary file test.wasm
-$ out/wast2wasm test.wast -o test.wasm
+# parse test.wat and write to binary file test.wasm
+$ out/wat2wasm test.wat -o test.wasm
# parse spec-test.wast, and write verbose output to stdout (including the
# meaning of every byte)
-$ out/wast2wasm spec-test.wast -v
+$ out/wat2wasm spec-test.wast -v
# parse spec-test.wast, and write files to spec-test.json. Modules are written
# to spec-test.0.wasm, spec-test.1.wasm, etc.
-$ out/wast2wasm spec-test.wast --spec -o spec-test.json
+$ out/wast2json spec-test.wast -o spec-test.json
```
You can use `-h` to get additional help:
```console
-$ out/wast2wasm -h
+$ out/wat2wasm -h
```
Or try the [online demo](https://cdn.rawgit.com/WebAssembly/wabt/013802ca01035365e2459c70f0508481393ac075/demo/wast2wasm/).
@@ -199,11 +199,11 @@ $ out/wasm-interp test.json --spec
$ out/wasm-interp test.wasm -V 100 --run-all-exports
```
-As a convenience, you can use `test/run-interp.py` to convert a .wast file to
+As a convenience, you can use `test/run-interp.py` to convert a .wat file to
binary first, then run it in the interpreter:
```console
-$ test/run-interp.py --spec spec-test.wast
+$ test/run-interp.py --spec spec-test.wat
20/20 tests.passed.
```