]> git.lizzy.rs Git - rust.git/log
rust.git
2 years agoRollup merge of #89096 - daira:improve-ninja-error-message, r=jyn514
the8472 [Tue, 21 Sep 2021 20:54:02 +0000 (22:54 +0200)]
Rollup merge of #89096 - daira:improve-ninja-error-message, r=jyn514

[bootstrap] Improve the error message when `ninja` is not found to link to installation instructions

fixes #89091

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
2 years agoRollup merge of #89086 - WaffleLapkin:stabilize_iter_map_while, r=kennytm
the8472 [Tue, 21 Sep 2021 20:54:01 +0000 (22:54 +0200)]
Rollup merge of #89086 - WaffleLapkin:stabilize_iter_map_while, r=kennytm

Stabilize `Iterator::map_while`

Per the FCP: https://github.com/rust-lang/rust/issues/68537#issuecomment-922385035

This PR stabilizes `Iterator::map_while` and `iter::MapWhile` in Rust 1.57.

2 years agoRollup merge of #89078 - camsteffen:map-ref, r=cjgillot
the8472 [Tue, 21 Sep 2021 20:54:00 +0000 (22:54 +0200)]
Rollup merge of #89078 - camsteffen:map-ref, r=cjgillot

Cleanup: Remove needless reference in ParentHirIterator

It forces an intermediate binding of `Map` which is a Copy type.

2 years agoRollup merge of #89015 - klensy:escape-def, r=Mark-Simulacrum
the8472 [Tue, 21 Sep 2021 20:53:59 +0000 (22:53 +0200)]
Rollup merge of #89015 - klensy:escape-def, r=Mark-Simulacrum

core::ascii::escape_default: reduce struct size

2 years agoRollup merge of #88795 - FabianWolff:issue-88684, r=wesleywiser
the8472 [Tue, 21 Sep 2021 20:53:58 +0000 (22:53 +0200)]
Rollup merge of #88795 - FabianWolff:issue-88684, r=wesleywiser

Print a note if a character literal contains a variation selector

Fixes #88684.

2 years agoAuto merge of #88981 - durin42:llvm-14-crc32, r=nagisa
bors [Tue, 21 Sep 2021 16:13:24 +0000 (16:13 +0000)]
Auto merge of #88981 - durin42:llvm-14-crc32, r=nagisa

rustc_codegen_llvm: make sse4.2 imply crc32 for LLVM 14

This fixes compiling things like the `snap` crate after
https://reviews.llvm.org/D105462. I added a test that verifies the
additional attribute gets specified, and confirmed that I can build
cargo with both LLVM 13 and 14 with this change applied.

r? `@nagisa` cc `@nikic`

2 years agoAuto merge of #89125 - Aaron1011:remove-intercrate-cache, r=jackh726
bors [Tue, 21 Sep 2021 13:25:14 +0000 (13:25 +0000)]
Auto merge of #89125 - Aaron1011:remove-intercrate-cache, r=jackh726

Don't use projection cache or candidate cache in intercrate mode

Fixes #88969

