]> git.lizzy.rs Git - rust.git/log
rust.git
2 years agoAuto merge of #90527 - 12101111:libc_a, r=petrochenkov
bors [Wed, 3 Nov 2021 15:11:06 +0000 (15:11 +0000)]
Auto merge of #90527 - 12101111:libc_a, r=petrochenkov

Provide standalone libc.a in self-contained for musl and wasi

This is a prerequisites of https://github.com/rust-lang/libc/pull/2272, which in turn fix:

- https://github.com/rust-lang/wg-cargo-std-aware/issues/66
- https://github.com/rust-lang/rust/issues/89626

2 years agoProvide standalone libc.a in self-contained for musl and wasi
12101111 [Wed, 3 Nov 2021 13:12:15 +0000 (21:12 +0800)]
Provide standalone libc.a in self-contained for musl and wasi

2 years agoAuto merge of #90517 - willcrichton:example-analyzer, r=jyn514
bors [Wed, 3 Nov 2021 11:48:52 +0000 (11:48 +0000)]
Auto merge of #90517 - willcrichton:example-analyzer, r=jyn514

Fix URL for scrape-examples.js in rustdoc page template

Also adds line numbers to URLs in the "additional examples" section of rustdoc.

r? `@jyn514`

2 years agoAuto merge of #90478 - rusticstuff:apple-a14, r=wesleywiser
bors [Wed, 3 Nov 2021 08:44:38 +0000 (08:44 +0000)]
Auto merge of #90478 - rusticstuff:apple-a14, r=wesleywiser

Use apple-a14 as target CPU for aarch64-apple-darwin

