]> git.lizzy.rs Git - rust.git/log
rust.git
5 years agoRollup merge of #61199 - ollie27:rustdoc_cfg_test, r=QuietMisdreavus
Mazdak Farrokhzad [Sat, 29 Jun 2019 09:18:06 +0000 (11:18 +0200)]
Rollup merge of #61199 - ollie27:rustdoc_cfg_test, r=QuietMisdreavus

Revert "Set test flag when rustdoc is running with --test option"

Reverts https://github.com/rust-lang/rust/pull/59940.

It caused doctests in this repository to no longer be tested including all of the core crate.

5 years agoAuto merge of #62105 - JohnTitor:update-miri, r=RalfJung
bors [Sat, 29 Jun 2019 05:05:32 +0000 (05:05 +0000)]
Auto merge of #62105 - JohnTitor:update-miri, r=RalfJung

Update miri

Fixes #62101

r? @RalfJung

5 years agoAuto merge of #62192 - Centril:rollup-kssnlta, r=Centril
bors [Fri, 28 Jun 2019 14:08:07 +0000 (14:08 +0000)]
Auto merge of #62192 - Centril:rollup-kssnlta, r=Centril

Rollup of 16 pull requests

Successful merges:

 - #61878 (improve pinning projection docs)
 - #62043 (Remove `FnBox`)
 - #62067 (Add suggestion for missing `.await` keyword)
 - #62076 (Updated RELEASES.md for 1.36.0)
 - #62102 (call out explicitly that general read needs to be called with an initialized buffer)
 - #62106 (Add more tests for async/await)
 - #62124 (refactor lexer to use idiomatic borrowing)
 - #62131 (libsyntax: Fix some Clippy warnings)
 - #62152 (Don't ICE on item in `.await` expression)
 - #62154 (Remove old fixme)
 - #62155 (Add regression test for MIR drop generation in async loops)
 - #62156 (Update books)
 - #62160 (Remove outdated question_mark_macro_sep lint)
 - #62164 (save-analysis: use buffered writes)
 - #62171 (rustc: Retry SIGILL linker invocations)
 - #62176 (Update RLS)

Failed merges:

r? @ghost

5 years agoAuto merge of #62179 - alexcrichton:less-travis-appveyor, r=pietroalbini
bors [Fri, 28 Jun 2019 10:20:36 +0000 (10:20 +0000)]
Auto merge of #62179 - alexcrichton:less-travis-appveyor, r=pietroalbini

ci: Move most builders to Azure Pipelines

This commit disables all builders on Travis and almost all builders on
AppVeyor now that they're all running on Azure Pipelines. There is one
remaining builder on AppVeyor which hasn't been migrated yet due to a
test failure on Azure, which we'll be debugging soon. One remaining
builder is left on Travis which is the tools builder whenever a
submodule is changed, but we'll probably turn that off soon since it's
just for PRs.

The other major change in this PR is that the auto builders on Azure are
now configured with "real" prod credentials which should cause them to
publish all artifacts into the official CI buckets.

5 years agoci: Move most builders to Azure Pipelines
Alex Crichton [Thu, 27 Jun 2019 12:30:57 +0000 (05:30 -0700)]
ci: Move most builders to Azure Pipelines

This commit disables all builders on Travis and almost all builders on
AppVeyor now that they're all running on Azure Pipelines. There is one
remaining builder on AppVeyor which hasn't been migrated yet due to a
test failure on Azure, which we'll be debugging soon. One remaining
builder is left on Travis which is the tools builder whenever a
submodule is changed, but we'll probably turn that off soon since it's
just for PRs.

The other major change in this PR is that the auto builders on Azure are
now configured with "real" prod credentials which should cause them to
publish all artifacts into the official CI buckets.

5 years agoRollup merge of #62176 - Xanewok:update-rls, r=alexcrichton
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:20 +0000 (23:01 +0200)]
Rollup merge of #62176 - Xanewok:update-rls, r=alexcrichton

Update RLS

Merged PRs:
* fix(cmd): make clear_env_rust_log default to false (https://github.com/rust-lang/rls/pull/1486)
  - Retain `RUST_LOG` in `rls --cli` mode
* Pass --file-lines to rustfmt only if specified (https://github.com/rust-lang/rls/pull/1497)
  - Fix entire-file formatting when using external rustfmt (specified via `rustfmt_path` config)
* Ensure that --error-format is only passed once to `rustc` (https://github.com/rust-lang/rls/pull/1500)
  - Unbreaks RLS when used together with Cargo [pipelining build](https://github.com/rust-lang/rust/issues/60988) feature (@alexcrichton I'd consider this a stabilization blocker, mind adding it to the tracking issue for the record? :bowing_man: )

5 years agoRollup merge of #62171 - alexcrichton:more-restarts, r=eddyb
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:18 +0000 (23:01 +0200)]
Rollup merge of #62171 - alexcrichton:more-restarts, r=eddyb

rustc: Retry SIGILL linker invocations

We've seen quite a few issues with spurious illegal instructions getting
executed on OSX on CI recently. For whatever reason `cc` itself is
executing an illegal instruction and we're not really getting any other
information about what's happening. Since we're already retrying the
linker when it segfaults, let's just continue to retry everything and
automatically reinvoke the linker when it fails with an illegal instruction.

5 years agoRollup merge of #62164 - jsgf:buffer-save-analysis, r=Xanewok
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:17 +0000 (23:01 +0200)]
Rollup merge of #62164 - jsgf:buffer-save-analysis, r=Xanewok

save-analysis: use buffered writes

Otherwise it ends up writing the file byte at a time, which can be very slow for large outputs.

cc @ljw1004

5 years agoRollup merge of #62160 - ia0:question_mark_macro_sep, r=petrochenkov
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:15 +0000 (23:01 +0200)]
Rollup merge of #62160 - ia0:question_mark_macro_sep, r=petrochenkov

Remove outdated question_mark_macro_sep lint

5 years agoRollup merge of #62156 - ehuss:update-books, r=ehuss
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:14 +0000 (23:01 +0200)]
Rollup merge of #62156 - ehuss:update-books, r=ehuss

