- Notifications
You must be signed in to change notification settings - Fork13.6k
Subtree update cg gcc 2025 07 18#144140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Subtree update cg gcc 2025 07 18#144140
Conversation
…update_cg_gcc_2025-06-28
…jubileeAdd SIMD funnel shift and round-to-even intrinsicsThis PR adds 3 new SIMD intrinsics - `simd_funnel_shl` - funnel shift left - `simd_funnel_shr` - funnel shift right - `simd_round_ties_even` (vector version of `round_ties_even_fN`)TODO (future PR): implement `simd_fsh{l,r}` in miri, cg_gcc and cg_clif (it is surprisingly hard to implement without branches, the common tricks that rotate uses doesn't work because we have 2 elements now. e.g, the `-n&31` trick used by cg_gcc to implement rotate doesn't work with this because then `fshl(a, b, 0)` will be `a | b`)[#t-compiler > More SIMD intrinsics](https://rust-lang.zulipchat.com/#narrow/channel/131828-t-compiler/topic/More.20SIMD.20intrinsics/with/522130286)`@rustbot` label T-compiler T-libs A-intrinsics F-core_intrinsicsr? `@workingjubilee`
…update_cg_gcc_2025-06-30
…_2025-06-30, r=GuillaumeGomezGCC backend subtree updatecc `@antoyo`r? ghost
give Pointer::into_parts a more scary name and offer a safer alternative`into_parts` is a bit too innocent of a name for a somewhat subtle operation.r? `@oli-obk`
…iaskrgrRollup of 9 pull requestsSuccessful merges: -rust-lang#143019 (Ensure -V --verbose processes both codegen_backend and codegen-backend) -rust-lang#143140 (give Pointer::into_parts a more scary name and offer a safer alternative) -rust-lang#143175 (Make combining LLD with external LLVM config a hard error) -rust-lang#143180 (Use `tracing-forest` instead of `tracing-tree` for bootstrap tracing) -rust-lang#143223 (Improve macro stats printing) -rust-lang#143228 (Handle build scripts better in `-Zmacro-stats` output.) -rust-lang#143229 ([COMPILETEST-UNTANGLE 1/N] Move some some early config checks to the lib and move the compiletest binary) -rust-lang#143246 (Subtree update of `rust-analyzer`) -rust-lang#143248 (Update books)r? `@ghost``@rustbot` modify labels: rollup
…et-triple-env-varRemove OVERWRITE_TARGET_TRIPLE env var now that config.sh is gone
…rchitectures not supported by the object crate anymore
…7_04Sync from rust 2025/07/04
…update_cg_gcc_2025-07-18
Some changes occurred in compiler/rustc_codegen_gcc |
@bors r+ p=1 rollup=never |
@@ -198,10 +198,24 @@ fn main() { | |||
assert_eq!(intrinsics::align_of::<u16>()asu8,2); | |||
assert_eq!(intrinsics::align_of_val(&a)asu8, intrinsics::align_of::<&str>()asu8); | |||
<<<<<<<HEAD |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
It seems you missed those conflict delimiters.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Oof. Indeed. And of course, this test is not check when runningx.py
yet. ^^'
@bors r- |
@bors r+ p=1 rollup=never |
☀️ Test successful -checks-actions |
ebd8557
intorust-lang:masterUh oh!
There was an error while loading.Please reload this page.
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.Comparing8f08b3a (parent) ->ebd8557 (this PR) Test differencesShow 3 test diffs3 doctest diffs were found. These are ignored, as they are noisy. Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \ test-dashboard ebd8557637b33cc09b6ee8273f3154d5d3af6a15 --output-dir test-dashboard And then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
Finished benchmarking commit (ebd8557):comparison URL. Overall result: ❌ regressions - no action needed@rustbot label: -perf-regression Instruction countOur most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.
Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResults (secondary -6.0%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 465.311s -> 465.449s (0.03%) |
cc@antoyo
r? ghost