Stream: git-wasmtime

Topic: wasmtime / PR #8728 Cranelift: Allow CLIF frontends to de...


view this post on Zulip Wasmtime GitHub notifications bot (Jun 01 2024 at 01:00):

fitzgen opened PR #8728 from fitzgen:saferpoints to bytecodealliance:main:

Tracking GC references and producing stack maps is a significant amount of complexity in regalloc2.

At the same time, GC reference value types are pretty annoying to deal with in Cranelift itself. We know our r64 is "actually" just an i64 pointer, and we want to do i64-y things with it, such as an iadd to compute a derived pointer, but iadd only takes integer types and not r64s. We investigated loosening that restriction and it was way too painful given the way that CLIF type inference and its controlling type vars work. So to compute those derived pointers, we have to first bitcast the r64 into an i64. This is unfortunate in two ways. First, because of arcane interactions between register allocation constraints, stack maps, and ABIs this involves inserting unnecessary register-to-register moves in our generated code which hurts binary size and performance ever so slightly. Second, and much more seriously, this is a serious footgun. If a GC reference isn't an r64 right now, then it will not appear in stack maps, and failure to record a live GC reference in a stack map means that the collector could reclaim the object while you are still using it, leading to use-after-free bugs! Very bad. And the mid-end needs to know not to GVN these bitcasts or else we get similar bugs (see https://github.com/bytecodealliance/wasmtime/pull/8317).

Overall GC references are a painful situation for us today.

This commit is the introduction of an alternative. (Note, though, that we aren't quite ready to remove the old stack maps infrastructure just yet.)

Instead of preserving GC references all the way through the whole pipeline and computing live GC references and inserting spills at safepoints for stack maps all the way at the end of that pipeline in register allocation, the CLIF-producing frontend explicitly generates its own stack slots and spills for safepoints. The only thing the rest of the compiler pipeline needs to know is the metadata required to produce the stack map for the associated safepoint. We can completely remove r32 and r64 from Cranelift and just use plain i32 and i64 values. Or f64 if the runtime uses NaN-boxing, which the old stack maps system did not support at all. Or 32-bit GC references on a 64-bit target, which was also not supported by the old system. Furthermore, we cannot get miscompiles due to GVN'ing bitcasts that shouldn't be GVN'd because there aren't any bitcasts hiding GC references from stack maps anymore. And in the case of a moving GC, we don't need to worry about the mid-end doing illegal code motion across calls that could have triggered a GC that invalidated the moved GC reference because frontends will reload their GC references from the stack slots after the call, and that loaded value simply isn't a candidate for GVN with the previous version. We don't have to worry about those bugs by construction.

So everything gets a lot easier under this new system.

But this commit doesn't mean we are 100% done and ready to transition to the new system, so what is actually in here?

Here is what is not handled yet, and left for future follow up commits:

<!--
Please make sure you include the following information:

Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.html

Please ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->

view this post on Zulip Wasmtime GitHub notifications bot (Jun 01 2024 at 01:00):

fitzgen requested wasmtime-compiler-reviewers for a review on PR #8728.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 01 2024 at 01:00):

fitzgen requested cfallin for a review on PR #8728.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin submitted PR review:

This is extremely cool work and I'm very happy we'll be able to remove the complexity later in the pipeline eventually!

A few nits and requests for some comments, minor refactorings, etc below but nothing major.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin created PR review comment:

Can we have a doc-comment at the module level here describing the overall abstraction? Basically: call instructions (only?) have sets of UserStackMapEntry structs attached; these stack map entries point to CLIF-level stack slots.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin submitted PR review:

This is extremely cool work and I'm very happy we'll be able to remove the complexity later in the pipeline eventually!

A few nits and requests for some comments, minor refactorings, etc below but nothing major.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin created PR review comment:

This sequence to compute max_vals_in_stack_map_by_size is a little dense -- could we break it out into some helpers, e.g. something like:

fn live_value_count_by_size(dfg: &DataFlowGraph, live: impl Iterator<Item = Value>) -> impl Iterator<Item = (usize, usize)> { ... }
fn val_bucket_from_size(size: usize) -> usize { ... }

for (byte_size, count) in live_value_count_by_size(&self.func.dfg, live.iter()) {
  let bucket = val_bucket_from_size(byte_size);
  max_vals_in_stack_map_by_size[bucket] = core::cmp::max(..., count);
}

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin created PR review comment:

name ..._by_log2_size to clarify?

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin created PR review comment:

Reloads are conspicuously absent here -- are we making the assumption that we won't have a moving GC (so we need to root but don't need to allow mutation of references)? Would be good to have that in a module-level doc-comment too :-)

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin created PR review comment:

(here too, for the constant)

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin created PR review comment:

perhaps to note for more precision here (to guide future thinking around this): would require a fixed-point loop in the presence of backedges, at least?

For example if we (i) do propagate liveness back to branch args from blockparams, and (ii) at a branch, observe that all targets have already been visited (have higher RPO numbers), then we can use the real liveness rather than conservatively assume live.

No real data but my hunch is that this may be important when we have "extraneous blocks" due to Wasm control flow structure that have a single forward out-edge and that we can't yet optimize out (and wouldn't have at this point in the pipeline anyway)...

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin created PR review comment:

Can we add a comment here noting that this (implicitly) includes block args as well, in reference to above discussion of blockparams? Was looking for the logic as an explicit thing for branches and missed this (implicit/more general) handling.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 05 2024 at 18:32):

cfallin created PR review comment:

Can we make the 5 a constant defined somewhere (and used in the initialization above too)?

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2024 at 14:18):

fitzgen submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2024 at 14:18):

fitzgen created PR review comment:

From the commit message / top level PR comment:

Here is what is not handled yet, and left for future follow up commits:

[...]

Happy to add a comment in the meantime.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2024 at 14:31):

cfallin submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2024 at 14:31):

cfallin created PR review comment:

Definitely missed/forgot that, sorry! Yep, a doc-comment point saying the same would be great.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2024 at 17:55):

fitzgen updated PR #8728.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2024 at 17:57):

fitzgen has enabled auto merge for PR #8728.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2024 at 18:03):

fitzgen updated PR #8728.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 06 2024 at 18:18):

fitzgen updated PR #8728.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 07 2024 at 03:57):

fitzgen updated PR #8728.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 07 2024 at 03:57):

fitzgen has enabled auto merge for PR #8728.

view this post on Zulip Wasmtime GitHub notifications bot (Jun 07 2024 at 04:20):

fitzgen merged PR #8728.


Last updated: Oct 23 2024 at 20:03 UTC