Skip to content

Rollup of 12 pull requests#152104

Merged
rust-bors[bot] merged 30 commits intorust-lang:mainfrom
JonathanBrouwer:rollup-N93TdHm
Feb 4, 2026
Merged

Rollup of 12 pull requests#152104
rust-bors[bot] merged 30 commits intorust-lang:mainfrom
JonathanBrouwer:rollup-N93TdHm

Conversation

@JonathanBrouwer
Copy link
Contributor

Successful merges:

Failed merges:

r? @ghost

Create a similar rollup

ZuseZ4 and others added 30 commits January 23, 2026 19:58
…stom target specs

This also takes the chance to move forward the job to Linux v6.19-rc7,
thus the previous workaround is not needed anymore.

Link: rust-lang#151534
Signed-off-by: Miguel Ojeda <[email protected]>
Extend CI postprocessing to aggregate pass/fail/ignored counts
for debuginfo tests. Tests are identified via their reported
suite names (e.g. debuginfo-gdb, debuginfo-lldb or debuginfo-cdb).

Signed-off-by: Usman Akinyemi <[email protected]>
To match the opening `(` before the reference to PR 127786
…jorn3,petrochenkov

link modifier `export-symbols`: export all global symbols from selected uptream c static libraries

In order to be able to export symbols from a specified upstream C static library, I redesigned a solution that, compared to a previous PR rust-lang#150335 I submitted, will not have any extra symbols leaking out.

The following points should be noted:
 - This attribute will select and import the `Global` symbols of the first matching library it finds.
 - Developers should ensure that there are no libraries with the same name.
 - This modifier is only compatible with `static` linking kind
 - By default, upstream C static libraries will not export their `Global` symbols regardless of whether `LTO` optimization is enabled. However, after enabling this attribute, if the upstream C static library has `LTO` optimization enabled, the compiler will issue an error to inform the developer that the linked C library is invalid.

