mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
32 lines
866 B
Markdown
32 lines
866 B
Markdown
# Feature Table
|
|
|
|
## Compiler Backend
|
|
|
|
| | Singlepass | Cranelift | LLVM |
|
|
| - | :-: | :-: | :-: |
|
|
| Caching | ⬜ | ✅ | ✅ |
|
|
| Emscripten | ✅ | ✅ | ✅ |
|
|
| Metering | ✅ | ⬜ | ✅ |
|
|
| Multi-value return | ⬜ | ⬜ | ⬜ |
|
|
| OSR | 🔄 | ❓ | ❓ |
|
|
| SIMD | ⬜ | ⬜ | ✅ |
|
|
| WASI | ✅ | ✅ | ✅ |
|
|
| WASMER_BACKTRACE | ✅ | ⬜ | ⬜ |
|
|
|
|
## Language integration
|
|
|
|
TODO: define a set of features that are relevant and mark them here
|
|
|
|
Current ideas:
|
|
|
|
- Callbacks
|
|
- Metering
|
|
- Caching
|
|
|
|
;; TODO: expand this table, it's focused on new features that we haven't implemented yet and doesn't list all language integrations
|
|
| | Rust | C / C++ | Go | Python | Ruby |
|
|
| - | :-: | :-: | :-: | :-: | :-: |
|
|
| Terminate in host call | ✅ | ⬜ | ⬜ | ⬜ | ⬜ |
|
|
| WASI | ✅ | ✅ | 🔄 | ⬜ | ⬜ |
|
|
| WASI FS API | ✅ | ⬜ | ⬜ | ⬜ | ⬜ |
|