]> git.lizzy.rs Git - rust.git/log
rust.git
4 years agoresolve: Cleanup some field processing code
Vadim Petrochenkov [Fri, 6 Dec 2019 21:55:02 +0000 (00:55 +0300)]
resolve: Cleanup some field processing code

4 years agoresolve: Resolve visibilities on fields with non-builtin attributes
Vadim Petrochenkov [Fri, 6 Dec 2019 21:03:58 +0000 (00:03 +0300)]
resolve: Resolve visibilities on fields with non-builtin attributes

4 years agoAuto merge of #67096 - mark-i-m:fix-rustc-guide-2, r=ehuss
bors [Mon, 9 Dec 2019 14:07:20 +0000 (14:07 +0000)]
Auto merge of #67096 - mark-i-m:fix-rustc-guide-2, r=ehuss

Update rustc-guide

4 years agoAuto merge of #67016 - lqd:placeholder_loans, r=matthewjasper
bors [Mon, 9 Dec 2019 10:50:41 +0000 (10:50 +0000)]
Auto merge of #67016 - lqd:placeholder_loans, r=matthewjasper

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 ?)

4 years agoAuto merge of #67004 - estebank:issue-66958, r=eddyb
bors [Mon, 9 Dec 2019 05:16:48 +0000 (05:16 +0000)]
Auto merge of #67004 - estebank:issue-66958, r=eddyb

Do not ICE on async fn with non-Copy infered type arg

Fix #66958.

4 years agoAuto merge of #67003 - cjgillot:corrida, r=Mark-Simulacrum
bors [Mon, 9 Dec 2019 01:57:07 +0000 (01:57 +0000)]
Auto merge of #67003 - cjgillot:corrida, r=Mark-Simulacrum

Fix TypedArena returning wrong pointers for recursive allocations

Closes #67001

4 years agoAuto merge of #66984 - GuillaumeGomez:move-clean-types, r=kinnison
bors [Sun, 8 Dec 2019 22:44:01 +0000 (22:44 +0000)]
Auto merge of #66984 - GuillaumeGomez:move-clean-types, r=kinnison

Move clean types into their own file

This PR is just about moving clean types into their own files to make the code more clear and keep all `Clean` trait implementations on their own.

r? @kinnison

4 years agoAuto merge of #66981 - michaelwoerister:measureme-0.5.0, r=Mark-Simulacrum
bors [Sun, 8 Dec 2019 19:43:29 +0000 (19:43 +0000)]
Auto merge of #66981 - michaelwoerister:measureme-0.5.0, r=Mark-Simulacrum

Update measureme crate to 0.5.0

This PR updates the `measureme` self-profiling crate to the latest release. Heads up, this version changes the trace file format, so the `summarize` tool on perf.rlo needs to be updated to 0.5 too.

r? @Mark-Simulacrum
cc @wesleywiser

4 years agoAuto merge of #66730 - hermitcore:master, r=alexcrichton
bors [Sun, 8 Dec 2019 16:34:38 +0000 (16:34 +0000)]
Auto merge of #66730 - hermitcore:master, r=alexcrichton

remove dependency from libhermit

The build process of the unikernel HermitCore is redesigned and doesn't longer depend on libhermit.

4 years agoAuto merge of #67147 - RalfJung:miri, r=RalfJung
bors [Sun, 8 Dec 2019 13:10:52 +0000 (13:10 +0000)]
Auto merge of #67147 - RalfJung:miri, r=RalfJung

update Miri

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

4 years agoupdate Miri
Ralf Jung [Sun, 8 Dec 2019 10:34:36 +0000 (11:34 +0100)]
update Miri

4 years agoAuto merge of #67140 - Centril:rollup-h7rbw7y, r=Centril
bors [Sun, 8 Dec 2019 06:02:54 +0000 (06:02 +0000)]
Auto merge of #67140 - Centril:rollup-h7rbw7y, r=Centril

Rollup of 5 pull requests

Successful merges:

 - #66325 (Change unused_labels from allow to warn)
 - #66991 (Cleanup BodyCache)
 - #67101 (use `#[allow(unused_attributes)]` to paper over incr.comp problem)
 - #67114 (Make `ForeignItem` an alias of `Item`.)
 - #67129 (Fixes typo)

Failed merges:

 - #66886 (Remove the borrow check::nll submodule)

r? @ghost

4 years agoRollup merge of #67129 - remexre:patch-1, r=Dylan-DPC
Mazdak Farrokhzad [Sun, 8 Dec 2019 02:39:50 +0000 (03:39 +0100)]
Rollup merge of #67129 - remexre:patch-1, r=Dylan-DPC

Fixes typo

`legacy_disrectory_ownership` vs `legacy_directory_ownership`

4 years agoRollup merge of #67114 - Centril:foreign-item-alias, r=petrochenkov
Mazdak Farrokhzad [Sun, 8 Dec 2019 02:39:48 +0000 (03:39 +0100)]
Rollup merge of #67114 - Centril:foreign-item-alias, r=petrochenkov