The test code is the same as the PR rust-lang#150335.
Here are the results:
1. `cargo +include-libs rustc --release -- -L. -lstatic:+export-symbols=c_add`
(or you can use `#[link(name = "c_add", kind= "static", modifier = "+export-symbols")]` in the file)
```bash
                 U abort@GLIBC_2.2.5
                 U bcmp@GLIBC_2.2.5
0000000000014f60 T c_add
                 U calloc@GLIBC_2.2.5
                 U close@GLIBC_2.2.5
0000000000014f70 T c_sub
                 w __cxa_finalize@GLIBC_2.2.5
                 w __cxa_thread_atexit_impl@GLIBC_2.18
                 U dl_iterate_phdr@GLIBC_2.2.5
0000000000014ee0 T downstream_add
                 U __errno_location@GLIBC_2.2.5
                 U free@GLIBC_2.2.5
                 U fstat64@GLIBC_2.33
                 U getcwd@GLIBC_2.2.5
                 U getenv@GLIBC_2.2.5
                 w __gmon_start__
                 w _ITM_deregisterTMCloneTable
                 w _ITM_registerTMCloneTable
                 U lseek64@GLIBC_2.2.5
                 U malloc@GLIBC_2.2.5
                 U memcpy@GLIBC_2.14
                 U memmove@GLIBC_2.2.5
                 U memset@GLIBC_2.2.5
                 U mmap64@GLIBC_2.2.5
                 U munmap@GLIBC_2.2.5
                 U open64@GLIBC_2.2.5
                 U posix_memalign@GLIBC_2.2.5
                 U pthread_key_create@GLIBC_2.34
                 U pthread_key_delete@GLIBC_2.34
                 U pthread_setspecific@GLIBC_2.34
                 U read@GLIBC_2.2.5
                 U readlink@GLIBC_2.2.5
                 U realloc@GLIBC_2.2.5
                 U realpath@GLIBC_2.3
                 U stat64@GLIBC_2.33
                 w statx@GLIBC_2.28
                 U strlen@GLIBC_2.2.5
                 U syscall@GLIBC_2.2.5
                 U __tls_get_addr@GLIBC_2.3
                 U _Unwind_Backtrace@GCC_3.3
                 U _Unwind_DeleteException@GCC_3.0
                 U _Unwind_GetDataRelBase@GCC_3.0
                 U _Unwind_GetIP@GCC_3.0
                 U _Unwind_GetIPInfo@GCC_4.2.0
                 U _Unwind_GetLanguageSpecificData@GCC_3.0
                 U _Unwind_GetRegionStart@GCC_3.0
                 U _Unwind_GetTextRelBase@GCC_3.0
                 U _Unwind_RaiseException@GCC_3.0
                 U _Unwind_Resume@GCC_3.0
                 U _Unwind_SetGR@GCC_3.0
                 U _Unwind_SetIP@GCC_3.0
                 U write@GLIBC_2.2.5
                 U writev@GLIBC_2.2.5
```
3. `cargo +nightly rustc --release -- -L ./`
```bash
                 U abort@GLIBC_2.2.5
                 U bcmp@GLIBC_2.2.5
                 U calloc@GLIBC_2.2.5
                 U close@GLIBC_2.2.5
                 w __cxa_finalize@GLIBC_2.2.5
                 w __cxa_thread_atexit_impl@GLIBC_2.18
                 U dl_iterate_phdr@GLIBC_2.2.5
0000000000011e10 T downstream_add
                 U __errno_location@GLIBC_2.2.5
                 U free@GLIBC_2.2.5
                 U fstat64@GLIBC_2.33
                 U getcwd@GLIBC_2.2.5
                 U getenv@GLIBC_2.2.5
                 w gettid@GLIBC_2.30
                 w __gmon_start__
                 w _ITM_deregisterTMCloneTable
                 w _ITM_registerTMCloneTable
                 U lseek64@GLIBC_2.2.5
                 U malloc@GLIBC_2.2.5
                 U memcpy@GLIBC_2.14
                 U memmove@GLIBC_2.2.5
                 U memset@GLIBC_2.2.5
                 U mmap64@GLIBC_2.2.5
                 U munmap@GLIBC_2.2.5
                 U open64@GLIBC_2.2.5
                 U posix_memalign@GLIBC_2.2.5
                 U pthread_key_create@GLIBC_2.34
                 U pthread_key_delete@GLIBC_2.34
                 U pthread_setspecific@GLIBC_2.34
                 U read@GLIBC_2.2.5
                 U readlink@GLIBC_2.2.5
                 U realloc@GLIBC_2.2.5
                 U realpath@GLIBC_2.3
                 U stat64@GLIBC_2.33
                 w statx@GLIBC_2.28
                 U strlen@GLIBC_2.2.5
                 U syscall@GLIBC_2.2.5
                 U __tls_get_addr@GLIBC_2.3
                 U _Unwind_Backtrace@GCC_3.3
                 U _Unwind_GetDataRelBase@GCC_3.0
                 U _Unwind_GetIP@GCC_3.0
                 U _Unwind_GetIPInfo@GCC_4.2.0
                 U _Unwind_GetLanguageSpecificData@GCC_3.0
                 U _Unwind_GetRegionStart@GCC_3.0
                 U _Unwind_GetTextRelBase@GCC_3.0
                 U _Unwind_RaiseException@GCC_3.0
                 U _Unwind_Resume@GCC_3.0
                 U _Unwind_SetGR@GCC_3.0
                 U _Unwind_SetIP@GCC_3.0
                 U write@GLIBC_2.2.5
                 U writev@GLIBC_2.2.5
```

r? @bjorn3
…json-again, r=chenyukang

target: fix destabilising target-spec-json

cc rust-lang#151528

rust-lang#150151 missed a case and didn't entirely destabilise target-spec-json - this patch corrects that.

Closes rust-lang#71009
rustbook/README.md: add missing `)`

To match the opening `(` before the reference to PR 127786
… r=oli-obk

Fix autodiff codegen tests

Preparing autodiff for release on nightly. Since we haven't been running these tests in CI, they regressed over the last months. These changes fixes this and hopefully make the tests more robust for the future.

r? compiler
…obzol

citool: report debuginfo test statistics

Extend CI postprocessing to aggregate pass/fail/ignored counts for debuginfo tests. Tests are identified via their reported suite names (e.g. debuginfo-gdb, debuginfo-lldb or debuginfo-cdb).
…ure-warning, r=JonathanBrouwer