Update books

Update nomicon, reference, book, rust-by-example, rustc-guide

## nomicon

2 commits in c656171b749b7307f21371dd0d3278efee5573b8..341c221116a8b9f1010cf1eece952b80c5ec7f54
2019-04-25 15:31:26 -0400 to 2019-06-19 09:08:47 -0700
- Fix some links.
- cleanup the intro, and clarify how it relates to the reference (rust-lang-nursery/nomicon#140)

## reference

2 commits in 08ae27a4921ca53967656a7391c82f6c0ddd1ccc..7a5aab5fd50d6290679beb4cf42fa5f46ed22aec
2019-06-17 11:24:13 -0700 to 2019-06-20 17:38:52 +0200
- Update for cfg on generic parameter. (rust-lang-nursery/reference#624)
- Link to "const functions" section from constant expressions list (rust-lang-nursery/reference#623)

## book

2 commits in 9aacfcc4c5b102c8cda195932addefd32fe955d2..6c0d83499c8e77e06a71d28c5e1adccec278d4f3
2019-06-16 21:27:26 -0400 to 2019-06-23 20:25:30 -0400
- fancy quotes
- Edits made in copyedit

## rust-by-example

2 commits in b27472962986e85c94f4183b1a6d2207660d3ed6..62b3ff2cb44dd8b648c3ef2a9347c3706d148014
2019-06-17 15:52:07 -0300 to 2019-06-24 09:17:21 -0300
- A couple of fixes for the `Box, stack and heap` chapter. (rust-lang/rust-by-example#1206)
- [typo] Note, that it is -> Note that, it is (rust-lang/rust-by-example#1207)

## rustc-guide

38 commits in f55e97c145cf37fd664db2e0e2f2d05df328bf4f..abf512fc9cc969dcbea69aa15b44586bbeb13c2d
2019-06-15 17:29:12 -0500 to 2019-06-26 11:05:58 -0500
- fix long line
- add `point` to the glossary and link a use of it
- fix indentation
- Update src/borrow_check/region_inference/placeholders_and_universes.md
- Update src/borrow_check/region_inference/placeholders_and_universes.md
- Update src/borrow_check/region_inference/placeholders_and_universes.md
- Update src/borrow_check/region_inference/member_constraints.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- Update src/borrow_check/region_inference/member_constraints.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- Update src/borrow_check/region_inference/member_constraints.md
- Update src/borrow_check/region_inference/member_constraints.md
- Update src/borrow_check/region_inference/lifetime_parameters.md
- Update src/borrow_check/region_inference/member_constraints.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- Update src/borrow_check/region_inference/lifetime_parameters.md
- Update src/borrow_check/region_inference/lifetime_parameters.md
- Update src/borrow_check/region_inference/lifetime_parameters.md
- Update src/borrow_check/region_inference/constraint_propagation.md
- adjust overview slightly
- describe region inference and member constraints in some detail
- start filling out the constraint propagation chapter in more detail
- break out parts of the region inference chapter into sub-chapters
- fix typo
- avoid ftp links
- fix broken links
- add bibligraphy appendix
- Update to mdbook-linkcheck 0.3.0
- Update mdbook
- Change stage0 cfg_attr to bootstrap
- fix compiler-team
- Added Rustc Debugger Support Chapter

5 years agoRollup merge of #62155 - cramertj:61872, r=centril
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:13 +0000 (23:01 +0200)]
Rollup merge of #62155 - cramertj:61872, r=centril

Add regression test for MIR drop generation in async loops

Fixes #61986.

r? @Centril

5 years agoRollup merge of #62154 - mark-i-m:old-fixme, r=Centril
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:11 +0000 (23:01 +0200)]
Rollup merge of #62154 - mark-i-m:old-fixme, r=Centril

Remove old fixme

fixed in https://github.com/rust-lang/rust/pull/60160

r? @Centril

5 years agoRollup merge of #62152 - doctorn:async_let_ice, r=cramertj
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:10 +0000 (23:01 +0200)]
Rollup merge of #62152 - doctorn:async_let_ice, r=cramertj

Don't ICE on item in `.await` expression

The code for lowering a `.await` expression missed that item IDs may already have been assigned for items inside of an `async` block, or for closures. This change means we no longer exit early after finding a `.await` in a block that isn't `async` and instead just emit the error. This avoids an ICE generated due to item IDs not being densely generated. (The `YieldSource` of the generated `yield` expression is  used to avoid errors generated about having `yield` expressions outside of generator literals.)

r? @cramertj

Resolves #62009 and resolves #61685

5 years agoRollup merge of #62131 - Xanewok:clip-some-nits, r=petrochenkov
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:09 +0000 (23:01 +0200)]
Rollup merge of #62131 - Xanewok:clip-some-nits, r=petrochenkov

libsyntax: Fix some Clippy warnings

When I was working on it before a lot of these popped up in the RLS so I figured I'll send a small patch fixing only the (hopefully) uncontroversial ones.

Others that could be also fixed included also [`clippy::print_with_newline`](https://rust-lang.github.io/rust-clippy/master/index.html#print_with_newline) and [`clippy::cast_lossless`](https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless). Should I add them as well?

since most of it touches libsyntax...
r? @petrochenkov

5 years agoRollup merge of #62124 - matklad:without-with, r=petrochenkov
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:07 +0000 (23:01 +0200)]
Rollup merge of #62124 - matklad:without-with, r=petrochenkov

refactor lexer to use idiomatic borrowing

5 years agoRollup merge of #62106 - cramertj:test-await, r=centril
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:06 +0000 (23:01 +0200)]
Rollup merge of #62106 - cramertj:test-await, r=centril

Add more tests for async/await

I'll follow up with more of these, but here's an initial few.

r? @Centril

