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
@@ -31,10 +33,17 @@ Remove semi-nondeterminism of `DefPathHash` ordering from inliner [#130455](http
31
33
| Improvements ✅ <br /> (secondary) | - | - | 0 |
32
34
| All ❌✅ (primary) | 0.8% |[0.3%, 2.5%]| 5 |
33
35
36
+
* primary regressions are all to opt-full for hyper (-2.54%), clap (-0.69%), html5ever (-0.36%), image (-0.31%), cargo (-0.27%)
37
+
* from detailed results on hyper, looks like `mir_callgraph_reachable` doubled in instr-count; if I'm reading the table right,
38
+
it seems like it is being called nearly twice as often as before? But this outcome seems like it might be expected, since
39
+
this PR is deliberately removing some code that would bail out early from that call.
40
+
* it looks like @**Ben Kimock (Saethlin)** had already
41
+
[attempted to mark](https://github.com/rust-lang/rust/pull/130455#issuecomment-2354849189) this as triaged (due to it being
42
+
acceptable overhead for the benefit of better de
34
43
35
44
#### Improvements
36
45
37
-
46
+
(nothing of note)
38
47
39
48
#### Mixed
40
49
@@ -48,6 +57,8 @@ read_volatile __rust_no_alloc_shim_is_unstable in alloc_zeroed [#130497](https:/
48
57
| Improvements ✅ <br /> (secondary) | - | - | 0 |
49
58
| All ❌✅ (primary) | -0.2% |[-0.7%, 0.5%]| 3 |
50
59
60
+
* cranelift-codegen opt-full-llvm regressed by -0.48%.
61
+
* marking as triaged; this is bringing the two allocator paths into consistency with eachother (the question of whether we want these volatile reads at all, and how to otherwise achieve their effect on the end-to-end developer experience, is an [entirely separate question](https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/Different.20mechanism.20for.20__rust_no_alloc_shim_is_unstable/near/462025387)).
51
62
52
63
Rollup of 9 pull requests [#130534](https://github.com/rust-lang/rust/pull/130534)[(Comparison Link)](https://perf.rust-lang.org/compare.html?start=f79a912d9edc3ad4db910c0e93672ed5c65133fa&end=a5cf8bbd4e1c8edeae08778c85c6f806dd00e853&stat=instructions:u)
53
64
@@ -59,6 +70,10 @@ Rollup of 9 pull requests [#130534](https://github.com/rust-lang/rust/pull/13053
* syn regressed on three variant profiles: check incr-unchanged (-0.28%), check incr-patched:println (-0.27%), and debug incr-unchanged (-0.23%)
74
+
*[detailed perf results](https://perf.rust-lang.org/detailed-query.html?commit=a5cf8bbd4e1c8edeae08778c85c6f806dd00e853&benchmark=syn-1.0.89-check&scenario=incr-unchanged&base_commit=f79a912d9edc3ad4db910c0e93672ed5c65133fa&sort_idx=-11) indicates that incr_comp_persist_dep_graph went from 0.002 seconds to 0.14 seconds; a delta that accounts for the vast bulk of the difference here...
75
+
* but from examining the PR's that follow, it doesn't seem like that result persists into the future. (Also, I'm realizing that the detailed results are presenting seconds, not instruction-counts, and therefore they are probably wildly unstable between runs...)
76
+
* marking as triaged; this isn't worth investigating further.
62
77
63
78
Support `char::encode_utf8` in const scenarios. [#130511](https://github.com/rust-lang/rust/pull/130511)[(Comparison Link)](https://perf.rust-lang.org/compare.html?start=df7f77811c8806f85522a38878c57fde221138c9&end=f8192ba0d00bbbc58a10c45823ba010e98ea4474&stat=instructions:u)
64
79
@@ -70,6 +85,10 @@ Support `char::encode_utf8` in const scenarios. [#130511](https://github.com/rus
70
85
| Improvements ✅ <br /> (secondary) | - | - | 0 |
71
86
| All ❌✅ (primary) | 0.0% |[-0.5%, 0.4%]| 5 |
72
87
88
+
* primary regressions to opt-full on clap (-0.38%), image (-0.33%), and webrender (-0.31%).
89
+
* from inspection, it seems like this may just be a natural (and small, acceptable) artifact of the changes to which things get const-eval'ed.
90
+
* marking as triaged
91
+
73
92
74
93
Get rid of niche selection's dependence on fields's order [#130508](https://github.com/rust-lang/rust/pull/130508)[(Comparison Link)](https://perf.rust-lang.org/compare.html?start=749f80ab051aa0b3724b464130440b0e70a975ac&end=902f2956a627bd1bd44557b7fe6427a099bf8c48&stat=instructions:u)
75
94
@@ -81,41 +100,5 @@ Get rid of niche selection's dependence on fields's order [#130508](https://gith
81
100
| Improvements ✅ <br /> (secondary) | - | - | 0 |
82
101
| All ❌✅ (primary) | -0.2% |[-0.6%, 0.2%]| 2 |
83
102
84
-
85
-
#### Untriaged Pull Requests
86
-
87
-
-[#130649 Rollup of 6 pull requests](https://github.com/rust-lang/rust/pull/130649)
88
-
-[#130631 Rollup of 7 pull requests](https://github.com/rust-lang/rust/pull/130631)
89
-
-[#130534 Rollup of 9 pull requests](https://github.com/rust-lang/rust/pull/130534)
90
-
-[#130511 Support `char::encode_utf8` in const scenarios.](https://github.com/rust-lang/rust/pull/130511)
91
-
-[#130508 Get rid of niche selection's dependence on fields's order](https://github.com/rust-lang/rust/pull/130508)
92
-
-[#130497 read_volatile __rust_no_alloc_shim_is_unstable in alloc_zeroed](https://github.com/rust-lang/rust/pull/130497)
93
-
-[#130455 Remove semi-nondeterminism of `DefPathHash` ordering from inliner](https://github.com/rust-lang/rust/pull/130455)
94
-
-[#130091 Rollup of 10 pull requests](https://github.com/rust-lang/rust/pull/130091)
95
-
-[#129831 Rollup of 11 pull requests](https://github.com/rust-lang/rust/pull/129831)
96
-
-[#129817 Rollup of 12 pull requests](https://github.com/rust-lang/rust/pull/129817)
97
-
-[#129797 Try to reduce space usage in dist CI](https://github.com/rust-lang/rust/pull/129797)
98
-
-[#129790 Bump to 1.83](https://github.com/rust-lang/rust/pull/129790)
99
-
-[#129632 Rollup of 9 pull requests](https://github.com/rust-lang/rust/pull/129632)
100
-
-[#129063 Apply size optimizations to panic machinery and some cold functions](https://github.com/rust-lang/rust/pull/129063)
101
-
-[#128936 Support reading thin archives in ArArchiveBuilder](https://github.com/rust-lang/rust/pull/128936)
102
-
-[#128443 Properly mark loop as diverging if it has no breaks](https://github.com/rust-lang/rust/pull/128443)
0 commit comments