Revert doc attribute parsing errors to future warnings

Part of rust-lang#151865 (hopefully fixes it).

r? @JonathanBrouwer
…r=lqd

Convert to inline diagnostics in `rustc_ty_utils`

For rust-lang#151366

r? @jdonszelmann
…=jdonszelmann

Convert to inline diagnostics in `rustc_session`

For rust-lang#151366

r? @jdonszelmann
…=lqd

Convert to inline diagnostics in `rustc_privacy`

For rust-lang#151366

r? @jdonszelmann
…ze, r=jdonszelmann

Convert to inline diagnostics in `rustc_monomorphize`

For rust-lang#151366

r? @jdonszelmann
…follow-on-windows, r=ChrisDenton

Fix set_times_nofollow for directory on windows

Fix issue from:
rust-lang#147455 (comment)

old code `opts.write(true)` on Windows requests `GENERIC_WRITE` access, replace with `opts.access_mode(c::FILE_WRITE_ATTRIBUTES)` to get minimal permission.

r? @joshtriplett
…nds, r=JonathanBrouwer,GuillaumeGomez

Convert to inline diagnostics in all codegen backends

Part of rust-lang#151366

r? @JonathanBrouwer
@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-infra Relevant to the infrastructure 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. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. labels Feb 4, 2026
@JonathanBrouwer
Copy link
Contributor Author

@bors r+ rollup=never p=5

@rust-bors
Copy link
Contributor

rust-bors bot commented Feb 4, 2026

📌 Commit cf0e19b has been approved by JonathanBrouwer

It is now in the queue for this repository.

@rust-bors rust-bors bot 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 Feb 4, 2026
@rust-bors

This comment has been minimized.

@rust-bors rust-bors bot added merged-by-bors This PR was explicitly merged by bors. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Feb 4, 2026
@rust-bors
Copy link
Contributor

rust-bors bot commented Feb 4, 2026

☀️ Test successful - CI
Approved by: JonathanBrouwer
Duration: 3h 17m 55s
Pushing 8bccf12 to main...

@rust-bors rust-bors bot merged commit 8bccf12 into rust-lang:main Feb 4, 2026
12 checks passed
@rustbot rustbot added this to the 1.95.0 milestone Feb 4, 2026
@github-actions
Copy link
Contributor

github-actions bot commented Feb 4, 2026

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 930ecbc (parent) -> 8bccf12 (this PR)

Test differences

Show 273 test diffs