5 years agoRollup merge of #62102 - RalfJung:read, r=Centril
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:04 +0000 (23:01 +0200)]
Rollup merge of #62102 - RalfJung:read, r=Centril

call out explicitly that general read needs to be called with an initialized buffer

5 years agoRollup merge of #62076 - XAMPPRocky:master, r=XAMPPRocky
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:03 +0000 (23:01 +0200)]
Rollup merge of #62076 - XAMPPRocky:master, r=XAMPPRocky

Updated RELEASES.md for 1.36.0

[Rendered](https://github.com/XAMPPRocky/rust/blob/master/RELEASES.md)

r? @Mark-Simulacrum

cc @rust-lang/release

5 years agoRollup merge of #62067 - doctorn:await_diagnostic, r=matthewjasper
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:01 +0000 (23:01 +0200)]
Rollup merge of #62067 - doctorn:await_diagnostic, r=matthewjasper

Add suggestion for missing `.await` keyword

This commit adds a suggestion diagnostic for missing `.await`. In order to do this, the trait `Future` is promoted to a lang item.

Compiling code of the form:

```rust
#![feature(async_await)]

fn take_u32(x: u32) {}

async fn make_u32() -> u32 {
    22
}

async fn foo() {
    let x = make_u32();
    take_u32(x)
}

fn main() {}
```

Will now result in the suggestion:

```
error[E0308]: mismatched types
  --> src/main.rs:11:18
   |
11 |         take_u32(x)
   |                  ^
   |                  |
   |                  expected u32, found opaque type
   |                  help: consider using `.await` here: `x.await`
   |
   = note: expected type `u32`
              found type `impl std::future::Future`
```

This commit does not cover chained expressions and therefore only covers the case originally pointed out in #61076. Cases I can think of that still need to be covered:

- [ ] Return places for functions
- [ ] Field access
- [ ] Method invocation

I'm planning to submit PRs for each of these separately as and when I have figured them out.

5 years agoRollup merge of #62043 - Centril:remove-fnbox, r=cramertj
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:01:00 +0000 (23:01 +0200)]
Rollup merge of #62043 - Centril:remove-fnbox, r=cramertj

Remove `FnBox`

Remove `FnBox` since we now have `Box<dyn FnOnce>`.

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

r? @cramertj

5 years agoRollup merge of #61878 - RalfJung:pin, r=Dylan-DPC
Mazdak Farrokhzad [Thu, 27 Jun 2019 21:00:58 +0000 (23:00 +0200)]
Rollup merge of #61878 - RalfJung:pin, r=Dylan-DPC

improve pinning projection docs

