summaryrefslogtreecommitdiff
path: root/demo
Commit message (Collapse)AuthorAgeFilesLines
* Update demo to include feature flags (#1036)Ben Smith2019-03-064-28/+120
| | | Also add new examples for some of the features.
* Remove use of Pointer_stringify; update demo (#1021)Ben Smith2019-02-191-23/+22
|
* updated 404 links (#1001)RaWa2019-01-311-3/+2
|
* Update URLs to match documentation changes (#935)Rob Richardson2018-10-231-2/+2
|
* [libwabtjs] Add support for features (#921)Ben Smith2018-10-043-16/+51
|
* Replace ErrorHandler with Errors and FormatErrors*Ben Smith2018-09-041-15/+15
| | | | | | | | | | | | | `ErrorHandler` complicated all error handling in wabt, since it was callback-based. Callbacks would be useful if we ever wanted to change behavior when an error occurred, but instead all that the handler ever did was write the errors to stdout/stderr or to a buffer. This change adds a new class `Error`, which contains an `ErrorLevel`, a `Location` and an error message. It also replaces ErrorHandler with `Errors` (a typedef for `std::vector<Error>`), and adds a couple of functions that can format a list of `Errors` for output: `FormatErrorsTo{String,File}`.
* Move WastLexer out of NameResolver, Validator, etc.Ben Smith2018-09-041-14/+14
| | | | Also remove wast-parser-lexer-shared.{cc,h}.
* Work around bug in emscripten w/ response files (#905)Ben Smith2018-08-311-15/+22
| | | | | | See issue 7037 in emscripten: the parsing of EXPORTED_FUNCTIONS as a respones file doesn't work properly for the final element in the list. Fixes issue #904.
* Fix emscripten build (#855)Ben Smith2018-06-043-15/+31
| | | | | | | | | It's not correct to use `--pre-js` and `--post-js` to wrap the module in a function instance; instead we're supposed to use `-s MODULARIZE=1`. This still keeps the build as (almost) asm.js, as switching to wasm is a bit more work (we need to preload the wasm binary module). This fixes issue #853.
* Update spec tests; rename {grow,current}_memory (#849)Ben Smith2018-05-271-1/+1
| | | | | | | | | `grow_memory` -> `memory.grow` `current_memory` -> `memory.size` This could have been a smaller change, but I took the opportunity to rename the Token types, Expr types, and callback functions too. Many of these are sorted alphabetically, so I resorted based on their new names.
* Fix emscripten build; update libwabt.jsBen Smith2017-12-121-12/+12
| | | | | libwabt.js was an old build with some fixed bugs (e.g. an infinite loop in the parser).
* #675 Enable "write_debug_names" option in WAT2WASM online demo (#676)Mirko Sertic2017-11-231-1/+1
| | | Enabling this options allows better debugging in latest Firefox and Chrome.
* Update demos to add JS eval to wat2wasm demo (#655)Kris Selden2017-10-1511-129/+1195
| | | Some minor redesign of demos.
* Update emscripten demo to latestBen Smith2017-10-052-19/+17
| | | | | | | | | Also change API to always work with modules, not scripts. This means that many functions named `*wast*` are now called `*wat*`. This also includes a bug fix in `wabt_write_binary_module`, where previously the wrong buffer would be supplied to the `log_buffer` result.
* Rename wast2wasm -> wat2wasm, wast2json (#617)Ben Smith2017-09-084-3/+3
| | | | * wat2wasm only parses wat files (individual modules) * wast2json parses spec test files and generates json + wasm
* Rename wasm2wast -> wasm2wat (#616)Ben Smith2017-09-084-3/+3
| | | See issue #543.
* Update libwabt.js and fix a wast2wasm example (#594)Ben Smith2017-08-242-12/+15
|
* Update libwabt.js (#539)Ben Smith2017-06-271-12/+11
| | | This includes the new CommonJS/AMD loader syntax.
* Add wasm2wast functionality to emscripten build (#491)Ben Smith2017-06-148-42/+332
| | | | | | | | | | | | | | | | * Add demo index landing page * Move old demo index -> wast2wasm/index.html * Add demo for wasm2wast * Fix bug when setting default values in JS: `foo || true` will never be false, need to check for undefined specifically. * Fix bug in `allocateBuffer`; the offset in TypedArray.set is the offset of the source buffer not the destination. You have to create a new view to change the destination offset. * Add new functionality to the emscripten build: - Read binary file into `WasmModule` - Converting from `WasmScript`/`WasmModule` to text or binary * Wrap `libwabt.js` module in IIFE so as to not pollute the global namespace with emscripten junk
* Fix emscripten build (#498)Ben Smith2017-06-132-11/+12
|
* Use codemirror for wast2wasm JS demo (#428)Ben Smith2017-05-119-91/+10049
| | | | | | | | | This also includes a simple codemirror syntax highlighter for the wast format, using the `simple-mode.js` codemirror plugin. I've also moved the examples out from `demo.js` to `examples.js`. The codemirror.css and codemirror.js files are marked as binary so they don't show up in diffs; we shouldn't be patching them anyway.
* Rename all occurences of AST (#413)Ben Smith2017-05-042-10/+10
| | | | | | | | | | * ast.{cc,h} => ir.{cc,h} * binary-reader-ast.{cc,h} => binary-reader-ir.{cc,h} * ast-writer.{cc,h} => wat-writer.{cc,h} Everything else changes ast => wast. When deciding between wast vs. wat, the wat format should only allow for a single module, without assertions.
* Fix emscripten demo and libwabt.js (#407)Ben Smith2017-04-253-57/+11
| | | | | | | | | | | | | | | | | | | | | This removes the more complicated emscripten wrapper we used before, in favor of something that is much simpler. * Remove the memory init file * Remove the onInputKey handling in the demo so it doesn't auto-indent (it was broken now that we have the flat syntax) * Simplify emscripten-helpers to provide very simple C-function wrappers around the wast2wasm API: * wabt_parse_ast * wabt_resolve_names_script * wabt_validate_script * wabt_write_binary_module The tricky part is that some functions return multiple values, so those are returned as structs as well: * WabtParseAstResult * WabtWriteBinaryModuleResult
* Remove WabtAllocator (#307)Ben Smith2017-02-173-16/+13
| | | | It complicates the code everywhere. It's faster to use a stack allocator, but not worth the trouble for maintainability.
* Update emscripten build and demo (#300)Ben Smith2017-02-016-28/+30
|
* Update demo examples to linear formatBen Smith2016-10-281-14/+19
|
* Update emscripten demo to 0xdBen Smith2016-10-282-11/+12
|
* Fix emscripten build to work with 0xcBen Smith2016-10-103-20/+21
| | | | Also remove all the interpreter stuff. It's still in flux.
* PR for Rename sexpr-wasm binaries #100 (#102)Kwadwo 'Que' Amankwa2016-09-211-2/+2
| | | | | | | | | | | | | | | | | | * renamed sexpr-wasm to wast2wasm * renamed 'wasm-wast' binary to 'wasm2wast' * added commands to generate symlinks to renamed targets * fixed the issues causing the tests to break * fixed a name error in travis-test script * corrected repo name change int README * renamed binaries in two tests and added a platform check in CMake for symlink generation for UNIX only * reverted changes in test files due to breakage(for now)
* use new JavaScript API in demoBen Smith2016-05-165-51/+46
| | | | Also add download button.
* some minor fixes for the emscripten demoBen Smith2016-05-064-10/+9
|
* rename Lexer -> AstLexer, Parser -> AstParserBen Smith2016-04-282-3/+3
| | | | | This matches other files, and will be nicer if other lexers/parsers are added. Also remove some references to flex, and the flex lexer.
* update libwasm.js to include wasm.markUsedBlocksBen Smith2016-04-181-1/+1
|
* switch demo to use correct js fileBen Smith2016-04-181-1/+1
|
* more demo stuffBen Smith2016-04-182-4/+22
| | | | | | | | * Need to call wasm.markUsedBlocks for the binary writer to work properly * Make .wast and .wasm into links * Add another example, with a bunch of sections * Clamp the length of the error caret line
* fix emscripten release buildBen Smith2016-04-182-37/+40
| | | | | | The emscripten release build loads the module memory asynchronously, which means you can't call any of the module functions until it has loaded.
* more work on the demo, looks pretty goodBen Smith2016-04-176-155/+284
|
* display binary writer logs in demoBen Smith2016-04-171-19/+21
|
* bindings for writeBinaryScriptBen Smith2016-04-171-1/+15
|
* add simple emscripten demoBen Smith2016-04-173-0/+155