Randy Reddig
Randy Reddig
> The Component Model never calls free on these allocations. We'd need some way to assert ownership of them so the GC can free them later. It looks like we...
Transfer is implicit. There is not a specific call for each pointer that transfers ownership. The component model does specify a post-call mechanism for exported functions to allow the host...
> Huh, this is weird. This PR increases binary size by a large amount for wasm. For example, testdata/alias.go went from 17kb to 49kb. I don't know why this PR...
@aykevl for this to support the Component Model, I think we need a function like `libc_free` that: 1. Removes the pointer from the `allocs` map. 2. Does not panic if...