157 move virtual machine into wasm executable and decouple abi#160
Merged
AlixANNERAUD merged 16 commits intomainfrom Feb 11, 2026
Merged
Conversation
…ypes, and streamline execution logic
…SM and remove obsolete index.html
…ename WASM documentation step to Guest
…oving unnecessary Environment import
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant refactoring to improve the modularity and clarity of the codebase, particularly around WASM/guest support, and removes legacy virtual machine dependencies. The changes standardize terminology from "wasm" to "guest", clean up unused modules, and update build and workflow scripts to reflect the new structure. Additionally, the calculator executable is updated to use the new modular WASM interface.
Refactoring and Cleanup
virtual_machineand related bindings, both in the main workspace (Cargo.toml) and in example executables, simplifying the dependency graph and codebase. [1] [2] [3] [4] [5] [6] [7] [8] [9]host_bindingsand related utility modules from the workspace, further reducing unused code. [1] [2] [3] [4]WASM/Guest Terminology Standardization
Makefile.toml,.github/workflows/check.yml,.github/workflows/deploy.yml), and updated dependencies to use the new "guest" and "default_guest" features for WASM targets. [1] [2] [3] [4] [5]Build and Configuration Updates
WAMR_SHARED_PLATFORM_CONFIGin.cargo/config.tomlto reflect the new location.documentation/index.htmlredirect file, as documentation deployment is now handled differently.Calculator Executable Modernization
wasmcrate instead of the deprecatedxila::bindings, and fixed minor issues in button map handling and function signatures. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11]These changes collectively improve maintainability, clarify the build process, and modernize the approach to guest (WASM) support.