Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 6 pull requests #67142

Closed
wants to merge 24 commits into from
Closed

Conversation

Centril
Copy link
Contributor

@Centril Centril commented Dec 8, 2019

Successful merges:

Failed merges:

r? @ghost

cjgillot and others added 24 commits December 3, 2019 23:35
- adapt to the new polonius `FactTypes` API
- reorganize the type aliases referring to polonius to avoid referencing the inner atom or fact types multiple times: only one input and output types should be enough for everyone. They could equally be in `borrow_check` as `nll` though.
- switches to using the Naive variant by default
- emits subset errors or propagates unsatisfied obligations
  to the caller
The plan is to use chalk and not have polonius deal with this.
The polonius output has one more error which should be displayed
in the regular case, but error reporting in the regular case stopped
at the first error.

Admittedly it would be nice to combine suggestions for the same source
lifetime so that `'a: 'b` and `'a: 'c` are not bothsuggested, but instead
a single `'a: 'b + 'c` is.
It's a relatively simple smoke-test for subset errors, executed outside
of the polonius compare-mode.
Format libcore with rustfmt (including tests and benches)

Important: two small non-rustfmt changes that will need close review:

- I added `#[rustfmt::skip]` to two manually arranged tables in src/libcore/benches/ascii.rs; see first commit in the PR.
- I added `// ignore-tidy-filelength` to src/libcore/ptr/mod.rs because rustfmt puts it over tidy's 3000 line limit; see second commit in the PR. I filed rust-lang#66891 to follow up on breaking up that file. For now though having it be formatted is more important than having it below the line limit.

---

As with my previous formatting PRs, I am avoiding causing merge conflicts in other PRs by only touches those files that are not involved in any currently open PR. Files that appear in new PRs between when this PR is opened and when it makes it to the top of the bors queue will be reverted from this PR.

The list of files involved in open PRs is determined by querying GitHub's GraphQL API [with this script](https://gist.github.com/dtolnay/aa9c34993dc051a4f344d1b10e4487e8).

With the list of files from the script in outstanding_files, the relevant commands were:

```
$ find src/libcore -name '*.rs' \
    | xargs rustfmt --edition=2018 --unstable-features --skip-children
$ rg libcore outstanding_files | xargs git checkout --
```

To confirm no funny business:

```
$ git checkout $THIS_COMMIT^
$ git show --pretty= --name-only $THIS_COMMIT \
    | xargs rustfmt --edition=2018 --unstable-features --skip-children
$ git diff $THIS_COMMIT  # there should be no difference
```

r? @Dylan-DPC
Fix TypedArena returning wrong pointers for recursive allocations

Closes rust-lang#67001
Do not ICE on async fn with non-Copy infered type arg

Fix rust-lang#66958.
In which we implement illegal subset relations errors using Polonius

This PR is the rustc side of implementing subset errors using Polonius. That is, in
```rust
fn foo<'a, 'b>(x: &'a u32, y: &'b u32) -> &'a u32 {
    y
}
```
returning `y` requires that `'b: 'a` but we have no evidence of that, so this is an error. (Evidence that the relation holds could come from explicit bounds, or via implied bounds).

Polonius outputs one such error per CFG point where the free region's placeholder loan unexpectedly flowed into another free region. While all these CFG locations could be useful in diagnostics in the future, rustc does not do that (and the duplication is only partially handled in the rest of the errors/diagnostics infrastructure, e.g. duplicate suggestions will be shown by the "outlives suggestions" or some of the `#[rustc_*]` NLL/MIR debug dumps), so I deduplicated the errors.

(The ordering also matters, otherwise some of the elided lifetime naming would change behaviour).

I've blessed a couple of tests, where the output is currently suboptimal:
- the `hrtb-perfect-forwarding` tests mix subset errors with higher-ranked subtyping, however the plan is for chalk to eventually take care of some of this to generate polonius constraints (i.e. it's not polonius' job). Until that happens, polonius will not see the error that NLL sees.
- some other tests have errors and diagnostics specific to `'static`, I _believe_ this to be because of it being treated as more "special" than in polonius. I believe the output is not wrong, but could be better, and appears elsewhere (I feel we'll need to look at polonius' handling of `'static` at some point in the future, maybe to match a bit more what NLL does when it produces errors)

I'll create a tracking issue in the polonius repo to record these 2 points (and a general "we'll need to go over the blessed output" issue, much like we did for NLLs)

The last blessed test is because it's an improvement: in this case, more errors/suggestions were computed, instead of the existing code path where this case apparently stops at the first error.

The `Naive` variant in Polonius computes those errors, so this PR also switches the default variant to that, as we're also in the process of temporarily deactivating all other variants (which exist mostly for performance considerations) until we have completed more work on completeness and correctness, before focusing on efficiency once again.

While most of the correctness in this PR is hidden in the polonius compare-mode (which of course passes locally), I've added a couple of smoke-tests to the existing ones, so that we have some confidence that it works (and keeps working) until we're in a position where we can run them on CI.

As mentioned during yesterday's wg-polonius meeting, @nikomatsakis has already read through most of this PR (and which is matching  what they thought needed to be done [during the recent Polonius sprint](https://hackmd.io/CGMNjt1hR_qYtsR9hgdGmw#Compiler-notes-on-generating-the-placeholder-loans-support)), but Matthew was hopefully going to review (again, not urgent), so:

r? @matthewjasper

