Stream: git-wasmtime

Topic: wasmtime / Issue #1973 wasmtime: Implement `table.fill`


view this post on Zulip Wasmtime GitHub notifications bot (Jul 06 2020 at 16:02):

fitzgen commented on Issue #1973:

Could you add a fill method to the wasmtime crate too?

I'd prefer to make a separate PR for that, and I already have a separate checkbox for bubbling these things out to the API in the tracking issue so it shouldn't get lost or forgotten about.

Also how come there are two builtin functions indices but only one actual function?

This is the same as our table.grow implementation: they methods have the same Rust signature and essentially do the same thing regardless which reference type they are working with but Cranelift needs to have different signatures for the different variants so that it can produce stack maps for values flowing into the externref variants. We don't have much to gain by making different copies of the functions because they are already out-of-line, relatively expensive calls doing expensive operations, and we can have less code (in terms of binary size and maintenance) by having one function.


Last updated: Nov 22 2024 at 16:03 UTC