Skip to content

Conversation

matthiaskrgr
Copy link
Member

@matthiaskrgr matthiaskrgr commented Oct 14, 2025

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

clarfonthey and others added 30 commits September 5, 2025 17:28
Currently it is possible to avoid linking the allocator shim when
__rust_no_alloc_shim_is_unstable_v2 is defined when linking rlibs
directly as some build systems need. However this requires liballoc to
be compiled with --cfg no_global_oom_handling, which places huge
restrictions on what functions you can call and makes it impossible to
use libstd. Or alternatively you have to define
__rust_alloc_error_handler and (when using libstd)
__rust_alloc_error_handler_should_panic
using #[rustc_std_internal_symbol]. With this commit you can either use
libstd and define __rust_alloc_error_handler_should_panic or not use
libstd and use #[alloc_error_handler] instead. Both options are still
unstable though.

Eventually the alloc_error_handler may either be removed entirely
(though the PR for that has been stale for years now) or we may start
using weak symbols for it instead. For the latter case this commit is a
prerequisite anyway.
In the future this should make it easier to use weak symbols for the
allocator shim on platforms that properly support weak symbols. And it
would allow reusing the allocator shim code for handling default
implementations of the upcoming externally implementable items feature
on platforms that don't properly support weak symbols.
Co-Authored-By: Ralf Jung <[email protected]>
Fixes triggering the "only small returns supported" error in the BPF
target.
…=oli-obk

Unstably constify `ptr::drop_in_place` and related methods

Tracking: rust-lang#109342
Supercedes: rust-lang#145725

Makes methods const:

* `core::ptr::drop_in_place`
* `core::mem::ManuallyDrop::drop`
* `core::mem::MaybeUninit::assume_init_drop`
* `<[core::mem::MaybeUninit<_>]>::assume_init_drop`
* `<*mut _>::drop_in_place`
* `core::ptr::NonNull::drop_in_place`
…raheemdev

std: improve handling of timed condition variable waits on macOS

Fixes rust-lang#37440 (for good).

This fixes two issues with `Condvar::wait_timeout` on macOS:

Apple's implementation of `pthread_cond_timedwait` internally converts the absolute timeout to a relative one, measured in nanoseconds, but fails to consider overflow when doing so. This results in `wait_timeout` returning much earlier than anticipated when passed a duration that is slightly longer than `u64::MAX` nanoseconds (around 584 years). The existing clamping introduced by rust-lang#42604 to address rust-lang#37440 unfortunately used a maximum duration of 1000 years and thus still runs into the bug when run on older macOS versions (or with `PTHREAD_MUTEX_USE_ULOCK` set to a value other than "1"). See rust-lang#37440 (comment) for context.