Make `ForeignItem` an alias of `Item`.

Working towards the merging of items in AST and syntactically.

r? @petrochenkov

4 years agoRollup merge of #67101 - rust-lang:ostrich, r=Mark-Simulacrum
Mazdak Farrokhzad [Sun, 8 Dec 2019 02:39:47 +0000 (03:39 +0100)]
Rollup merge of #67101 - rust-lang:ostrich, r=Mark-Simulacrum

use `#[allow(unused_attributes)]` to paper over incr.comp problem

Paper over the problem in #58633.

r? @Mark-Simulacrum

4 years agoRollup merge of #66991 - Nashenas88:body_cache_cleanup, r=eddyb
Mazdak Farrokhzad [Sun, 8 Dec 2019 02:39:45 +0000 (03:39 +0100)]
Rollup merge of #66991 - Nashenas88:body_cache_cleanup, r=eddyb

Cleanup BodyCache

After this PR:

- `BodyCache` is renamed to `BodyAndCache`
- `ReadOnlyBodyCache` is renamed to `ReadOnlyBodyAndCache`
- `ReadOnlyBodyAndCache::body` fn is removed and all calls to it are replaced by a deref (possible due to fix of its `Deref` imp in #65947)

cc @eddyb @oli-obk

4 years agoRollup merge of #66325 - BartMassey:master, r=joshtriplett
Mazdak Farrokhzad [Sun, 8 Dec 2019 02:39:43 +0000 (03:39 +0100)]
Rollup merge of #66325 - BartMassey:master, r=joshtriplett

Change unused_labels from allow to warn

Fixes #66324, making the unused_labels lint warn instead of allow by default. I'm told @rust-lang/lang will need to review this, and perhaps will want to do a crater run.

4 years agoleave a FIXME
Mazdak Farrokhzad [Fri, 6 Dec 2019 21:21:31 +0000 (22:21 +0100)]
leave a FIXME

4 years agouse `#[allow(unused_attributes)]` to paper over incr.comp problem
Mazdak Farrokhzad [Fri, 6 Dec 2019 21:17:32 +0000 (22:17 +0100)]
use `#[allow(unused_attributes)]` to paper over incr.comp problem

4 years agoAuto merge of #65881 - anp:implicit-caller-location, r=eddyb,oli-obk
bors [Sat, 7 Dec 2019 21:14:39 +0000 (21:14 +0000)]
Auto merge of #65881 - anp:implicit-caller-location, r=eddyb,oli-obk

Implement #[track_caller] attribute. (RFC 2091 4/N)

Implements the `#[track_caller]` attribute in both const and codegen contexts.

The const implementation walks up the stack to find the nearest untracked callsite.

The codegen implementation adds an implicit argument to tracked function calls, and populates it with either a call to the previously-landed intrinsic or if the caller has `#[track_caller]` with a copy of the location passed to the current function.

Also includes a little cleanup and a few comments in the other caller location areas.

[Depends on: 65664](https://github.com/rust-lang/rust/pull/65664)
[RFC 2091 text](https://github.com/rust-lang/rfcs/blob/master/text/2091-inline-semantic.md)
[Tracking issue](https://github.com/rust-lang/rust/issues/47809)
[Tracking doc](https://paper.dropbox.com/doc/track_rfc_2091_impl-notes--Anf1NwnIb0xcRv31YLIadyj0Ag-rwCdRc2fi2yvRZ7syGZ9q#:uid=863513134494965680023183&h2=TODO-actually-pass-location-to)

4 years agoFixes typo
Nathan Ringo [Sat, 7 Dec 2019 20:09:43 +0000 (14:09 -0600)]
Fixes typo

`legacy_disrectory_ownership` vs `legacy_directory_ownership`

4 years agoAuto merge of #66927 - RalfJung:engines-dont-panic, r=oli-obk
bors [Sat, 7 Dec 2019 14:46:30 +0000 (14:46 +0000)]
Auto merge of #66927 - RalfJung:engines-dont-panic, r=oli-obk

Miri core engine: use throw_ub instead of throw_panic

See https://github.com/rust-lang/rust/issues/66902 for context: panicking is not really an "interpreter error", but just part of a normal Rust execution. This is a first step towards removing the `InterpError::Panic` variant: the core Miri engine does not use it any more.

ConstProp and ConstEval still use it, though. This will be addressed in future PRs.

From what I can tell, all the error messages this removes are actually duplicates.

r? @oli-obk @wesleywiser

4 years agoMake `ForeignItem` an alias of `Item`.
Mazdak Farrokhzad [Sat, 30 Nov 2019 17:10:59 +0000 (18:10 +0100)]
Make `ForeignItem` an alias of `Item`.

4 years agoAuto merge of #66882 - mati865:znver1_fix, r=nikomatsakis
bors [Sat, 7 Dec 2019 02:46:10 +0000 (02:46 +0000)]
Auto merge of #66882 - mati865:znver1_fix, r=nikomatsakis

Update LLVM submodule

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

Credit for finding the cause goes to `eddyb`.

4 years agoAdd additional layer of #[track_caller] to test, avoid const prop.
Adam Perry [Sat, 7 Dec 2019 01:10:47 +0000 (17:10 -0800)]
Add additional layer of #[track_caller] to test, avoid const prop.

4 years agoAddress review feedback.
Adam Perry [Sat, 7 Dec 2019 01:05:51 +0000 (17:05 -0800)]
Address review feedback.

4 years agoCaller location is propagated via immediates rather than memory.
Adam Perry [Sat, 7 Dec 2019 00:09:40 +0000 (16:09 -0800)]
Caller location is propagated via immediates rather than memory.

4 years agoAlways call const fns with #[track_caller].
Adam Perry [Fri, 6 Dec 2019 15:11:28 +0000 (07:11 -0800)]
Always call const fns with #[track_caller].

The caller location is passed as an implicit argument, so we must consider it when checking the sizedness of arguments.

4 years agoAuto merge of #67104 - Centril:rollup-07vahh9, r=Centril
bors [Fri, 6 Dec 2019 23:35:00 +0000 (23:35 +0000)]
Auto merge of #67104 - Centril:rollup-07vahh9, r=Centril

Rollup of 10 pull requests

Successful merges:

 - #66606 (Add feature gate for mut refs in const fn)
 - #66841 (Add `{f32,f64}::approx_unchecked_to<Int>` unsafe methods)
 - #67009 (Emit coercion suggestions in more places)
 - #67052 (Ditch `parse_in_attr`)
 - #67071 (Do not ICE on closure typeck)
 - #67078 (accept union inside enum if not followed by identifier)
 - #67090 (Change "either" to "any" in Layout::from_size_align's docs)
 - #67092 (Fix comment typos in src/libcore/alloc.rs)
 - #67094 (get rid of __ in field names)
 - #67102 (Add note to src/ci/docker/README.md about multiple docker images)

Failed merges:

 - #67101 (use `#[allow(unused_attributes)]` to paper over incr.comp problem)

r? @ghost

4 years agoRollup merge of #67102 - Aaron1011:patch-3, r=Mark-Simulacrum
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:27:08 +0000 (23:27 +0100)]
Rollup merge of #67102 - Aaron1011:patch-3, r=Mark-Simulacrum

Add note to src/ci/docker/README.md about multiple docker images

I spent a while debugging a strage linker error about an outdated `glibc` version, only to discover that it was caused by a stale `obj` directory. It wasn't obviously to be that using the same obj dir with multiple Docker images (for the same target triple) could be a problem.

This commit adds a note to the README, which should hopefully be helpful to anyone else who runs into this issue.

4 years agoRollup merge of #67094 - RalfJung:fields, r=Mark-Simulacrum
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:27:06 +0000 (23:27 +0100)]
Rollup merge of #67094 - RalfJung:fields, r=Mark-Simulacrum

get rid of __ in field names

This old work-around should not be needed any more.

4 years agoRollup merge of #67092 - kraai:us-to-is, r=jonas-schievink
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:27:05 +0000 (23:27 +0100)]
Rollup merge of #67092 - kraai:us-to-is, r=jonas-schievink

Fix comment typos in src/libcore/alloc.rs

4 years agoRollup merge of #67090 - kraai:either-to-any, r=jonas-schievink
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:27:03 +0000 (23:27 +0100)]
Rollup merge of #67090 - kraai:either-to-any, r=jonas-schievink

Change "either" to "any" in Layout::from_size_align's docs

4 years agoRollup merge of #67078 - kamleshbhalui:master, r=Centril
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:27:02 +0000 (23:27 +0100)]
Rollup merge of #67078 - kamleshbhalui:master, r=Centril

