Stream: git-wasmtime

Topic: wasmtime / PR #5997 aarch64: Use `VCodeConstant` for f64/...


view this post on Zulip Wasmtime GitHub notifications bot (Mar 12 2023 at 02:10):

alexcrichton opened PR #5997 from aarch64-constant-pool to main:

As was pointed out recently one minor improvement to the AArch64 backend is to use the same infrastructure that x64 uses for loading constants which is to pool them at the end of the function instead of having them inline in the body. This commit implements this strategy to ensure that fallback shuffle instructions, for example, don't generate a branch instruction to skip over immediates.

Additionally in these commits is a refactoring of float/splat lowering in the aarch64 backend. Previously it was all living in Rust but to get to know it I translated it all to ISLE. I felt that the logic was a bit more understandable after the transition and more easily shows off what all the special cases are (the problem is more well-suited for ISLE I think than Rust, nothing against the prior code of course which was perfectly readable).

view this post on Zulip Wasmtime GitHub notifications bot (Mar 13 2023 at 19:15):

fitzgen submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Mar 13 2023 at 20:21):

alexcrichton merged PR #5997.


Last updated: Oct 23 2024 at 20:03 UTC