Reducing the maximum duration alone however would not be enough to make the implementation completely correct. As macOS does not support `pthread_condattr_setclock`, the deadline passed to `pthread_cond_timedwait` is measured against the wall-time clock. `std` currently calculates the deadline by retrieving the current time and adding the duration to that, only for macOS to convert the deadline back to a relative duration by [retrieving the current time itself](https://github.com/apple-oss-distributions/libpthread/blob/1ebf56b3a702df53213c2996e5e128a535d2577e/src/pthread_cond.c#L802-L819) (this conversion is performed before the aforementioned problematic one). Thus, if the wall-time clock is adjusted between the `std` lookup and the system lookup, the relative duration could have changed, possibly even to a value larger than $2^{64}\ \textrm{ns}$. Luckily however, macOS supports the non-standard, tongue-twisting `pthread_cond_timedwait_relative_np` function which avoids the wall-clock-time roundtrip by taking a relative timeout. Even apart from that, this function is perfectly suited for `std`'s purposes: it is public (albeit badly-documented) API, [available since macOS 10.4](https://github.com/apple-oss-distributions/libpthread/blob/1ebf56b3a702df53213c2996e5e128a535d2577e/include/pthread/pthread.h#L555-L559) (that's way below our minimum of 10.12) and completely resilient against wall-time changes as all timeouts are [measured against the monotonic clock](https://github.com/apple-oss-distributions/xnu/blob/e3723e1f17661b24996789d8afc084c0c3303b26/bsd/kern/sys_ulock.c#L741) inside the kernel.

Thus, this PR switches `Condvar::wait_timeout` to `pthread_cond_timedwait_relative_np`, making sure to clamp the duration to a maximum of $2^{64} - 1 \ \textrm{ns}$. I've added a miri shim as well, so the only thing missing is a definition of `pthread_cond_timedwait_relative_np` inside `libc`.
…trochenkov,RalfJung

Move computation of allocator shim contents to cg_ssa

In the future this should make it easier to use weak symbols for the allocator shim on platforms that properly support weak symbols. And it would allow reusing the allocator shim code for handling default implementations of the upcoming externally implementable items feature on platforms that don't properly support weak symbols.

In addition to make this possible, the alloc error handler is now handled in a way such that it is possible to avoid using the allocator shim when liballoc is compiled without `no_global_oom_handling` if you use `#[alloc_error_handler]`. Previously this was only possible if you avoided liballoc entirely or compiled it with `no_global_oom_handling`. You still need to avoid libstd and to define the symbol that indicates that avoiding the allocator shim is unstable.
…illot,Zalathar

Bitset cleanups

Some minor cleanups I did while working on rust-lang#147619.

r? ```@Zalathar```
…wiser

bpf: return results larger than one register indirectly

Fixes triggering the "only small returns supported" error in the BPF target.
…cottmcm

Replace manual implementation with `carrying_mul_add`

cc rust-lang#146277 (comment)

r? scottmcm
fix missing link to `std::char` in `std` docs

Missed this in rust-lang#147373.
…ouwer

pretty print u128 with display

r? ```@JonathanBrouwer```
…, r=WaffleLapkin

Fewer exceptions in `span()` on parsed attributes

r? ``@JonathanBrouwer``
…r=estebank

Fix ICE caused by associated_item_def_ids on wrong type in resolve diag

Fixes rust-lang#147325

r? ``@estebank``
@rustbot rustbot added the rollup A PR which is a rollup label Oct 14, 2025
@matthiaskrgr
Copy link
Member Author

@bors r+ rollup=never p=5

@bors
Copy link
Collaborator

bors commented Oct 14, 2025

📌 Commit 545ee6f has been approved by matthiaskrgr

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Oct 14, 2025
@bors
Copy link
Collaborator

bors commented Oct 14, 2025

⌛ Testing commit 545ee6f with merge 235a4c0...

@bors
Copy link
Collaborator

bors commented Oct 15, 2025

☀️ Test successful - checks-actions
Approved by: matthiaskrgr
Pushing 235a4c0 to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Oct 15, 2025
@bors bors merged commit 235a4c0 into rust-lang:master Oct 15, 2025
12 checks passed
@rustbot rustbot added this to the 1.92.0 milestone Oct 15, 2025
Copy link
Contributor

What is this? This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.

Comparing 844264a (parent) -> 235a4c0 (this PR)

Test differences

Show 777 test diffs

Stage 0

  • errors::verify_passes_attr_application_struct_union_104: [missing] -> pass (J1)
  • errors::verify_passes_attr_only_in_functions_95: pass -> [missing] (J1)
  • errors::verify_passes_cannot_stabilize_deprecated_110: pass -> [missing] (J1)
  • errors::verify_passes_const_stable_not_stable_120: pass -> [missing] (J1)
  • errors::verify_passes_custom_mir_incompatible_dialect_and_phase_137: [missing] -> pass (J1)
  • errors::verify_passes_custom_mir_incompatible_dialect_and_phase_138: pass -> [missing] (J1)
  • errors::verify_passes_deprecated_attribute_107: [missing] -> pass (J1)
  • errors::verify_passes_extern_main_97: pass -> [missing] (J1)
  • errors::verify_passes_implied_feature_not_exist_116: [missing] -> pass (J1)
  • errors::verify_passes_implied_feature_not_exist_117: pass -> [missing] (J1)
  • errors::verify_passes_incorrect_crate_type_98: [missing] -> pass (J1)
  • errors::verify_passes_incorrect_crate_type_99: pass -> [missing] (J1)
  • errors::verify_passes_incorrect_target_97: [missing] -> pass (J1)
  • errors::verify_passes_incorrect_target_98: pass -> [missing] (J1)
  • errors::verify_passes_ineffective_unstable_impl_123: [missing] -> pass (J1)
  • errors::verify_passes_ineffective_unstable_impl_124: pass -> [missing] (J1)
  • errors::verify_passes_inline_ignored_for_exported_100: [missing] -> pass (J1)
  • errors::verify_passes_inline_ignored_for_exported_101: pass -> [missing] (J1)
  • errors::verify_passes_missing_const_err_119: pass -> [missing] (J1)
  • errors::verify_passes_missing_stability_attr_112: pass -> [missing] (J1)
  • errors::verify_passes_multiple_rustc_main_96: pass -> [missing] (J1)
  • errors::verify_passes_object_lifetime_err_102: pass -> [missing] (J1)
  • errors::verify_passes_proc_macro_bad_sig_121: pass -> [missing] (J1)
  • errors::verify_passes_repr_align_should_be_align_135: pass -> [missing] (J1)
  • errors::verify_passes_repr_align_should_be_align_static_135: [missing] -> pass (J1)
  • errors::verify_passes_rustc_const_stable_indirect_pairing_125: [missing] -> pass (J1)
  • errors::verify_passes_sanitize_attribute_not_allowed_125: pass -> [missing] (J1)
  • errors::verify_passes_trait_impl_const_stable_113: [missing] -> pass (J1)
  • errors::verify_passes_trait_impl_const_stable_114: pass -> [missing] (J1)
  • errors::verify_passes_transparent_incompatible_106: [missing] -> pass (J1)
  • errors::verify_passes_unexportable_adt_with_private_fields_133: [missing] -> pass (J1)
  • errors::verify_passes_unexportable_generic_fn_129: pass -> [missing] (J1)
  • errors::verify_passes_unexportable_item_128: pass -> [missing] (J1)
  • errors::verify_passes_unexportable_priv_item_132: [missing] -> pass (J1)
  • errors::verify_passes_unexportable_priv_item_133: pass -> [missing] (J1)
  • errors::verify_passes_unexportable_type_in_interface_131: [missing] -> pass (J1)
  • errors::verify_passes_unexportable_type_repr_130: [missing] -> pass (J1)
  • errors::verify_passes_unexportable_type_repr_131: pass -> [missing] (J1)
  • errors::verify_passes_unknown_feature_alias_115: [missing] -> pass (J1)
  • errors::verify_passes_unnecessary_partial_stable_feature_122: [missing] -> pass (J1)
  • errors::verify_passes_unnecessary_partial_stable_feature_123: pass -> [missing] (J1)
  • errors::verify_passes_unnecessary_stable_feature_121: [missing] -> pass (J1)
  • errors::verify_passes_unnecessary_stable_feature_122: pass -> [missing] (J1)
  • errors::verify_passes_useless_assignment_100: pass -> [missing] (J1)

Stage 1

  • [codegen] tests/codegen-llvm/bpf-abi-indirect-return.rs: [missing] -> ignore (only executed when the architecture is bpf) (J1)
  • bit_set::tests::chunked_bitset_into_bitset_operations: pass -> [missing] (J2)
  • errors::verify_passes_attr_application_enum_103: pass -> [missing] (J2)
  • errors::verify_passes_attr_application_struct_union_104: [missing] -> pass (J2)
  • errors::verify_passes_attr_application_struct_union_105: pass -> [missing] (J2)
  • errors::verify_passes_attr_only_in_functions_95: pass -> [missing] (J2)
  • errors::verify_passes_cannot_stabilize_deprecated_110: pass -> [missing] (J2)
  • errors::verify_passes_const_stable_not_stable_119: [missing] -> pass (J2)
  • errors::verify_passes_const_stable_not_stable_120: pass -> [missing] (J2)
  • errors::verify_passes_custom_mir_incompatible_dialect_and_phase_138: pass -> [missing] (J2)
  • errors::verify_passes_custom_mir_phase_requires_dialect_136: [missing] -> pass (J2)
  • errors::verify_passes_custom_mir_phase_requires_dialect_137: pass -> [missing] (J2)
  • errors::verify_passes_deprecated_attribute_107: [missing] -> pass (J2)
  • errors::verify_passes_duplicate_feature_err_117: [missing] -> pass (J2)
  • errors::verify_passes_duplicate_feature_err_118: pass -> [missing] (J2)
  • errors::verify_passes_implied_feature_not_exist_116: [missing] -> pass (J2)
  • errors::verify_passes_incorrect_crate_type_99: pass -> [missing] (J2)
  • errors::verify_passes_incorrect_target_97: [missing] -> pass (J2)
  • errors::verify_passes_ineffective_unstable_impl_123: [missing] -> pass (J2)
  • errors::verify_passes_ineffective_unstable_impl_124: pass -> [missing] (J2)
  • errors::verify_passes_inline_ignored_for_exported_100: [missing] -> pass (J2)
  • errors::verify_passes_inline_ignored_for_exported_101: pass -> [missing] (J2)
  • errors::verify_passes_missing_const_err_118: [missing] -> pass (J2)
  • errors::verify_passes_missing_const_err_119: pass -> [missing] (J2)
  • errors::verify_passes_missing_const_stab_attr_112: [missing] -> pass (J2)
  • errors::verify_passes_missing_stability_attr_112: pass -> [missing] (J2)
  • errors::verify_passes_object_lifetime_err_101: [missing] -> pass (J2)
  • errors::verify_passes_object_lifetime_err_102: pass -> [missing] (J2)
  • errors::verify_passes_proc_macro_bad_sig_121: pass -> [missing] (J2)
  • errors::verify_passes_repr_align_should_be_align_135: pass -> [missing] (J2)
  • errors::verify_passes_rustc_const_stable_indirect_pairing_126: pass -> [missing] (J2)
  • errors::verify_passes_sanitize_attribute_not_allowed_125: pass -> [missing] (J2)
  • errors::verify_passes_trait_impl_const_stable_113: [missing] -> pass (J2)
  • errors::verify_passes_transparent_incompatible_106: [missing] -> pass (J2)
  • errors::verify_passes_transparent_incompatible_107: pass -> [missing] (J2)
  • errors::verify_passes_unexportable_adt_with_private_fields_134: pass -> [missing] (J2)
  • errors::verify_passes_unexportable_fn_abi_130: pass -> [missing] (J2)
  • errors::verify_passes_unexportable_generic_fn_128: [missing] -> pass (J2)
  • errors::verify_passes_unexportable_item_127: [missing] -> pass (J2)
  • errors::verify_passes_unexportable_priv_item_132: [missing] -> pass (J2)
  • errors::verify_passes_unexportable_priv_item_133: pass -> [missing] (J2)
  • errors::verify_passes_unexportable_type_repr_131: pass -> [missing] (J2)
  • errors::verify_passes_unknown_feature_114: [missing] -> pass (J2)
  • errors::verify_passes_unknown_feature_115: pass -> [missing] (J2)
  • errors::verify_passes_unknown_feature_alias_116: pass -> [missing] (J2)
  • errors::verify_passes_unnecessary_partial_stable_feature_122: [missing] -> pass (J2)
  • errors::verify_passes_unnecessary_stable_feature_121: [missing] -> pass (J2)
  • errors::verify_passes_unnecessary_stable_feature_122: pass -> [missing] (J2)
  • errors::verify_passes_unstable_attr_for_already_stable_feature_110: [missing] -> pass (J2)
  • errors::verify_passes_unstable_attr_for_already_stable_feature_111: pass -> [missing] (J2)
  • errors::verify_passes_unsupported_attributes_in_where_127: pass -> [missing] (J2)
  • errors::verify_passes_useless_stability_109: pass -> [missing] (J2)
  • condvar::nonpoison_timeout_nanoseconds: [missing] -> pass (J3)
  • condvar::poison_timeout_nanoseconds: [missing] -> pass (J3)

Stage 2

  • condvar::poison_timeout_nanoseconds: [missing] -> pass (J0)
  • [ui] tests/ui/structs/default-field-values/struct-fields-ice-147325.rs: [missing] -> pass (J4)

(and 86 additional test diffs)

Additionally, 591 doctest diffs were found. These are ignored, as they are noisy.

Job group index

Test dashboard

Run

cargo run --manifest-path src/ci/citool/Cargo.toml -- \
    test-dashboard 235a4c083eb2a2bfe8779d211c3232f39396de00 --output-dir test-dashboard

And then open test-dashboard/index.html in your browser to see an overview of all executed tests.

Job duration changes

  1. i686-gnu-1: 6719.6s -> 8200.9s (22.0%)
  2. x86_64-gnu-miri: 4013.4s -> 4858.5s (21.1%)
  3. dist-arm-linux-gnueabi: 6173.2s -> 4971.5s (-19.5%)
  4. pr-check-1: 1447.0s -> 1713.7s (18.4%)
  5. x86_64-gnu-tools: 3249.4s -> 3791.1s (16.7%)
  6. x86_64-gnu-gcc: 2997.7s -> 3461.2s (15.5%)
  7. aarch64-gnu-llvm-20-1: 3342.4s -> 3835.3s (14.7%)
  8. i686-gnu-nopt-2: 7890.3s -> 8977.4s (13.8%)
  9. aarch64-apple: 10518.4s -> 9073.9s (-13.7%)
  10. i686-gnu-2: 5368.2s -> 6067.8s (13.0%)
How to interpret the job duration changes?

Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs.

@rust-timer
Copy link
Collaborator

📌 Perf builds for each rolled up PR:

PR# Message Perf Build Sha
#146187 Unstably constify ptr::drop_in_place and related methods 9ae3518be9413d775a6b7d87b119a941be422b34 (link)
#146503 std: improve handling of timed condition variable waits on … 059c65ff1d69cc5482d8a95c76bb9d58e5d94f5a (link)
#147526 Move computation of allocator shim contents to cg_ssa 452b22d2c638acf2462af3fbeba8ae3c71d7151b (link)
#147630 Bitset cleanups 99b6c413dcf96bd68936b0ea25a339b8a9307e8d (link)
#147638 bpf: return results larger than one register indirectly b56d8c8080acfeb1cc02d833900ede1730761ec7 (link)
#147666 Replace manual implementation with carrying_mul_add ce53d5797b3e68b37c44c38b2d2c704eecebc0cc (link)
#147669 fix missing link to std::char in std docs 5dbb2464d242d30b9ccaa6ca1f5c11ec7d43726e (link)
#147673 pretty print u128 with display ba90c144c2f0496db7af0c79a8d4b8588df61f27 (link)
#147677 Fewer exceptions in span() on parsed attributes 0fd07d1eab4eb258a6f8cd07a8b4bb961f8c66bd (link)
#147680 Fix ICE caused by associated_item_def_ids on wrong type in … 9f1e864b634da2c01651caf329e596fdd1274e1c (link)
#147682 convert rustc_main to the new attribute parsing infrastru… 79ef4efa0f5dd0375e515b2e38df7bded113b32f (link)
#147683 only check duplicates on old/unparsed attributes 41cbfed05d1179b45fab27249c73a63c98f83ef7 (link)

previous master: 844264adda

In the case of a perf regression, run the following command for each PR you suspect might be the cause: @rust-timer build $SHA

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (235a4c0): comparison URL.

Overall result: ❌✅ regressions and improvements - please read the text below

Our benchmarks found a performance regression caused by this PR.
This might be an actual regression, but it can also be just noise.

Next Steps:

  • If the regression was expected or you think it can be justified,
    please write a comment with sufficient written justification, and add
    @rustbot label: +perf-regression-triaged to it, to mark the regression as triaged.
  • If you think that you know of a way to resolve the regression, try to create
    a new PR with a fix for the regression.
  • If you do not understand the regression or you think that it is just noise,
    you can ask the @rust-lang/wg-compiler-performance working group for help (members of this group
    were already notified of this PR).

@rustbot label: +perf-regression
cc @rust-lang/wg-compiler-performance

Instruction count

Our most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.

mean range count
Regressions ❌
(primary)
0.3% [0.1%, 0.9%] 20
Regressions ❌
(secondary)
0.6% [0.0%, 2.7%] 48
Improvements ✅
(primary)
-0.4% [-0.4%, -0.2%] 3
Improvements ✅
(secondary)
-0.1% [-0.1%, -0.0%] 5
All ❌✅ (primary) 0.2% [-0.4%, 0.9%] 23

Max RSS (memory usage)

Results (primary 5.4%, secondary 3.3%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
5.4% [3.5%, 7.2%] 2
Regressions ❌
(secondary)
4.1% [1.6%, 6.3%] 6
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-1.3% [-1.3%, -1.3%] 1
All ❌✅ (primary) 5.4% [3.5%, 7.2%] 2

Cycles

Results (primary -2.7%, secondary 2.7%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
5.1% [2.6%, 7.9%] 5
Improvements ✅
(primary)
-2.7% [-2.7%, -2.7%] 1
Improvements ✅
(secondary)
-3.3% [-3.4%, -3.1%] 2
All ❌✅ (primary) -2.7% [-2.7%, -2.7%] 1

Binary size

Results (secondary -0.0%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-0.0% [-0.0%, -0.0%] 7
All ❌✅ (primary) - - 0

Bootstrap: 474.738s -> 474.707s (-0.01%)
Artifact size: 388.14 MiB -> 388.17 MiB (0.01%)

@rustbot rustbot added the perf-regression Performance regression. label Oct 15, 2025
@matthiaskrgr
Copy link
Member Author

@rust-timer build 452b22d

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (452b22d): comparison URL.

Overall result: no relevant changes - no action needed

Instruction count

This benchmark run did not return any relevant results for this metric.

Max RSS (memory usage)

Results (primary 4.4%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
4.4% [4.4%, 4.4%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 4.4% [4.4%, 4.4%] 1

Cycles

Results (secondary 2.7%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
2.7% [2.6%, 2.8%] 2
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) - - 0

Binary size

Results (secondary -0.0%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-0.0% [-0.0%, -0.0%] 7
All ❌✅ (primary) - - 0

Bootstrap: 474.738s -> 475.773s (0.22%)
Artifact size: 388.14 MiB -> 388.14 MiB (-0.00%)

@matthiaskrgr
Copy link
Member Author

@rust-timer build 99b6c41

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (99b6c41): comparison URL.

Overall result: ✅ improvements - no action needed

Instruction count

Our most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-0.4% [-0.5%, -0.2%] 3
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) -0.4% [-0.5%, -0.2%] 3

Max RSS (memory usage)

Results (primary 3.3%, secondary -2.4%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
3.3% [3.3%, 3.3%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-2.4% [-2.4%, -2.4%] 1
All ❌✅ (primary) 3.3% [3.3%, 3.3%] 1

Cycles

Results (primary -3.4%, secondary 5.1%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
5.1% [5.1%, 5.1%] 1
Improvements ✅
(primary)
-3.4% [-3.4%, -3.4%] 1
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) -3.4% [-3.4%, -3.4%] 1

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 474.738s -> 475.173s (0.09%)
Artifact size: 388.14 MiB -> 388.16 MiB (0.00%)

@matthiaskrgr
Copy link
Member Author

@rust-timer build ba90c14

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (ba90c14): comparison URL.

Overall result: no relevant changes - no action needed

Instruction count

This benchmark run did not return any relevant results for this metric.

Max RSS (memory usage)

Results (primary 1.5%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
1.5% [1.5%, 1.5%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 1.5% [1.5%, 1.5%] 1

Cycles

This benchmark run did not return any relevant results for this metric.

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 474.738s -> 475.257s (0.11%)
Artifact size: 388.14 MiB -> 388.12 MiB (-0.01%)

@matthiaskrgr
Copy link
Member Author

@rust-timer build ce53d57

@rust-timer
Copy link
Collaborator

Queued ce53d57 with parent 844264a, future comparison URL.
There are currently 0 preceding artifacts in the queue.
It will probably take at least ~1.1 hours until the benchmark run finishes.

@matthiaskrgr
Copy link
Member Author

matthiaskrgr commented Oct 15, 2025

edit todo:

@rust-timer build 0fd07d1eab4eb258a6f8cd07a8b4bb961f8c66bd
@rust-timer build 9f1e864b634da2c01651caf329e596fdd1274e1c
@rust-timer build 41cbfed05d1179b45fab27249c73a63c98f83ef7
``

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-attributes Area: Attributes (`#[…]`, `#![…]`) A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-run-make Area: port run-make Makefiles to rmake.rs merged-by-bors This PR was explicitly merged by bors. O-unix Operating system: Unix-like perf-regression Performance regression. PG-exploit-mitigations Project group: Exploit mitigations rollup A PR which is a rollup S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue.

Projects

None yet

Development

Successfully merging this pull request may close these issues.