(This updates to the latest `polonius-engine` release, and I'm not sure whether `Cargo.lock` updates can easily be rolled up, but apart from that: this changes little that's tested on CI, so seems safe-ish to rollup ?)
Update tokio crates to latest versions

Drops few old crates from the workspace (they are only used during tests, not in Rust itself) and allows to remove even more crates during next `rustc-ap-*` update.
…, r=Amanieu

Simplify `Layout::extend_packed`
@Centril
Copy link
Contributor Author

Centril commented Dec 8, 2019

@bors r+ p=6 rollup=never

@bors
Copy link
Contributor

bors commented Dec 8, 2019

📌 Commit 4387e7b has been approved by Centril

@bors bors added the S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. label Dec 8, 2019
@Centril Centril added the rollup A PR which is a rollup label Dec 8, 2019
@bors
Copy link
Contributor

bors commented Dec 8, 2019

⌛ Testing commit 4387e7b with merge 194135cd01a1867da56aaadee29a662428aba1ee...

@rust-highfive
Copy link
Collaborator

The job i686-msvc-1 of your PR failed (pretty log, raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem.

Click to expand the log.
2019-12-08T10:54:27.8083829Z do so (now or later) by using -b with the checkout command again. Example:
2019-12-08T10:54:27.8085937Z 
2019-12-08T10:54:27.8087362Z   git checkout -b <new-branch-name>
2019-12-08T10:54:27.8087833Z 
2019-12-08T10:54:27.8087983Z HEAD is now at 194135cd0 Auto merge of #67142 - Centril:rollup-co72dts, r=Centril
2019-12-08T10:54:27.8455395Z ##[section]Starting: Setup environment
2019-12-08T10:54:27.8562901Z ==============================================================================
2019-12-08T10:54:27.8562982Z Task         : Bash
2019-12-08T10:54:27.8563062Z Description  : Run a Bash script on macOS, Linux, or Windows
---
2019-12-08T10:54:29.6417334Z BUILD_SOURCEBRANCHNAME=auto
2019-12-08T10:54:29.6417406Z BUILD_SOURCESDIRECTORY=D:\a\1\s
2019-12-08T10:54:29.6417508Z BUILD_SOURCEVERSION=194135cd01a1867da56aaadee29a662428aba1ee
2019-12-08T10:54:29.6417588Z BUILD_SOURCEVERSIONAUTHOR=bors
2019-12-08T10:54:29.6417700Z BUILD_SOURCEVERSIONMESSAGE=Auto merge of #67142 - Centril:rollup-co72dts, r=Centril
2019-12-08T10:54:29.6417875Z CI_JOB_NAME=i686-msvc-1
2019-12-08T10:54:29.6417961Z COBERTURA_HOME=C:\cobertura-2.1.1
2019-12-08T10:54:29.6418044Z COMMONPROGRAMFILES=C:\Program Files\Common Files
2019-12-08T10:54:29.6418151Z COMMON_TESTRESULTSDIRECTORY=D:\a\1\TestResults
---
2019-12-08T13:09:44.2334607Z command did not execute successfully: "D:\\a\\1\\s\\build\\i686-pc-windows-msvc\\stage0\\bin\\cargo.exe" "test" "-Zconfig-profile" "--target" "i686-pc-windows-msvc" "-Zbinary-dep-depinfo" "-j" "2" "--release" "--locked" "--color" "always" "--features" "panic-unwind backtrace compiler-builtins-c" "--manifest-path" "D:\\a\\1\\s\\src/libtest/Cargo.toml" "-p" "test" "--"
2019-12-08T13:09:44.2335593Z expected success, got: exit code: 101
2019-12-08T13:09:44.2335668Z 
2019-12-08T13:09:44.2335743Z 
2019-12-08T13:09:44.3146789Z failed to run: D:\a\1\s\build\bootstrap\debug\bootstrap test --exclude src/test/ui --exclude src/test/compile-fail --exclude src/tools/linkchecker
2019-12-08T13:09:44.3146945Z Build completed unsuccessfully in 2:03:09
2019-12-08T13:09:44.4000139Z make: *** [Makefile:80: ci-subset-1] Error 1
2019-12-08T13:09:44.4641772Z   local time: Sun Dec  8 13:09:44 CUT 2019
2019-12-08T13:09:44.9825456Z   network time: Sun, 08 Dec 2019 13:09:44 GMT
2019-12-08T13:09:44.9863653Z == end clock drift check ==
2019-12-08T13:09:45.1218760Z 
2019-12-08T13:09:45.1218760Z 
2019-12-08T13:09:45.4790177Z ##[error]Bash exited with code '2'.
2019-12-08T13:09:45.6588270Z ##[section]Starting: Checkout
2019-12-08T13:09:45.7671769Z ==============================================================================
2019-12-08T13:09:45.7671903Z Task         : Get sources
2019-12-08T13:09:45.7671995Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.

I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact @TimNN. (Feature Requests)

@bors
Copy link
Contributor

bors commented Dec 8, 2019

💔 Test failed - checks-azure

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Dec 8, 2019
@bors
Copy link
Contributor

bors commented Dec 10, 2019

☔ The latest upstream changes (presumably #67184) made this pull request unmergeable. Please resolve the merge conflicts.

@Centril Centril closed this Dec 10, 2019
@Centril Centril deleted the rollup-co72dts branch December 10, 2019 05:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants