Stream: git-wasmtime

Topic: wasmtime / issue #2704 Improve regalloc register priority...


view this post on Zulip Wasmtime GitHub notifications bot (Jan 26 2023 at 20:01):

bjorn3 commented on issue #2704:

Regalloc2 uses randomized allocation order, right? Is there still value in doing this?

view this post on Zulip Wasmtime GitHub notifications bot (Jan 26 2023 at 20:55):

cfallin commented on issue #2704:

It's randomized but in two tiers, "preferred" and "non-preferred" (which we use for caller-saves and callee-saves respectively, i.e. prefer a shorter prologue). Those are still constant for the machine backend though (here); this issue is about slightly tweaking the division between those two classes. It would need a bit of plumbing to make this ABI-dependent, I think.


Last updated: Oct 23 2024 at 20:03 UTC