Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 5 pull requests #128968

Closed
wants to merge 14 commits into from
Closed

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    acb0241 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a1b2b7f View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2024

  1. Configuration menu
    Copy the full SHA
    6308d13 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    03b6c2f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    141d9dc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f4cb0de View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2024

  1. Configuration menu
    Copy the full SHA
    960e7b5 View commit details
    Browse the repository at this point in the history
  2. use rfs in rustdoc io rmake test

    lqd committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    dcd6170 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6dc300b View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#128643 - beetrees:ppc64-abi-fix, r=bjorn3

    Refactor `powerpc64` call ABI handling
    
    As the [specification](https://openpowerfoundation.org/specifications/64bitelfabi/) for the ELFv2 ABI states that returned aggregates are returned like arguments as long as they are at most two doublewords, I've merged the `classify_arg` and `classify_ret` functions to reduce code duplication. The only functional change is to fix rust-lang#128579: the `classify_ret` function was incorrectly handling aggregates where `bits > 64 && bits < 128`. I've used the aggregate handling implementation from `classify_arg` which doesn't have this issue.
    
    ``@awilfox`` could you test this on `powerpc64-unknown-linux-musl`? I'm only able to cross-test on `powerpc64-unknown-linux-gnu` and `powerpc64le-unknown-linux-gnu` locally at the moment, and as a tier 3 target `powerpc64-unknown-linux-musl` has zero CI coverage.
    
    Fixes: rust-lang#128579
    jieyouxu authored Aug 11, 2024
    Configuration menu
    Copy the full SHA
    806f8ce View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#128873 - ChrisDenton:windows-targets, r=Mar…

    …k-Simulacrum
    
    Add windows-targets crate to std's sysroot
    
    With this PR, when backtrace is used as a crate from crates.io it will (once updated) use the real [windows-targets](https://crates.io/crates/windows-targets) crate. But when used from std it'll use std's replacement version.
    
    This allows sharing our customized `windows_tagets::link!` macro between std proper and the backtrace crate when used as part of std, ensuring a consistent linking story. This will be especially important once we move to using [`raw-dylib`](https://doc.rust-lang.org/reference/items/external-blocks.html#dylib-versus-raw-dylib) by default.
    jieyouxu authored Aug 11, 2024
    Configuration menu
    Copy the full SHA
    66d3db0 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#128916 - jieyouxu:dump-ice-dump-ice, r=comp…

    …iler-errors
    
    Tidy up `dump-ice-to-disk` and make assertion failures dump ICE messages
    
    For the future traveler: **if you did a `git blame` and found this PR that last modified `dump-ice-to-disk` because the test failed in a completely unrelated PR, then I'm afraid our ICE dump may have regressed or somehow behaves differently on `i686-mingw`.**
    
    A bit of clean up to the `dump-ice-to-disk` test.
    
    - Fixes/updates the top-level comment.
    - Add a FIXME pointing to rust-lang#128911 for flakiness.
    - Instead of trying to manually cleanup `rustc-ice*.txt` dumps, run each test instance in a separate temp directory.
    - Explicitly make `RUSTC_ICE` unavailable in one of the `-Zmetrics-dir` test case to not have interference from environment.
    - Make assertion failures (on ICE dump line count mismatch) extremely verbose to help debug why this test is flakey in CI (rust-lang#128911).
    
    Contains a fix by `@saethlin` in rust-lang#128909, should wait until that is merged then rebase on top.
    
    try-job: aarch64-gnu
    try-job: aarch64-apple
    try-job: x86_64-msvc
    try-job: i686-mingw
    try-job: test-various
    jieyouxu authored Aug 11, 2024
    Configuration menu
    Copy the full SHA
    e95fa51 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#128929 - saethlin:enable-codegen-units-test…

    …s, r=compiler-errors
    
    Fix codegen-units tests that were disabled 8 years ago
    
    I don't know if any of these tests still have value. They were disabled by rust-lang#33890, and we've survived without them for a while. But considering how small this test suite is, maybe it's worth having them.
    
    I also had to add some normalization to the codegen-units tests output. I think the fact that I had to add some underscores how poor our test coverage is.
    jieyouxu authored Aug 11, 2024
    Configuration menu
    Copy the full SHA
    00bccaa View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#128937 - lqd:clean-rmake-tests, r=jieyouxu

    Fix warnings in rmake tests on `x86_64-unknown-linux-gnu`
    
    r? ``@jieyouxu``
    
    This PR fixes some warnings I saw in rmake tests. I didn't deny more warnings in this PR until ``@jieyouxu`` gives their opinion, but maybe we should actually deny all warnings in `rmake.rs` files?
    
    I've also only looked at non-ignored tests on `x86_64-unknown-linux-gnu`, and denying warnings would require a try build for all targets 😓.
    jieyouxu authored Aug 11, 2024
    Configuration menu
    Copy the full SHA
    d1b29fc View commit details
    Browse the repository at this point in the history