summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* Fix OpenSSL dependency in CMake (#2447)Steven Johnson2024-07-313-0/+19
|
* [ci] Add s390x workflow (#2380)Soni L2024-02-121-0/+11
|
* Don't try to find upstream in detached HEAD (#2387)Soni L2024-02-081-1/+12
| | | HEAD is detached for new branches.
* Rename wasm-opcodecnt to wasm-stats (#2298)Soni L2023-09-191-1/+1
|
* wasm2c: Checkin prebuilt source code in source folder, add lint checks to ↵Shravan Narayan2023-04-112-1/+46
| | | | ensure these are up to date
* Updated man pages (#2004)tDwtp2022-09-221-0/+154
| | | | | | | | update the man pages based on the output of `--help` Added a lua script to generate man pages from help messages: usage: `wabt-tool --help | lua help2man.lau`
* wasm2c: implement the bulk memory operations proposal (#1877)Keith Winstein2022-09-211-1/+2
| | | Co-authored-by: Yuhan Deng <yhdeng@stanford.edu>
* Create CMake package for wabt (#1980)Alex Reinking2022-09-081-0/+5
| | | | | | | | | | | Allows users to install wabt to a local directory and use find_package to load the wabt and wasm-rt-impl libraries into their build. These users, as well as FetchContent users, may link to these libraries using, for example: find_package(wabt REQUIRED) target_link_libraries(myApp PRIVATE wabt::wabt) Note the wabt:: namespace.
* wasm2c: simplify handling of templated code (#1940)Keith Winstein2022-07-111-0/+4
| | | Store templated wasm2c code as .h/.c; build templates on demand
* Fix lint CI on push (#1839)Soni L2022-02-231-0/+2
|
* Enable reference types by default (#1729)Sam Clegg2021-10-132-2/+2
| | | | | | | | | This features was finished earlier this year: https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md One thing to note is that the version of the spec tests we currently have in third_party/testsuite doesn't have ref types merged yet so this change disables ref types when running some of those tests. This can be removed in a followup when we update the testsuite.
* Enable bulk memory by default (#1728)Sam Clegg2021-10-132-2/+2
| | | | | | | | | | | This features was finished earlier this year: https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md One thing to note is that the version of the spec tests we currently have in third_party/testsuite doesn't have bulk memory merged yet so this change disables bulk memory when running some of those tests. This will be removed in a followup when we update the testsuite. Fixes: #1717
* SIMD is now phase 5, enable it by default (#1712)Ng Zhi An2021-09-202-2/+2
| | | | | * SIMD is now phase 5, enable it by default * Update test flags, rebase test, and docs
* Add clang-format check to CI (#1683)Heejin Ahn2021-08-051-0/+24
| | | | | | | | | | This adds clang-format check to the CI. This only checks the diff so it doesn't affect the other parts of the codebase. Also generated files in src/prebuilt/ directories are excluded from the check. A new src/prebuilt/.clang-format is added to disable the check in the directory. scripts/clang-format-diff.sh is copied from the same file we are using in Binaryen.
* Add script to generate html from man, and generate wasm-decompile html (#1592)Ng Zhi An2020-12-171-0/+36
| | | | The script regenerates html from all man pages. I ran it once, and only checked in wasm-decompile.1.html.
* Complete conversion to github actions (#1431)Sam Clegg2020-05-187-232/+0
|
* Move flake8 CI from travis to github actions (#1419)Sam Clegg2020-05-112-10/+1
|
* Fix flake8 failures (#1358)Ben Smith2020-03-131-1/+1
|
* Remove support for python2 (#1321)Sam Clegg2020-01-312-2/+1
|
* [travis] Limit use of sudo (#1323)Sam Clegg2020-01-301-3/+1
| | | | | | | We only need sudo for the i668 builder that needs extra packages. Also, name each element of the matrix Also, remove a bunch of unuser settings from the emcripten build.
* Switch python indentation from 2-space to 4-space (#1145)Sam Clegg2019-08-152-74/+74
| | | | | | | | pep8 specifies 4 space indentation. The use of 2 spaces is, I believe, a historical anomaly where certain large organizations such as google chose 2 over 4 and have yet to make the switch. For a project like wabt with little python code I think the cost of switching is small enough to justify the churn.
* Run flake8 on the whole repository (#1144)Guanzhong Chen2019-08-151-1/+1
|
* Fix fuzzing bugs in wat2wasm (#1129)Ben Smith2019-07-241-1/+3
| | | | | * More bugs w/ bad strings (newlines and bad escapes) * Incorrect hex-float exponent * Update fuzz-wat2wasm.sh to enable features
* Fix some fuzz bugs in wasm2wat (#1128)Ben Smith2019-07-231-1/+3
| | | | Also update the fuzz script to enable various features, so they get fuzz testing too.
* Rewrite the lexer manually, instead of re2c (#1058)Ben Smith2019-04-033-13/+2
| | | | | The current lexer uses re2c. It easy to change, but it generates a huge amount of code, and it's easy to forgot to update it. This PR rewrites the lexer manually, and uses gperf instead to match keywords. The generated source is much smaller.
* [travis] Deploy tools webassembly bucket on GCSBen Smith2019-03-061-1/+19
|
* Add wasm-objdump fuzzing script; fix fuzz bugs (#1023)Ben Smith2019-02-201-0/+24
|
* [appveyor] Generate sha256 file for deploymentBen Smith2019-01-161-0/+1
| | | | Not sure this will work.
* [appveyor] Maybe fix deploy issuesBen Smith2018-07-251-3/+5
|
* Some fixes for binary releases (#879)Ben Smith2018-07-253-1/+60
| | | | | * Create the artifacts before they are packaged (`before_deploy` happens afterward) * MacOS doesn't have sha256, so use python
* Binary releases for travis/appveyor (#876)Ben Smith2018-07-241-0/+32
| | | Fixes #875, maybe.
* Verify emscripten build compiles on travis (#740)Alon Zakai2018-01-272-0/+21
|
* Run wabt-unittests in coverage script (#701)Ben Smith2017-12-191-0/+1
|
* Fix coverage build with clang (#697)Sam Clegg2017-12-181-1/+1
|
* Rename wast2wasm -> wat2wasm, wast2json (#617)Ben Smith2017-09-081-1/+1
| | | | * wat2wasm only parses wat files (individual modules) * wast2json parses spec test files and generates json + wasm
* Rename wasm2wast -> wasm2wat (#616)Ben Smith2017-09-081-1/+1
| | | See issue #543.
* Rewrite parser as recursive descent (#591)Ben Smith2017-08-153-5/+5
| | | | | | | | | | | | | | | | | | * Remove Bison dependency * Remove pre-generated parser files * Rename build config from no-re2c-bison to no-re2c * Add a simple make_unique implementation * Move handling of module bindings into ir.cc * Simplify lexer - Remove lookahead, the parser handles this now - Unify Token/LexerToken, it only contains terminal values now - Refactor setting token type and value into one function (e.g. LITERAL, RETURN => RETURN_LITERAL) * New Parser - Uses two tokens of lookahead (use Peek(0) or Peek(1)) - Consume() consumes one token of any kind - Match(t) consumes the current token if it matches - PeekMatch(t) returns true iff the token matches, but doesn't consume - Basic error synchronization; plenty of room for improvement here
* Update testsuite; various lexing/parsing fixes (#482)Ben Smith2017-06-071-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update testsuite; various lexing/parsing fixes Lexer changes: * Switch re2c parser to UTF-8 parser. This can almost be done "for free" with a flag, but required a bit of work to allow us to catch malformed UTF-8 as well. * Change the re2c fill value to 0xff, since it's never a valid UTF-8 byte. * Allow for more reserved tokens (basically any ascii aside from parentheses, double-quote, and semi-colon) * Remove "infinity" from lexer, only "inf" is allowed now. * Change definition of EOF token, it was implemented incorrectly. The correct way to handle it is to only return it from FILL when there is no more data to fill. * \r is a valid escape. Parser changes: * Changes to match the spec parser: - block signatures use (result <type>) syntax - func/global/table/memory can have multiple inline exports - inline imports are handled in func definition instead of import definition - allow for inline modules (i.e. no "(module ...)" s-expr required) * Remove FuncField. This was previously used for parsing params/results/locals, but it's less code to just parse right-recursive (i.e. backward) and insert everything at the front. This requires reversing the indexes in the BindingHash too. * Remove the nasty macros `APPEND_FIELD_TO_LIST`, `APPEND_ITEM_TO_VECTOR`, `APPEND_INLINE_EXPORT`, and `CHECK_IMPORT_ORDERING`. This behavior is all handled by `append_module_fields` now. * All inline imports/exports are handled by returning additional ModuleFields in a list. This removes the need for `OptionalExport`, `ExportedFunc`, `ExportedGlobal`, `ExportedTable`, and `ExportedMemory`. * Use "_opt" suffix instead of "non_empty_" prefix, e.g.: - text_list => text_list_opt, non_empty_text_list => text_list * The locations changed for some symbols, typically the use the name following the LPAR now, e.g. (import ^^^^^^ * Add PPA for re2c 0.16 * add -y to skip confirmation on travis
* Add fuzzing helper scripts, fix fuzzing bugs (#416)Ben Smith2017-05-122-0/+48
| | | | | | | | | | | | | | | | | | | * Add fuzzing helper scripts, fix fuzzing bugs The fuzzing dictionary was old, so I updated it. Also, I've added some simple fuzzing shell scripts that make it a bit easier to run. Bug fixes: * Validate function index in local name section before calling callback. * Fix invalid assert in parse_{float,double}_infinity, which assumed that "infinity" is required (it could be "inf"). * Bail out of resolve local names if there is no current function (e.g. if attempting to resolve names in an elem offset expression). * Catch bad_alloc in wast2wasm and wasm2wast. Without this, afl-fuzz will see allocation failure as a crash. * disable exceptions by default, add option, wrap tools in try/catch
* Return non-zero on travis if tests fail (#383)Sam Clegg2017-03-311-3/+12
| | | | | | * Return non-zero on travis if tests fail Oops, we were silently ignoring tests failures on traivs.
* Add wabt::string_view, based on C++17 string_view (#359)Ben Smith2017-03-171-2/+3
| | | | | * Add wabt::string_view, based on C++17 string_view Also add wabt-unittests to test it.
* Only run flake8 on Travis Linux (#335)Ben Smith2017-03-051-1/+3
| | | It isn't installed on Mac. This fixes the mac build (issue #325).
* Remove WabtAllocator (#307)Ben Smith2017-02-172-3/+0
| | | | It complicates the code everywhere. It's faster to use a stack allocator, but not worth the trouble for maintainability.
* add gcc-debug-cov code coverage build (#303)Ben Smith2017-02-151-0/+40
|
* Rename all wasm prefixes to wabt (#298)Ben Smith2017-01-311-6/+6
|
* Run flake8 during travis builds (#281)Sam Clegg2017-01-182-0/+3
|
* Pass --bindir to test helpers rather than full path to each tool (#273)Sam Clegg2017-01-121-2/+1
| | | This simplifies the invocations and aids maintainability.
* Move import to top of Python file (#191)Derek Schuff2016-10-261-2/+2
| | | Move import to top of Python file, and remove extra blank lines to satisfy Appveyor's version of flake8
* Add appveyor.yml from Binaryen (#189)Derek Schuff2016-10-261-6/+7
| | | | | | | | * Add appveyor.yml from Binaryen * Update gen-emscripten-exported-json.py to comply (almost) with PEP8 * fix typo
* Add wasmdump binary for inspecting wasm files (#161)Sam Clegg2016-10-121-1/+1
| | | | | | * Add wasmdump binary for inspecting wasm files Run this tool to as part of the 'dump' tests rather than using the -d flag to wast2wasm.