This tries to improve the explanation of structural pinning and pinning projections based on [this URLO thread](https://users.rust-lang.org/t/when-is-it-safe-to-move-a-member-value-out-of-a-pinned-future/28182).

Fixes https://github.com/rust-lang/rust/issues/61272.

5 years agoAuto merge of #62136 - lzutao:clippy-up, r=oli-obk
bors [Thu, 27 Jun 2019 14:30:33 +0000 (14:30 +0000)]
Auto merge of #62136 - lzutao:clippy-up, r=oli-obk

submodules: Update clippy from 8c80b65f to e3cb40e4

r? @Manishearth

5 years agoAdd suggestion for missing `.await` keyword
Nathan Corbyn [Wed, 19 Jun 2019 20:55:18 +0000 (21:55 +0100)]
Add suggestion for missing `.await` keyword

5 years agoUpdate RLS
Igor Matuszewski [Thu, 27 Jun 2019 11:41:00 +0000 (13:41 +0200)]
Update RLS

5 years agorustc: Retry SIGILL linker invocations
Alex Crichton [Thu, 27 Jun 2019 09:14:57 +0000 (02:14 -0700)]
rustc: Retry SIGILL linker invocations

We've seen quite a few issues with spurious illegal instructions getting
executed on OSX on CI recently. For whatever reason `cc` itself is
executing an illegal instruction and we're not really getting any other
information about what's happening. Since we're already retrying the
linker when it segfaults, let's just continue to retry everything and
automatically reinvoke the linker when it fails with an illegal instruction.

5 years agoAuto merge of #62147 - Centril:rollup-pigazoz, r=alexcrichton
bors [Thu, 27 Jun 2019 08:15:27 +0000 (08:15 +0000)]
Auto merge of #62147 - Centril:rollup-pigazoz, r=alexcrichton

[CI] Rollup of 5 pull requests

Successful merges:

 - #62140 (ci: Turn off PR builds on Travis)
 - #62141 (ci: Disable assertions in PR builds)
 - #62142 (ci: Switch official `try` builds to happen on Azure)
 - #62143 (ci: Publish toolstate changes from Azure)
 - #62145 (ci: Sync AppVeyor/Travis with Azure configuration)

Failed merges:

r? @ghost

5 years agosave-analysis: use buffered writes
Jeremy Fitzhardinge [Thu, 27 Jun 2019 00:22:39 +0000 (17:22 -0700)]
save-analysis: use buffered writes

Otherwise it ends up writing the file byte at a time, which can be very slow for large outputs.

5 years agoUpdate miri
Yuki Okushi [Mon, 24 Jun 2019 23:59:55 +0000 (08:59 +0900)]
Update miri

5 years agoRemove outdated question_mark_macro_sep lint
Julien Cretin [Wed, 26 Jun 2019 18:34:12 +0000 (20:34 +0200)]
Remove outdated question_mark_macro_sep lint

5 years agoci: Disable x86_64-msvc-tools builder
Alex Crichton [Wed, 26 Jun 2019 18:13:08 +0000 (11:13 -0700)]
ci: Disable x86_64-msvc-tools builder

While we figure out what's wrong let's continue to land PRs

5 years agoUpdate books
Eric Huss [Wed, 26 Jun 2019 17:57:00 +0000 (10:57 -0700)]
Update books

5 years agoAdd regression test for MIR drop generation in async loops
Taylor Cramer [Wed, 26 Jun 2019 17:23:27 +0000 (10:23 -0700)]
Add regression test for MIR drop generation in async loops

Fixes #61986.

5 years agoremove old fixme
Mark Mansi [Wed, 26 Jun 2019 16:21:59 +0000 (11:21 -0500)]
remove old fixme

5 years agoDon't ICE on item in `.await` expression
Nathan Corbyn [Wed, 26 Jun 2019 12:48:41 +0000 (13:48 +0100)]
Don't ICE on item in `.await` expression

5 years agoFix clippy::precedence
Igor Matuszewski [Wed, 26 Jun 2019 12:14:27 +0000 (14:14 +0200)]
Fix clippy::precedence

5 years agoFix clippy::print_with_newline
Igor Matuszewski [Wed, 26 Jun 2019 12:11:40 +0000 (14:11 +0200)]
Fix clippy::print_with_newline

5 years agoFix clippy::redundant_closure
Igor Matuszewski [Wed, 26 Jun 2019 12:07:08 +0000 (14:07 +0200)]
Fix clippy::redundant_closure

5 years agoFix clippy::cast_losless
Igor Matuszewski [Wed, 26 Jun 2019 12:04:37 +0000 (14:04 +0200)]
Fix clippy::cast_losless

5 years agoFix clippy::redundant_field_names
Igor Matuszewski [Tue, 25 Jun 2019 21:22:45 +0000 (23:22 +0200)]
Fix clippy::redundant_field_names

5 years agoRollup merge of #62145 - alexcrichton:sync-azure, r=pietroalbini
Mazdak Farrokhzad [Wed, 26 Jun 2019 09:33:46 +0000 (11:33 +0200)]
Rollup merge of #62145 - alexcrichton:sync-azure, r=pietroalbini

ci: Sync AppVeyor/Travis with Azure configuration

Manually make sure that we do the same thing across all the services,
uncovering one spot where we needed to pass one more configure flag on
Azure but otherwise we're good to go!

5 years agoRollup merge of #62143 - alexcrichton:toolstate, r=pietroalbini
Mazdak Farrokhzad [Wed, 26 Jun 2019 09:33:44 +0000 (11:33 +0200)]
Rollup merge of #62143 - alexcrichton:toolstate, r=pietroalbini

ci: Publish toolstate changes from Azure

This commit moves toolstate publishing from Travis to Azure. We've been
testing on azure for some time now and this works by deleting the Travis
config and updating the credentials used on Azure.

5 years agoRollup merge of #62142 - alexcrichton:azure-try, r=pietroalbini
Mazdak Farrokhzad [Wed, 26 Jun 2019 09:33:43 +0000 (11:33 +0200)]
Rollup merge of #62142 - alexcrichton:azure-try, r=pietroalbini

ci: Switch official `try` builds to happen on Azure

This commit switches the `try` builers to officially happen on Azure
Pipelines instead of Travis where they're currently run. This also cuts
back the number of builders to just the two we run on Travis, leaving
expansion as a possible future extension.

5 years agoRollup merge of #62141 - alexcrichton:less-assertions, r=pietroalbini
Mazdak Farrokhzad [Wed, 26 Jun 2019 09:33:42 +0000 (11:33 +0200)]
Rollup merge of #62141 - alexcrichton:less-assertions, r=pietroalbini

ci: Disable assertions in PR builds

The PR builder on Azure currently takes 2.5h which is a bit long, so
this commit disables debug assertions and llvm assertions in an attempt
to speed up that builder and have PR builds come back a bit more
quickly. Other builders continue to enable debug assertions and test the
compiler there.

5 years agoRollup merge of #62140 - alexcrichton:less-pr-builds, r=pietroalbini
Mazdak Farrokhzad [Wed, 26 Jun 2019 09:33:41 +0000 (11:33 +0200)]
Rollup merge of #62140 - alexcrichton:less-pr-builds, r=pietroalbini

ci: Turn off PR builds on Travis

This commit turns off PR builds happening on Travis, instead entirely
relying on Azure for PR builds to succeed.

5 years agoci: Sync AppVeyor/Travis with Azure configuration
Alex Crichton [Wed, 26 Jun 2019 09:18:55 +0000 (02:18 -0700)]
ci: Sync AppVeyor/Travis with Azure configuration

Manually make sure that we do the same thing across all the services,
uncovering one spot where we needed to pass one more configure flag on
Azure but otherwise we're good to go!

5 years agoci: Publish toolstate changes from Azure
Alex Crichton [Wed, 26 Jun 2019 08:58:25 +0000 (01:58 -0700)]
ci: Publish toolstate changes from Azure

This commit moves toolstate publishing from Travis to Azure. We've been
testing on azure for some time now and this works by deleting the Travis
config and updating the credentials used on Azure.

5 years agoci: Switch official `try` builds to happen on Azure
Alex Crichton [Wed, 26 Jun 2019 08:54:26 +0000 (01:54 -0700)]
ci: Switch official `try` builds to happen on Azure

This commit switches the `try` builers to officially happen on Azure
Pipelines instead of Travis where they're currently run. This also cuts
back the number of builders to just the two we run on Travis, leaving
expansion as a possible future extension.

5 years agoci: Disable assertions in PR builds
Alex Crichton [Wed, 26 Jun 2019 08:38:08 +0000 (01:38 -0700)]
ci: Disable assertions in PR builds

The PR builder on Azure currently takes 2.5h which is a bit long, so
this commit disables debug assertions and llvm assertions in an attempt
to speed up that builder and have PR builds come back a bit more
quickly. Other builders continue to enable debug assertions and test the
compiler there.

5 years agoci: Turn of PR builds on Travis
Alex Crichton [Wed, 26 Jun 2019 08:34:17 +0000 (01:34 -0700)]
ci: Turn of PR builds on Travis

This commit turns off PR builds happening on Travis, instead entirely
relying on Azure for PR builds to succeed.

5 years agoAuto merge of #61872 - matthewjasper:refactor-mir-drop-gen, r=nikomatsakis
bors [Wed, 26 Jun 2019 04:42:34 +0000 (04:42 +0000)]
Auto merge of #61872 - matthewjasper:refactor-mir-drop-gen, r=nikomatsakis

Clean up MIR drop generation

* Don't assign twice to the destination of a `while` loop containing a `break` expression
* Use `as_temp` to evaluate statement expression
* Avoid consecutive `StorageLive`s for the condition of a `while` loop
* Unify `return`, `break` and `continue` handling, and move it to `scopes.rs`
* Make some of the `scopes.rs` internals private
* Don't use `Place`s that are always `Local`s in MIR drop generation

Closes #42371
Closes #61579
Closes #61731
Closes #61834
Closes #61910
Closes #62115

5 years agosubmodules: Update clippy from 8c80b65f to e3cb40e4
Lzu Tao [Wed, 26 Jun 2019 02:20:44 +0000 (02:20 +0000)]
submodules: Update clippy from 8c80b65f to e3cb40e4

5 years agoAuto merge of #62072 - eddyb:generator-memory-index, r=tmandry
bors [Wed, 26 Jun 2019 01:56:12 +0000 (01:56 +0000)]
Auto merge of #62072 - eddyb:generator-memory-index, r=tmandry

rustc: correctly transform memory_index mappings for generators.

Fixes #61793, closes #62011 (previous attempt at fixing #61793).

During #60187, I made the mistake of suggesting that the (re-)computation of `memory_index` in `ty::layout`, after generator-specific logic split/recombined fields, be done off of the `offsets` of those fields (which needed to be computed anyway), as opposed to the `memory_index`.

`memory_index` maps each field to its in-memory order index, which ranges over the same `0..n` values as the fields themselves, making it a bijective mapping, and more specifically a permutation (indeed, it's the permutation resulting from field reordering optimizations).

Each field has an unique "memory index", meaning a sort based on them, even an unstable one, will not put them in the wrong order. But offsets don't have that property, because of ZSTs (which do not increase the offset), so sorting based on the offset of fields alone can (and did) result in wrong orders.

Instead of going back to sorting based on (slices/subsets of) `memory_index`, or special-casing ZSTs to make sorting based on offsets produce the right results (presumably), as #62011 does, I opted to drop sorting altogether and focus on `O(n)` operations involving *permutations*:
* a permutation is easily inverted (see the `invert_mapping` `fn`)
  * an `inverse_memory_index` was already employed in other parts of the `ty::layout` code (that is, a mapping from memory order to field indices)
  * inverting twice produces the original permutation, so you can invert, modify, and invert again, if it's easier to modify the inverse mapping than the direct one
* you can modify/remove elements in a permutation, as long as the result remains dense (i.e. using every integer in `0..len`, without gaps)
  * for splitting a `0..n` permutation into disjoint `0..x` and `x..n` ranges, you can pick the elements based on a `i < x` / `i >= x` predicate, and for the latter, also subtract `x` to compact the range to `0..n-x`
  * in the general case, for taking an arbitrary subset of the permutation, you need a renumbering from that subset to a dense `0..subset.len()` - but notably, this is still `O(n)`!
* you can merge permutations, as long as the result remains disjoint (i.e. each element is unique)
  * for concatenating two `0..n` and `0..m` permutations, you can renumber the elements in the latter to `n..n+m`
* some of these operations can be combined, and an inverse mapping (be it a permutation or not) can still be used instead of a forward one by changing the "domain" of the loop performing the operation

I wish I had a nicer / more mathematical description of the recombinations involved, but my focus was to fix the bug (in a way which preserves information more directly than sorting would), so I may have missed potential changes in the surrounding generator layout code, that would make this all more straight-forward.

r? @tmandry

5 years agoUse `Local`s instead of `Place`s in MIR drop generation
Matthew Jasper [Sat, 15 Jun 2019 19:33:23 +0000 (20:33 +0100)]
Use `Local`s instead of `Place`s in MIR drop generation

5 years agoAdd StorageDead statements for `while` conditions
Matthew Jasper [Sat, 15 Jun 2019 18:55:21 +0000 (19:55 +0100)]
Add StorageDead statements for `while` conditions

5 years agoUnify `return`, `break` and `continue` handling
Matthew Jasper [Sat, 15 Jun 2019 16:37:19 +0000 (17:37 +0100)]
Unify `return`, `break` and `continue` handling

5 years agoAvoid checking if references implement drop
Matthew Jasper [Sat, 15 Jun 2019 09:11:15 +0000 (10:11 +0100)]
Avoid checking if references implement drop

5 years agoUse `as_temp` to evaluate statement expressions
Matthew Jasper [Sat, 15 Jun 2019 09:08:41 +0000 (10:08 +0100)]
Use `as_temp` to evaluate statement expressions

5 years agoFix incorrect double assignment in MIR for while loops
Matthew Jasper [Sat, 15 Jun 2019 09:08:20 +0000 (10:08 +0100)]
Fix incorrect double assignment in MIR for while loops

5 years agoUse f{32,64}::from_bits
Igor Matuszewski [Tue, 25 Jun 2019 21:08:10 +0000 (23:08 +0200)]
Use f{32,64}::from_bits

5 years agotweak wording
Ralf Jung [Tue, 25 Jun 2019 20:59:00 +0000 (22:59 +0200)]
tweak wording

5 years agocleanup: rename name_from to symbol_from
Aleksey Kladov [Tue, 25 Jun 2019 18:37:25 +0000 (21:37 +0300)]
cleanup: rename name_from to symbol_from

Lexer uses Symbols for a lot of stuff, not only for identifiers, so
the "name" terminology is just confusing.

5 years agoAdd more tests for async/await
Taylor Cramer [Tue, 25 Jun 2019 00:48:21 +0000 (17:48 -0700)]
Add more tests for async/await

5 years agoAuto merge of #62119 - Centril:rollup-el20wu0, r=Centril
bors [Tue, 25 Jun 2019 18:35:41 +0000 (18:35 +0000)]
Auto merge of #62119 - Centril:rollup-el20wu0, r=Centril

Rollup of 7 pull requests

Successful merges:

 - #61814 (Fix an ICE with uninhabited consts)
 - #61987 (rustc: produce AST instead of HIR from `hir::lowering::Resolver` methods.)
 - #62055 (Fix error counting)
 - #62078 (Remove built-in derive macros `Send` and `Sync`)
 - #62085 (Add test for issue-38591)
 - #62091 (HirIdification: almost there)
 - #62096 (Implement From<Local> for Place and PlaceBase)

Failed merges:

r? @ghost

5 years agoUpdated RELEASES.md for 1.36.0
Erin Power [Sun, 23 Jun 2019 09:45:06 +0000 (11:45 +0200)]
Updated RELEASES.md for 1.36.0

Co-Authored-By: Taiki Endo <te316e89@gmail.com>
Co-Authored-By: Jonas Schievink <jonasschievink@gmail.com>
Co-Authored-By: Torbjørn Birch Moltu <t.b.moltu@lyse.net>
5 years agorefactor lexer to use idiomatic borrowing
Aleksey Kladov [Tue, 25 Jun 2019 18:02:19 +0000 (21:02 +0300)]
refactor lexer to use idiomatic borrowing

5 years agoRollup merge of #62096 - spastorino:impl-place-from, r=oli-obk,Centril
Mazdak Farrokhzad [Tue, 25 Jun 2019 15:15:37 +0000 (17:15 +0200)]
Rollup merge of #62096 - spastorino:impl-place-from, r=oli-obk,Centril

Implement From<Local> for Place and PlaceBase

r? @oli-obk
More tiny bits of Place 2.0 moved into master

5 years agoRollup merge of #62091 - ljedrz:hiridification_almost_there, r=Zoxc
Mazdak Farrokhzad [Tue, 25 Jun 2019 15:15:36 +0000 (17:15 +0200)]
Rollup merge of #62091 - ljedrz:hiridification_almost_there, r=Zoxc

HirIdification: almost there

I'm beginning to run out of stuff to HirIdify :wink:.

This time I targeted mainly `hir::map::{find, get_parent_node}`, but a few other bits got changed too.

r? @Zoxc

5 years agoRollup merge of #62085 - JohnTitor:add-test-for-issue-38591, r=Centril
Mazdak Farrokhzad [Tue, 25 Jun 2019 15:15:34 +0000 (17:15 +0200)]
Rollup merge of #62085 - JohnTitor:add-test-for-issue-38591, r=Centril

Add test for issue-38591

Closes #38591

r? @pnkfelix

5 years agoRollup merge of #62078 - petrochenkov:nosendync2, r=varkor
Mazdak Farrokhzad [Tue, 25 Jun 2019 15:15:33 +0000 (17:15 +0200)]
Rollup merge of #62078 - petrochenkov:nosendync2, r=varkor

Remove built-in derive macros `Send` and `Sync`

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

5 years agoRollup merge of #62055 - matthewjasper:fix-error-counting, r=pnkfelix
Mazdak Farrokhzad [Tue, 25 Jun 2019 15:15:31 +0000 (17:15 +0200)]
Rollup merge of #62055 - matthewjasper:fix-error-counting, r=pnkfelix

Fix error counting

Count duplicate errors for `track_errors` and other error counting checks.
Add FIXMEs to make it clear that we should be moving away from this kind of logic.

Closes #61663

5 years agoRollup merge of #61987 - eddyb:hirless-resolver, r=petrochenkov
Mazdak Farrokhzad [Tue, 25 Jun 2019 15:15:30 +0000 (17:15 +0200)]
Rollup merge of #61987 - eddyb:hirless-resolver, r=petrochenkov

rustc: produce AST instead of HIR from `hir::lowering::Resolver` methods.

This avoids synthesizing HIR nodes in `rustc_resolve`, and `rustc::hir::lowering` patching up the result after the fact (I suspect this is even more significant for @Zoxc's chages to arena-allocate the HIR).

r? @oli-obk

5 years agoRollup merge of #61814 - varkor:uninhabited-const-61744, r=oli-obk
Mazdak Farrokhzad [Tue, 25 Jun 2019 15:15:29 +0000 (17:15 +0200)]
Rollup merge of #61814 - varkor:uninhabited-const-61744, r=oli-obk

Fix an ICE with uninhabited consts

Fixes https://github.com/rust-lang/rust/issues/61744.

r? @oli-obk

5 years agoAuto merge of #60732 - jswrenn:arbitrary_enum_discriminant, r=pnkfelix
bors [Tue, 25 Jun 2019 15:12:11 +0000 (15:12 +0000)]
Auto merge of #60732 - jswrenn:arbitrary_enum_discriminant, r=pnkfelix

Implement arbitrary_enum_discriminant

Implements RFC rust-lang/rfcs#2363 (tracking issue #60553).

5 years agoImplement From<Local> for Place and PlaceBase
Santiago Pastorino [Mon, 24 Jun 2019 15:46:09 +0000 (17:46 +0200)]
Implement From<Local> for Place and PlaceBase

5 years agorustc: produce AST instead of HIR from `hir::lowering::Resolver` methods.
Eduard-Mihai Burtescu [Thu, 20 Jun 2019 12:00:31 +0000 (15:00 +0300)]
rustc: produce AST instead of HIR from `hir::lowering::Resolver` methods.

5 years agoAuto merge of #61765 - Keruspe:rustbuild-cxx, r=alexcrichton
bors [Tue, 25 Jun 2019 12:07:19 +0000 (12:07 +0000)]
Auto merge of #61765 - Keruspe:rustbuild-cxx, r=alexcrichton

rustbuild: detect cxx for all targets

Replaces #61544
Fixes #59917

We need CXX to build llvm-libunwind which can be enabled for alltargets.
As we needed it for all hosts anyways, just move the detection so that it is ran for all targets (which contains all hosts) instead.

5 years agorustc: correctly transform memory_index mappings for generators.
Eduard-Mihai Burtescu [Sun, 23 Jun 2019 01:37:23 +0000 (04:37 +0300)]
rustc: correctly transform memory_index mappings for generators.

5 years agoAuto merge of #62094 - oli-obk:zst_intern, r=eddyb
bors [Tue, 25 Jun 2019 09:10:18 +0000 (09:10 +0000)]
Auto merge of #62094 - oli-obk:zst_intern, r=eddyb

 Don't ICE on mutable zst slices

fixes #62045

5 years agoFix an ICE with uninhabited consts
varkor [Tue, 25 Jun 2019 02:39:23 +0000 (03:39 +0100)]
Fix an ICE with uninhabited consts

5 years agoAuto merge of #61572 - Aaron1011:fix/generator-ref, r=varkor
bors [Tue, 25 Jun 2019 02:17:05 +0000 (02:17 +0000)]
Auto merge of #61572 - Aaron1011:fix/generator-ref, r=varkor

Fix HIR visit order

Fixes #61442

When rustc::middle::region::ScopeTree computes its yield_in_scope
field, it relies on the HIR visitor order to properly compute which
types must be live across yield points. In order for the computed scopes
to agree with the generated MIR, we must ensure that expressions
evaluated before a yield point are visited before the 'yield'
expression.

However, the visitor order for ExprKind::AssignOp
was incorrect. The left-hand side of a compund assignment expression is
evaluated before the right-hand side, but the right-hand expression was
being visited before the left-hand expression. If the left-hand
expression caused a new type to be introduced (e.g. through a
deref-coercion), the new type would be incorrectly seen as occuring
*after* the yield point, instead of before. This leads to a mismatch
between the computed generator types and the MIR, since the MIR will
correctly see the type as being live across the yield point.

To fix this, we correct the visitor order for ExprKind::AssignOp
to reflect the actual evaulation order.

5 years agoAuto merge of #62100 - ehuss:update-cargo, r=alexcrichton
bors [Mon, 24 Jun 2019 23:28:11 +0000 (23:28 +0000)]
Auto merge of #62100 - ehuss:update-cargo, r=alexcrichton

Update cargo

17 commits in 807429e1b6da4e2ec52488ef2f59e77068c31e1f..4c1fa54d10f58d69ac9ff55be68e1b1c25ecb816
2019-06-11 14:06:10 +0000 to 2019-06-24 11:24:18 +0000
- Fix typo in comment (rust-lang/cargo#7066)
- travis: enforce formatting of subcrates as well (rust-lang/cargo#7063)
- _cargo: Make function style consistent (rust-lang/cargo#7060)
- Update some fix comments. (rust-lang/cargo#7061)
- Stabilize default-run (rust-lang/cargo#7056)
- Fix typo in comment (rust-lang/cargo#7054)
- fix(fingerpring): do not touch intermediate artifacts (rust-lang/cargo#7050)
- Resolver test/debug cleanup (rust-lang/cargo#7045)
- Rename to_url → into_url (rust-lang/cargo#7048)
- Remove needless lifetimes (rust-lang/cargo#7047)
- Revert test directory cleaning change. (rust-lang/cargo#7042)
- cargo book /reference/manifest: fix typo (rust-lang/cargo#7041)
- Extract resolver tests to their own crate (rust-lang/cargo#7011)
- ci: Do not install addons on rustfmt build jobs (rust-lang/cargo#7038)
- Support absolute paths in dep-info files (rust-lang/cargo#7030)
- ci: Run cargo fmt on all workspaces (rust-lang/cargo#7033)
- Deprecated ONCE_INIT in favor of Once::new() (rust-lang/cargo#7031)

5 years agocall out explicitly that general read needs to be called with an initialized buffer
Ralf Jung [Mon, 24 Jun 2019 20:58:53 +0000 (22:58 +0200)]
call out explicitly that general read needs to be called with an initialized buffer

5 years agoAuto merge of #61787 - ecstatic-morse:dataflow-split-block-sets, r=pnkfelix
bors [Mon, 24 Jun 2019 20:44:18 +0000 (20:44 +0000)]
Auto merge of #61787 - ecstatic-morse:dataflow-split-block-sets, r=pnkfelix

rustc_mir: Hide initial block state when defining transfer functions

This PR addresses [this FIXME](https://github.com/rust-lang/rust/blob/2887008e0ce0824be4e0e9562c22ea397b165c97/src/librustc_mir/dataflow/mod.rs#L594-L596).

This makes `sets.on_entry` inaccessible in `{before_,}{statement,terminator}_effect`. This field was meant to allow implementors of `BitDenotation` to access the initial state for each block (optionally with the effect of all previous statements applied via `accumulates_intrablock_state`) while defining transfer functions.  However, the ability to set the initial value for the entry set of each basic block (except for START_BLOCK) no longer exists. As a result, this functionality is mostly useless, and when it *was* used it was used erroneously (see #62007).

Since `on_entry` is now useless, we can also remove `BlockSets`, which held the `gen`, `kill`, and `on_entry` bitvectors and replace it with a `GenKill` struct. Variables of this type are called `trans` since they represent a transfer function. `GenKill`s are stored contiguously in `AllSets`, which reduces the number of bounds checks and may improve cache performance: one is almost never accessed without the other.

Replacing `BlockSets` with `GenKill` allows us to define some new helper functions which streamline dataflow iteration and the dataflow-at-location APIs. Notably, `state_for_location` used a subtle side-effect of the `kill`/`kill_all` setters to apply the transfer function, and could be incorrect if a transfer function depended on effects of previous statements in the block on `gen_set`.

Additionally, this PR merges `BitSetOperator` and `InitialFlow` into one trait. Since the value of `InitialFlow` defines the semantics of the `join` operation, there's no reason to have seperate traits for each. We can add a default impl of `join` which branches based on `BOTTOM_VALUE`.  This should get optimized away.

5 years agoUpdate cargo
Eric Huss [Mon, 24 Jun 2019 18:57:20 +0000 (11:57 -0700)]
Update cargo

5 years agoAuto merge of #62081 - RalfJung:miri-pointer-checks, r=oli-obk
bors [Mon, 24 Jun 2019 17:44:13 +0000 (17:44 +0000)]
Auto merge of #62081 - RalfJung:miri-pointer-checks, r=oli-obk

Refactor miri pointer checks

Centralize bounds, alignment and NULL checking for memory accesses in one function: `memory.check_ptr_access`. That function also takes care of converting a `Scalar` to a `Pointer`, should that be needed.  Not all accesses need that though: if the access has size 0, `None` is returned. Everyone accessing memory based on a `Scalar` should use this method to get the `Pointer` they need.

All operations on the `Allocation` work on `Pointer` inputs and expect all the checks to have happened (and will ICE if the bounds are violated). The operations on `Memory` work on `Scalar` inputs and do the checks themselves.

The only other public method to check pointers is `memory.ptr_may_be_null`, which is needed in a few places. No need for `check_align` or similar methods. That makes the public API surface much easier to use and harder to mis-use.

This should be largely no-functional-change, except that ZST accesses to a "true" pointer that is dangling or out-of-bounds are now considered UB. This is to be conservative wrt. whatever LLVM might be doing.

While I am at it, this also removes the assumption that the vtable part of a `dyn Trait`-fat-pointer is a `Pointer` (as opposed to a pointer cast to an integer, stored as raw bits).

r? @oli-obk

5 years agoPacify tidy
Oliver Scherer [Mon, 24 Jun 2019 14:34:50 +0000 (16:34 +0200)]
Pacify tidy

5 years agoAdd regression test
Oliver Scherer [Mon, 24 Jun 2019 13:34:29 +0000 (15:34 +0200)]
Add regression test

5 years agoDon't ICE on mutable zst slices
Oliver Scherer [Mon, 24 Jun 2019 13:31:52 +0000 (15:31 +0200)]
Don't ICE on mutable zst slices

5 years agoSimplify vtable interning
Oliver Scherer [Mon, 24 Jun 2019 13:31:25 +0000 (15:31 +0200)]
Simplify vtable interning

5 years agoAuto merge of #62092 - lzutao:clippy-update, r=oli-obk
bors [Mon, 24 Jun 2019 13:08:12 +0000 (13:08 +0000)]
Auto merge of #62092 - lzutao:clippy-update, r=oli-obk

submodules: Update clippy from 5a11ed7b to 8c80b65f

```bash
% git shortlog --no-merges 5a11ed7b92cc4cf40a4568a8fc1ff54b198c333b..
Daniele D'Orazio (4):
      make needless_return work with void functions
      update tests and fix lints in clippy
      more idiomatic code
      cargo fmt

Jeremy Stucki (1):
      Remove needless lifetimes

Lzu Tao (1):
      Fix fallout cause NodeId pruning

Matthias Krüger (1):
      readme: update

Mazdak Farrokhzad (5):
      Fix fallout from rust-lang/rust PR 60861.
      Account for let_chains in collapsible_if ui test cases.
      Fix dogfood test failures.
      Pacify rustfmt.
      Put 'if let' back into comment.

flip1995 (1):
      Remove another unnecessary lifetime
```
r? @Manishearth , cc @oli-obk

5 years agofix reoccurring typo
Ralf Jung [Mon, 24 Jun 2019 12:28:16 +0000 (14:28 +0200)]
fix reoccurring typo

5 years agosubmodules: Update clippy from 5a11ed7b to 8c80b65f
Lzu Tao [Mon, 24 Jun 2019 09:42:31 +0000 (09:42 +0000)]
submodules: Update clippy from 5a11ed7b to 8c80b65f

5 years agoHirIdification: miscellaneous bits
ljedrz [Mon, 24 Jun 2019 08:17:04 +0000 (10:17 +0200)]
HirIdification: miscellaneous bits

5 years agoHirIdify driver::pretty::HirPrinterSupport::node_path
ljedrz [Mon, 24 Jun 2019 08:03:37 +0000 (10:03 +0200)]
HirIdify driver::pretty::HirPrinterSupport::node_path

5 years agoHIR: rename find_by_hir_id to find
ljedrz [Mon, 24 Jun 2019 07:58:49 +0000 (09:58 +0200)]
HIR: rename find_by_hir_id to find

5 years agoHIR: remove the NodeId find
ljedrz [Mon, 24 Jun 2019 07:55:11 +0000 (09:55 +0200)]
HIR: remove the NodeId find

5 years agoAuto merge of #62012 - wesleywiser:const_prop_use_ecx, r=oli-obk
bors [Mon, 24 Jun 2019 07:48:29 +0000 (07:48 +0000)]
Auto merge of #62012 - wesleywiser:const_prop_use_ecx, r=oli-obk

Use ecx for const-prop local storage

r? @oli-obk

5 years agoHIR: rename get_parent_node_by_hir_id to get_parent_node
ljedrz [Mon, 24 Jun 2019 07:46:38 +0000 (09:46 +0200)]
HIR: rename get_parent_node_by_hir_id to get_parent_node

5 years agoHIR: remove the NodeId get_parent_node, HirIdify is_argument
ljedrz [Mon, 24 Jun 2019 07:41:29 +0000 (09:41 +0200)]
HIR: remove the NodeId get_parent_node, HirIdify is_argument

5 years agorustbuild: always set cxx for build host
Marc-Antoine Perennou [Mon, 24 Jun 2019 07:12:24 +0000 (09:12 +0200)]
rustbuild: always set cxx for build host

Even if it's not in hosts

Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>