Robin Freyler

Results 394 comments of Robin Freyler

So far I have only digged into `::from_reader` regressions. I tried to lightly modify the code, e.g. with some annotations, inline, `#[cold]`, extracting functions, putting common cases in front but...

@alexcrichton I have been looking into the type section validation of the `wasmparser` crate recently and was trying to wrap my head around there. I have to admit, that I...

I just tested [this PR](https://github.com/bytecodealliance/wasm-tools/pull/1906) on Wasmi's [`wasmparser` update PR](https://github.com/wasmi-labs/wasmi/pull/1141) with the following results: ### `tiny_keccak.wasm` | Benchmark | v0.100 | v0.220 | PR | |:---|---:|---:|---:| | `eager/checked` | 76.3µs...

So far there were no plans to add `wasi-nn` capabilities to Wasmi's experimental WASI implementation. The WASI implementation that exists in Wasmi today was contributed externally and is experimental because...

Great catch! I was not aware of `std = ["serde?/std"]` syntax. Can you open a PR?

@tomaka https://github.com/paritytech/wasmi/pull/598 is ready for testing. It implements https://github.com/paritytech/wasmi/issues/537. Information about API design is here: https://github.com/paritytech/wasmi/issues/537#issuecomment-1368430932 **edit:** `wasmi` version `0.21.0` featuring resumable function calls has just been released so this...

Hi @vanhauser-thc , could you please specify what exactly would be required to merge upstream into Wasmi? Naturally I am hesistant to merge specialized functionality into a general purpose tool...

How will this be different from the already existing fuzzing infrastructure for Wasmi? (https://github.com/wasmi-labs/wasmi/tree/main/fuzz) And can you already describe in what ways Wasmi will be extended to support this new...

What exactly do you mean with "we want to fuzz wasm targets"? Do you want to fuzz compilers that output Wasm? Do you want to fuzz a specific Wasm target...