match: Use an aggregate equality comparison for constant array/slice patterns - #155216
match: Use an aggregate equality comparison for constant array/slice patterns#155216jakubadamw wants to merge 14 commits into
Conversation
|
Some changes occurred in match lowering cc @Nadrieril |
|
rustbot has assigned @JonathanBrouwer. Use Why was this reviewer chosen?The reviewer was selected based on:
|
This comment has been minimized.
This comment has been minimized.
|
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
match: Use an aggregate equality comparison for constant array/slice patterns when possible
This comment has been minimized.
This comment has been minimized.
|
Finished benchmarking commit (5a6dba6): comparison URL. Overall result: ❌✅ regressions and improvements - no action neededBenchmarking means the PR may be perf-sensitive. It's automatically marked not fit for rolling up. Overriding is possible but disadvised: it risks changing compiler perf. @bors rollup=never Instruction countOur most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.
Max RSS (memory usage)Results (primary -0.0%, secondary 0.5%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (primary -2.3%, secondary 14.4%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeResults (primary -0.1%, secondary 0.1%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Bootstrap: 491.114s -> 490.988s (-0.03%) |
|
@rustbot reroll |
| if let PatKind::Constant { value } = pat.kind { | ||
| Some(ty::Const::new_value(tcx, value.valtree, value.ty)) | ||
| } else { | ||
| None | ||
| } |
There was a problem hiding this comment.
It might also be worth reconstructing aggregate constants for arrays/slices of arrays of constants, etc.? I'm not a specialization expert, but it looks like arrays of bytewise-comparable things are also bytewise-comparable, at least for common array lengths1. Since array and slice equality are specialized based on their element types' bytewise-comparability, we should be able to get better codegen for nested array patterns too (as long as the inner arrays are of one of those common lengths), I think?
Footnotes
There was a problem hiding this comment.
@dianne, interesting. I’ll look into this next! 🙂
| // When there is no `..`, all elements are constants, and | ||
| // there are at least two of them, collapse the individual | ||
| // element subpairs into a single aggregate comparison that | ||
| // is performed after the length check. | ||
| if slice.is_none() |
There was a problem hiding this comment.
An additional possibility: even if there is a .., the comparisons for the sub-slices before and after the .. could be done via aggregate equality when applicable. Credit to #121540, which I think did this?
Edit: assuming prefixes and suffixes are typically small and hand-written, it's probably not worth the trouble to use aggregate equality for them.
Even if only handling the case with no .., it might be worth moving the special-casing into prefix_slice_suffix to share it between PatKind::Slice and PatKind::Array, since that's where the commonalities live.
Edit: after prefix_slice_suffix's cleanup in #154943, I don't think it makes much sense to put this in there. I still think the logic for deciding whether to use aggregate equality is complex enough that it could be worth factoring out, but that's probably not the way to do it.
This comment has been minimized.
This comment has been minimized.
|
@dianne do you want to take over review here? |
There was a problem hiding this comment.
I don't have much context on the ctfe or const traits side of things to evaluate the approach. cc @oli-obk maybe? It feels like we have to make some sort of compromise here to avoid calling anything const-unstable. Possibly we could block on const_cmp stabilizing, or possibly we could have some workaround until then if we want to land this first.
I think I can handle the technical review, at least. Tentatively, r? me (though feel free to steal the assignment if that'd be easier ^^)
| @@ -0,0 +1,89 @@ | |||
| // EMIT_MIR_FOR_EACH_PANIC_STRATEGY | |||
There was a problem hiding this comment.
Can you add a test where the constant has type [CustomType; N]?
|
@jakubadamw could you fix the conflicts? Then we'll do a perf run and review in detail, but from a first look this looks good to me. |
…s when possible
When every element in an array or slice pattern is a constant and there
is no `..` subpattern, the match builder now emits a single call to
`PartialEq::eq` instead of comparing each element one by one.
This drastically reduces the number of MIR basic blocks for large
constant-array matches – e.g. a 64-element `[u8; 64]` match previously
generated 64 separate comparison blocks and now generates just one
`PartialEq::eq` call that LLVM can lower to a `memcmp()`
The optimisation is gated on having at least two constant elements.
Single-element arrays still use a plain scalar comparison.
Example:
```rust
const FOO: [u8; 64] = *b"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef";
pub fn foo(x: &[u8; 64]) -> bool {
// Before: 64 basic blocks, one per byte.
// After: a single `PartialEq::eq()` call.
matches!(x, &FOO)
}
```
…on a large fixed-length array
…t contexts This is unless the `const_cmp` feature is enabled, in which case `PartialEq` becomes available in said contexts.
…n't get captured by this logic
…ng it Following the review feedback, `const_to_pat()` now records the original constant value on the array and slice pattern nodes it expands, and match lowering reads that value back instead of attempting to reconstruct an aggregate constant from the individual element subpatterns. This has two consequences. First, hand-written array and slice patterns are no longer collapsed into aggregate comparisons; the user's intent to match element by element is respected before the MIR boundary. Only patterns that were expanded from an actual constant (a named constant or a byte-string literal) use the aggregate `PartialEq::eq` comparison, and for those the semantics of matching against a constant and comparing with `PartialEq::eq` coincide. Second, nested constant arrays now benefit from the aggregate comparison as well, since the recorded value covers the whole constant, whereas the reconstruction required every immediate element of the pattern to be a leaf constant.
Give the `PartialEq::eq` call emitted for constant array/slice patterns `UnwindAction::Unreachable` instead of an unwind edge. The built-in `PartialEq` implementations for arrays and slices can be trusted not to panic, and the unwind edge would not be harmless: since the aggregate comparison replaces a series of `SwitchInt` tests that could never unwind, the extra edge would make borrow-checking stricter about the drop order in unwinding code, turning previously accepted programs into errors. The string equality tests keep their unwind edge, as they have always had one.
4a8c85e to
2ea4f27
Compare
|
This PR was rebased onto a different main commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
@Nadrieril, thank you for looking at this again, and no worries about the delay – my previous update also took a good while to emerge! I now rebased this against upstream/main, added the test for a const fixed-size array of a type implementing |
|
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
match: Use an aggregate equality comparison for constant array/slice patterns
This comment has been minimized.
This comment has been minimized.
|
Finished benchmarking commit (b801042): comparison URL. Overall result: ✅ improvements - no action neededBenchmarking means the PR may be perf-sensitive. It's automatically marked not fit for rolling up. Overriding is possible but disadvised: it risks changing compiler perf. @bors rollup=never rustc-perf Instruction countOur most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.
Max RSS (memory usage)Results (primary -2.7%, secondary 0.5%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (primary -0.6%, secondary -0.7%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeResults (primary -0.5%, secondary 0.1%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Bootstrap: 457.809s -> 462.163s (0.95%) |
|
@Nadrieril, what do you make of these results? 🙁 It seems like a useful small improvement for image and cargo. |
| // (Interestingly this means that, for `str`, exhaustiveness analysis | ||
| // relies for soundness on the `PartialEq` impl for `str` to be correct!) |
There was a problem hiding this comment.
This applies to aggregates too. We need PartialEq::eq to agree with structural comparison or we may accept non-exhaustive matches.
| // That is sound because a constant is only allowed in a pattern if its | ||
| // type is structural match, so the array/slice impl and every element | ||
| // impl it delegates to are derived or primitive, and cannot panic. |
There was a problem hiding this comment.
We should only be doing this with element types where we know the PartialEq impl it'll resolve to. In the cases we care about, I don't think we'll be delegating to elements' impls at all? Their PartialEqs should resolve to specialized BytewiseEq impls that compare the aggregates directly. We're relying on the intrinsics compare_bytes and raw_eq used by them not to panic.
In general, being marked StructuralPartialEq doesn't mean we'll be using a derived impl, since it's possible (unstably) to implement it on arbitrary types. It's not an unsafe trait since we always use structural comparison in matches, even if it disagrees with PartialEq.
| let value = pattern.extra.as_deref()?.expanded_const_value?; | ||
| if element_count < AGGREGATE_EQ_MIN_LEN || !self.can_use_aggregate_eq() { | ||
| return None; | ||
| } | ||
| Some(value) |
There was a problem hiding this comment.
We need to check that the element type is such that we'll be using a known PartialEq impl, since we're relying on it being correct and not panicking. For simplicity, I'd suggest keeping this to arrays and slices of bytewise-comparable primitives for now; in those cases, we know that PartialEq will compare aggregates directly:
rust/library/core/src/cmp/bytewise.rs
Lines 31 to 36 in 88f7399
Potentially this could be extended to arbitrary BytewiseEq types, but my understanding is that the most important cases to handle are primitives.
View all comments
When every element in an array or slice pattern is a constant and there is no
..subpattern, the match builder will now emit a single call toPartialEq::eqinstead of comparing each element from the value one by one against the respective constant in the pattern.This drastically reduces the number of MIR basic blocks for large constant-array matches – e.g. a 64-element
[u8; 64]match previously generated 64 separate comparison blocks and now generates just onePartialEq::eqcall that LLVM can lower to amemcmp(). The optimisation is gated on having at least two constant elements, meaning single-element arrays will still use a plain scalar comparison.Example:
Closes #103073.
Closes #110870.