Stage 0

  • errors::verify_monomorphize_abi_error_unsupported_vector_type_10: pass -> [missing] (J0)
  • errors::verify_monomorphize_recursion_limit_0: pass -> [missing] (J0)
  • errors::verify_monomorphize_static_initializer_cyclic_12: pass -> [missing] (J0)
  • errors::verify_monomorphize_symbol_already_defined_3: pass -> [missing] (J0)
  • errors::verify_privacy_private_interface_or_bounds_lint_6: pass -> [missing] (J0)
  • errors::verify_session_cannot_enable_crt_static_linux_12: pass -> [missing] (J0)
  • errors::verify_session_cannot_mix_and_match_sanitizers_11: pass -> [missing] (J0)
  • errors::verify_session_crate_name_empty_31: pass -> [missing] (J0)
  • errors::verify_session_embed_source_insufficient_dwarf_version_23: pass -> [missing] (J0)
  • errors::verify_session_file_write_fail_30: pass -> [missing] (J0)
  • errors::verify_session_function_return_requires_x86_or_x86_64_44: pass -> [missing] (J0)
  • errors::verify_session_incompatible_linker_flavor_43: pass -> [missing] (J0)
  • errors::verify_session_int_literal_too_large_39: pass -> [missing] (J0)
  • errors::verify_session_linker_plugin_lto_windows_not_supported_4: pass -> [missing] (J0)
  • errors::verify_session_must_be_name_of_associated_function_2: pass -> [missing] (J0)
  • errors::verify_session_sanitizer_cfi_canonical_jump_tables_requires_cfi_15: pass -> [missing] (J0)
  • errors::verify_session_sanitizer_cfi_generalize_pointers_requires_cfi_16: pass -> [missing] (J0)
  • errors::verify_session_sanitizer_cfi_requires_lto_13: pass -> [missing] (J0)
  • errors::verify_session_sanitizers_not_supported_10: pass -> [missing] (J0)
  • errors::verify_session_soft_float_deprecated_52: pass -> [missing] (J0)
  • errors::verify_session_split_lto_unit_requires_lto_20: pass -> [missing] (J0)
  • errors::verify_session_target_requires_unwind_tables_7: pass -> [missing] (J0)
  • errors::verify_session_unsupported_dwarf_version_22: pass -> [missing] (J0)
  • errors::verify_session_unsupported_reg_struct_return_arch_49: pass -> [missing] (J0)
  • errors::verify_session_unsupported_regparm_47: pass -> [missing] (J0)
  • errors::verify_ty_utils_impl_trait_not_param_4: pass -> [missing] (J0)
  • errors::verify_ty_utils_non_primitive_simd_type_2: pass -> [missing] (J0)
  • lints::verify_lint_attr_crate_level_140: pass -> [missing] (J0)
  • lints::verify_lint_attr_crate_level_143: [missing] -> pass (J0)
  • lints::verify_lint_doc_alias_duplicated_126: pass -> [missing] (J0)
  • lints::verify_lint_doc_auto_cfg_expects_hide_or_show_127: pass -> [missing] (J0)
  • lints::verify_lint_doc_auto_cfg_hide_show_expects_list_132: [missing] -> pass (J0)
  • lints::verify_lint_doc_auto_cfg_hide_show_unexpected_item_128: pass -> [missing] (J0)
  • lints::verify_lint_doc_auto_cfg_wrong_literal_139: [missing] -> pass (J0)
  • lints::verify_lint_doc_invalid_133: [missing] -> pass (J0)
  • lints::verify_lint_doc_test_unknown_138: pass -> [missing] (J0)
  • lints::verify_lint_doc_test_unknown_141: [missing] -> pass (J0)
  • lints::verify_lint_doc_unknown_any_138: [missing] -> pass (J0)
  • lints::verify_lint_doc_unknown_include_131: pass -> [missing] (J0)
  • lints::verify_lint_doc_unknown_plugins_134: pass -> [missing] (J0)
  • lints::verify_lint_doc_unknown_spotlight_132: pass -> [missing] (J0)
  • lints::verify_lint_expected_name_value_127: [missing] -> pass (J0)
  • lints::verify_lint_expected_no_args_126: [missing] -> pass (J0)
  • lints::verify_lint_incorrect_do_not_recommend_args_141: pass -> [missing] (J0)
  • lints::verify_lint_incorrect_do_not_recommend_args_144: [missing] -> pass (J0)
  • lints::verify_lint_unused_visibilities_128: [missing] -> pass (J0)