It appears that *just* disabling the evaluation cache (in #88994)
leads to other issues involving intercrate mode caching. I suspect
that since we now always end up performing the full evaluation
in intercrate mode, we end up 'polluting' the candidate and projection
caches with results that depend on being in intercrate mode in some way.
Previously, we might have hit a cached evaluation (stored during
non-intercrate mode), and skipped doing this extra work in
intercrate mode.

The whole situation with intercrate mode caching is turning into
a mess. Ideally, we would remove intercrate mode entirely - however,
this might require waiting on Chalk.

2 years agoAuto merge of #89045 - oli-obk:lazy_normalization_in_opaque_types, r=nikomatsakis
bors [Tue, 21 Sep 2021 10:33:15 +0000 (10:33 +0000)]
Auto merge of #89045 - oli-obk:lazy_normalization_in_opaque_types, r=nikomatsakis

Register normalization obligations instead of immediately normalizing in opaque type instantiation

For lazy TAIT we will need to instantiate opaque types from within `rustc_infer`, which cannot invoke normalization methods (they are in `rustc_trait_resolution`). So before we move the logic over to `rustc_infer`, we need make sure no normalization happens anymore. This PR resolves that by just registering normalization obligations and continuing.

This PR is best reviewed commit by commit

I also included f7ad36e which is just an independent cleanup that touches the same code and reduces diagnostics noise a bit

r? `@nikomatsakis` cc `@spastorino`

2 years agoAuto merge of #87234 - cjgillot:lower-mono, r=petrochenkov
bors [Tue, 21 Sep 2021 07:52:15 +0000 (07:52 +0000)]
Auto merge of #87234 - cjgillot:lower-mono, r=petrochenkov

Lower only one HIR owner at a time

Based on https://github.com/rust-lang/rust/pull/83723
Additional diff is here: https://github.com/cjgillot/rust/compare/ownernode...lower-mono

Lowering is very tangled and has a tendency to intertwine the transformation of different items. This PR aims at simplifying the logic by:
- moving global analyses to the resolver (item_generics_num_lifetimes, proc_macros, trait_impls);
- removing a few special cases (non-exported macros and use statements);
- restricting the amount of available information at any one time;
- avoiding back-and-forth between different owners: an item must now be lowered all at once, and its parent cannot refer to its nodes.

I also removed the sorting of bodies by span.  The diagnostic ordering changes marginally, since definitions are pretty much sorted already according to the AST. This uncovered a subtlety in thir-unsafeck.

(While these items could logically be in different PRs, the dependency between commits and the amount of conflicts force a monolithic PR.)

2 years agoAuto merge of #87830 - hkmatsumoto:suggest-brackets-for-array-esque-block-expr, r...
bors [Tue, 21 Sep 2021 00:34:10 +0000 (00:34 +0000)]
Auto merge of #87830 - hkmatsumoto:suggest-brackets-for-array-esque-block-expr, r=estebank

Suggest replacing braces for brackets on array-esque invalid block expr

Newcomers may write `{1, 2, 3}` for making arrays, and the current error message is not informative enough to quickly convince them what is needed to fix the error.

This PR implements a diagnostic for this case, and its output looks like this:
```text
error: this code is interpreted as a block expression, not an array
 --> src/lib.rs:1:22
  |
1 |   const FOO: [u8; 3] = {
  |  ______________________^
2 | |     1, 2, 3
3 | | };
  | |_^
  |
  = note: to define an array, one would use square brackets instead of curly braces
help: try using [] instead of {}
  |
1 | const FOO: [u8; 3] = [
2 |     1, 2, 3
3 | ];
  |
```

Fix #87672

2 years agoDon't use projection cache or candidate cache in intercrate mode
Aaron Hill [Mon, 20 Sep 2021 19:23:21 +0000 (14:23 -0500)]
Don't use projection cache or candidate cache in intercrate mode

Fixes #88969

It appears that *just* disabling the evaluation cache (in #88994)
leads to other issues involving intercrate mode caching. I suspect
that since we now always end up performing the full evaluation
in intercrate mode, we end up 'polluting' the candidate and projection
caches with results that depend on being in intercrate mode in some way.
Previously, we might have hit a cached evaluation (stored during
non-intercrate mode), and skipped doing this extra work in
intercrate mode.

The whole situation with intercrate mode caching is turning into
a mess. Ideally, we would remove intercrate mode entirely - however,
this might require waiting on Chalk.

2 years agoAuto merge of #89117 - michaelwoerister:update-to-odht-0.3, r=wesleywiser
bors [Mon, 20 Sep 2021 17:38:07 +0000 (17:38 +0000)]
Auto merge of #89117 - michaelwoerister:update-to-odht-0.3, r=wesleywiser

Update odht crate to 0.3.0

This version of odht contains a potential fix for #89085.

r? `@wesleywiser`

2 years agorustc_codegen_llvm: make sse4.2 imply crc32 for LLVM 14
Augie Fackler [Wed, 15 Sep 2021 14:18:10 +0000 (10:18 -0400)]
rustc_codegen_llvm: make sse4.2 imply crc32 for LLVM 14

This fixes compiling things like the `snap` crate after
https://reviews.llvm.org/D105462. I added a test that verifies the
additional attribute gets specified, and confirmed that I can build
cargo with both LLVM 13 and 14 with this change applied.

2 years agoAuto merge of #89069 - bjorn3:optimize_sharded_new, r=Mark-Simulacrum
bors [Mon, 20 Sep 2021 14:33:00 +0000 (14:33 +0000)]
Auto merge of #89069 - bjorn3:optimize_sharded_new, r=Mark-Simulacrum

Use <[T; N]>::map in Sharded instead of SmallVec and unsafe code

This results in a lot less assembly

2 years agoAdd a doc comment to infer_projection
Oli Scherer [Sat, 18 Sep 2021 07:34:06 +0000 (09:34 +0200)]
Add a doc comment to infer_projection

2 years agoUse `ty::Error` for opaque types with errors in its bounds.
Oli Scherer [Tue, 10 Aug 2021 15:24:48 +0000 (15:24 +0000)]
Use `ty::Error` for opaque types with errors in its bounds.

This reduces unhelpful diagnostics down the road.

2 years agoGenerate inference vars and obligations for projections in opaque types instead of...
Oli Scherer [Tue, 10 Aug 2021 11:45:32 +0000 (11:45 +0000)]
Generate inference vars and obligations for projections in opaque types instead of trying to normalize them.

2 years agoInline a function that is only called once
Oli Scherer [Tue, 10 Aug 2021 11:31:05 +0000 (11:31 +0000)]
Inline a function that is only called once

2 years agoUse tracing debugging in `fold_opaque_ty`
Oli Scherer [Tue, 10 Aug 2021 11:28:54 +0000 (11:28 +0000)]
Use tracing debugging in `fold_opaque_ty`

2 years agoAdd helper function to `InferCtxt` that generates inference vars for unresolved assoc...
Oli Scherer [Tue, 10 Aug 2021 11:12:11 +0000 (11:12 +0000)]
Add helper function to `InferCtxt` that generates inference vars for unresolved associated types

2 years agoUpdate odht crate to 0.3.0
Michael Woerister [Mon, 20 Sep 2021 13:57:45 +0000 (15:57 +0200)]
Update odht crate to 0.3.0

This version of odht contains a potential fix for #89085.

2 years agoAuto merge of #88321 - glaubitz:m68k-linux, r=wesleywiser
bors [Mon, 20 Sep 2021 07:21:05 +0000 (07:21 +0000)]
Auto merge of #88321 - glaubitz:m68k-linux, r=wesleywiser

Add initial support for m68k

This patch series adds initial support for m68k making use of the new M68k
backend introduced with LLVM-13. Additional changes will be needed to be
able to actually use the backend for this target.

2 years agoBless incremental tests.
Camille GILLOT [Sun, 29 Aug 2021 13:33:03 +0000 (15:33 +0200)]
Bless incremental tests.

2 years agoMake with_hir_id_owner responsible for registering the item.
Camille GILLOT [Fri, 16 Jul 2021 08:16:23 +0000 (10:16 +0200)]
Make with_hir_id_owner responsible for registering the item.

2 years agoAuto merge of #88842 - wesleywiser:fix_dbg_tests_windows_sdk, r=michaelwoerister
bors [Mon, 20 Sep 2021 03:53:10 +0000 (03:53 +0000)]
Auto merge of #88842 - wesleywiser:fix_dbg_tests_windows_sdk, r=michaelwoerister

Fix debuginfo tests for the latest version of the Windows SDK.

Re-enable the tests that were disabled to fix CI.

Changes:
- Cdb now correctly visualizes enums.
- Cdb doesn't render emoji characters in `OSStr` anymore.
- Cdb doesn't always render `str` correctly (#88840)

2 years agoAuto merge of #88708 - Aaron1011:aggregate-usage, r=oli-obk
bors [Mon, 20 Sep 2021 00:53:13 +0000 (00:53 +0000)]
Auto merge of #88708 - Aaron1011:aggregate-usage, r=oli-obk

Add `ConstraintCategory::Usage` for handling aggregate construction

In some cases, we emit borrowcheck diagnostics pointing
at a particular field expression in a struct expression
(e.g. `MyStruct { field: my_expr }`). However, this
behavior currently relies on us choosing the
`ConstraintCategory::Boring` with the 'correct' span.
When adding additional variants to `ConstraintCategory`,
(or changing existing usages away from `ConstraintCategory::Boring`),
the current behavior can easily get broken, since a non-boring
constraint will get chosen over a boring one.

To make the diagnostic output less fragile, this commit
adds a `ConstraintCategory::Usage` variant. We use this variant
for the temporary assignments created for each field of
an aggregate we are constructing.

Using this new variant, we can emit a message mentioning
"this usage", emphasizing the fact that the error message
is related to the specific use site (in the struct expression).

This is preparation for additional work on improving NLL error messages
(see #57374)

2 years agoRemove lower_node_id_with_owner.
Camille GILLOT [Wed, 14 Jul 2021 21:50:53 +0000 (23:50 +0200)]
Remove lower_node_id_with_owner.

2 years agoDo not store visibility in *ItemRef.
Camille GILLOT [Thu, 15 Jul 2021 20:19:39 +0000 (22:19 +0200)]
Do not store visibility in *ItemRef.

2 years agoAuto merge of #88575 - eddyb:fn-abi-queries, r=nagisa
bors [Sun, 19 Sep 2021 21:39:47 +0000 (21:39 +0000)]
Auto merge of #88575 - eddyb:fn-abi-queries, r=nagisa

Querify `FnAbi::of_{fn_ptr,instance}` as `fn_abi_of_{fn_ptr,instance}`.

*Note: opening this PR as draft because it's based on #88499*

This more or less replicates the `LayoutOf::layout_of` setup from #88499, to replace `FnAbi::of_{fn_ptr,instance}` with `FnAbiOf::fn_abi_of_{fn_ptr,instance}`, and also route them through queries (which `layout_of` has used for a while).

The two changes at the use sites (other than the names) are:
* return type is now wrapped in `&'tcx`
  * the value *is* interned, which may affect performance
* the `extra_args` list is now an interned `&'tcx ty::List<Ty<'tcx>>`
  * should be cheap (it's empty for anything other than C variadics)

Theoretically, a `FnAbiOfHelpers` implementer could choose to keep the `Result<...>` instead of eagerly erroring, but the only existing users of these APIs are codegen backends, so they don't (want to) take advantage of this.
At least miri could make use of this, since it prefers propagating errors (it "just" doesn't use `FnAbi` yet - cc `@RalfJung).`

The way this is done is probably less efficient than what is possible, because the queries handle the correctness-oriented API (i.e. the split into `fn` pointers vs instances), whereas a lower-level query could end up with more reuse between different instances with identical signatures.

r? `@nagisa` cc `@oli-obk` `@bjorn3`

2 years agoAuto merge of #89049 - Aaron1011:caching-sourcemap-assert, r=Mark-Simulacrum
bors [Sun, 19 Sep 2021 18:54:31 +0000 (18:54 +0000)]
Auto merge of #89049 - Aaron1011:caching-sourcemap-assert, r=Mark-Simulacrum

Convert `debug_assert` to `assert` in `CachingSourceMapView`

I suspect that there's a bug somewhere in this code, which is
leading to the `predicates_of` ICE being seen in #89035

2 years agoRestore the suggestion to set `ninja = false`.
Daira Hopwood [Sun, 19 Sep 2021 18:50:08 +0000 (19:50 +0100)]
Restore the suggestion to set `ninja = false`.

2 years agoAuto merge of #88703 - cjgillot:lazymod, r=petrochenkov
bors [Sun, 19 Sep 2021 16:13:42 +0000 (16:13 +0000)]
Auto merge of #88703 - cjgillot:lazymod, r=petrochenkov

Gather module items after lowering.

This avoids having a non-local analysis inside lowering.

By implementing `hir_module_items` using a visitor, we make sure that iterations and visitors are consistent.

2 years ago[bootstrap] Improve the error message when `ninja` is not found to link to installati...
Daira Hopwood [Sun, 19 Sep 2021 13:27:49 +0000 (14:27 +0100)]
[bootstrap] Improve the error message when `ninja` is not found to link to installation instructions.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
2 years agoAuto merge of #88627 - cjgillot:noallocuse, r=petrochenkov
bors [Sun, 19 Sep 2021 13:44:18 +0000 (13:44 +0000)]
Auto merge of #88627 - cjgillot:noallocuse, r=petrochenkov

Do not preallocate HirIds

Part of https://github.com/rust-lang/rust/pull/87234

r? `@petrochenkov`

2 years agoAuto merge of #89089 - JohnTitor:rollup-6s6mccx, r=JohnTitor
bors [Sun, 19 Sep 2021 11:03:09 +0000 (11:03 +0000)]
Auto merge of #89089 - JohnTitor:rollup-6s6mccx, r=JohnTitor

Rollup of 10 pull requests

Successful merges:

 - #87960 (Suggest replacing an inexisting field for an unmentioned field)
 - #88855 (Allow simd_shuffle to accept vectors of any length)
 - #88966 (Check for shadowing issues involving block labels)
 - #88996 (Fix linting when trailing macro expands to a trailing semi)
 - #89017 (fix potential race in AtomicU64 time monotonizer)
 - #89021 (Add a separate error for `dyn Trait` in `const fn`)
 - #89051 (Add intra-doc links and small changes to `std::os` to be more consistent)
 - #89053 (refactor: VecDeques IntoIter fields to private)
 - #89055 (Suggest better place to add call parentheses for method expressions wrapped in parentheses)
 - #89081 (Fix a typo)

Failed merges:

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

2 years agoSuggest replacing braces for brackets on array-esque invalid block expr
Hirochika Matsumoto [Fri, 6 Aug 2021 19:34:29 +0000 (04:34 +0900)]
Suggest replacing braces for brackets on array-esque invalid block expr

Newcomers may write `{1, 2, 3}` for making arrays, and the current error
message is not informative enough to quickly convince them what is
needed to fix the error.
This PR implements a diagnostic for this case, and its output looks like
this:
```text
error: this code is interpreted as a block expression, not an array
 --> src/lib.rs:1:22
  |
1 |   const FOO: [u8; 3] = {
  |  ______________________^
2 | |     1, 2, 3
3 | | };
  | |_^
  |
  = note: to define an array, one would use square brackets instead of curly braces
help: try using [] instead of {}
  |
1 | const FOO: [u8; 3] = [
2 |     1, 2, 3
3 | ];
  |
```

Fix #87672

2 years agoRollup merge of #89081 - ondra05:patch-1, r=dtolnay
Yuki Okushi [Sun, 19 Sep 2021 08:31:35 +0000 (17:31 +0900)]
Rollup merge of #89081 - ondra05:patch-1, r=dtolnay

Fix a typo

Removed extra spaces in front of commas

2 years agoRollup merge of #89055 - Kobzol:wrapped-method-expr-call-parens, r=wesleywiser
Yuki Okushi [Sun, 19 Sep 2021 08:31:35 +0000 (17:31 +0900)]
Rollup merge of #89055 - Kobzol:wrapped-method-expr-call-parens, r=wesleywiser

Suggest better place to add call parentheses for method expressions wrapped in parentheses

I wanted to improve the suggestion a bit to both remove the wrapping parentheses **and** add call parentheses by both calling `suggest_method_call` and using `multipart_suggestion`. But I very quickly ran into a problem where multiple overlapping machine applicable suggestions cannot be properly applied together. So I applied the suggestion from the issue and only added the call parentheses directly after the expression.

Fixes: https://github.com/rust-lang/rust/issues/89044
2 years agoRollup merge of #89053 - DeveloperC286:into_iter_fields_to_private, r=Mark-Simulacrum
Yuki Okushi [Sun, 19 Sep 2021 08:31:34 +0000 (17:31 +0900)]
Rollup merge of #89053 - DeveloperC286:into_iter_fields_to_private, r=Mark-Simulacrum

refactor: VecDeques IntoIter fields to private

Made the fields of VecDeque's IntoIter private by creating a IntoIter::from(...) function to create a new instance of IntoIter and migrating usage to use IntoIter::from(...).

2 years agoRollup merge of #89051 - schctl:master, r=jyn514
Yuki Okushi [Sun, 19 Sep 2021 08:31:33 +0000 (17:31 +0900)]
Rollup merge of #89051 - schctl:master, r=jyn514

Add intra-doc links and small changes to `std::os` to be more consistent

I believe that a few items in `std::os` should be linked. I've also added a basic example in `std::os::windows`.

2 years agoRollup merge of #89021 - WaffleLapkin:separate_error_for_dyn_trait_in_const_fn, r...
Yuki Okushi [Sun, 19 Sep 2021 08:31:33 +0000 (17:31 +0900)]
Rollup merge of #89021 - WaffleLapkin:separate_error_for_dyn_trait_in_const_fn, r=estebank

Add a separate error for `dyn Trait` in `const fn`

Previously "trait bounds other than `Sized` on const fn parameters are unstable" error was used for both trait bounds (`<T: Trait>`) and trait objects (`dyn Trait`). This was pretty confusing.

This PR adds a separate error for trait objects: "trait objects in const fn are unstable". The error for trait bounds is otherwise intact.

This is follow up to #88907

r? ``@estebank``

``@rustbot`` label: +A-diagnostics

2 years agoRollup merge of #89017 - the8472:fix-u64-time-monotonizer, r=kennytm
Yuki Okushi [Sun, 19 Sep 2021 08:31:32 +0000 (17:31 +0900)]
Rollup merge of #89017 - the8472:fix-u64-time-monotonizer, r=kennytm

fix potential race in AtomicU64 time monotonizer

The AtomicU64-based monotonizer introduced in #83093 is incorrect because several threads could try to update the value concurrently and a thread which doesn't have the newest value among all the updates could win.

That bug probably has little real world impact since it doesn't make observed time worse than hardware clocks. The worst case would probably be a thread which has a clock that is behind by several cycles observing several inconsistent fixups, which should be similar to observing the unfiltered backslide in the first place.

New benchmarks, they don't look as good as the original PR but still an improvement compared to the mutex.
I don't know why the contended mutex case is faster now than in the previous benchmarks.

```
actually_monotonic() == true:
test time::tests::instant_contention_01_threads                   ... bench:          44 ns/iter (+/- 0)
test time::tests::instant_contention_02_threads                   ... bench:          45 ns/iter (+/- 0)
test time::tests::instant_contention_04_threads                   ... bench:          45 ns/iter (+/- 0)
test time::tests::instant_contention_08_threads                   ... bench:          45 ns/iter (+/- 0)
test time::tests::instant_contention_16_threads                   ... bench:          46 ns/iter (+/- 0)

atomic u64:
test time::tests::instant_contention_01_threads                   ... bench:          66 ns/iter (+/- 0)
test time::tests::instant_contention_02_threads                   ... bench:         287 ns/iter (+/- 14)
test time::tests::instant_contention_04_threads                   ... bench:         296 ns/iter (+/- 43)
test time::tests::instant_contention_08_threads                   ... bench:         604 ns/iter (+/- 163)
test time::tests::instant_contention_16_threads                   ... bench:       1,147 ns/iter (+/- 29)

mutex:
test time::tests::instant_contention_01_threads                   ... bench:          78 ns/iter (+/- 0)
test time::tests::instant_contention_02_threads                   ... bench:         652 ns/iter (+/- 275)
test time::tests::instant_contention_04_threads                   ... bench:         900 ns/iter (+/- 32)
test time::tests::instant_contention_08_threads                   ... bench:       1,927 ns/iter (+/- 62)
test time::tests::instant_contention_16_threads                   ... bench:       3,748 ns/iter (+/- 146)
```

2 years agoRollup merge of #88996 - Aaron1011:trailing-macro-semi, r=petrochenkov
Yuki Okushi [Sun, 19 Sep 2021 08:31:31 +0000 (17:31 +0900)]
Rollup merge of #88996 - Aaron1011:trailing-macro-semi, r=petrochenkov

Fix linting when trailing macro expands to a trailing semi

When a macro is used in the trailing expression position of a block
(e.g. `fn foo() { my_macro!() }`), we currently parse it as an
expression, rather than a statement. As a result, we ended up
using the `NodeId` of the containing statement as our `lint_node_id`,
even though we don't normally do this for macro calls.

If such a macro expands to an expression with a `#[cfg]` attribute,
then the trailing statement can get removed entirely. This lead to
an ICE, since we were usng the `NodeId` of the expression to emit
a lint.

Ths commit makes us skip updating `lint_node_id` when handling
a macro in trailing expression position. This will cause us to
lint at the closest parent of the macro call.

2 years agoRollup merge of #88966 - tmiasko:block-label-shadowing, r=petrochenkov
Yuki Okushi [Sun, 19 Sep 2021 08:31:30 +0000 (17:31 +0900)]
Rollup merge of #88966 - tmiasko:block-label-shadowing, r=petrochenkov

Check for shadowing issues involving block labels

2 years agoRollup merge of #88855 - calebzulawski:feature/simd_shuffle, r=nagisa
Yuki Okushi [Sun, 19 Sep 2021 08:31:29 +0000 (17:31 +0900)]
Rollup merge of #88855 - calebzulawski:feature/simd_shuffle, r=nagisa

Allow simd_shuffle to accept vectors of any length

cc ``@rust-lang/project-portable-simd`` ``@workingjubilee``

2 years agoRollup merge of #87960 - hkmatsumoto:suggest-inexisting-field-for-unmentioned-field...
Yuki Okushi [Sun, 19 Sep 2021 08:31:29 +0000 (17:31 +0900)]
Rollup merge of #87960 - hkmatsumoto:suggest-inexisting-field-for-unmentioned-field, r=estebank

Suggest replacing an inexisting field for an unmentioned field

Fix #87938

This PR adds a suggestion to replace an inexisting field for an
unmentioned field. Given the following code:
```rust
enum Foo {
    Bar { alpha: u8, bravo: u8, charlie: u8 },
}

fn foo(foo: Foo) {
    match foo {
        Foo::Bar {
            alpha,
            beta, // `bravo` miswritten as `beta` here.
            charlie,
        } => todo!(),
    }
}
```
the compiler now emits the error messages below.
```text
error[E0026]: variant `Foo::Bar` does not have a field named `beta`
 --> src/lib.rs:9:13
  |
9 |             beta, // `bravo` miswritten as `beta` here.
  |             ^^^^
  |             |
  |             variant `Foo::Bar` does not have this field
  |             help: `Foo::Bar` has a field named `bravo`: `bravo`
```

Note that this suggestion is available iff the number of inexisting
fields and unmentioned fields are both 1.

2 years agoAuto merge of #89031 - the8472:outline-once-cell-init-closure, r=Mark-Simulacrum
bors [Sun, 19 Sep 2021 08:05:45 +0000 (08:05 +0000)]
Auto merge of #89031 - the8472:outline-once-cell-init-closure, r=Mark-Simulacrum

Don't inline OnceCell initialization closures

The more general variant of #89026, originally suggested in https://github.com/rust-lang/rust/pull/86898#issuecomment-920138051

2 years agoAuto merge of #89028 - Aaron1011:coercion-cause, r=nagisa
bors [Sun, 19 Sep 2021 04:34:16 +0000 (04:34 +0000)]
Auto merge of #89028 - Aaron1011:coercion-cause, r=nagisa

Propagate coercion cause into `try_coerce`

Currently, `coerce_inner` discards its `ObligationCause`
when calling `try_coerce`. This interfers with other
diagnostc improvements I'm working on, since we will lose
the original span by the time the actual coercion occurs.

Additionally, we now use the span of the trailing expression
(rather than the span of the entire function) when performing
a coercion in `check_return_expr`. This currently has no visible
effect on any of the unit tests, but will unblock future
diagnostic improvements.

2 years agoAuto merge of #88968 - tmiasko:start-block-no-predecessors, r=davidtwco
bors [Sun, 19 Sep 2021 01:38:17 +0000 (01:38 +0000)]
Auto merge of #88968 - tmiasko:start-block-no-predecessors, r=davidtwco

Start block is not allowed to have basic block predecessors

* The MIR validator is extended to detect potential violations.
* The start block has no predecessors after building MIR, so no changes are required there.
* The SimplifyCfg could previously violate this requirement when collapsing goto chains, so transformation is disabled for the start block, which also substantially simplifies the implementation.
* The LLVM function entry block also must not have basic block predecessors. Previously, to ensure that code generation had to perform necessary adjustments. This now became unnecessary.

The motivation behind the change is to align with analogous requirement in LLVM, and to avoid potential latent bugs like the one reported in #88043.

2 years agoAuto merge of #89079 - ehuss:update-cargo, r=ehuss
bors [Sat, 18 Sep 2021 22:54:11 +0000 (22:54 +0000)]
Auto merge of #89079 - ehuss:update-cargo, r=ehuss

Update cargo

1 commits in 33ee5f82edb50af87b952c5b28de0f5fb41ebf18..9a28ac83c9eb73e42ffafac552c0a55f00dbf40c
2021-09-17 13:51:54 +0000 to 2021-09-18 15:42:28 -0500
- Temporarily revert curl-sys update. (rust-lang/cargo#9920)

2 years agoFix typo
ondra05 [Sat, 18 Sep 2021 21:39:56 +0000 (23:39 +0200)]
Fix typo

Removed extra spaces in front of commas

2 years agoUpdate cargo
Eric Huss [Sat, 18 Sep 2021 20:58:26 +0000 (13:58 -0700)]
Update cargo

2 years agoRemove needless hir Map ref
Cameron Steffen [Sat, 18 Sep 2021 20:48:07 +0000 (15:48 -0500)]
Remove needless hir Map ref

2 years agoAuto merge of #89000 - Mark-Simulacrum:no-new-lrc, r=petrochenkov
bors [Sat, 18 Sep 2021 20:13:21 +0000 (20:13 +0000)]
Auto merge of #89000 - Mark-Simulacrum:no-new-lrc, r=petrochenkov

Reuse existing shared Lrc for MatchImpl parent

This is a small performance win for the hot path, which helps to address this regression: https://github.com/rust-lang/rust/pull/87244#issuecomment-883635813.

2 years agoAuto merge of #88994 - Aaron1011:intercrate-caching, r=jackh726
bors [Sat, 18 Sep 2021 17:18:28 +0000 (17:18 +0000)]
Auto merge of #88994 - Aaron1011:intercrate-caching, r=jackh726

Disable the evaluation cache when in intercrate mode

It's possible to use the same `InferCtxt` with both
an intercrate and non-intercrate `SelectionContext`. However,
the local (inferctxt) evaluation cache is not aware of this
distinction, so this kind of `InferCtxt` re-use will pollute
the cache wth bad results.

This commit avoids the issue by disabling the evaluation cache
entirely during intercrate mode.

2 years agoAuto merge of #82183 - michaelwoerister:lazier-defpathhash-loading2, r=wesleywiser
bors [Sat, 18 Sep 2021 14:37:39 +0000 (14:37 +0000)]
Auto merge of #82183 - michaelwoerister:lazier-defpathhash-loading2, r=wesleywiser

Simplify lazy DefPathHash decoding by using an on-disk hash table.

This PR simplifies the logic around mapping `DefPathHash` values encountered during incremental compilation to valid `DefId`s in the current session. It is able to do so by using an on-disk hash table encoding that allows for looking up values directly, i.e. without deserializing the entire table.

The main simplification comes from not having to keep track of `DefPathHashes` being used during the compilation session.

2 years agoUse <[T; N]>::map in Sharded instead of SmallVec and unsafe code
bjorn3 [Sat, 18 Sep 2021 13:07:24 +0000 (15:07 +0200)]
Use <[T; N]>::map in Sharded instead of SmallVec and unsafe code

This results in a lot less assembly

2 years agoDo not preallocate UseTree HirIds.
Camille GILLOT [Wed, 14 Jul 2021 17:53:57 +0000 (19:53 +0200)]
Do not preallocate UseTree HirIds.

2 years agoAuto merge of #88650 - sapessi:issue-77175-fix, r=estebank
bors [Sat, 18 Sep 2021 11:56:23 +0000 (11:56 +0000)]
Auto merge of #88650 - sapessi:issue-77175-fix, r=estebank

Skip single use lifetime lint for generated opaque types

Fix: #77175

The opaque type generated by the desugaring process of an async function uses the lifetimes defined by the originating function. The DefId for the lifetimes in the opaque type are different from the ones in the originating async function - as they should be, as far as I understand, and could therefore be considered a single use lifetimes, this causes the single_use_lifetimes lint to fail compilation if explicitly denied. This fix skips the lint for lifetimes used only once in generated opaque types for an async function that are declared in the parent async function definition.

More info in the comments on the original issue: 1 and 2

2 years agoSuggest better place to add call parentheses for method expressions wrapped in parent...
Jakub Beránek [Fri, 17 Sep 2021 20:18:05 +0000 (22:18 +0200)]
Suggest better place to add call parentheses for method expressions wrapped in parentheses

2 years agoEscapeDefault: change `range` field to `Range<u8>`, reducing struct size 24 -> 6...
klensy [Thu, 16 Sep 2021 15:10:04 +0000 (18:10 +0300)]
EscapeDefault: change `range` field to `Range<u8>`, reducing struct size 24 -> 6 bytes

2 years agoDo not preallocate item HirIds.
Camille GILLOT [Wed, 14 Jul 2021 16:54:56 +0000 (18:54 +0200)]
Do not preallocate item HirIds.

2 years agoAuto merge of #88988 - Mark-Simulacrum:avoid-into-ok, r=nagisa
bors [Sat, 18 Sep 2021 09:15:40 +0000 (09:15 +0000)]
Auto merge of #88988 - Mark-Simulacrum:avoid-into-ok, r=nagisa

Avoid codegen for Result::into_ok in lang_start

This extra codegen seems to be the cause for the regressions in max-rss on #86034. While LLVM will certainly optimize the dead code away, avoiding it's generation in the first place seems good, particularly when it is so simple.

#86034 produced this [diff](https://gist.github.com/Mark-Simulacrum/95c7599883093af3b960c35ffadf4dab#file-86034-diff) for a simple `fn main() {}`. With this PR, that diff [becomes limited to just a few extra IR instructions](https://gist.github.com/Mark-Simulacrum/95c7599883093af3b960c35ffadf4dab#file-88988-from-pre-diff) -- no extra functions.

Note that these are pre-optimization; LLVM surely will eliminate this during optimization. However, that optimization can end up generating more work and bump memory usage, and this eliminates that.

2 years agoAuto merge of #88980 - tmiasko:instrument-debug, r=oli-obk
bors [Sat, 18 Sep 2021 06:11:02 +0000 (06:11 +0000)]
Auto merge of #88980 - tmiasko:instrument-debug, r=oli-obk

Use explicit log level in tracing instrument macro

Specify a log level in tracing instrument macro explicitly.

Additionally reduce the used log level from a default info level to a
debug level (all of those appear to be developer oriented logs, so there
should be no need to include them in release builds).

2 years agoAuto merge of #88978 - bjorn3:move_symbol_interner_lock, r=Mark-Simulacrum
bors [Sat, 18 Sep 2021 03:30:13 +0000 (03:30 +0000)]
Auto merge of #88978 - bjorn3:move_symbol_interner_lock, r=Mark-Simulacrum

Move the Lock into symbol::Interner

This makes it easier to make the symbol interner (near) lock free in case of concurrent accesses in the future.

With https://github.com/rust-lang/rust/pull/87867 landed this shouldn't affect performance anymore.

2 years ago[HACK(eddyb)] arena-allocate but don't intern `FnAbi`s.
Eduard-Mihai Burtescu [Thu, 9 Sep 2021 06:43:47 +0000 (09:43 +0300)]
[HACK(eddyb)] arena-allocate but don't intern `FnAbi`s.

2 years agoQuerify `fn_abi_of_{fn_ptr,instance}`.
Eduard-Mihai Burtescu [Wed, 1 Sep 2021 21:29:15 +0000 (00:29 +0300)]
Querify `fn_abi_of_{fn_ptr,instance}`.

2 years agoty::layout: replicate `layout_of` setup for `fn_abi_of_{fn_ptr,instance}`.
Eduard-Mihai Burtescu [Wed, 1 Sep 2021 21:09:34 +0000 (00:09 +0300)]
ty::layout: replicate `layout_of` setup for `fn_abi_of_{fn_ptr,instance}`.

2 years agoAuto merge of #88965 - fee1-dead:const-drop-1, r=oli-obk
bors [Sat, 18 Sep 2021 00:18:28 +0000 (00:18 +0000)]
Auto merge of #88965 - fee1-dead:const-drop-1, r=oli-obk

Fast reject for NeedsNonConstDrop

Hopefully fixes the regression in #88558.

I've always wanted to help with the performance of rustc, but it doesn't feel the same when you are fixing a regression caused by your own PR...

r? `@oli-obk`

2 years ago./x.py test --bless
Tomasz Miąsko [Sat, 18 Sep 2021 00:00:00 +0000 (00:00 +0000)]
./x.py test --bless

2 years agoRemove support for reentrant start blocks from codegen
Tomasz Miąsko [Tue, 14 Sep 2021 00:00:00 +0000 (00:00 +0000)]
Remove support for reentrant start blocks from codegen

The start block is guaranteed not to have any basic block predecessors.

2 years agoDo not collapse goto chains beginning with the start block
Tomasz Miąsko [Wed, 15 Sep 2021 00:00:00 +0000 (00:00 +0000)]
Do not collapse goto chains beginning with the start block

If any block on a goto chain has more than one predecessor, then the new
start block would have basic block predecessors.

Skip the transformation for the start block altogether, to avoid
violating the new invariant that the start block does not have any basic
block predecessors.

2 years agoStart block is not allowed to have basic block predecessors
Tomasz Miąsko [Tue, 14 Sep 2021 00:00:00 +0000 (00:00 +0000)]
Start block is not allowed to have basic block predecessors

2 years agorustc_codegen_llvm: move misplaced `HasParamEnv` impl.
Eduard-Mihai Burtescu [Wed, 1 Sep 2021 11:19:49 +0000 (14:19 +0300)]
rustc_codegen_llvm: move misplaced `HasParamEnv` impl.

2 years agoty::layout: intern `FnAbi`s as `&'tcx`.
Eduard-Mihai Burtescu [Thu, 26 Aug 2021 18:58:34 +0000 (21:58 +0300)]
ty::layout: intern `FnAbi`s as `&'tcx`.

2 years agoty::context: move interning `Allocation`s and `Layout`s to `direct_interners!`.
Eduard-Mihai Burtescu [Thu, 26 Aug 2021 16:47:07 +0000 (19:47 +0300)]
ty::context: move interning `Allocation`s and `Layout`s to `direct_interners!`.

2 years agoty::layout: propagate errors up to (but not out of) `FnAbi::of_*`.
Eduard-Mihai Burtescu [Thu, 26 Aug 2021 16:01:55 +0000 (19:01 +0300)]
ty::layout: propagate errors up to (but not out of) `FnAbi::of_*`.

2 years agorustc_target: `adjust_for_cabi` -> `adjust_for_foreign_abi`.
Eduard-Mihai Burtescu [Wed, 25 Aug 2021 08:50:26 +0000 (11:50 +0300)]
rustc_target: `adjust_for_cabi` -> `adjust_for_foreign_abi`.

2 years agoty::layout: split out a private trait from `FnAbiExt`.
Eduard-Mihai Burtescu [Tue, 24 Aug 2021 17:45:37 +0000 (20:45 +0300)]
ty::layout: split out a private trait from `FnAbiExt`.

2 years agoty::layout: move `trait FnAbiExt` to just before its `impl`.
Eduard-Mihai Burtescu [Tue, 24 Aug 2021 17:42:32 +0000 (20:42 +0300)]
ty::layout: move `trait FnAbiExt` to just before its `impl`.

2 years agoAuto merge of #88962 - fee1-dead:const-drop, r=oli-obk
bors [Fri, 17 Sep 2021 21:37:01 +0000 (21:37 +0000)]
Auto merge of #88962 - fee1-dead:const-drop, r=oli-obk

inline(always) on check_recursion_limit

r? `@oli-obk`

#88558 caused a regression, this PR adds `#[inline(always)]` to `check_recursion_limit`, a possible suspect of that regression.

2 years agorefactor: VecDeques IntoIter fields to private
DeveloperC286 [Fri, 17 Sep 2021 19:48:34 +0000 (20:48 +0100)]
refactor: VecDeques IntoIter fields to private

2 years agoAuto merge of #88956 - ehuss:update-cargo, r=ehuss
bors [Fri, 17 Sep 2021 18:48:26 +0000 (18:48 +0000)]
Auto merge of #88956 - ehuss:update-cargo, r=ehuss

Update cargo

13 commits in e515c3277bf0681bfc79a9e763861bfe26bb05db..33ee5f82edb50af87b952c5b28de0f5fb41ebf18
2021-09-08 14:32:15 +0000 to 2021-09-17 13:51:54 +0000
- Update curl-sys (rust-lang/cargo#9917)
- Bump Cargo's curl requirement to 7.79.0 (rust-lang/cargo#9914)
- Revert "When a dependency does not have a version, git or path, fails directly" (rust-lang/cargo#9911)
- Add some contributor docs for debugging testsuite tests. (rust-lang/cargo#9904)
- Fix warnings when documenting with `--document-private-items` (rust-lang/cargo#9903)
- Improve "wrong output" error. (rust-lang/cargo#9905)
- Fix warnings from better precision of `dead_code` lint (rust-lang/cargo#9906)
- Bump to 0.58.0, update changelog (rust-lang/cargo#9900)
- Fix rustc --profile=dev unstable check. (rust-lang/cargo#9898)
- config.md: fix typo (rust-lang/cargo#9896)
- Enable some tests on windows. (rust-lang/cargo#9893)
- Enable strip test on macos. (rust-lang/cargo#9889)
- Fix `cargo fix --edition` on stable. (rust-lang/cargo#9890)

2 years agoUpdate cargo
Eric Huss [Wed, 15 Sep 2021 03:07:04 +0000 (20:07 -0700)]
Update cargo

2 years agomodify std::os docs to be more consistent
Sachin Cherian [Fri, 17 Sep 2021 17:53:21 +0000 (23:23 +0530)]
modify std::os docs to be more consistent

> add intra doc links
> add a usage example for the os::windows module

2 years agoConvert `debug_assert` to `assert` in `CachingSourceMapView`
Aaron Hill [Fri, 17 Sep 2021 17:01:29 +0000 (12:01 -0500)]
Convert `debug_assert` to `assert` in `CachingSourceMapView`

I suspect that there's a bug somewhere in this code, which is
leading to the `predicates_of` ICE being seen in #89035

2 years agouse AtomicU64::fetch_update instead of handrolled RMW-loop
The8472 [Fri, 17 Sep 2021 16:42:16 +0000 (18:42 +0200)]
use AtomicU64::fetch_update instead of handrolled RMW-loop

2 years agoStabilize `Iterator::map_while`
Maybe Waffle [Fri, 17 Sep 2021 16:42:46 +0000 (19:42 +0300)]
Stabilize `Iterator::map_while`

2 years agoAuto merge of #89047 - GuillaumeGomez:rollup-29gmr02, r=GuillaumeGomez
bors [Fri, 17 Sep 2021 15:49:22 +0000 (15:49 +0000)]
Auto merge of #89047 - GuillaumeGomez:rollup-29gmr02, r=GuillaumeGomez

Rollup of 10 pull requests

Successful merges:

 - #86422 (Emit clearer diagnostics for parens around `for` loop heads)
 - #87460 (Point to closure when emitting 'cannot move out' for captured variable)
 - #87566 (Recover invalid assoc type bounds using `==`)
 - #88666 (Improve build command for compiler docs)
 - #88899 (Do not issue E0071 if a type error has already been reported)
 - #88949 (Fix handling of `hir::GenericArg::Infer` in `wrong_number_of_generic_args.rs`)
 - #88953 (Add chown functions to std::os::unix::fs to change the owner and group of files)
 - #88954 (Allow `panic!("{}", computed_str)` in const fn.)
 - #88964 (Add rustdoc version into the help popup)
 - #89012 (Suggest removing `#![feature]` for library features that have been stabilized)

Failed merges:

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

2 years agoRollup merge of #89012 - vishadGoyal:issue-88802-fix, r=jyn514
Guillaume Gomez [Fri, 17 Sep 2021 15:41:21 +0000 (17:41 +0200)]
Rollup merge of #89012 - vishadGoyal:issue-88802-fix, r=jyn514

Suggest removing `#![feature]` for library features that have been stabilized

Issue: https://github.com/rust-lang/rust/issues/88802
Delayed the check if #![feature] has been used to enable lib features in a non-nightly build to occur after TyCtxt has been constructed.

2 years agoRollup merge of #88964 - GuillaumeGomez:version-help, r=Nemo157
Guillaume Gomez [Fri, 17 Sep 2021 15:41:19 +0000 (17:41 +0200)]
Rollup merge of #88964 - GuillaumeGomez:version-help, r=Nemo157

Add rustdoc version into the help popup

After a discussion with a rustdoc user about a specific behaviour, we realized we were not talking about the same version. To add on top of it, it was actually not that simple to find out the version since it was hosted documentation.

So to simplify things, I added the version into the help popup:

![Screenshot from 2021-09-16 10-45-52](https://user-images.githubusercontent.com/3050060/133581128-b93b460a-e1cb-4a31-9f2f-97c7a916cfcc.png)

Does the version format looks or would you prefer that I add more information? We can also add the commit hash, commit date, host and release.

cc `@rust-lang/rustdoc`
r? `@jyn514`

2 years agoRollup merge of #88954 - nbdd0121:panic3, r=oli-obk
Guillaume Gomez [Fri, 17 Sep 2021 15:41:19 +0000 (17:41 +0200)]
Rollup merge of #88954 - nbdd0121:panic3, r=oli-obk

Allow `panic!("{}", computed_str)` in const fn.

Special-case `panic!("{}", arg)` and translate it to `panic_display(&arg)`. `panic_display` will behave like `panic_any` in cosnt eval and behave like `panic!(format_args!("{}", arg))` in runtime.

This should bring Rust 2015 and 2021 to feature parity in terms of `const_panic`; and hopefully would unblock the stabilisation of #51999.

`@rustbot` modify labels: +T-compiler +T-libs +A-const-eval +A-const-fn

r? `@oli-obk`

2 years agoRollup merge of #88953 - joshtriplett:chown, r=dtolnay
Guillaume Gomez [Fri, 17 Sep 2021 15:41:18 +0000 (17:41 +0200)]
Rollup merge of #88953 - joshtriplett:chown, r=dtolnay

Add chown functions to std::os::unix::fs to change the owner and group of files

This is a straightforward wrapper that uses the existing helpers for C
string handling and errno handling.

Having this available is convenient for UNIX utility programs written in
Rust, and avoids having to call unsafe functions like `libc::chown`
directly and handle errors manually, in a program that may otherwise be
entirely safe code.

In addition, these functions provide a more Rustic interface by
accepting appropriate traits and using `None` rather than `-1`.

2 years agoRollup merge of #88949 - FabianWolff:issue-87563, r=estebank
Guillaume Gomez [Fri, 17 Sep 2021 15:41:17 +0000 (17:41 +0200)]
Rollup merge of #88949 - FabianWolff:issue-87563, r=estebank

Fix handling of `hir::GenericArg::Infer` in `wrong_number_of_generic_args.rs`

Fixes #87563. More precisely, I have fixed the "index out of bounds" error, which is what #87563 is about. The example given there still ICEs due to running into this `todo!()`, but I'd say that this is a separate issue:
https://github.com/rust-lang/rust/blob/c3c0f80d6081092faff801542dd82f0e2420152b/compiler/rustc_typeck/src/astconv/mod.rs#L460-L463

2 years agoRollup merge of #88899 - FabianWolff:issue-88844, r=matthewjasper
Guillaume Gomez [Fri, 17 Sep 2021 15:41:16 +0000 (17:41 +0200)]
Rollup merge of #88899 - FabianWolff:issue-88844, r=matthewjasper

Do not issue E0071 if a type error has already been reported

Fixes #88844. A suggested fix is already included in the error message for E0412, so with my changes, E0071 is simply not emitted anymore if the type in question is a "type error". This makes sense, I think, because we cannot confidently state that something is "not a struct" if we couldn't resolve it properly; and it's unnecessary to pollute the output with this additional error message, as it is a direct consequence of the former error.

I have also addressed the issue mentioned in https://github.com/rust-lang/rust/issues/88844#issuecomment-917324856 by changing the fixed example in the documentation to more closely match the erroneous code example.

2 years agoRollup merge of #88666 - GuillaumeGomez:compiler-docs, r=Mark-Simulacrum
Guillaume Gomez [Fri, 17 Sep 2021 15:41:15 +0000 (17:41 +0200)]
Rollup merge of #88666 - GuillaumeGomez:compiler-docs, r=Mark-Simulacrum

Improve build command for compiler docs

It was rather complicated to document rustc crates. With this, you can directly run:

```console
x.py doc compiler
x.py doc compiler/rustc_hir_pretty
```

The second commit adds the handling of the `--open` flag.

r? `@Mark-Simulacrum`

2 years agoRollup merge of #87566 - JohnTitor:find-eqeq-on-assoc-type-bounds, r=estebank
Guillaume Gomez [Fri, 17 Sep 2021 15:41:14 +0000 (17:41 +0200)]
Rollup merge of #87566 - JohnTitor:find-eqeq-on-assoc-type-bounds, r=estebank

Recover invalid assoc type bounds using `==`

Fix #87493
r? `@estebank`

2 years agoRollup merge of #87460 - FabianWolff:issue-87456, r=Aaron1011
Guillaume Gomez [Fri, 17 Sep 2021 15:41:13 +0000 (17:41 +0200)]
Rollup merge of #87460 - FabianWolff:issue-87456, r=Aaron1011

Point to closure when emitting 'cannot move out' for captured variable

Attempts to fix #87456. The error message now points to the capturing closure, but I was not able to explain _why_ the closure implements `Fn` or `FnMut` (`TypeckResults::closure_kind_origins` did not contain anything for the closure in question).

cc `@Aaron1011`

2 years agoRollup merge of #86422 - JohnTitor:clearer-parens-err-for-loop, r=estebank
Guillaume Gomez [Fri, 17 Sep 2021 15:41:12 +0000 (17:41 +0200)]
Rollup merge of #86422 - JohnTitor:clearer-parens-err-for-loop, r=estebank

Emit clearer diagnostics for parens around `for` loop heads

Fixes #63113
r? `@estebank`

2 years agoAdd rustdoc version into the help popup
Guillaume Gomez [Wed, 15 Sep 2021 11:37:29 +0000 (13:37 +0200)]
Add rustdoc version into the help popup