| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|
|
|
|
| |
Now that we have C++17 we don't need our own string_view class anymore.
Depends on #1825
|
|
|
| |
Fixes: #1811
|
| |
|
| |
|
| |
|
|
|
| |
- add _free to exports for building libwabtjs
|
|
|
|
|
|
| |
- thirdparty/testsuite updates
- WASI compilation fixes
- 32-bit compile fixes
- SIMD updates
|
|
|
|
|
| |
This happens when both HAS_UBSAN_RECOVER_BARE and HAS_UBSAN_RECOVER_ALL
is supported, then we end up setting USE_UBSAN twice, and hit the
FATAL_ERROR "Only one sanitizer allowed".
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Initial attempt at s390x port
* Second attempt at s390x port
* Fix big-endian memory fill
* Fix more memory location calculations
* Improve SIMD
* Implement big-endian memory grow
* Fill relocation with 0x00, as per spec
* Make wasm2c endianness work
* Fix shuffle
* Fix load endianness in wasm2c
* Refactor into shared code
* Clean up SwapBytesSized
* Clean up MemcpyEndianAware
* Clean up
* "Fix" opcodecnt basic test
|
| |
|
|
|
| |
Also include header files needed for compilation
|
| |
|
|
|
|
| |
Fixes: #1249
|
|
|
| |
This speeds up builds of WABT significantly
|
|
|
|
| |
This is useful for reproducing bugs found by oss-fuzz (see
https://bugs.chromium.org/p/oss-fuzz/issues/list?q=wabt)
|
|
|
|
|
| |
TL;DR: this makes it simpler and safer for projects including WABT via FetchContent to configure options via the CMAKE_ARGS argument.
Importing projects may want to set (e.g.) BUILD_TESTS to "no". However, this doesn't work without creating an identical option() in the importing in the importing project. Enabling CMP0077 in supported versions of CMake allows importing projects to set default values for the variables without touching the cache.
|
|
|
|
|
|
|
| |
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).
|
| |
|
|
|
|
|
|
|
|
|
| |
This allows building say wasm2c.js, and not just wabt.js.
(99% of this is a change to indentation)
Also remove --llvm-lto 1 which is a no-op with the upstream
backend anyhow (however, to get LTO we'd need to build sources
with -flto).
|
|
|
| |
This allows the wabt tools to be build with no git submodules
|
|
|
|
| |
This is almost enough to pass all the tiny tests in the wasi-sdk
repo.
|
|
|
|
|
|
|
|
|
|
| |
This is proof of concept that only implements the `proc_exit` and
`fd_write` APIs.
Extending this to the full WASI API will to follow assuming this
approach seems reasonable.
Fixes #1409
|
|
|
|
|
|
|
|
|
| |
* making python optional for build.
https://github.com/WebAssembly/wabt/issues/1385
* Show error message about skipping tests if python3 is not available
* Skipping tests when Python 3.5 or above is not found.
|
|
|
| |
Resolves #1359
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The TypeChecker was already shared, but the rest of the other validation
logic was duplicated. This change creates a SharedValidator which is
used by both the Validator and the BinaryReaderInterp classes.
The validator is structured similarly to TypeChecker as a collection of
functions. It's assumed that the functions will be called in the same
order as sections occur in the binary format. The IR valiator does this
too, even though it's possible to validate components out-of-order in
that case.
This change also splits Module validation and Script validation into two
different classes. It should have been written this way in the first
place, and it's nice to do as part of this change since the module
validator logic is mostly moved into the SharedValidator anyway.
Next steps:
* Remove all validation from BinaryReader and move it into the
SharedValidator.
* Move the TypeChecker into the SharedValidator (maybe not necessary)
* Ensure that validation occurs before creating IR from binary (use
SharedValidator in BinaryReaderIR? or maybe create
BinaryReaderValidator passthru that both BinaryReaderIR and
BinaryReaderInterp use?)
* Rename Validator -> IRValidator, SharedValidator -> Validator
|
|
|
| |
This is a good start to cleaning up common.h.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
It's modeled closely on the wasm-c-api. All runtime objects are
garbage-collected. The GC'd objects are subclasses of `Object` and all
stored in the `Store`. GC roots can be created using a RefPtr<T> struct.
The `Module` stores no runtime objects, only description structs (named
`*Desc`, e.g. `FuncDesc`). Instantiation takes these descriptors and
turns them into runtime objects (e.g. `FuncDesc` is used to create a
`Func`). Only import-matching occurs during instantiation; all other
validation is assumed to have occurred during Module compilation.
As with the previous interpreter, the wasm instructions are not executed
directly, and instead compiled to an instruction stream that is easier
to interpret (e.g. all branches become gotos). It's still a stack
machine, though.
The previous interpreter would always compile and instantiate in one
step, which means that it was always known whether an imported function
is a host function or wasm function. As a result, calls between modules
that stayed in wasm could be very cheap (just update PC). Now that the
module is compiled before instantiation, an imported function call
always has to check first, which may be a slight performance hit.
One major difference to the structure of the interpreter is that
floating-point values are passed directly, instead of using their
equivalent bit pattern. This is more convenient in general, but requires
annotating all functions with WABT_VECTORCALL so Visual Studio x86 works
properly (otherwise floats are passed in the x87 FP stack).
Instruction stream decoding/tracing/disassembling is now all handled in
the `Istream` class. This reduces a lot of duplication between the
three, which makes the logging-all-opcodes and tracing-all-opcodes less
valuable, so I've removed them.
Here are the changes to files:
binary-reader-metadata.{h,cc} -> [removed]
interp-{disassemble.trace}.cc -> istream.{h,cc}
There are new helper files:
interp-util.{h,cc}: Primarily print debugging functions
interp-math.h: Templates used for handling wasm math
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Use _POSIX_C_SOURCE where applicable
Use _POSIX_C_SOURCE=200809L everywhere except MSVC.
For MinGW, it should have same effect in regard of
`__USE_MINGW_ANSI_STDIO`.
For Cygwin, it will allow to use POSIX APIs under `-std=c++11`
environment.
* binary-reader-objdump.cc: #include <strings.h>
Include `strings.h` because it depends POSIX strcasecmp.
* Disable `CMAKE_CXX_EXTENSIONS` explicitly
Explicitly disable `CMAKE_CXX_EXTENSIONS` which is ON by default in
recent CMake(>= 3.1) which will read implicit `-std=gnu++11` injection.
* test-hexfloat: Use <thread> instead of sysconf
Use <thread> instead of sysconf which is a bit more "standard" way to do
this.
* Guard <strings.h> with HAVE_STRCASECMP
Guard `strings.h` with `HAVE_STRCASECMP` because non-POSIX platform may
not have it.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Workaround for Cygwin build
On cygwin, `__STRICT_ANSI__` does not show POSIX definitions. Use
gnu++11 language instead.
* wasm-decompile: Silence -Wsign-compare
Silence -Wsign-compare warning, by using unsigned literal one.
* wasm-objdump: Fix 4294967296 output on disasm
Use `%u` instead of `%lu` as we use `uint32_t` here.
|
| |
|
|
|
| |
Fixes #1042, thanks @rathann!
|
|
|
|
|
|
| |
Add VERSION to project command, which in turn required a cmake
version bump to 3.0.0.
Fixes: #1314
|
| |
|
|
|
|
| |
It's easier to update than gh-pages
|
|
|
|
| |
All tests except `threads` pass.
|
|
|
|
| |
This allows code completion tools such as clangd to work. I'm not sure
if there is any downside to enabling this in all cases?
|
|
|
|
|
|
|
| |
The previous implementation was too simplistic, as it didn't do the
renaming at the correct location (such that it can catch all
occurrences), and was also very ineffective in cutting down gigantic
STL signatures to something managable. This version creates more
usable identifiers in almost all cases.
|
|
|
|
|
|
|
| |
This tries to make code more readable by summarizing patterns of
load/store ops into "struct" declarations.
Initial version, can probably be improved, but has all essentials
of the idea in place.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
New `check` target now runs other. This allows for github actions to
show unittests and system tests as separate steps.
Also a couple of CMakeLists.txt cleanups:
- Don't use add_definition to add `-fno-exceptions`, this is a C++-only
flag.
- Lowercase the name of the `sanitizer` function.
- Remove opcode.def from list of library input file. On windows when
building a DLL .def files are assumed to be windows DLL .def files,
which this is not.
This change is split out from #1250
|
|
|
|
|
|
|
|
|
|
|
|
| |
This adds a basic workflow that builds and tests wabt on all three
desktop platforms.
The plan is to extend this to completely replace travis and appveyor
in the future.
Remove the 2.7 requirement for python in CMakeLists.txt due to issue
with github actions where this ends up selected in the wrong (mingw)
version of python. See:
https://github.com/actions/setup-python/issues/40
|
|
|
|
|
|
|
| |
Under windows binaries end with `.exe` and live a the `Debug` or
`Release` subdirectory so we need to use $<TARGET_FILE> to get the
full executable name.
|
| |
|
|
|
|
|
|
| |
This allows use of clang-cl.exe, wherin Clang pretends to be MSVC and accepts its flags.
It will be treated as MSVC in this case.
There are a few places where we'll want to tune further, and perhaps refactor to allow a compiler to be both MSVC and clang, or perhaps use clang's flags instead of MSVC's. But this gets things working.
|
|
|
| |
These are pretty minimal, more will be added as part of feature-PRs.
|
|
|
|
| |
This will pave the way for a better multi-pass analysis that
can collect information for the final output pass.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Closes: #1106
Ported versioning system from [Binaryen CMakeLists.txt](https://github.com/WebAssembly/binaryen/blob/dc31b460fef47dfb3415b4ae6276fff4919a03e2/CMakeLists.txt#L10-L23)
```
bin/wasm2c --version
1.0.11-44-g71f883ad
```
Applied to (all) tools in `src/tools/`.
|
|
|
|
|
| |
Without this, running `make test` will fail.
Fixes issue #1149.
|
|
|
|
|
|
| |
* [WIP] Added initial skeleton code for wasm-decompile.
* Code review changes.
|