Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Chasm #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This repo contains a list of virtual machines and tools that execute the WebAsse
## CONTENTS

- [aWsm](#awsm) <sup><sup>:rocket:</sup></sup></br>
- [Chasm](#chasm) <sup><sup>:rocket:</sup></sup></br>
- [Chicory](#chicory) <sup><sup>:rocket:</sup></sup></br>
- [CMM of Wasm](#cmm) <sup><sup>:sleeping:</sup></sup></br>
- [EOSVM](#eosvm) <sup><sup>:rocket:</sup></sup></br>
Expand Down Expand Up @@ -111,6 +112,73 @@ This repo contains a list of virtual machines and tools that execute the WebAsse
</tr>
</table>

## <a name="chasm"></a>[Chasm](https://github.com/charlietap/chasm) <sup>[top⇈](#contents)</sup>

> Chasm is a Kotlin Multiplatform WebAssembly runtime. It allows you to run WebAssembly programs on all Kotlin Multiplatform targets.

* **Languages written in**

<table>
<tr>
<td>Kotlin</td>
</tr>
</table>

* **Compiler framework**

<table>
<tr>
<td>Kotlin Multiplatform</td>
</tr>
</table>


* **Compilation / Execution modes**

<table>
<tr>
<td>Interpreter</td>
</tr>
</table>

* **Interoperability with other languages**

- `Java`

* **Non-MVP features supported**

- `Exception Handling`
- `Extended Const Expression`
- `GC`
- `Multiple Memories`
- `Tail Call`
- `Typed Function References`

* **Host APIs supported**

- `N/A`

* **Non-web standards**

- `N/A`

* **Used by**

- `N/A`

* **Platforms supported**

<table>
<tr>
<td>Android</td>
<td>JVM</td>
<td>IOS</td>
<td>Linux</td>
<td>Macos</td>
<td>Windows</td>
</tr>
</table>

## <a name="chicory"></a>[Chicory](https://github.com/dylibso/chicory) <sup>[top⇈](#contents)</sup>

> Chicory is a JVM native WebAssembly runtime. It allows you to run WebAssembly programs with zero native dependencies or JNI.
Expand Down