Stage 1

  • [ui] tests/rustdoc-ui/lints/invalid-doc-attr-3.rs: [missing] -> pass (J0)
  • errors::verify_monomorphize_abi_error_disabled_vector_type_8: pass -> [missing] (J1)
  • errors::verify_monomorphize_couldnt_dump_mono_stats_4: pass -> [missing] (J1)
  • errors::verify_monomorphize_recursion_limit_0: pass -> [missing] (J1)
  • errors::verify_monomorphize_start_not_found_7: pass -> [missing] (J1)
  • errors::verify_privacy_in_public_interface_2: pass -> [missing] (J1)
  • errors::verify_privacy_unnameable_types_lint_5: pass -> [missing] (J1)
  • errors::verify_session_branch_protection_requires_aarch64_27: pass -> [missing] (J1)
  • errors::verify_session_cannot_mix_and_match_sanitizers_11: pass -> [missing] (J1)
  • errors::verify_session_embed_source_requires_debug_info_24: pass -> [missing] (J1)
  • errors::verify_session_file_write_fail_30: pass -> [missing] (J1)
  • errors::verify_session_function_return_requires_x86_or_x86_64_44: pass -> [missing] (J1)
  • errors::verify_session_hexadecimal_float_literal_not_supported_40: pass -> [missing] (J1)
  • errors::verify_session_instrumentation_not_supported_8: pass -> [missing] (J1)
  • errors::verify_session_invalid_character_in_crate_name_32: pass -> [missing] (J1)
  • errors::verify_session_invalid_float_literal_width_37: pass -> [missing] (J1)
  • errors::verify_session_invalid_int_literal_width_34: pass -> [missing] (J1)
  • errors::verify_session_invalid_num_literal_suffix_36: pass -> [missing] (J1)
  • errors::verify_session_linker_plugin_lto_windows_not_supported_4: pass -> [missing] (J1)
  • errors::verify_session_not_circumvent_feature_3: pass -> [missing] (J1)
  • errors::verify_session_profile_sample_use_file_does_not_exist_6: pass -> [missing] (J1)
  • errors::verify_session_sanitizer_cfi_canonical_jump_tables_requires_cfi_15: pass -> [missing] (J1)
  • errors::verify_session_sanitizer_cfi_generalize_pointers_requires_cfi_16: pass -> [missing] (J1)
  • errors::verify_session_sanitizer_cfi_requires_lto_13: pass -> [missing] (J1)
  • errors::verify_session_sanitizer_cfi_requires_single_codegen_unit_14: pass -> [missing] (J1)
  • errors::verify_session_sanitizer_kcfi_requires_panic_abort_19: pass -> [missing] (J1)
  • errors::verify_session_sanitizer_not_supported_9: pass -> [missing] (J1)
  • errors::verify_session_soft_float_deprecated_52: pass -> [missing] (J1)
  • errors::verify_session_split_debuginfo_unstable_platform_28: pass -> [missing] (J1)
  • errors::verify_session_split_lto_unit_requires_lto_20: pass -> [missing] (J1)
  • errors::verify_session_target_small_data_threshold_not_supported_26: pass -> [missing] (J1)
  • errors::verify_session_unsupported_regparm_47: pass -> [missing] (J1)
  • errors::verify_session_unsupported_regparm_arch_48: pass -> [missing] (J1)
  • errors::verify_ty_utils_needs_drop_overflow_0: pass -> [missing] (J1)
  • errors::verify_ty_utils_non_primitive_simd_type_2: pass -> [missing] (J1)
  • lints::verify_lint_attr_crate_level_143: [missing] -> pass (J1)
  • lints::verify_lint_doc_alias_duplicated_126: pass -> [missing] (J1)
  • lints::verify_lint_doc_alias_duplicated_129: [missing] -> pass (J1)
  • lints::verify_lint_doc_auto_cfg_expects_hide_or_show_127: pass -> [missing] (J1)
  • lints::verify_lint_doc_invalid_130: pass -> [missing] (J1)
  • lints::verify_lint_doc_test_literal_139: pass -> [missing] (J1)
  • lints::verify_lint_doc_unknown_include_134: [missing] -> pass (J1)
  • lints::verify_lint_doc_unknown_plugins_137: [missing] -> pass (J1)
  • lints::verify_lint_malformed_doc_125: [missing] -> pass (J1)
  • lints::verify_lint_unused_visibilities_128: [missing] -> pass (J1)
  • fs::tests::test_fs_set_times_on_dir: [missing] -> pass (J6)
  • [codegen] tests/codegen-llvm/autodiff/generic.rs: ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) -> [missing] (J8)

Stage 2

  • [codegen] tests/codegen-llvm/autodiff/generic.rs: ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) -> [missing] (J2)
  • [codegen] tests/codegen-llvm/autodiff/generic.rs#F32: [missing] -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/cdylib-export-c-library-symbols: [missing] -> ignore (ignored when the operating system is windows) (J3)
  • [ui] tests/ui/link-native-libs/link-arg-error2.rs: [missing] -> pass (J4)
  • [ui] tests/ui/link-native-libs/link-arg-from-rs2.rs: [missing] -> pass (J4)
  • [ui] tests/rustdoc-ui/lints/duplicated-attr.rs: [missing] -> pass (J5)
  • [run-make] tests/run-make/cdylib-export-c-library-symbols: [missing] -> ignore (ignored when the target vendor is Apple) (J7)