accept union inside enum if not followed by identifier

Fixes #66943

4 years agoRollup merge of #67071 - estebank:issue-66868, r=davidtwco
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:27:00 +0000 (23:27 +0100)]
Rollup merge of #67071 - estebank:issue-66868, r=davidtwco

Do not ICE on closure typeck

Tackle #66868.

r? @davidtwco

4 years agoRollup merge of #67052 - Centril:config-1, r=petrochenkov
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:26:59 +0000 (23:26 +0100)]
Rollup merge of #67052 - Centril:config-1, r=petrochenkov

Ditch `parse_in_attr`

Fixes #66940

r? @petrochenkov

4 years agoRollup merge of #67009 - Aaron1011:fix/coerce-suggestion, r=Centril
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:26:57 +0000 (23:26 +0100)]
Rollup merge of #67009 - Aaron1011:fix/coerce-suggestion, r=Centril

Emit coercion suggestions in more places

Fixes #66910

We have several different kinds of suggestions we can try to make when
type coercion fails. However, we were previously only emitting these
suggestions from `demand_coerce_diag`. This resulted in the compiler
failing to emit applicable suggestions in several different cases, such
as when the implicit return value of a function had the wrong type.

This commit adds a new `emit_coerce_suggestions` method, which tries to
emit a number of related suggestions. This method is called from both
`demand_coerce_diag` and `CoerceMany::coerce_inner`, which covers a much
wider range of cases than before.

