Better Caller
See original GitHub issueFor the last couple of days I’ve been contemplating how to improve the Caller
system, what I’ve come up with entails a large refactor of how things are done so I thought I’d lay out my thoughts and get some feedback. @peterhuene and @kpreisser I’d really value your input 😃
Context
At the moment a callback from WASM into C# can optionally take a Caller
parameter which gives the call some context (e.g. access to Memory
etc). For example:
Linker.DefineFunction("env", "check_string", (Caller caller, int address, int length) =>
{
caller.GetMemory("mem").ReadString(address, length).Should().Be("Hello World");
});
The Problem
At the moment this mechanism always allocates a Caller
for every call and will also often be used to fetch a Memory
or Function
which is in turn allocated. That’s not great for performance (particularly in Unity, which is where I’m using wasmtime).
The Solution?
The obvious solution to this is to make Caller
a ref struct
. This also better models the intended lifetime of the Caller
as well - you’re not meant to hold it beyond that one method call.
However there is a problem with this - Caller
implements IStore
and in turns passes itself into Memory
and Function
constructors as the store reference. A ref struct
cannot implement an interface so this doesn’t work (it also can’t be passed into a generic method, so we can’t refactor to something like Invoke<T> where T : IStore
either). So if we want to get a Memory
or Function
we’d be back needing two allocations, one for the store and one for the object itself.
To solve both problems we could introduce new memory/function types which are ref struct
s (e.g. RefStructMemory
) which are returned by new methods (e.g. Caller.GetRefMemory
). Since these would be ref structs they could contain the StoreContext
directly. Again this also models the intended lifetime better.
Obviously this is a lot of duplicated code, but I think we could reduce that by putting all of the actual work inside the RefStructXXX
types and the current class types would become wrappers which internally create the relevant RefStructXXX
, call into it and immediately discard it.
Thoughts?
I realise this is a huge amount of churn, but given that it improves the handling of lifetimes as well as performance I think it’s probably worth it.
Issue Analytics
- State:
- Created 8 months ago
- Comments:7 (7 by maintainers)
Top GitHub Comments
That’s an interesting idea, thanks! I’ll have a fiddle with it over the weekend to see if it looks like it’ll work.
I think I stumbled over exactly that same issue too when trying to avoid the
Caller
allocation as part of #186/#163 😄 (At least, theCaller
is now only allocated when the callback actually uses it as parameter, or when it has aFunction
parameter.)A possible way I can think of to solve this, might be to define additional delegate types similar to the built-in
Action<...>
andFunc<...>
that have a fixedCaller
parameter, like this:Then, instead of
we would have
for the delegates that take a
Caller
, which I think should work ifCaller
is aref struct
.