(and 161 additional test diffs)

Additionally, 12 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 8bccf1224deab49b54694c9090e577bfe90a94e6 --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. dist-x86_64-apple: 1h 48m -> 2h 11m (+21.1%)
  2. dist-apple-various: 1h 1m -> 1h 13m (+19.3%)
  3. dist-loongarch64-linux: 1h 43m -> 1h 57m (+14.3%)
  4. dist-aarch64-apple: 2h 39m -> 2h 17m (-13.4%)
  5. dist-powerpc-linux: 1h 26m -> 1h 37m (+12.2%)
  6. x86_64-rust-for-linux: 54m 53s -> 48m 25s (-11.8%)
  7. tidy: 2m 43s -> 2m 58s (+9.6%)
  8. dist-sparcv9-solaris: 1h 24m -> 1h 31m (+8.6%)
  9. arm-android: 1h 48m -> 1h 38m (-8.5%)
  10. x86_64-gnu-llvm-21-1: 1h 22m -> 1h 15m (-8.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
#150992 link modifier export-symbols: export all global symbols f… 7559b500d25b46517745b4c98379ce7a44da991b (link)
#151526 Fix autodiff codegen tests 02fc6b531b91bd4a3df8a819a0a94607f2535554 (link)
#151534 target: fix destabilising target-spec-json af3f99ebc2b1e4cd356d72ebff18b56aace32771 (link)
#151810 citool: report debuginfo test statistics 2091dd2b82c1005a6f81ec3115e35099d3337c04 (link)
#151952 Revert doc attribute parsing errors to future warnings d156d07b5b138000182d2028989ebc8192643030 (link)
#152065 Convert to inline diagnostics in rustc_ty_utils 675854fc525a1dbae3976a4d620715505d5f3faf (link)
#152066 Convert to inline diagnostics in rustc_session 5aa25b335fd8245ab825aa82cfe888077784f963 (link)
#152069 Convert to inline diagnostics in rustc_privacy 41e33491f48b91cd07bb2c95e4df77fc31e143ec (link)
#152072 Convert to inline diagnostics in rustc_monomorphize a61b9fe3831e60a67ca510c04ee5fa00c10566b7 (link)
#152083 Fix set_times_nofollow for directory on windows fb5135a145b069c61b778ebe69e5158acee2feed (link)
#152088 rustbook/README.md: add missing ) 4d024b800dacf391f56f871029e51eb3abff68a9 (link)
#152102 Convert to inline diagnostics in all codegen backends f974e9f9def53e30247485ddf02b64fc3d3bc2ef (link)

previous master: 930ecbcdf8

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 (8bccf12): comparison URL.

Overall result: ✅ improvements - no action needed

@rustbot label: -perf-regression

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
Improvements ✅
(secondary)
-0.7% [-1.5%, -0.2%] 29
All ❌✅ (primary) - - 0

Max RSS (memory usage)

Results (primary -2.0%, secondary -0.8%)

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.9% [0.9%, 0.9%] 1
Improvements ✅
(primary)
-2.0% [-2.0%, -2.0%] 1
Improvements ✅
(secondary)
-2.6% [-2.6%, -2.6%] 1
All ❌✅ (primary) -2.0% [-2.0%, -2.0%] 1

Cycles

Results (primary -1.1%, secondary 3.8%)

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)
7.4% [7.1%, 7.6%] 2
Improvements ✅
(primary)
-1.1% [-1.1%, -1.1%] 1
Improvements ✅
(secondary)
-3.3% [-3.3%, -3.3%] 1
All ❌✅ (primary) -1.1% [-1.1%, -1.1%] 1

Binary size

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

Bootstrap: 477.437s -> 472.482s (-1.04%)
Artifact size: 398.08 MiB -> 398.10 MiB (0.00%)

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

Labels

A-attributes Area: Attributes (`#[…]`, `#![…]`) A-CI Area: Our Github Actions CI 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 A-testsuite Area: The testsuite used to check the correctness of rustc merged-by-bors This PR was explicitly merged by bors. rollup A PR which is a rollup T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-infra Relevant to the infrastructure 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. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.

Projects

None yet

Development

Successfully merging this pull request may close these issues.