After updating the minimum required LLVM version to 12 (#90175) we can use `apple-a14` as target CPU, because that CPU is similar in features to the Apple M1 (see [LLVM 13 source](https://github.com/llvm/llvm-project/blob/b8016b626ec7095c7d57ebfffb2135dc5c3077b8/llvm/lib/Target/AArch64/AArch64.td#L1127)). Once the minimum required LLVM version is updated to 13 we can use `apple-m1` here.

2 years agoAuto merge of #90421 - thomcc:friendship-ended-with-ssize_t-now-ptrdiff_t-is-my-best...
bors [Wed, 3 Nov 2021 05:36:30 +0000 (05:36 +0000)]
Auto merge of #90421 - thomcc:friendship-ended-with-ssize_t-now-ptrdiff_t-is-my-best-friend, r=joshtriplett

Replace `std::os::raw::c_ssize_t` with `std::os::raw::c_ptrdiff_t`

The discussions in #88345 brought up that `ssize_t` is not actually the signed index type defined in stddef.h, but instead it's `ptrdiff_t`. It seems pretty clear that the use of `ssize_t` here was a mistake on my part, and that if we're going to bother having a isize-alike for FFI in `std::os::raw`, it should be `ptrdiff_t` and not `ssize_t`.

Anyway, both this and `c_size_t` are dubious in the face of the discussion in https://internals.rust-lang.org/t/pre-rfc-usize-is-not-size-t/15369, and any RFC/project-group/etc that handles those issues there should contend with these types in some manner, but that doesn't mean we shouldn't fix something wrong like this, even if it is unstable.

All that said, `size_t` is *vastly* more common in function signatures than either `ssize_t` or `ptrdiff_t`, so I'm going to update the tracking issue's list of unresolved questions to note that perhaps we only want `c_size_t` — I mostly added the signed version for symmetry, rather than to meet a need. (Given this, I'm also fine with modifying this patch to instead remove `c_ssize_t` without a replacement)

CC `@magicant` (who brought the issue up)
CC `@chorman0773` (who has a significantly firmer grasp on the minutae of the C standard than I do)

r? `@joshtriplett` (original reviewer, active in the discussions around this)

2 years agoAdd line number to URLs in "additional examples" section of rustdoc
Will Crichton [Wed, 3 Nov 2021 02:38:55 +0000 (19:38 -0700)]
Add line number to URLs in "additional examples" section of rustdoc

2 years agoFix URL for scrape-examples.js in rustdoc page template
Will Crichton [Wed, 3 Nov 2021 01:48:07 +0000 (18:48 -0700)]
Fix URL for scrape-examples.js in rustdoc page template

2 years agoAuto merge of #90516 - matthiaskrgr:rollup-3dmfjkj, r=matthiaskrgr
bors [Wed, 3 Nov 2021 01:52:17 +0000 (01:52 +0000)]
Auto merge of #90516 - matthiaskrgr:rollup-3dmfjkj, r=matthiaskrgr

Rollup of 6 pull requests

Successful merges:

 - #90084 (Make printed message match the code comment)
 - #90354 (Document clippy on nightly-rustc)
 - #90417 (stabilize `relaxed_struct_unsize`)
 - #90472 (Clarify what to do with accepted feature gates)
 - #90500 (Update Clippy dependencies)
 - #90502 (Split doc_cfg and doc_auto_cfg features)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoRollup merge of #90502 - GuillaumeGomez:split-doc-cfg-feature, r=jyn514
Matthias Krüger [Tue, 2 Nov 2021 22:48:50 +0000 (23:48 +0100)]
Rollup merge of #90502 - GuillaumeGomez:split-doc-cfg-feature, r=jyn514

Split doc_cfg and doc_auto_cfg features

Part of #90497.

With this feature, `doc_cfg` won't pick up items automatically anymore.

cc `@Mark-Simulacrum`
r? `@jyn514`

2 years agoRollup merge of #90500 - xFrednet:00000-update-clippy-deps, r=flip1995
Matthias Krüger [Tue, 2 Nov 2021 22:48:49 +0000 (23:48 +0100)]
Rollup merge of #90500 - xFrednet:00000-update-clippy-deps, r=flip1995

Update Clippy dependencies

Clippy has two outdated dependencies, where one indirect dependency has been flagged by rustsec for dropping a lifetime. See [RUSTSEC-2020-0146](https://rustsec.org/advisories/RUSTSEC-2020-0146). This PR updates these dependencies.

With previous dependency updates, it was tried to prevent duplicates in the `Cargo.lock` file of rust-lang/rust. I've tried to keep this in mind with this update.

* Dependency `semver`
    * Used in `src/tools/cargo/Cargo.toml` as version `1.0.3`
    * Used in `src/tools/rust-analyzer/crates/project_model/Cargo.toml` as version `1`
    * Updated in Clippy from `0.11` to `1.0` (Clippy usually defines the major and minor patch version). The `Cargo.lock` file lists `1.0.3` which is one patch version behind the most recent one but prevents a duplicate with cargo's pinned version.
* Dependency `cargo_metadata`
    * Used in several tools as `0.14`
    * Used in `src/tools/tidy` and `src/tools/rls` as `0.12`
    * Updated in Clippy from `0.12` to `0.14`

All updates to the `Cargo.lock` have been done automatically by `x.py`.

There are still some tools with these outdated dependencies. Clippy didn't require any changes, and it would be likely that the others could also be updated without any problem. Let me know if I should try to update them as well :upside_down_face:.

Keep up the good work, whoever is reading this :crab:

---

For Clippy:

changelog: none

2 years agoRollup merge of #90472 - joshtriplett:clarify-feature-acceptance, r=jyn514
Matthias Krüger [Tue, 2 Nov 2021 22:48:48 +0000 (23:48 +0100)]
Rollup merge of #90472 - joshtriplett:clarify-feature-acceptance, r=jyn514

Clarify what to do with accepted feature gates

The documentation only referenced `removed.rs`, but feature gates for
accepted features move to `accepted.rs`.

2 years agoRollup merge of #90417 - lcnr:stabilize-relaxed-struct-unsizing, r=wesleywiser
Matthias Krüger [Tue, 2 Nov 2021 22:48:47 +0000 (23:48 +0100)]
Rollup merge of #90417 - lcnr:stabilize-relaxed-struct-unsizing, r=wesleywiser

stabilize `relaxed_struct_unsize`

closes #81793

the fcp is already complete.

2 years agoRollup merge of #90354 - xFrednet:00000-lets-deploy-clippy-docs, r=Mark-Simulacrum
Matthias Krüger [Tue, 2 Nov 2021 22:48:46 +0000 (23:48 +0100)]
Rollup merge of #90354 - xFrednet:00000-lets-deploy-clippy-docs, r=Mark-Simulacrum

Document clippy on nightly-rustc

Adding Clippy's docs to nightly-rustc, based on commit 01cf0bde. This PR only adds `clippy_utils` to the documentation. I've decided to only document one crate for now, as `clippy_lints` etc. contain very specific and undocumented functions which aren't really reusable. I'm guessing that they would mostly clutter up the search results with little benefit.

`./x.py --stage 1 doc src/tools/clippy` if working fine now after the help that ```````@jyn514``````` and ```````@ehuss``````` have provided. A big THANK YOU to them!

2 years agoRollup merge of #90084 - noncombatant:patch-2, r=steveklabnik
Matthias Krüger [Tue, 2 Nov 2021 22:48:46 +0000 (23:48 +0100)]
Rollup merge of #90084 - noncombatant:patch-2, r=steveklabnik

Make printed message match the code comment

I think this code is getting L0, not L1 cache size, if I'm reading the Intel manual right. (I might not be.) Either way, the code comment and the printed message should match, whichever way is right. :)

2 years agoAuto merge of #90464 - lnicola:rust-analyzer-2021-11-01, r=lnicola
bors [Tue, 2 Nov 2021 22:45:27 +0000 (22:45 +0000)]
Auto merge of #90464 - lnicola:rust-analyzer-2021-11-01, r=lnicola

:arrow_up: rust-analyzer

r? `@ghost`

2 years agoAlso check for feature gates in "src/test/rustdoc"
Guillaume Gomez [Tue, 2 Nov 2021 16:15:11 +0000 (17:15 +0100)]
Also check for feature gates in "src/test/rustdoc"

2 years agoSplit doc_cfg and doc_auto_cfg features
Guillaume Gomez [Tue, 2 Nov 2021 13:36:54 +0000 (14:36 +0100)]
Split doc_cfg and doc_auto_cfg features

2 years agoAuto merge of #90495 - lnicola:freebsd-kvm, r=Mark-Simulacrum
bors [Tue, 2 Nov 2021 15:19:15 +0000 (15:19 +0000)]
Auto merge of #90495 - lnicola:freebsd-kvm, r=Mark-Simulacrum

Pull in `libkvm` on FreeBSD

This is needed when updating `libc` after https://github.com/rust-lang/libc/pull/2451.

Spotted in #90464 where it caused `rust-analyzer` to fail to link.

Similar to #88676.

2 years agoAdd link to documentation about feature gates
Josh Triplett [Tue, 2 Nov 2021 14:30:28 +0000 (15:30 +0100)]
Add link to documentation about feature gates

2 years agoUpdate clippy dependencies
xFrednet [Tue, 2 Nov 2021 13:19:31 +0000 (14:19 +0100)]
Update clippy dependencies

* semver = "0.11" -> "1.0"
* cargo_metadata = "0.12" -> "0.14"

2 years agoAuto merge of #90442 - ChrisDenton:win-tls-dtor, r=alexcrichton
bors [Tue, 2 Nov 2021 12:15:08 +0000 (12:15 +0000)]
Auto merge of #90442 - ChrisDenton:win-tls-dtor, r=alexcrichton

Windows thread-local keyless drop

`#[thread_local]` allows us to maintain a per-thread list of destructors. This also avoids the need to synchronize global data (which is particularly tricky within the TLS callback function).

r? `@alexcrichton`

2 years agoPull in libkvm on FreeBSD
Laurențiu Nicola [Tue, 2 Nov 2021 08:44:14 +0000 (10:44 +0200)]
Pull in libkvm on FreeBSD

2 years agoAuto merge of #90439 - m-ou-se:thread-is-running, r=Mark-Simulacrum
bors [Tue, 2 Nov 2021 08:11:57 +0000 (08:11 +0000)]
Auto merge of #90439 - m-ou-se:thread-is-running, r=Mark-Simulacrum

Add JoinHandle::is_running.

This adds:
```rust
impl<T> JoinHandle<T> {
    /// Checks if the the associated thread is still running its main function.
    ///
    /// This might return `false` for a brief moment after the thread's main
    /// function has returned, but before the thread itself has stopped running.
    pub fn is_running(&self) -> bool;
}
```
The usual way to check if a background thread is still running is to set some atomic flag at the end of its main function. We already do that, in the form of dropping an Arc which will reduce the reference counter. So we might as well expose that information.

This is useful in applications with a main loop (e.g. a game, gui, control system, ..) where you spawn some background task, and check every frame/iteration whether the background task is finished to .join() it in that frame/iteration while keeping the program responsive.

2 years agoAuto merge of #90490 - ehuss:update-cargo, r=ehuss
bors [Tue, 2 Nov 2021 03:18:41 +0000 (03:18 +0000)]
Auto merge of #90490 - ehuss:update-cargo, r=ehuss

Update cargo

3 commits in 6c1bc24b8b49d4bc965f67d7037906dc199c72b7..94ca096afbf25f670e76e07dca754fcfe27134be
2021-10-24 17:51:41 +0000 to 2021-10-29 14:45:06 +0000
- Chore: prefer `HashMap::from` rather than collecting `Vec` of tuples (rust-lang/cargo#10018)
- Change --scrape-examples flag to -Z rustdoc-scrape-examples (rust-lang/cargo#10017)
- Scrape code examples from examples/ directory for Rustdoc (rust-lang/cargo#9525)

2 years agoUpdate cargo
Eric Huss [Mon, 1 Nov 2021 23:08:25 +0000 (16:08 -0700)]
Update cargo

2 years agoAuto merge of #90457 - rusticstuff:use-curl-ca-bundle, r=Mark-Simulacrum
bors [Mon, 1 Nov 2021 21:21:53 +0000 (21:21 +0000)]
Auto merge of #90457 - rusticstuff:use-curl-ca-bundle, r=Mark-Simulacrum

CI: Use ubuntu image to download openssl, curl sources, cacert.pem for x86 dist builds

The dist-x86_64 and dist-i686 docker builds are failing again (see [try build](https://github.com/rust-lang-ci/rust/runs/4060836540?check_suite_focus=true)) because python.org renewed its certificate with a CA cert that is too new for debian:6.

In order to solve this once and for all this PR moves the curl and openssl downloads to a new  ubuntu:20.04 "stage-0" docker build and copies the downloaded tarballs over to build them in the "stage-1" debian:6 context. It also downloads the cacert.pem file from the curl website and uses it by pointing the `CURL_CA_BUNDLE` environment variable to it.

2 years agoIgnore files copied from previous stage when generating hash.
Hans Kratz [Mon, 1 Nov 2021 17:32:24 +0000 (18:32 +0100)]
Ignore files copied from previous stage when generating hash.

2 years agoAuto merge of #90406 - nbdd0121:panic, r=cjgillot
bors [Mon, 1 Nov 2021 17:18:57 +0000 (17:18 +0000)]
Auto merge of #90406 - nbdd0121:panic, r=cjgillot

Collect `panic/panic_bounds_check` during monomorphization

This would prevent link time errors if these functions are `#[inline]` (e.g. when `panic_immediate_abort` is used).

Fix #90405
Fix rust-lang/cargo#10019

`@rustbot` label: T-compiler A-codegen

2 years agoUse apple-a14 as target CPU for aarch64-apple-darwin.
Hans Kratz [Mon, 1 Nov 2021 16:03:07 +0000 (17:03 +0100)]
Use apple-a14 as target CPU for aarch64-apple-darwin.

After updating the minimum required LLVM version to 12 we can use
apple-a14 as that is closer in features to the Apple M1 than the A12.
Once the minimum required LLVM version is updated to 13 we can use
apple-m1.

2 years agoRun destructors from existing tls callback
Chris Denton [Mon, 1 Nov 2021 15:05:57 +0000 (15:05 +0000)]
Run destructors from existing tls callback

2 years agoClarify what to do with accepted feature gates
Josh Triplett [Mon, 1 Nov 2021 14:34:19 +0000 (15:34 +0100)]
Clarify what to do with accepted feature gates

The documentation only referenced `removed.rs`, but feature gates for
accepted features move to `accepted.rs`.

2 years agoAdd tracking issue for thread_is_running.
Mara Bos [Mon, 1 Nov 2021 14:04:24 +0000 (15:04 +0100)]
Add tracking issue for thread_is_running.

2 years agoAuto merge of #90463 - matthiaskrgr:rollup-eljk9vo, r=matthiaskrgr
bors [Mon, 1 Nov 2021 14:00:08 +0000 (14:00 +0000)]
Auto merge of #90463 - matthiaskrgr:rollup-eljk9vo, r=matthiaskrgr

Rollup of 8 pull requests

Successful merges:

 - #89826 (Feature gate + make must_not_suspend allow-by-default)
 - #89929 (Handling submodule update failures more gracefully from x.py)
 - #90333 (rustdoc: remove flicker during page load)
 - #90349 (Fix rare ICE during typeck in rustdoc scrape_examples)
 - #90398 (Document `doc(keyword)` unstable attribute)
 - #90441 (Test that promotion follows references when looking for drop)
 - #90450 (Remove `rustc_hir::hir_id::HirIdVec`)
 - #90452 (Remove unnecessary `Option` from `promote_candidate` return type)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoAuto merge of #90462 - pietroalbini:bidi-master, r=nikomatsakis,pietroalbini
bors [Mon, 1 Nov 2021 10:53:49 +0000 (10:53 +0000)]
Auto merge of #90462 - pietroalbini:bidi-master, r=nikomatsakis,pietroalbini

[master] Fix CVE-2021-42574

This PR implements new lints to mitigate the impact of [CVE-2021-42574], caused by the presence of bidirectional-override Unicode codepoints in the compiled source code. [See the advisory][advisory] for more information about the vulnerability.

The changes in this PR will be released in tomorrow's nightly release.

[CVE-2021-42574]: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42574
[advisory]: https://blog.rust-lang.org/2021/11/01/cve-2021-42574.html

2 years agofix formatting
Pietro Albini [Mon, 1 Nov 2021 09:39:43 +0000 (10:39 +0100)]
fix formatting

2 years ago:arrow_up: rust-analyzer
Laurențiu Nicola [Mon, 1 Nov 2021 07:01:20 +0000 (09:01 +0200)]
:arrow_up: rust-analyzer

2 years agoRollup merge of #90452 - tmiasko:promote-candidate, r=cjgillot
Matthias Krüger [Mon, 1 Nov 2021 02:33:11 +0000 (03:33 +0100)]
Rollup merge of #90452 - tmiasko:promote-candidate, r=cjgillot

Remove unnecessary `Option` from `promote_candidate` return type

2 years agoRollup merge of #90450 - pierwill:rm-hiridvec, r=cjgillot
Matthias Krüger [Mon, 1 Nov 2021 02:33:10 +0000 (03:33 +0100)]
Rollup merge of #90450 - pierwill:rm-hiridvec, r=cjgillot

Remove `rustc_hir::hir_id::HirIdVec`

See https://github.com/rust-lang/rust/pull/90408#discussion_r739627519:

> IIRC, `HirIdVec` is never used, you can delete it. PR #72015 has been abandoned.

r? `@cjgillot`

2 years agoRollup merge of #90441 - tmiasko:test-promotion-needs-drop, r=Mark-Simulacrum
Matthias Krüger [Mon, 1 Nov 2021 02:33:09 +0000 (03:33 +0100)]
Rollup merge of #90441 - tmiasko:test-promotion-needs-drop, r=Mark-Simulacrum

Test that promotion follows references when looking for drop

Noticed that this wasn't covered by any of existing tests.

The const checking and const qualification, which currently shares the
implementation with promotion, will likely need a different behaviour
here (see issue #90193).

2 years agoRollup merge of #90398 - GuillaumeGomez:doc-keyword-doc, r=camelid
Matthias Krüger [Mon, 1 Nov 2021 02:33:08 +0000 (03:33 +0100)]
Rollup merge of #90398 - GuillaumeGomez:doc-keyword-doc, r=camelid

Document `doc(keyword)` unstable attribute

r? `@camelid`

2 years agoRollup merge of #90349 - willcrichton:example-analyzer, r=jyn514
Matthias Krüger [Mon, 1 Nov 2021 02:33:07 +0000 (03:33 +0100)]
Rollup merge of #90349 - willcrichton:example-analyzer, r=jyn514

Fix rare ICE during typeck in rustdoc scrape_examples

While testing the `--scrape-examples` extension on the [wasmtime](https://github.com/bytecodealliance/wasmtime) repository, I found some additional edge cases. Specifically, when asking to typecheck a body containing a function call, I would sometimes get an ICE if:
* The body doesn't exist
* The function's HIR node didn't have a type

This adds checks for both of those conditions.

(Also this updates a test to check that the sources of a reverse-dependency are correctly generated and linked.)

r? `@jyn514`

2 years agoRollup merge of #90333 - jsha:flashy-searchbar, r=GuillaumeGomez
Matthias Krüger [Mon, 1 Nov 2021 02:33:06 +0000 (03:33 +0100)]
Rollup merge of #90333 - jsha:flashy-searchbar, r=GuillaumeGomez

rustdoc: remove flicker during page load

The search bar has a `:disabled` style that makes it grey, which creates a distracting flicker from grey to white when the page finishes loading. The search bar should stay the same color throughout page load.

A blank white search bar might create an incorrect impression for users with JS turned off. Since they can't use the search functionality, I've hidden the search bar in noscript.css.

Fixes #90246
r? `@GuillaumeGomez`

Demo: https://rustdoc.crud.net/jsha/flashy-searchbar/std/string/struct.String.html

2 years agoRollup merge of #89929 - yuvaldolev:handle-submodule-checkout-more-gracefully, r...
Matthias Krüger [Mon, 1 Nov 2021 02:33:04 +0000 (03:33 +0100)]
Rollup merge of #89929 - yuvaldolev:handle-submodule-checkout-more-gracefully, r=Mark-Simulacrum

Handling submodule update failures more gracefully from x.py

Addresses #80498

Handling the case where x.py can't check out the right commit of a submodule, because the submodule has local edits that would be overwritten by the checkout, more gracefully.
The error is printed in detail, with some hints on how to revert the local changes to the submodule.

2 years agoRollup merge of #89826 - guswynn:feature_gate_must_not_suspend, r=Mark-Simulacrum
Matthias Krüger [Mon, 1 Nov 2021 02:33:03 +0000 (03:33 +0100)]
Rollup merge of #89826 - guswynn:feature_gate_must_not_suspend, r=Mark-Simulacrum

Feature gate + make must_not_suspend allow-by-default

Fixes #89798 and patches over #89562 (not a true fix, since we're just disabling the lint for now).

2 years agoFeature gate and make must_not_suspend allow-by-default
Gus Wynn [Tue, 12 Oct 2021 16:10:05 +0000 (09:10 -0700)]
Feature gate and make must_not_suspend allow-by-default

This lint is not yet ready for stable use, primarily due to false positives in edge
cases; we want to test it out more before stabilizing.

2 years agoUse ubuntu image to download openssl, curl sources, cacert.pem
Hans Kratz [Sun, 31 Oct 2021 19:49:57 +0000 (20:49 +0100)]
Use ubuntu image to download openssl, curl sources, cacert.pem

2 years agoRe-add `std::os::raw::c_ssize_t`, with more accurate documentation
Thom Chiovoloni [Sun, 31 Oct 2021 20:01:57 +0000 (13:01 -0700)]
Re-add `std::os::raw::c_ssize_t`, with more accurate documentation

2 years agoHide search bar in noscript.css
Jacob Hoffman-Andrews [Wed, 27 Oct 2021 01:50:07 +0000 (18:50 -0700)]
Hide search bar in noscript.css

Also, remove the highlighting of the search bar in disabled state. This
reduces flicker when loading a page.

2 years agoAuto merge of #89062 - mikeleany:new-target, r=cjgillot
bors [Sun, 31 Oct 2021 18:57:14 +0000 (18:57 +0000)]
Auto merge of #89062 - mikeleany:new-target, r=cjgillot

Add new tier 3 target: `x86_64-unknown-none`

Adds support for compiling OS kernels or other bare-metal applications for the x86-64 architecture.

Below are details on how this target meets the requirements for tier 3:

> A tier 3 target must have a designated developer or developers (the "target maintainers") on record to be CCed when issues arise regarding the target. (The mechanism to track and CC such developers may evolve over time.)

I would be willing to be a target maintainer, though I would appreciate if others volunteered to help with that as well.

> Targets must use naming consistent with any existing targets; for instance, a target for the same CPU or OS as an existing Rust target should use the same name for that CPU or OS. Targets should normally use the same names and naming conventions as used elsewhere in the broader ecosystem beyond Rust (such as in other toolchains), unless they have a very good reason to diverge. Changing the name of a target can be highly disruptive, especially once the target reaches a higher tier, so getting the name right is important even for a tier 3 target.

Uses the same naming as the LLVM target, and the same convention as many other bare-metal targets.

> Target names should not introduce undue confusion or ambiguity unless absolutely necessary to maintain ecosystem compatibility. For example, if the name of the target makes people extremely likely to form incorrect beliefs about what it targets, the name should be changed or augmented to disambiguate it.

I don't believe there is any ambiguity here.

> Tier 3 targets may have unusual requirements to build or use, but must not create legal issues or impose onerous legal terms for the Rust project or for Rust developers or users.

I don't see any legal issues here.

> The target must not introduce license incompatibilities.
> Anything added to the Rust repository must be under the standard Rust license (MIT OR Apache-2.0).
> The target must not cause the Rust tools or libraries built for any other host (even when supporting cross-compilation to the target) to depend on any new dependency less permissive than the Rust licensing policy. This applies whether the dependency is a Rust crate that would require adding new license exceptions (as specified by the tidy tool in the rust-lang/rust repository), or whether the dependency is a native library or binary. In other words, the introduction of the target must not cause a user installing or running a version of Rust or the Rust tools to be subject to any new license requirements.
>If the target supports building host tools (such as rustc or cargo), those host tools must not depend on proprietary (non-FOSS) libraries, other than ordinary runtime libraries supplied by the platform and commonly used by other binaries built for the target. For instance, rustc built for the target may depend on a common proprietary C runtime library or console output library, but must not depend on a proprietary code generation library or code optimization library. Rust's license permits such combinations, but the Rust project has no interest in maintaining such combinations within the scope of Rust itself, even at tier 3.
> Targets should not require proprietary (non-FOSS) components to link a functional binary or library.
> "onerous" here is an intentionally subjective term. At a minimum, "onerous" legal/licensing terms include but are not limited to: non-disclosure requirements, non-compete requirements, contributor license agreements (CLAs) or equivalent, "non-commercial"/"research-only"/etc terms, requirements conditional on the employer or employment of any particular Rust developers, revocable terms, any requirements that create liability for the Rust project or its developers or users, or any requirements that adversely affect the livelihood or prospects of the Rust project or its developers or users.

I see no issues with any of the above.

> Neither this policy nor any decisions made regarding targets shall create any binding agreement or estoppel by any party. If any member of an approving Rust team serves as one of the maintainers of a target, or has any legal or employment requirement (explicit or implicit) that might affect their decisions regarding a target, they must recuse themselves from any approval decisions regarding the target's tier status, though they may otherwise participate in discussions.
> This requirement does not prevent part or all of this policy from being cited in an explicit contract or work agreement (e.g. to implement or maintain support for a target). This requirement exists to ensure that a developer or team responsible for reviewing and approving a target does not face any legal threats or obligations that would prevent them from freely exercising their judgment in such approval, even if such judgment involves subjective matters or goes beyond the letter of these requirements.

Only relevant to those making approval decisions.

> Tier 3 targets should attempt to implement as much of the standard libraries as possible and appropriate (core for most targets, alloc for targets that can support dynamic memory allocation, std for targets with an operating system or equivalent layer of system-provided functionality), but may leave some code unimplemented (either unavailable or stubbed out as appropriate), whether because the target makes it impossible to implement or challenging to implement. The authors of pull requests are not obligated to avoid calling any portions of the standard library on the basis of a tier 3 target not implementing those portions.

`core` and `alloc` can be used. `std` cannot be used as this is a bare-metal target.

> The target must provide documentation for the Rust community explaining how to build for the target, using cross-compilation if possible. If the target supports running tests (even if they do not pass), the documentation must explain how to run tests for the target, using emulation if possible or dedicated hardware if necessary.

Use `--target=x86_64-unknown-none-elf` option to cross compile, just like any target. The target does not support running tests.

> Tier 3 targets must not impose burden on the authors of pull requests, or other developers in the community, to maintain the target. In particular, do not post comments (automated or manual) on a PR that derail or suggest a block on the PR based on a tier 3 target. Do not send automated messages or notifications (via any medium, including via `@)` to a PR author or others involved with a PR regarding a tier 3 target, unless they have opted into such messages.
> Backlinks such as those generated by the issue/PR tracker when linking to an issue or PR are not considered a violation of this policy, within reason. However, such messages (even on a separate repository) must not generate notifications to anyone involved with a PR who has not requested such notifications.

I don't foresee this being a problem.

> Patches adding or updating tier 3 targets must not break any existing tier 2 or tier 1 target, and must not knowingly break another tier 3 target without approval of either the compiler team or the maintainers of the other tier 3 target.
> In particular, this may come up when working on closely related targets, such as variations of the same architecture with different features. Avoid introducing unconditional uses of features that another variation of the target may not have; use conditional compilation or runtime detection, as appropriate, to let each target run code supported by that target.

No other targets should be affected by the pull request.

2 years agoRemove `rustc_hir::hir_id::HirIdVec`
pierwill [Sun, 31 Oct 2021 18:34:19 +0000 (13:34 -0500)]
Remove `rustc_hir::hir_id::HirIdVec`

2 years agoRequire `panic` and `panic_bounds_check` to be non-generic
Gary Guo [Sun, 31 Oct 2021 17:57:32 +0000 (17:57 +0000)]
Require `panic` and `panic_bounds_check` to be non-generic

2 years agoTest that promotion follows references when looking for drop
Tomasz Miąsko [Sun, 31 Oct 2021 00:00:00 +0000 (00:00 +0000)]
Test that promotion follows references when looking for drop

Noticed that this wasn't covered by any of existing tests.

The const checking and const qualification, which currently shares the
implementation with promotion, will likely need a different behaviour
here (see issue #90193).

2 years agoWindows thread-local keyless drop
Chris Denton [Sun, 31 Oct 2021 16:08:12 +0000 (16:08 +0000)]
Windows thread-local keyless drop

`#[thread_local]` allows us to maintain a per-thread list of destructors. This also avoids the need to synchronize global data (which is particularly tricky within the TLS callback function).

2 years agoAuto merge of #86336 - camsteffen:char-array-pattern, r=joshtriplett
bors [Sun, 31 Oct 2021 15:45:39 +0000 (15:45 +0000)]
Auto merge of #86336 - camsteffen:char-array-pattern, r=joshtriplett

impl Pattern for char array

Closes #39511
Closes #86329

2 years agoAdd test for JoinHandle::is_running.
Mara Bos [Sun, 31 Oct 2021 14:02:49 +0000 (15:02 +0100)]
Add test for JoinHandle::is_running.

2 years agoAdd JoinHandle::is_running.
Mara Bos [Sun, 31 Oct 2021 14:02:38 +0000 (15:02 +0100)]
Add JoinHandle::is_running.

2 years agoAdd doc about doc(keyword) unstable attribute
Guillaume Gomez [Fri, 29 Oct 2021 12:48:54 +0000 (14:48 +0200)]
Add doc about doc(keyword) unstable attribute

2 years agoAuto merge of #90437 - matthiaskrgr:rollup-vd8uqm6, r=matthiaskrgr
bors [Sun, 31 Oct 2021 12:28:45 +0000 (12:28 +0000)]
Auto merge of #90437 - matthiaskrgr:rollup-vd8uqm6, r=matthiaskrgr

Rollup of 4 pull requests

Successful merges:

 - #89068 (Restructure std::rt (part 2))
 - #89786 (Add #[must_use] to len and is_empty)
 - #90430 (Add #[must_use] to remaining std functions (A-N))
 - #90431 (Add #[must_use] to remaining std functions (O-Z))

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoRollup merge of #90431 - jkugelman:must-use-std-o-through-z, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 12:20:07 +0000 (13:20 +0100)]
Rollup merge of #90431 - jkugelman:must-use-std-o-through-z, r=joshtriplett

Add #[must_use] to remaining std functions (O-Z)

I've run out of compelling reasons to group functions together across crates so I'm just going to go module-by-module. This is half of the remaining items from the `std` crate, from O-Z.

`panicking::take_hook` has a side effect: it unregisters the current panic hook, returning it. I almost ignored it, but the documentation example shows `let _ = panic::take_hook();`, so following suit I went ahead and added a `#[must_use]`.

```rust
std::panicking   fn take_hook() -> Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send>;
```

I added these functions that clippy did not flag:

```rust
std::path::Path   fn starts_with<P: AsRef<Path>>(&self, base: P) -> bool;
std::path::Path   fn ends_with<P: AsRef<Path>>(&self, child: P) -> bool;
std::path::Path   fn with_file_name<S: AsRef<OsStr>>(&self, file_name: S) -> PathBuf;
std::path::Path   fn with_extension<S: AsRef<OsStr>>(&self, extension: S) -> PathBuf;
```

Parent issue: #89692

r? `@joshtriplett`

2 years agoRollup merge of #90430 - jkugelman:must-use-std-a-through-n, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 12:20:06 +0000 (13:20 +0100)]
Rollup merge of #90430 - jkugelman:must-use-std-a-through-n, r=joshtriplett

Add #[must_use] to remaining std functions (A-N)

I've run out of compelling reasons to group functions together across crates so I'm just going to go module-by-module. This is half of the remaining items from the `std` crate, from A-N.

I added these functions myself. Clippy predictably ignored the `mut` ones, but I don't know why the rest weren't flagged. Check them closely, please? Maybe I overlooked good reasons.

```rust
std::backtrace::Backtrace                                   const fn disabled() -> Backtrace;
std::backtrace::Backtrace<'a>                               fn frames(&'a self) -> &'a [BacktraceFrame];
std::collections::hash_map::RawOccupiedEntryMut<'a, K, V>   fn key_mut(&mut self) -> &mut K;
std::collections::hash_map::RawOccupiedEntryMut<'a, K, V>   fn get_mut(&mut self) -> &mut V;
std::collections::hash_map::RawOccupiedEntryMut<'a, K, V>   fn get_key_value(&mut self) -> (&K, &V);
std::collections::hash_map::RawOccupiedEntryMut<'a, K, V>   fn get_key_value_mut(&mut self) -> (&mut K, &mut V);
std::env                                                    fn var_os<K: AsRef<OsStr>>(key: K) -> Option<OsString>;
std::env                                                    fn split_paths<T: AsRef<OsStr> + ?Sized>(unparsed: &T) -> SplitPaths<'_>;
std::io::Error                                              fn get_mut(&mut self) -> Option<&mut (dyn error::Error + Send + Sync + 'static)>;
```

Parent issue: #89692

r? `@joshtriplett`

2 years agoRollup merge of #89786 - jkugelman:must-use-len-and-is_empty, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 12:20:05 +0000 (13:20 +0100)]
Rollup merge of #89786 - jkugelman:must-use-len-and-is_empty, r=joshtriplett

Add #[must_use] to len and is_empty

Parent issue: #89692

r? `@joshtriplett`

2 years agoRollup merge of #89068 - bjorn3:restructure_rt2, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 12:20:04 +0000 (13:20 +0100)]
Rollup merge of #89068 - bjorn3:restructure_rt2, r=joshtriplett

Restructure std::rt (part 2)

A couple more cleanups on top of https://github.com/rust-lang/rust/pull/89011

Blocked on #89011

2 years agoadd 1.56.1 to the release notes
Pietro Albini [Sun, 31 Oct 2021 12:11:36 +0000 (13:11 +0100)]
add 1.56.1 to the release notes

2 years agoLint against RTL unicode codepoints in literals and comments
Esteban Küber [Thu, 19 Aug 2021 18:40:00 +0000 (11:40 -0700)]
Lint against RTL unicode codepoints in literals and comments

Address CVE-2021-42574.

2 years agoAuto merge of #90434 - matthiaskrgr:rollup-xbn393a, r=matthiaskrgr
bors [Sun, 31 Oct 2021 09:07:09 +0000 (09:07 +0000)]
Auto merge of #90434 - matthiaskrgr:rollup-xbn393a, r=matthiaskrgr

Rollup of 8 pull requests

Successful merges:

 - #89446 (Add paragraph to ControlFlow docs to menion it works with the ? operator (#88715))
 - #89677 (Stabilize `is_symlink()` for `Metadata` and `Path`)
 - #89833 (Add #[must_use] to Rc::downgrade)
 - #89835 (Add #[must_use] to expensive computations)
 - #89839 (Add #[must_use] to mem/ptr functions)
 - #89897 (Add #[must_use] to remaining core functions)
 - #89951 (Stabilize `option_result_unwrap_unchecked`)
 - #90427 (Add #[must_use] to alloc functions that would leak memory)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoRollup merge of #90427 - jkugelman:must-use-alloc-leak, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 08:20:27 +0000 (09:20 +0100)]
Rollup merge of #90427 - jkugelman:must-use-alloc-leak, r=joshtriplett

Add #[must_use] to alloc functions that would leak memory

As [requested](https://github.com/rust-lang/rust/pull/89899#issuecomment-955600779) by `@joshtriplett.`

> Please do go ahead and add the ones whose only legitimate use for ignoring the return value is leaking memory. (In a separate PR please.) I think it's sufficiently error-prone to call something like alloc and ignore the result that it's legitimate to require `let _ =` for that.

I added `realloc` myself. Clippy ignored it because of its `mut` argument.

```rust
alloc/src/alloc.rs:123:1   alloc   unsafe fn realloc(ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8;
```

Parent issue: #89692

r? `@joshtriplett`

2 years agoRollup merge of #89951 - ojeda:stable-unwrap_unchecked, r=dtolnay
Matthias Krüger [Sun, 31 Oct 2021 08:20:27 +0000 (09:20 +0100)]
Rollup merge of #89951 - ojeda:stable-unwrap_unchecked, r=dtolnay

Stabilize `option_result_unwrap_unchecked`

Closes https://github.com/rust-lang/rust/issues/81383.

Stabilization report: https://github.com/rust-lang/rust/issues/81383#issuecomment-944498212.

```@rustbot``` label +A-option-result +T-libs-api

2 years agoRollup merge of #89897 - jkugelman:must-use-core, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 08:20:26 +0000 (09:20 +0100)]
Rollup merge of #89897 - jkugelman:must-use-core, r=joshtriplett

Add #[must_use] to remaining core functions

I've run out of compelling reasons to group functions together across crates so I'm just going to go module-by-module. This is everything remaining from the `core` crate.

Ignored by clippy for reasons unknown:

```rust
core::alloc::Layout   unsafe fn for_value_raw<T: ?Sized>(t: *const T) -> Self;
core::any             const fn type_name_of_val<T: ?Sized>(_val: &T) -> &'static str;
```

Ignored by clippy because of `mut`:

```rust
str   fn split_at_mut(&mut self, mid: usize) -> (&mut str, &mut str);
```

<del>
Ignored by clippy presumably because a caller might want `f` called for side effects. That seems like a bad usage of `map` to me.

```rust
core::cell::Ref<'b, T>   fn map<U: ?Sized, F>(orig: Ref<'b, T>, f: F) -> Ref<'b, T>;
core::cell::Ref<'b, T>   fn map_split<U: ?Sized, V: ?Sized, F>(orig: Ref<'b, T>, f: F) -> (Ref<'b, U>, Ref<'b, V>);
```
</del>

Parent issue: #89692

r? ```@joshtriplett```

2 years agoRollup merge of #89839 - jkugelman:must-use-mem-ptr-functions, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 08:20:25 +0000 (09:20 +0100)]
Rollup merge of #89839 - jkugelman:must-use-mem-ptr-functions, r=joshtriplett

Add #[must_use] to mem/ptr functions

There's a lot of low-level / unsafe stuff here. Are there legit use cases for ignoring any of these return values?

* No regressions in `./x.py test --stage 1 library/std src/tools/clippy`.
* One regression in `./x.py test --stage 1 src/test/ui`. Fixed.
* I am unable to run `./x.py doc` on my machine so I'll need to wait for the CI to verify doctests pass. I eyeballed all the adjacent tests and they all look okay.

Parent issue: #89692

r? ```@joshtriplett```

2 years agoRollup merge of #89835 - jkugelman:must-use-expensive-computations, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 08:20:24 +0000 (09:20 +0100)]
Rollup merge of #89835 - jkugelman:must-use-expensive-computations, r=joshtriplett

Add #[must_use] to expensive computations

The unifying theme for this commit is weak, admittedly. I put together a list of "expensive" functions when I originally proposed this whole effort, but nobody's cared about that criterion. Still, it's a decent way to bite off a not-too-big chunk of work.

Given the grab bag nature of this commit, the messages I used vary quite a bit. I'm open to wording changes.

For some reason clippy flagged four `BTreeSet` methods but didn't say boo about equivalent ones on `HashSet`. I stared at them for a while but I can't figure out the difference so I added the `HashSet` ones in.

```rust
// Flagged by clippy.
alloc::collections::btree_set::BTreeSet<T>   fn difference<'a>(&'a self, other: &'a BTreeSet<T>) -> Difference<'a, T>;
alloc::collections::btree_set::BTreeSet<T>   fn symmetric_difference<'a>(&'a self, other: &'a BTreeSet<T>) -> SymmetricDifference<'a, T>
alloc::collections::btree_set::BTreeSet<T>   fn intersection<'a>(&'a self, other: &'a BTreeSet<T>) -> Intersection<'a, T>;
alloc::collections::btree_set::BTreeSet<T>   fn union<'a>(&'a self, other: &'a BTreeSet<T>) -> Union<'a, T>;

// Ignored by clippy, but not by me.
std::collections::HashSet<T, S>              fn difference<'a>(&'a self, other: &'a HashSet<T, S>) -> Difference<'a, T, S>;
std::collections::HashSet<T, S>              fn symmetric_difference<'a>(&'a self, other: &'a HashSet<T, S>) -> SymmetricDifference<'a, T, S>
std::collections::HashSet<T, S>              fn intersection<'a>(&'a self, other: &'a HashSet<T, S>) -> Intersection<'a, T, S>;
std::collections::HashSet<T, S>              fn union<'a>(&'a self, other: &'a HashSet<T, S>) -> Union<'a, T, S>;
```

Parent issue: #89692

r? ```@joshtriplett```

2 years agoRollup merge of #89833 - jkugelman:must-use-rc-downgrade, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 08:20:23 +0000 (09:20 +0100)]
Rollup merge of #89833 - jkugelman:must-use-rc-downgrade, r=joshtriplett

Add #[must_use] to Rc::downgrade

Missed this in previous PR https://github.com/rust-lang/rust/pull/89796#issuecomment-941456006

Parent issue: #89692

r? ```@joshtriplett```

2 years agoRollup merge of #89677 - maxwase:is-symlink-stabilization, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 08:20:22 +0000 (09:20 +0100)]
Rollup merge of #89677 - maxwase:is-symlink-stabilization, r=joshtriplett

Stabilize `is_symlink()` for `Metadata` and `Path`

I'm not fully sure about `since` version, correct me if I'm wrong

Needs update after stabilization: [cargo-test-support](https://github.com/rust-lang/cargo/blob/8063672238a5b6c3a901c0fc17f3164692d0be85/crates/cargo-test-support/src/paths.rs#L202)

Linked issue: #85748

2 years agoRollup merge of #89446 - chrismit3s:issue-88715-fix, r=joshtriplett
Matthias Krüger [Sun, 31 Oct 2021 08:20:21 +0000 (09:20 +0100)]
Rollup merge of #89446 - chrismit3s:issue-88715-fix, r=joshtriplett

Add paragraph to ControlFlow docs to menion it works with the ? operator (#88715)

fixes #88715

r? ```@steveklabnik```

2 years agoAuto merge of #90391 - camelid:crate-size, r=jyn514
bors [Sun, 31 Oct 2021 05:52:42 +0000 (05:52 +0000)]
Auto merge of #90391 - camelid:crate-size, r=jyn514

rustdoc: Compute some fields of `clean::Crate` on-demand to reduce size

`clean::Crate` is frequently moved by-value -- for example, in `DocFolder`
implementations -- so reducing its size should improve performance.

This PR reduces the size of `clean::Crate` from 168 bytes to 104 bytes.

r? `@jyn514`

2 years agoAdd #[must_use] to remaining std functions (A-N)
John Kugelman [Sun, 31 Oct 2021 02:58:27 +0000 (22:58 -0400)]
Add #[must_use] to remaining std functions (A-N)

2 years agoAdd #[must_use] to remaining std functions (O-Z)
John Kugelman [Sun, 31 Oct 2021 03:37:32 +0000 (23:37 -0400)]
Add #[must_use] to remaining std functions (O-Z)

2 years agoAdd #[must_use] to alloc functions that would leak memory
John Kugelman [Sun, 31 Oct 2021 02:06:31 +0000 (22:06 -0400)]
Add #[must_use] to alloc functions that would leak memory

2 years agoAuto merge of #90306 - kornelski:slicecloneasset, r=joshtriplett
bors [Sun, 31 Oct 2021 01:56:40 +0000 (01:56 +0000)]
Auto merge of #90306 - kornelski:slicecloneasset, r=joshtriplett

track_caller for slice length assertions

`clone_from_slice` was missing `#[track_caller]`, and its assert did not report a useful location.

These are small generic methods, so hopefully track_caller gets inlined into nothingness, but it may be worth running a benchmark on this.

2 years agoRemove unnecessary `Option` from `promote_candidate` return type
Tomasz Miąsko [Sun, 31 Oct 2021 00:00:00 +0000 (00:00 +0000)]
Remove unnecessary `Option` from `promote_candidate` return type

2 years agoAdd #[must_use] to len and is_empty
John Kugelman [Mon, 11 Oct 2021 20:15:50 +0000 (16:15 -0400)]
Add #[must_use] to len and is_empty

2 years agoAdd #[must_use] to mem/ptr functions
John Kugelman [Wed, 13 Oct 2021 02:28:14 +0000 (22:28 -0400)]
Add #[must_use] to mem/ptr functions

2 years agoAuto merge of #90424 - matthiaskrgr:rollup-jezzu4f, r=matthiaskrgr
bors [Sat, 30 Oct 2021 22:39:24 +0000 (22:39 +0000)]
Auto merge of #90424 - matthiaskrgr:rollup-jezzu4f, r=matthiaskrgr

Rollup of 4 pull requests

Successful merges:

 - #89789 (Add #[must_use] to thread::Builder)
 - #89899 (Add #[must_use] to remaining alloc functions)
 - #90401 (hermit: Implement Condvar::wait_timeout)
 - #90404 (hermitkernel-target: Set OS to "none")

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoRollup merge of #90404 - mkroening:hermit-kernel-no-os, r=joshtriplett
Matthias Krüger [Sat, 30 Oct 2021 22:33:26 +0000 (00:33 +0200)]
Rollup merge of #90404 - mkroening:hermit-kernel-no-os, r=joshtriplett

hermitkernel-target: Set OS to "none"

For our kernel targets, we should not set OS, as the kernel runs bare
metal without a circular dependency on std.

This also prepares us for unifying with
https://github.com/rust-lang/rust/pull/89062. This patch requires
libhermit-rs to change a `cfg`s from `target_os = "hermit"` to `target_os
= "none"`.

I tested this patch locally.

CC: `@stlankes`
2 years agoRollup merge of #90401 - mkroening:hermit-condvar, r=joshtriplett
Matthias Krüger [Sat, 30 Oct 2021 22:33:25 +0000 (00:33 +0200)]
Rollup merge of #90401 - mkroening:hermit-condvar, r=joshtriplett

hermit: Implement Condvar::wait_timeout

This implements `Condvar::wait_timeout` for the `hermit` target.

See
* https://github.com/hermitcore/rust/pull/2
* https://github.com/hermitcore/rust/pull/5

CC: `@stlankes`
2 years agoRollup merge of #89899 - jkugelman:must-use-alloc, r=joshtriplett
Matthias Krüger [Sat, 30 Oct 2021 22:33:24 +0000 (00:33 +0200)]
Rollup merge of #89899 - jkugelman:must-use-alloc, r=joshtriplett

Add #[must_use] to remaining alloc functions

I've run out of compelling reasons to group functions together across crates so I'm just going to go module-by-module. This is everything remaining from the `alloc` crate.

I ignored these because they might be used to purposefully leak memory... or other allocator shenanigans? I dunno. I'll add them if y'all tell me to.

```rust
alloc::alloc          unsafe fn alloc(layout: Layout) -> *mut u8;
alloc::alloc          unsafe fn alloc_zeroed(layout: Layout) -> *mut u8;
alloc::sync::Arc<T>   fn into_raw(this: Self) -> *const T;
```

I don't know why clippy ignored these. I added them myself:

```rust
alloc::collections::btree_map::BTreeMap<K, V>   fn range<T: ?Sized, R>(&self, range: R) -> Range<'_, K, V>;
alloc::collections::btree_set::BTreeSet<T>      fn range<K: ?Sized, R>(&self, range: R) -> Range<'_, T>;
```

I added these non-mutating `mut` functions:

```rust
alloc::collections::btree_map::BTreeMap<K, V>     fn range_mut<T: ?Sized, R>(&mut self, range: R) -> RangeMut<'_, K, V>;
alloc::collections::btree_map::BTreeMap<K, V>     fn iter_mut(&mut self) -> IterMut<'_, K, V>;
alloc::collections::btree_map::BTreeMap<K, V>     fn values_mut(&mut self) -> ValuesMut<'_, K, V>;
alloc::collections::linked_list::LinkedList<T>    fn iter_mut(&mut self) -> IterMut<'_, T>;
alloc::collections::linked_list::LinkedList<T>    fn cursor_front_mut(&mut self) -> CursorMut<'_, T>;
alloc::collections::linked_list::LinkedList<T>    fn cursor_back_mut(&mut self) -> CursorMut<'_, T>;
alloc::collections::linked_list::LinkedList<T>    fn front_mut(&mut self) -> Option<&mut T>;
alloc::collections::linked_list::LinkedList<T>    fn back_mut(&mut self) -> Option<&mut T>;
alloc::collections::linked_list::CursorMut<'a, T> fn current(&mut self) -> Option<&mut T>;
alloc::collections::linked_list::CursorMut<'a, T> fn peek_next(&mut self) -> Option<&mut T>;
alloc::collections::linked_list::CursorMut<'a, T> fn peek_prev(&mut self) -> Option<&mut T>;
alloc::collections::linked_list::CursorMut<'a, T> fn front_mut(&mut self) -> Option<&mut T>;
alloc::collections::linked_list::CursorMut<'a, T> fn back_mut(&mut self) -> Option<&mut T>;
```

I moved a few existing `#[must_use]`s from functions onto the iterator types they return: `IntoIterSorted`, `IntoKeys`, `IntoValues`.

Parent issue: #89692

r? `@joshtriplett`

2 years agoRollup merge of #89789 - jkugelman:must-use-thread-builder, r=joshtriplett
Matthias Krüger [Sat, 30 Oct 2021 22:33:23 +0000 (00:33 +0200)]
Rollup merge of #89789 - jkugelman:must-use-thread-builder, r=joshtriplett

Add #[must_use] to thread::Builder

I copied the wording of the [`fmt::Debug` builders](https://doc.rust-lang.org/src/core/fmt/builders.rs.html#444).

Affects:

```rust
std/src/thread/mod.rs:289:5   std::thread::Builder   fn new() -> Builder;
std/src/thread/mod.rs:318:5   std::thread::Builder   fn name(mut self, name: String) -> Builder;
std/src/thread/mod.rs:341:5   std::thread::Builder   fn stack_size(mut self, size: usize) -> Builder;
```

Parent issue: #89692

r? `@joshtriplett`

2 years agoAdd #[must_use] to remaining core functions
John Kugelman [Thu, 14 Oct 2021 22:54:55 +0000 (18:54 -0400)]
Add #[must_use] to remaining core functions

2 years agoAuto merge of #90422 - GuillaumeGomez:rollup-s1mdag0, r=GuillaumeGomez
bors [Sat, 30 Oct 2021 19:31:47 +0000 (19:31 +0000)]
Auto merge of #90422 - GuillaumeGomez:rollup-s1mdag0, r=GuillaumeGomez

Rollup of 5 pull requests

Successful merges:

 - #90156 (Remove underlines from non-top docblocks.)
 - #90183 (Show all Deref implementations recursively)
 - #90202 (Improve and test cross-crate hygiene)
 - #90375 (Use `is_global` in `candidate_should_be_dropped_in_favor_of`)
 - #90399 (Skipping verbose diagnostic suggestions when calling .as_ref() on type not implementing AsRef)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoRollup merge of #90399 - yuvaldolev:as-ref-overly-verbose-diagnostic, r=estebank
Guillaume Gomez [Sat, 30 Oct 2021 18:30:28 +0000 (20:30 +0200)]
Rollup merge of #90399 - yuvaldolev:as-ref-overly-verbose-diagnostic, r=estebank

Skipping verbose diagnostic suggestions when calling .as_ref() on type not implementing AsRef

Addresses #89806

Skipping suggestions when calling `.as_ref()` for types that do not implement the `AsRef` trait.

r? `@estebank`

2 years agoRollup merge of #90375 - yanok:master, r=lcnr
Guillaume Gomez [Sat, 30 Oct 2021 18:30:27 +0000 (20:30 +0200)]
Rollup merge of #90375 - yanok:master, r=lcnr

Use `is_global` in `candidate_should_be_dropped_in_favor_of`

This manifistated in #90195 with compiler being unable to keep
one candidate for a trait impl, if where is a global impl and more
than one trait bound in the where clause.

Before #87280 `candidate_should_be_dropped_in_favor_of` was using
`TypeFoldable::is_global()` that was enough to discard the two
`ParamCandidate`s. But #87280 changed it to use
`TypeFoldable::is_known_global()` instead, which is pessimistic, so
now the compiler drops the global impl instead (because
`is_known_global` is not sure) and then can't decide between the
two `ParamCandidate`s.

Switching it to use `is_global` again solves the issue.

Fixes #90195.

2 years agoRollup merge of #90202 - matthewjasper:xcrate-hygiene, r=petrochenkov
Guillaume Gomez [Sat, 30 Oct 2021 18:30:27 +0000 (20:30 +0200)]
Rollup merge of #90202 - matthewjasper:xcrate-hygiene, r=petrochenkov

Improve and test cross-crate hygiene

- Decode the parent expansion for traits and enums in `rustc_resolve`, this was already being used for resolution in typeck
- Avoid suggesting importing names with def-site hygiene, since it's often not useful
- Add more tests

r? `@petrochenkov`

2 years agoRollup merge of #90183 - GuillaumeGomez:recurse-deref, r=jyn514
Guillaume Gomez [Sat, 30 Oct 2021 18:30:26 +0000 (20:30 +0200)]
Rollup merge of #90183 - GuillaumeGomez:recurse-deref, r=jyn514

Show all Deref implementations recursively

Fixes #87783.

This is a re-implementation of #80653, so taking the original PR comment:

This changes `rustdoc` to recursively follow `Deref` targets so that methods from all levels are added to the rendered output. This implementation displays the methods from all levels in the expanded state with separate sections for each level.

![image](https://user-images.githubusercontent.com/279572/103482863-46723b00-4ddb-11eb-972b-c463351a425c.png)

cc `@camelid`
r? `@jyn514`

2 years agoRollup merge of #90156 - jsha:less-border-bottom-2, r=GuillaumeGomez
Guillaume Gomez [Sat, 30 Oct 2021 18:30:25 +0000 (20:30 +0200)]
Rollup merge of #90156 - jsha:less-border-bottom-2, r=GuillaumeGomez

Remove underlines from non-top docblocks.

We still had a number of places where underlined section headings would
show up, like under Implementations.

Follow-up to #89506 (thanks `@yaymukund!)` and #90036. Related to #59829.

r? `@camelid`

Demo:

[Before](https://doc.rust-lang.org/nightly/std/string/struct.String.html#trait-implementations):

[![image](https://user-images.githubusercontent.com/220205/138402555-b0c0a3ea-ff50-4aad-bb74-6f9e57323807.png)](https://jacob.hoffman-andrews.com/rust/less-border-bottom-2/std/string/struct.String.html#trait-implementations)

[After](https://jacob.hoffman-andrews.com/rust/less-border-bottom-2/std/string/struct.String.html#trait-implementations):

[![image](https://user-images.githubusercontent.com/220205/138402669-d0835bd9-8813-4f0c-8697-f86e9759acec.png)](https://jacob.hoffman-andrews.com/rust/less-border-bottom-2/std/string/struct.String.html#trait-implementations)

2 years agorustdoc: Stop sorting external crates
Noah Lev [Sat, 30 Oct 2021 03:57:12 +0000 (20:57 -0700)]
rustdoc: Stop sorting external crates

Now that #73423 is fixed, sorting should no longer be necessary.
See also this discussion [1].

[1]: https://github.com/rust-lang/rust/pull/86889#discussion_r664134963

2 years agorustdoc: Remove `Crate.name` and instead compute it on-demand
Noah Lev [Fri, 29 Oct 2021 03:55:02 +0000 (20:55 -0700)]
rustdoc: Remove `Crate.name` and instead compute it on-demand

It is not as large as `Crate.src` was, but it's still 8 bytes, and
`clean::Crate` is moved by-value a lot.

2 years agorustdoc: Remove `Crate.src` and instead compute it on-demand
Noah Lev [Fri, 29 Oct 2021 03:48:48 +0000 (20:48 -0700)]
rustdoc: Remove `Crate.src` and instead compute it on-demand

It is only used in one place; `src` was about a third of `Crate`'s total
size; `Crate` is frequently moved by-value; and `src` can be easily
computed on-demand.

2 years agorustdoc: Document that `Crate` is always local
Noah Lev [Sat, 30 Oct 2021 02:59:49 +0000 (19:59 -0700)]
rustdoc: Document that `Crate` is always local

2 years agoReplace `std::os::raw::c_ssize_t` with `std::os::raw::c_ptrdiff_t`
Thom Chiovoloni [Sat, 30 Oct 2021 17:54:34 +0000 (10:54 -0700)]
Replace `std::os::raw::c_ssize_t` with `std::os::raw::c_ptrdiff_t`

2 years agoCollect `panic/panic_bounds_check` during monomorphization
Gary Guo [Fri, 29 Oct 2021 14:51:52 +0000 (15:51 +0100)]
Collect `panic/panic_bounds_check` during monomorphization

2 years agoAuto merge of #90205 - mati865:link-modifiers-in-rustc, r=petrochenkov
bors [Sat, 30 Oct 2021 16:22:49 +0000 (16:22 +0000)]
Auto merge of #90205 - mati865:link-modifiers-in-rustc, r=petrochenkov

Repace use of `static_nobundle` with `native_link_modifiers` within Rust codebase

This fixes warnings when building Rust and running tests:
```
warning: library kind `static-nobundle` has been superseded by specifying `-bundle` on library kind `static`. Try `static:-bundle`
warning: `rustc_llvm` (lib) generated 2 warnings (1 duplicate)
```