| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
Fixes #2451
|
| |
|
|
|
|
| |
(#2440)
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
Co-authored-by: Shravan Narayan <shravanrn@gmail.com>
|
|
|
|
|
| |
This reverts commit 0e6861f0480dfbb6461121463e0963391cc38ccf.
Push misfire.
|
| |
|
| |
|
|
|
|
| |
ensure these are up to date
|
|
|
|
|
| |
I don't think there is any need to use `WASM=0` these days. If anybody
really cares about node performance and this turns out still to be
faster they can always add this back in.
|
|
|
| |
Fixes: #2153
|
| |
|
|
|
| |
Fixes #2139
|
|
|
| |
Will shorten the critical path after wasm2c is running SIMD tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This makes wasm2c serialize each function type, rather than registering
function types at module-initialization time. The serialized function
type is the SHA-256 of the mangled param and result types (with a space
between params and results).
At runtime in call_indirect, a known (immediate) function type is
compared against the function type stored in a funcref structure. For
call_indirects to functions local to the module, or for any
call_indirect when the toolchain merges string constants across
compilation units (generally, GCC and clang), this can be done by
comparing the pointers to each function type. Otherwise, the actual
32-byte values are compared.
The function type IDs can be looked up at runtime with
`Z_[modname]_get_func_type`, which matches the API from
`wasm_rt_register_func_type`. A new `callback` example demos this.
wasm2c does the SHA-256 either by linking against libcrypto or, if not
available or if requested via `cmake -DUSE_INTERNAL_SHA256=ON`, by using
a vendored (header-only) PicoSHA2. There is no runtime dependency on
SHA-256 in the wasm2c runtime or generated modules.
This eliminates the last of the per-module state, so this commit also removes
the [modname]_init_module() function and the s_module_initialized bool.
|
| |
|
| |
|
|
|
|
| |
Required to pass CI on ubuntu-22.04 runners which are
phasing in for "ubuntu-latest" workflows on GitHub.
|
|
|
|
| |
The wasm2c runtime should now be supported on Windows per
6a89e3f74560eb8f0396c24ce625de0023cb46b2
|
|
|
|
|
|
|
|
|
| |
Value's `type` field was compiled conditionally on the `NDEBUG` define.
This causes problems with programs compiling against libwabt that don't
define this macro, as the Value layout no longer matches.
Using a condition in config.h.
Fixes #2069
|
|
|
| |
See #2059
|
|
|
|
|
|
|
|
|
| |
Toolchains using wasm2c depend on the wasm-rt files to build
the generated programs. Using a binary wasm-rt library is not enough
for toolchains that do e.g. cross-compilation, and they need to copy
and use the source files instead. Therefore, package these source
files as data for toolchains to use.
Closes #2057
|
| |
|
|
|
| |
Fixes: #2014
|
|
|
| |
Co-authored-by: Mitch Foley <mitchfoley@chromium.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Use standard modules to test endianness
CMake prior to v3.20 provides a module TestBigEndian which we can use to
set the WABT_BIG_ENDIAN define. As of 3.20, the CMAKE_<LANG>_BYTE_ORDER
variable should be preferred. Leaving this as a note for the future.
* Fix x87 math detection
TARGET_ARCH was only used to determine whether to add gcc-specific SSE
math flags (-msse2 -mfpmath=sse). The new approach simply assumes gcc
compatibility with its __i386__ and __SSE2_MATH__ symbols, which are
defined precisely when we are targeting x86-32 with SSE2 math enabled.
If those macros are defined, then we conclude all is well. Otherwise, we
add the flags if we know the compiler is gcc or clang (and will thus
accept them) and issue a warning if the compiler is unknown.
Fixes #1709
Fixes #1688
|
| |
|
|
|
| |
This makes things easier for users and packagers of libwabt.
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Rename CMAKE_PROJECT_VERSION to WABT_VERSION_STRING
CMAKE_PROJECT_VERSION is a standard variable that is controlled by the
project() command. Renaming our usage to WABT_VERSION_STRING better
describes the purpose of the variable and avoids surprises down the
line.
* Use git describe output to annotate version string
Before this commit, the attempt to add the output of git describe to the
version string printed by $wasm-tool --version was bugged. It would
always print the three-part version number (like 1.0.29).
After this commit, the output of `git describe --tags` is used to append
a description to the version number in the form of: "ver (git~desc)".
For example:
$ ./wasm2c --version
1.0.29 (git~1.0.29-27-gf63184ef)
If this command returns a tag equal in name to the current version,
nothing is appended.
If this command fails, a NOTICE (rather than a WARNING) is printed (only
if the project is top-level), and only the bare version number is used.
If the source code is not living in the git repository then, again, only
the bare number is used, but no warning is printed.
Fixes #1977
Fixes #1978
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Rename WABT_MASTER_PROJECT to PROJECT_IS_TOP_LEVEL
When WABT eventually upgrades to CMake 3.21+, only the one line setting
PROJECT_IS_TOP_LEVEL will need to be deleted.
* Add WABT_INSTALL_RULES option
This option is enabled by default when WABT is the top-level project and
disabled by default when it is not. It is used (and should continue to
be used) to guard uses of the install() command.
This fixes an issue where FetchContent users were forced to install
parts of WABT. This most notably included the wasm-rt-impl library and
its associated headers.
* Remove redundant defaults from install rules
CMake 3.14 changed the behavior of the install() command to take its
defaults from the GNUInstallDirs module. Use this feature to remove dead
code from the build.
* Deleted top-level cmake/ folder
There was nothing in here besides a README that referred to a find
module that no longer exists in the repository. Removing to avoid
confusion.
* Add components to install() rules
By default, CMake assigns every install() rule to an "Unspecified"
component. By adding COMPONENT annotations, users become empowered to
install only the parts of WABT that they need. WABT now provides three
components:
1. wabt-runtime - the executables in WABT_EXECUTABLES
2. wabt-development - the wasm-rt static library and headers
3. wabt-documentation - the man pages, on UNIX only
Users can access this functionality using, e.g.:
cmake --install build --component wabt-development
When a user specifies no component, all are installed.
FetchContent users benefit as well. If they enable WABT's install rules,
they can build accurate packaging dependencies around these components.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Only search for Python when BUILD_TESTS=ON
Rather than disable tests with a warning when Python cannot be found,
require it when tests are enabled. Avoid the search altogether when
tests are disabled.
This check additionally causes issues with FetchContent users that use
the newer FindPython(3) module.
Fixes #1385
* Fix usage of Threads
find_package(Threads) was called redundantly and a bad check was used to
disable a pthreads-specific test. Rather than checking WIN32, one should
check CMAKE_USE_PTHREADS_INIT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The stated minimum, 3.1, was released on Dec 17, 2014 and did not
support a value of 17 for CMAKE_CXX_STANDARD. The first version to do so
was 3.8. In fact, attempting to build with CMake 3.7 fails with errors
like:
CMake Error in CMakeLists.txt:
Target "wasm-strip" requires the language dialect "CXX17" , but CMake does
not know the compile flags to use to enable it.
So we might as well take this chance to raise the minimum to something
more recent. I propose 3.16 here because of the following features:
* CMP0077 (v3.13) makes the lives of FetchContent users easier by
allowing option() to be overridden.
* CMP0082 (v3.14) corrects the semantics of install() rules, which is
relevant for FetchContent users.
* CMake 3.12 allows the namelink of a shared library on Linux to be
installed separately (i.e. in a dev package)
* CMake 3.14 integrates the standard install destination variables from
GNUInstallDirs with the install() command.
* CMake 3.15 introduced the CMAKE_MSVC_RUNTIME_LIBRARY variable for
controlling the selection of the runtime library from the outside.
* CMake 3.16 gained support for generator expressions in RPATH
properties, which will make it easier to ship shared libraries.
This version is quite conservative and I would even suggest upgrading
further. Windows and macOS users enjoy frequent updates from Homebrew
and Microsoft Visual Studio. Ubuntu Linux 20.04 LTS ships 3.16 and the
newest LTS ships 3.22. Linux users can always install the latest version
through PIP, even on ARM, PowerPC, and s390x, and even without sudo.
Fixes #1568
|
|
|
| |
Store templated wasm2c code as .h/.c; build templates on demand
|
| |
|
|
|
| |
See https://cmake.org/cmake/help/latest/variable/CMAKE_CXX_STANDARD.html
|
| |
|
|
|
| |
I believe this is why #1849 managed to land without detection.
|
|
|
|
|
| |
The wrong name here was causing a cmake warning because
it was finding `config.h.in` instead and this behaviour is
deprecated.
|