Robin Freyler

Results 403 comments of Robin Freyler

Oh wow so there is no big difference at all. I have not expected that. That is actually very interesting. Thanks a lot for running the benchmarks @yamt !

Due to indifferent results and seeing that on the current Rust `nightly` things are looking different again I'd rather not merge this and try to resolve performance issues another way....

Wasmtime introduced the `MemoryTypeBuilder` in order to set the various properties of a Wasm memory defined on the host side. Since Wasmi tries to implement the Wasmtime API for its...

@danielstuart14 cool! Looking forward to the PR once the #1141 is merged. Unfortunately there is no clear time span for when we can finally merge #1141 because it relies on...

@danielstuart14 #1141 has just been merged.

The idea of a separate invariants checker pass did not really shape to what was hoped for. Instead of a separate pass we should invest more into local `debug_assert`s and...

Started implementation here: https://github.com/wasmi-labs/wasmi/pull/1233

@gtrepta @Scott-Guest Just to be sure: has this been fixed in https://github.com/wasmi-labs/wasmi/pull/1234 ?

thanks a ton @phi-go for all the work you put into writing the RFC so far! Really appreciated! 🎉

> An alternative is to mark a function (like in OCaml), not a `return` keyword: > > ```rust > recursive fn x() { > let a = Box::new(()); > let...