-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete JIT compilation engine for arm64 target. (#276)
This commit completes the baseline single pass JIT engine for arm64 target. The implementation passes 100% of specification tests and all the e2e tests that have been used for amd64. Notably, the engine is stable under high concurrency where multiple gorutines are holding stores and each of them has Wasm execution environment. One thing to note is that the assembler (golang-asm) is not goroutine-safe, so we have to take a lock on the assembler usage, therefore the compilation cannot scale to multiple CPU cores. This will be resolved once we build our homemade assembler in #233. resolves #187 Signed-off-by: Takeshi Yoneda <takeshi@tetrate.io>
- Loading branch information
Showing
10 changed files
with
216 additions
and
149 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.