We now suggest using `.await` in more cases where it is applicable,
among other improvements.

I'm not happy about disabling the `issue-59756`, but from what I can tell, the suggestion infrastructure in rustc lacks any way of indicating mutually exclusive suggestions (and compiletest lacks a way to only apply a subset of available suggestions).

4 years agoRollup merge of #66841 - SimonSapin:float_round_unchecked_to, r=rkruppe
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:26:55 +0000 (23:26 +0100)]
Rollup merge of #66841 - SimonSapin:float_round_unchecked_to, r=rkruppe

Add `{f32,f64}::approx_unchecked_to<Int>` unsafe methods

As discussed in https://github.com/rust-lang/rust/issues/10184

Currently, casting a floating point number to an integer with `as` is Undefined Behavior if the value is out of range. `-Z saturating-float-casts` fixes this soundness hole by making `as` “saturate” to the maximum or minimum value of the integer type (or zero for `NaN`), but has measurable negative performance impact in some benchmarks. There is some consensus in that thread for enabling saturation by default anyway, but provide an `unsafe fn` alternative for users who know through some other mean that their values are in range.

<del>The “fit” wording is copied from https://llvm.org/docs/LangRef.html#fptoui-to-instruction, but I’m not certain what it means exactly. Presumably this is after rounding towards zero, and the doc-test with `i8::MIN` seems to confirm this.</del> Clang presumably uses those LLVM intrinsics to implement C and C++ casts, whose respective standard specify that the value *after truncating to keep its integral part* must be representable in the target type.

4 years agoRollup merge of #66606 - christianpoveda:mut-refs-in-const-fn, r=oli-obk
Mazdak Farrokhzad [Fri, 6 Dec 2019 22:26:54 +0000 (23:26 +0100)]
Rollup merge of #66606 - christianpoveda:mut-refs-in-const-fn, r=oli-obk

Add feature gate for mut refs in const fn

r? @oli-obk

4 years agoAdd note to src/ci/docker/README.md about multiple docker images
Aaron Hill [Fri, 6 Dec 2019 21:38:57 +0000 (16:38 -0500)]
Add note to src/ci/docker/README.md about multiple docker images

I spent a while debugging a strage linker error about an outdated `glibc` version, only to discover that it was caused by a stale `obj` directory. It wasn't obviously to be that using the same obj dir with multiple Docker images (for the same target triple) could be a problem.

This commit adds a note to the README, which should hopefully be helpful to anyone else who runs into this issue.

4 years agoparse_meta: ditch parse_in_attr
Mazdak Farrokhzad [Thu, 5 Dec 2019 13:19:00 +0000 (14:19 +0100)]
parse_meta: ditch parse_in_attr

4 years agoderive: avoid parse_in_attr
Mazdak Farrokhzad [Thu, 5 Dec 2019 12:53:56 +0000 (13:53 +0100)]
derive: avoid parse_in_attr

4 years agocfg_attr: avoid .outer_tokens
Mazdak Farrokhzad [Thu, 5 Dec 2019 05:45:50 +0000 (06:45 +0100)]
cfg_attr: avoid .outer_tokens

4 years agoAuto merge of #65195 - varkor:to_option, r=Centril
bors [Fri, 6 Dec 2019 19:14:51 +0000 (19:14 +0000)]
Auto merge of #65195 - varkor:to_option, r=Centril

Rename `bool::then_*` to `bool::to_option_*` and use where appropriate

Name change following https://github.com/rust-lang/rfcs/pull/2757. Also try it out throughout the compiler in places I think makes the code more readable.

4 years agoreview comments
Esteban Küber [Thu, 5 Dec 2019 14:57:34 +0000 (06:57 -0800)]
review comments

4 years agoDo not ICE on async fn with non-Copy infered type arg
Esteban Küber [Tue, 3 Dec 2019 23:02:27 +0000 (15:02 -0800)]
Do not ICE on async fn with non-Copy infered type arg

Fix #66958.

4 years agoUpdate rustc-guide
Mark Mansi [Fri, 6 Dec 2019 17:26:18 +0000 (11:26 -0600)]
Update rustc-guide

4 years agoget rid of __ in field names
Ralf Jung [Fri, 6 Dec 2019 16:28:04 +0000 (17:28 +0100)]
get rid of __ in field names

