Robin Freyler

Results 177 issues of Robin Freyler

This is about adding support for the [`threads` Wasm proposal](https://github.com/WebAssembly/threads). The `threads` Wasm proposal has been recently moved to Phase 4 and thus stabilization can be expected to happen soon....

enhancement

This is about adding support for the [`multi-memory` Wasm proposal](https://github.com/WebAssembly/multi-memory). The `multi-memory` Wasm proposal has been recently moved to Phase 4 and thus stabilization can be expected to happen soon....

enhancement

This is about adding support for the [`gc` (garbage collection) Wasm proposal](https://github.com/WebAssembly/gc). The `gc` Wasm proposal has been recently moved to Phase 4 and thus stabilization can be expected to...

enhancement

This is about adding support for the [`function-references` Wasm proposal](https://github.com/WebAssembly/function-references). The `function-references` Wasm proposal has been recently moved to Phase 4 and thus stabilization can be expected to happen soon....

enhancement

Even though `wasmi` is an interpreter VM for Wasm we are missing proper debugging functionality such as backtraces. This is a heavily requested feature by smart contract users so that...

enhancement

Hi, I was thinking about how to further optimize the `wasmparser` Wasm validation performance because at least in `wasmi` it takes up quite a fraction of the overall time when...

I stumbled upon this when implementing `bulk-memory` Wasm proposal support in `wasmi` when integrating the new Wasm spec testsuite test cases for the `bulk-memory` Wasm proposal. Note: `wasmi` does not...

This is concerning the `jemalloc-ctl` crate: It is often important to distinguish between the number of allocations and not only the number of allocated bytes. For example it could make...

Currently if you want to skip a bit field and are not interested in coming up with a name for it the best technique you can employ is: ```rust #[bitfield]...

enhancement
good first issue
question
design

Currently the getters and setters generated by the `#[bitfield]` proc. macro for its bitfield struct are not `const fn`. This is because they are making heavy use of functionality that...

enhancement
blocked