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 6 pull requests #121407

Closed
wants to merge 15 commits into from

Commits on Jan 13, 2024

  1. os::net: expanding TcpStreamExt for Linux with tcp_deferaccept.

    allows for socket to process only when there is data to process,
    the option sets a number of seconds until the data is ready.
    devnexen committed Jan 13, 2024
    Configuration menu
    Copy the full SHA
    3e43bf0 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2024

  1. triagebot: add queue notifications

    Signed-off-by: David Wood <david@davidtw.co>
    davidtwco committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    e5fa6ec View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Configuration menu
    Copy the full SHA
    ec91209 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c40261d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3a83b27 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5e0e5b1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a17211b View commit details
    Browse the repository at this point in the history
  6. Add an ATB test

    compiler-errors committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    a233b16 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f8fbb70 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#119636 - devnexen:linux_tcp_defer_accept, r…

    …=joshtriplett
    
    os::net: expanding TcpStreamExt for Linux with `tcp_deferaccept`.
    
    allows for socket to process only when there is data to process, the option sets a number of seconds until the data is ready.
    matthiaskrgr authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    7651238 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#121261 - Zalathar:pending-dups, r=oli-obk

    coverage: Remove `pending_dups` from the span refiner
    
    When extracting coverage spans from a function's MIR, we need to decide how to handle spans that are associated with more than one node (BCB) in the coverage control flow graph.
    
    The existing code for managing those duplicate spans is very subtle and difficult to modify. But by eagerly deduplicating those extracted spans in a much simpler way, we can remove a massive chunk of complexity from the span refiner.
    
    There is a tradeoff here, in that we no longer try to retain *all* nondominating BCBs that have the same span, only the last one in the (semi-arbitrary) dominance ordering. But in practice, this produces very little difference in our coverage tests, and the simplification is so significant that I think it's worthwhile.
    
    `@rustbot` label +A-code-coverage
    matthiaskrgr authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    28aae87 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#121336 - davidtwco:triagebot-notifications,…

    … r=wesleywiser
    
    triagebot: add queue notifications
    
    This seems like it could be useful.
    
    r? `@wesleywiser`
    matthiaskrgr authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    eca3522 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#121391 - Nadrieril:fix-liveness, r=compiler…

    …-errors
    
    never patterns: Fix liveness analysis in the presence of never patterns
    
    There's a bunch of code that only looks at the first alternative of an or-pattern, under the assumption that all alternatives have the same set of bindings. This is true except for never pattern alternatives  (e.g. `Ok(x) | Err(!)`), so we skip these. I expect there's other code with this problem, I'll have to check that later.
    
    I don't have tests for this yet because mir lowering causes other issues; I'll have some in the next PR.
    
    r? `@compiler-errors`
    matthiaskrgr authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    2eaaa8c View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#121399 - psumbera:solaris-strip-debug, r=pe…

    …trochenkov
    
    Solaris linker does not support --strip-debug
    
    Fixes rust-lang#121381
    matthiaskrgr authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    54d6ba1 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    d3d0ae7 View commit details
    Browse the repository at this point in the history