4 years agoChange "wth" to "with" in `Layout::padding_needed_for` comment
Matthew Kraai [Fri, 6 Dec 2019 15:59:13 +0000 (07:59 -0800)]
Change "wth" to "with" in `Layout::padding_needed_for` comment

4 years agoChange "us" to "is" in Layout::for_value comment
Matthew Kraai [Fri, 6 Dec 2019 15:18:10 +0000 (07:18 -0800)]
Change "us" to "is" in Layout::for_value comment

4 years agoAuto merge of #67091 - JohnTitor:rollup-kitphze, r=JohnTitor
bors [Fri, 6 Dec 2019 15:11:35 +0000 (15:11 +0000)]
Auto merge of #67091 - JohnTitor:rollup-kitphze, r=JohnTitor

Rollup of 11 pull requests

Successful merges:

 - #66846 (Make try_mark_previous_green aware of cycles.)
 - #66959 (Remove potential cfgs duplicates)
 - #66988 (Fix angle bracket formatting when dumping MIR debug vars)
 - #66998 (Modified the testcases for VxWorks)
 - #67008 (rustdoc: Add test for fixed issue)
 - #67023 (SGX: Fix target linker used by bootstrap)
 - #67033 (Migrate to LLVM{Get,Set}ValueName2)
 - #67049 (Simplify {IoSlice, IoSliceMut}::advance examples and tests)
 - #67054 (codegen "unreachable" for invalid SetDiscriminant)
 - #67081 (Fix Query type docs)
 - #67085 (Remove boxed closures in address parser.)

Failed merges:

r? @ghost

4 years agoRollup merge of #67085 - reitermarkus:addr-parser, r=Mark-Simulacrum
Yuki Okushi [Fri, 6 Dec 2019 15:10:08 +0000 (00:10 +0900)]
Rollup merge of #67085 - reitermarkus:addr-parser, r=Mark-Simulacrum

Remove boxed closures in address parser.

Simplify address parser by removing unnecessary boxed closures.

Also relevant for https://github.com/rust-lang/rfcs/pull/2832.

4 years agoRollup merge of #67081 - osa1:fix_query_type_docs, r=Dylan-DPC
Yuki Okushi [Fri, 6 Dec 2019 15:10:07 +0000 (00:10 +0900)]
Rollup merge of #67081 - osa1:fix_query_type_docs, r=Dylan-DPC

Fix Query type docs

`give` no longer exists, `compute` is used to generate query results now.

4 years agoRollup merge of #67054 - RalfJung:set-discriminant-unreachable, r=oli-obk
Yuki Okushi [Fri, 6 Dec 2019 15:10:05 +0000 (00:10 +0900)]
Rollup merge of #67054 - RalfJung:set-discriminant-unreachable, r=oli-obk

codegen "unreachable" for invalid SetDiscriminant

Follow-up from https://github.com/rust-lang/rust/pull/66960. I also realized I don't understand our policy for using `abort` vs `unreachable`. AFAIK `abort` is safe to call and just aborts the process, while `unreachable` is UB. But sometimes we use both, like here

https://github.com/rust-lang/rust/blob/d825e35ee8325146e6c175a4c61bcb645b347d5e/src/librustc_codegen_ssa/mir/block.rs#L827-L828

and here

https://github.com/rust-lang/rust/blob/d825e35ee8325146e6c175a4c61bcb645b347d5e/src/librustc_codegen_ssa/mir/block.rs#L264-L265

The second case is even more confusing because that looks like an unreachable `return` to me, so why would we codegen a safe abort there?

r? @eddyb Cc @oli-obk

4 years agoRollup merge of #67049 - tmiasko:io-slice-advance, r=rkruppe
Yuki Okushi [Fri, 6 Dec 2019 15:10:04 +0000 (00:10 +0900)]
Rollup merge of #67049 - tmiasko:io-slice-advance, r=rkruppe

Simplify {IoSlice, IoSliceMut}::advance examples and tests

Remove unnecessary calls to `std::mem::replace` and make variables immutable.

4 years agoRollup merge of #67033 - cuviper:ValueName2, r=rkruppe
Yuki Okushi [Fri, 6 Dec 2019 15:10:02 +0000 (00:10 +0900)]
Rollup merge of #67033 - cuviper:ValueName2, r=rkruppe

Migrate to LLVM{Get,Set}ValueName2

The deprecated `LLVM{Get,Set}ValueName` only work with NUL-terminated
strings, but the `2` variants use explicit lengths, which fits better
with Rust strings and slices. We now use these in new helper functions
`llvm::{get,set}_value_name` that convert to/from `&[u8]`.

Closes #64223.
r? @rkruppe

4 years agoRollup merge of #67023 - jethrogb:jb/bootstrap-target-linker, r=alexcrichton
Yuki Okushi [Fri, 6 Dec 2019 15:10:00 +0000 (00:10 +0900)]
Rollup merge of #67023 - jethrogb:jb/bootstrap-target-linker, r=alexcrichton

SGX: Fix target linker used by bootstrap

Bootstrap, for some reason, overrides the target linker. This is not correct for x86_64-fortanix-unknown-sgx. Add such targets to the list of exceptions.

r? @alexcrichton

4 years agoRollup merge of #67008 - ollie27:rustdoc_issue_61732, r=Centril
Yuki Okushi [Fri, 6 Dec 2019 15:09:59 +0000 (00:09 +0900)]
Rollup merge of #67008 - ollie27:rustdoc_issue_61732, r=Centril

rustdoc: Add test for fixed issue

#61732 was almost certainly fixed by #63400.

Closes #61732

4 years agoRollup merge of #66998 - Wind-River:master_up, r=alexcrichton
Yuki Okushi [Fri, 6 Dec 2019 15:09:57 +0000 (00:09 +0900)]
Rollup merge of #66998 - Wind-River:master_up, r=alexcrichton

Modified the testcases for VxWorks

4 years agoRollup merge of #66988 - osa1:issue66985, r=matthewjasper
Yuki Okushi [Fri, 6 Dec 2019 15:09:55 +0000 (00:09 +0900)]
Rollup merge of #66988 - osa1:issue66985, r=matthewjasper

Fix angle bracket formatting when dumping MIR debug vars

Fixes #66985

4 years agoRollup merge of #66959 - GuillaumeGomez:cfg-duplicates, r=eddyb
Yuki Okushi [Fri, 6 Dec 2019 15:09:54 +0000 (00:09 +0900)]
Rollup merge of #66959 - GuillaumeGomez:cfg-duplicates, r=eddyb

Remove potential cfgs duplicates

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

Before going any further (the issue seems to be linked to metadata as far as I can tell). Do you think this is the good place to do it or should it be done before?

r? @eddyb

4 years agoRollup merge of #66846 - gizmondo:master, r=michaelwoerister
Yuki Okushi [Fri, 6 Dec 2019 15:09:52 +0000 (00:09 +0900)]
Rollup merge of #66846 - gizmondo:master, r=michaelwoerister

Make try_mark_previous_green aware of cycles.

Fixes #61323

r? @michaelwoerister

4 years agoChange "either" to "any" in Layout::from_size_align's docs
Matthew Kraai [Fri, 6 Dec 2019 15:06:03 +0000 (07:06 -0800)]
Change "either" to "any" in Layout::from_size_align's docs

4 years agoFix rebase issues
varkor [Fri, 6 Dec 2019 13:09:03 +0000 (13:09 +0000)]
Fix rebase issues

4 years agoMove numeric `From` and `TryFrom` impls to `libcore/convert/num.rs`
Simon Sapin [Mon, 2 Dec 2019 08:44:48 +0000 (09:44 +0100)]
Move numeric `From` and `TryFrom` impls to `libcore/convert/num.rs`

This makes `libcore/num/mod.rs` slightly smaller. It’s still 4911 lines and not easy to navigate. This doesn’t change any public API.

4 years agoAdd `{f32,f64}::approx_unchecked_to<Int>` unsafe methods
Simon Sapin [Thu, 28 Nov 2019 14:24:26 +0000 (15:24 +0100)]
Add `{f32,f64}::approx_unchecked_to<Int>` unsafe methods

As discussed in https://github.com/rust-lang/rust/issues/10184

Currently, casting a floating point number to an integer with `as` is Undefined Behavior if the value is out of range. `-Z saturating-float-casts` fixes this soundness hole by making `as` “saturate” to the maximum or minimum value of the integer type (or zero for `NaN`), but has measurable negative performance impact in some benchmarks. There is some consensus in that thread for enabling saturation by default anyway, but provide an `unsafe fn` alternative for users who know through some other mean that their values are in range.

4 years agoMake `core::convert` a directory-module with `mod.rs`
Simon Sapin [Fri, 6 Dec 2019 12:56:25 +0000 (13:56 +0100)]
Make `core::convert` a directory-module with `mod.rs`

4 years agoRemove boxed closures in address parser.
Markus Reiter [Fri, 6 Dec 2019 12:27:39 +0000 (13:27 +0100)]
Remove boxed closures in address parser.

4 years agoUse `Instant::now` lazily
varkor [Fri, 6 Dec 2019 12:19:44 +0000 (12:19 +0000)]
Use `Instant::now` lazily

4 years agoRename to `then_some` and `then`
varkor [Fri, 6 Dec 2019 12:18:32 +0000 (12:18 +0000)]
Rename to `then_some` and `then`

4 years agoUse `as_ref().map()` rather than `is_some().to_option()`
varkor [Sun, 13 Oct 2019 14:47:38 +0000 (15:47 +0100)]
Use `as_ref().map()` rather than `is_some().to_option()`

4 years agoFix libcore tests
varkor [Tue, 8 Oct 2019 23:48:47 +0000 (00:48 +0100)]
Fix libcore tests

4 years agoUse `to_option_with` in several places
varkor [Tue, 8 Oct 2019 22:09:36 +0000 (23:09 +0100)]
Use `to_option_with` in several places

4 years agoUse `to_option` in various places
varkor [Tue, 8 Oct 2019 00:14:42 +0000 (01:14 +0100)]
Use `to_option` in various places

4 years agoRename `bool`'s `then` to `to_option`
varkor [Mon, 7 Oct 2019 23:05:13 +0000 (00:05 +0100)]
Rename `bool`'s `then` to `to_option`

4 years agoadd subset relations test using polonius
Remy Rakic [Tue, 3 Dec 2019 13:07:41 +0000 (14:07 +0100)]
add subset relations test using polonius

It's a relatively simple smoke-test for subset errors, executed outside
of the polonius compare-mode.

4 years agoappease the vociferous tidy
Remy Rakic [Mon, 2 Dec 2019 18:37:24 +0000 (19:37 +0100)]
appease the vociferous tidy

4 years agobless polonius output due to lacking the 'static special-casing
Remy Rakic [Mon, 2 Dec 2019 17:54:42 +0000 (18:54 +0100)]
bless polonius output due to lacking the 'static special-casing

4 years agobless polonius output of test ui/nll/outlives-suggestion-simple.rs
Remy Rakic [Mon, 2 Dec 2019 17:44:23 +0000 (18:44 +0100)]
bless polonius output of test ui/nll/outlives-suggestion-simple.rs

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.

4 years agobless polonius output of test hrtb-perfect-forwarding.rs
Remy Rakic [Mon, 2 Dec 2019 17:38:05 +0000 (18:38 +0100)]
bless polonius output of test hrtb-perfect-forwarding.rs

The plan is to use chalk and not have polonius deal with this.

4 years agoImplement subset errors using Polonius
Remy Rakic [Wed, 20 Nov 2019 10:13:03 +0000 (11:13 +0100)]
Implement subset errors using Polonius

- switches to using the Naive variant by default
- emits subset errors or propagates unsatisfied obligations
  to the caller

4 years agoPolonius: emit `placeholder` and `known_subset` facts, as inputs to the subset error...
Remy Rakic [Tue, 19 Nov 2019 15:58:09 +0000 (16:58 +0100)]
Polonius: emit `placeholder` and `known_subset` facts, as inputs to the subset error computation

4 years agoUniversalRegionRelations: add a way to list the base non-transitive `outlives` constr...
Remy Rakic [Tue, 19 Nov 2019 15:55:58 +0000 (16:55 +0100)]
UniversalRegionRelations: add a way to list the base non-transitive `outlives` constraints

4 years agoAdd a way to list the base non-transitive edges in `TransitiveRelation`
Remy Rakic [Tue, 19 Nov 2019 15:53:52 +0000 (16:53 +0100)]
Add a way to list the base non-transitive edges in `TransitiveRelation`

4 years agoupdate to polonius 0.11 to compute subset errors
lqd [Mon, 18 Nov 2019 12:45:41 +0000 (13:45 +0100)]
update to polonius 0.11 to compute subset errors

- 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.

4 years agoMake try_mark_previous_green aware of cycles.
Alex Aktsipetrov [Fri, 6 Dec 2019 09:48:53 +0000 (12:48 +0300)]
Make try_mark_previous_green aware of cycles.

4 years agoAuto merge of #67080 - JohnTitor:rollup-2t6fm3u, r=JohnTitor
bors [Fri, 6 Dec 2019 07:43:56 +0000 (07:43 +0000)]
Auto merge of #67080 - JohnTitor:rollup-2t6fm3u, r=JohnTitor

Rollup of 10 pull requests

Successful merges:

 - #66649 (VxWorks: fix issues in accessing environment variables)
 - #66764 (Tweak wording of `collect()` on bad target type)
 - #66900 (Clean up error codes)
 - #66974 ([CI] fix the `! isCI` check in src/ci/run.sh)
 - #66979 (Add long error for E0631 and update ui tests.)
 - #67017 (cleanup long error explanations)
 - #67021 (Fix docs for formatting delegations)
 - #67041 (add ExitStatusExt into prelude)
 - #67065 (Fix fetching arguments on the wasm32-wasi target)
 - #67066 (Update the revision of wasi-libc used in wasm32-wasi)

Failed merges:

r? @ghost

4 years agoFix Query type docs
Ömer Sinan Ağacan [Fri, 6 Dec 2019 07:41:48 +0000 (10:41 +0300)]
Fix Query type docs

`give` no longer exists, `compute` is used to generate query results
now.

4 years agoRollup merge of #67066 - alexcrichton:update-wasi-libc, r=Mark-Simulacrum
Yuki Okushi [Fri, 6 Dec 2019 06:37:14 +0000 (15:37 +0900)]
Rollup merge of #67066 - alexcrichton:update-wasi-libc, r=Mark-Simulacrum

Update the revision of wasi-libc used in wasm32-wasi

This commit updates the `wasi-libc` repository used to build the
wasm32-wasi target's libstd to ensure that both libstd and libc are
using the same wasi snapshot version.

4 years agoRollup merge of #67065 - alexcrichton:update-wasi, r=sfackler
Yuki Okushi [Fri, 6 Dec 2019 06:37:13 +0000 (15:37 +0900)]
Rollup merge of #67065 - alexcrichton:update-wasi, r=sfackler

Fix fetching arguments on the wasm32-wasi target

Fixes an error introduced in #66750 where wasi executables always think
they have zero arguments because one of the vectors returned here
accidentally thought it was length 0.

4 years agoRollup merge of #67041 - Wind-River:master_base, r=alexcrichton
Yuki Okushi [Fri, 6 Dec 2019 06:37:11 +0000 (15:37 +0900)]
Rollup merge of #67041 - Wind-River:master_base, r=alexcrichton

add ExitStatusExt into prelude

r? @alexcrichton

4 years agoRollup merge of #67021 - elichai:2019-12-fmt, r=QuietMisdreavus
Yuki Okushi [Fri, 6 Dec 2019 06:37:10 +0000 (15:37 +0900)]
Rollup merge of #67021 - elichai:2019-12-fmt, r=QuietMisdreavus

Fix docs for formatting delegations

If you use the example in the docs right now it breaks all the options Formatters have to offer.
i.e. https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=214392ecc6eff73b4789c32568395f72 this should've padded the output with 4 zeros but didn't.

with the new example it does work: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=3bdfb29f395230c5129c5f56dcfcb2a9

The only thing i'm not quite sure about is what's the right way to do it in a loop (altough non of the docs talk about it people are doing it in the wild and there were a couple of attempts to include in libcore)
i.e. https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=4c4dca3c90ba36779ecd014f3899ab9c

4 years agoRollup merge of #67017 - GuillaumeGomez:long-err-explanations-2, r=Dylan-DPC
Yuki Okushi [Fri, 6 Dec 2019 06:37:08 +0000 (15:37 +0900)]
Rollup merge of #67017 - GuillaumeGomez:long-err-explanations-2, r=Dylan-DPC

cleanup long error explanations

r? @Dylan-DPC

4 years agoRollup merge of #66979 - reese:E0631-long-error, r=GuillaumeGomez
Yuki Okushi [Fri, 6 Dec 2019 06:37:06 +0000 (15:37 +0900)]
Rollup merge of #66979 - reese:E0631-long-error, r=GuillaumeGomez

Add long error for E0631 and update ui tests.

This PR adds a long error for `E0631`, which covers errors where closure argument types are mismatched. It also updates UI tests where this error is applicable.

Part of #61137

4 years agoRollup merge of #66974 - cuviper:not-isCI, r=alexcrichton
Yuki Okushi [Fri, 6 Dec 2019 06:37:04 +0000 (15:37 +0900)]
Rollup merge of #66974 - cuviper:not-isCI, r=alexcrichton

[CI] fix the `! isCI` check in src/ci/run.sh

Using `if [ ! isCI ] || ...` doesn't run any command, just tests `isCI`
as a string, whereas `if ! isCI || ...` will actually run the `isCI`
command and negate its exit status.

4 years agoRollup merge of #66900 - GuillaumeGomez:clean-up-err-codes, r=Dylan-DPC
Yuki Okushi [Fri, 6 Dec 2019 06:37:03 +0000 (15:37 +0900)]
Rollup merge of #66900 - GuillaumeGomez:clean-up-err-codes, r=Dylan-DPC

Clean up error codes

r? @Dylan-DPC

4 years agoRollup merge of #66764 - estebank:reword-bad-collect, r=alexcrichton
Yuki Okushi [Fri, 6 Dec 2019 06:37:01 +0000 (15:37 +0900)]
Rollup merge of #66764 - estebank:reword-bad-collect, r=alexcrichton

Tweak wording of `collect()` on bad target type

Fix #60440.

4 years agoRollup merge of #66649 - Wind-River:master_xyz, r=alexcrichton
Yuki Okushi [Fri, 6 Dec 2019 06:36:56 +0000 (15:36 +0900)]
Rollup merge of #66649 - Wind-River:master_xyz, r=alexcrichton

VxWorks: fix issues in accessing environment variables

4 years agoaccept union inside enum if not followed by identifier
Kamlesh Kumar [Fri, 6 Dec 2019 05:22:28 +0000 (10:52 +0530)]
accept union inside enum if not followed by identifier

4 years ago`#[track_caller]` suppresses MIR inlining.
Adam Perry [Sun, 27 Oct 2019 22:16:46 +0000 (15:16 -0700)]
`#[track_caller]` suppresses MIR inlining.