List of future optimizations for Wasm GC performance #9351
Labels
cranelift:goal:optimize-speed
Focus area: the speed of the code produced by Cranelift.
performance
wasm-proposal:gc
Issues with the implementation of the gc wasm proposal
wasmtime:ref-types
Issues related to reference types and GC in Wasmtime
This is a tracking issue collecting all of our ideas for improving Wasm GC performance and potential optimizations we could implement.
uadd_overflow_trap
/trap{z,nz}
insts that show up frequently in GC heap accesses. Depends on cranelift/egraphs: allow simplifying trapping arithmetic #5908(uadd_overflow_trap (uextend x) (uextend y)) ==> (iadd (uextend x) (uextend y))
. Depends on cranelift/egraphs: allow simplifying trapping arithmetic #5908memcpy
-style APIs to implementarray.copy
when possible and do GC barriers inline when not possibletrapz
backwards fromref.cast
into the branch-y instance-of check that it emits. Similar for the jumps inside abr_on_cast[_fail]
's instance-of check. See Implement theref.cast
Wasm GC instruction #9437 (comment) for details. Alternatively, clean this stuff up in the mid-end: cranelift/egraphs: Optimize instructions without results #6106call_indirect
in the face of subtyping. Much of this can be addressed by letting Wasm to the O(1) subtype checks inline, but it is still additional work to be done on everycall_indirect
vs MVP wasm. We should investigate inline caches and such again.The text was updated successfully, but these errors were encountered: