diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2020-04-09 11:57:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 11:57:19 -0700 |
commit | 1cfaf2e723968443611b06895212d4328b4881de (patch) | |
tree | d612235c331f5c083ed4f41d1038adc4c48f561b /README.md | |
parent | e4ae33c93b3834ad06bc88b3a7649f57eabb242f (diff) | |
download | binaryen-1cfaf2e723968443611b06895212d4328b4881de.tar.gz binaryen-1cfaf2e723968443611b06895212d4328b4881de.tar.bz2 binaryen-1cfaf2e723968443611b06895212d4328b4881de.zip |
[NFC] Update readme to discuss tuples rather than push/pop (#2722)
General multivalue and stacky code is now represented using
tuples. Push should never be used and should be removed, and pop
should only be used for exception catch blocks.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -69,9 +69,11 @@ There are a few differences between Binaryen IR and the WebAssembly language: it can read a wasm text file if it contains only s-expressions. * Binaryen uses Stack IR to optimize "stacky" code (that can't be represented in structured form). - * In rare cases stacky code must be represented in Binaryen IR as well, like - popping a value in an exception catch. To support that Binaryen IR has - `push` and `pop` instructions. + * When stacky code must be represented in Binaryen IR, such as with + multivalue instructions and blocks, it is represented with tuple types that + do not exist in the WebAssembly language. In addition to multivalue + instructions, locals and globals can also have tuple types in Binaryen IR + but not in WebAssembly. * Types and unreachable code * WebAssembly limits block/if/loop types to none and the concrete value types (i32, i64, f32, f64). Binaryen IR has an unreachable type, and it allows |