aWsm
aWsm copied to clipboard
WebAssembly ahead-of-time compiler and runtime. Focuses on generating fast code, simplicity, and portability.
Add a github [pull request template](https://docs.github.com/en/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository) to make sure all contributors understand the requirements.
add support for .so dylib files seperate the wasm instructions from runtime code implement a missing wasi_intruction (prestat)
Did you guys get a chance to compare the performance between awsm and wamr?
Implement support for f32 and f64 globals. The branch [implement-missing-globals](https://github.com/gwsystems/aWsm/tree/implement-missing-globals) includes a modified WAT unit test to test for these values. The test runs properly with wasmtime. Your goal is...
It's possible that we might ingest WASI functions exported with names that are not valid C identifiers. For example, here is a test in the wasm spec test suite: ```wasm...