You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As noted here, currently a call_indirect is compiled by the AOT to a trampoline method that leverage the public Machine.call function.
To do so, boxing to and from long[], is happening on both sides.
It should be possible to directly emit the final function invocation code inline or stored and accessible through a Map effectively removing the need for this code generation when using the compiled class file without AotMachine.
The text was updated successfully, but these errors were encountered:
As noted here, currently a
call_indirect
is compiled by the AOT to a trampoline method that leverage the publicMachine.call
function.To do so, boxing to and from
long[]
, is happening on both sides.It should be possible to directly emit the final function invocation code inline or stored and accessible through a Map effectively removing the need for this code generation when using the compiled
class
file withoutAotMachine
.The text was updated successfully, but these errors were encountered: