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
Refactor how inlining is configured in Wasmtime (#13250)
* Refactor how inlining is configured in Wasmtime
Fold the `inlining` boolean and the `inlining_intra_module` options into
a single `Inlining` enum option. This option encompasses both and has an
additional mode which is "only intrinsics" where inter-module and
intra-module calls are never inlined, but intrinsics for Wasmtime are
allowed to be inlined. This is inspired from discussion on #13214 and
after some performance work and/or confirmations the expectation is to
turn the default inlining mode to `Inlining::Intrinsics`.
* Fix doc example
* Review comments
* Fix benchmark tests
0 commit comments