]> git.lizzy.rs Git - rust.git/log
rust.git
4 years agoself-profiling: Remove module names from some event-ids in codegen backend.
Michael Woerister [Tue, 22 Oct 2019 10:53:46 +0000 (12:53 +0200)]
self-profiling: Remove module names from some event-ids in codegen backend.

4 years agoAuto merge of #65594 - RalfJung:miri, r=oli-obk
bors [Mon, 21 Oct 2019 07:50:52 +0000 (07:50 +0000)]
Auto merge of #65594 - RalfJung:miri, r=oli-obk

bump miri

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

4 years agoAuto merge of #65630 - ecstatic-morse:graphviz-tidy, r=Mark-Simulacrum
bors [Mon, 21 Oct 2019 04:01:37 +0000 (04:01 +0000)]
Auto merge of #65630 - ecstatic-morse:graphviz-tidy, r=Mark-Simulacrum

Check all files in `src/test` for `borrowck_graphviz_postflow`

This attribute causes DOT files to be generated in the top-level directory. It is intended to be used only temporarily and should never appear on master. This also tells git to ignore DOT files in the root or the  `mir_dump` directory, which `-Z dump-mir` uses by default.

This will prevent #65071 from occurring again. It needs to be merged after #65629, otherwise `tidy` will start failing.

r? @Mark-Simulacrum

4 years agoAuto merge of #65644 - Centril:rollup-gez1xhe, r=Centril
bors [Sun, 20 Oct 2019 23:40:12 +0000 (23:40 +0000)]
Auto merge of #65644 - Centril:rollup-gez1xhe, r=Centril

Rollup of 8 pull requests

Successful merges:

 - #65314 (rustdoc: forward -Z options to rustc)
 - #65592 (clarify const_prop ICE protection comment)
 - #65603 (Avoid ICE when include! is used by stdin crate)
 - #65614 (Improve error message for APIT with explicit generic arguments)
 - #65629 (Remove `borrowck_graphviz_postflow` from test)
 - #65633 (Remove leading :: from paths in doc examples)
 - #65638 (Rename the default argument 'def' to 'default')
 - #65639 (Fix parameter name in documentation)

Failed merges:

r? @ghost

4 years agoRollup merge of #65639 - adrianheine:patch-2, r=jonas-schievink
Mazdak Farrokhzad [Sun, 20 Oct 2019 23:39:21 +0000 (01:39 +0200)]
Rollup merge of #65639 - adrianheine:patch-2, r=jonas-schievink

Fix parameter name in documentation

4 years agoRollup merge of #65638 - dsincl12:master, r=Centril
Mazdak Farrokhzad [Sun, 20 Oct 2019 23:39:20 +0000 (01:39 +0200)]
Rollup merge of #65638 - dsincl12:master, r=Centril

Rename the default argument 'def' to 'default'

Fixes: #65492
4 years agoRollup merge of #65633 - Rantanen:doc-example-paths, r=Centril
Mazdak Farrokhzad [Sun, 20 Oct 2019 23:39:18 +0000 (01:39 +0200)]
Rollup merge of #65633 - Rantanen:doc-example-paths, r=Centril

Remove leading :: from paths in doc examples

Noted some pre-2018 path syntax in the doc examples, for example:
https://doc.rust-lang.org/std/process/fn.exit.html

```rust
fn main() {
    ::std::process::exit(match run_app() {
       Ok(_) => 0,
       ...
```

Couldn't find an existing issue on this (then again, "::" makes for an annoying thing to search for) so if there is already something fixing this and/or there's a reason to not fix it, just close this PR.

(Also fixed indentation in the `process::exit()` docs)

4 years agoRollup merge of #65629 - ecstatic-morse:remove-graphviz, r=Mark-Simulacrum
Mazdak Farrokhzad [Sun, 20 Oct 2019 23:39:17 +0000 (01:39 +0200)]
Rollup merge of #65629 - ecstatic-morse:remove-graphviz, r=Mark-Simulacrum

Remove `borrowck_graphviz_postflow` from test

Resolves #65071 (again).

Sorry. I've added a commit hook to prevent this from happening in the future.

r? @petrochenkov

4 years agoRollup merge of #65614 - varkor:apit-explicit-generics, r=matthewjasper
Mazdak Farrokhzad [Sun, 20 Oct 2019 23:39:16 +0000 (01:39 +0200)]
Rollup merge of #65614 - varkor:apit-explicit-generics, r=matthewjasper

Improve error message for APIT with explicit generic arguments

This is disallowed with type or const generics. cc https://github.com/rust-lang/rust/issues/61410.

4 years agoRollup merge of #65603 - mystor:resolve_path_ice, r=petrochenkov
Mazdak Farrokhzad [Sun, 20 Oct 2019 23:39:14 +0000 (01:39 +0200)]
Rollup merge of #65603 - mystor:resolve_path_ice, r=petrochenkov

Avoid ICE when include! is used by stdin crate

This should hopefully also eliminate the ICE when using `include_bytes!`, `include_str!` and `#[doc(include = "...")]` with a stdio input.

I couldn't see a clear way to write a compile-fail test using compiletest with a stdio input, so I haven't written any tests for this change.

Fixes #63900

4 years agoRollup merge of #65592 - RalfJung:const-prop-comment, r=wesleywiser
Mazdak Farrokhzad [Sun, 20 Oct 2019 23:39:13 +0000 (01:39 +0200)]
Rollup merge of #65592 - RalfJung:const-prop-comment, r=wesleywiser

clarify const_prop ICE protection comment

This is based on discussion at https://github.com/rust-lang/rust/pull/64890/files#r334555787.

That said, why are function arguments the only unsized locals that could remain uninitialized? Couldn't we also fail to initialize some local but still go on with const_prop, and then hit a line that takes a reference to that? Cc @wesleywiser @oli-obk ; I don't know enough about const-prop to understand why this can happen only for function arguments.

~~The PR includes https://github.com/rust-lang/rust/pull/64890; the only new commit is 05e4e6ba0d5.~~

4 years agoRollup merge of #65314 - tmiasko:rustdoc-z, r=ollie27
Mazdak Farrokhzad [Sun, 20 Oct 2019 23:39:11 +0000 (01:39 +0200)]
Rollup merge of #65314 - tmiasko:rustdoc-z, r=ollie27

rustdoc: forward -Z options to rustc

Currently rustdoc does not forward `-Z` options to rustc when building
test executables. This makes impossible to use rustdoc to run test
samples when crate under test is instrumented with one of sanitizers
`-Zsanitizer=...`, since the final linking step will not include
sanitizer runtime library.

Forward `-Z` options to rustc to solve the issue.

Helps with #43031.

4 years agoFix parameter name in documentation
Adrian Heine né Lang [Sun, 20 Oct 2019 21:13:41 +0000 (23:13 +0200)]
Fix parameter name in documentation

4 years agoRename the default argument 'def' to 'default'
David Sinclair [Sun, 20 Oct 2019 20:22:33 +0000 (22:22 +0200)]
Rename the default argument 'def' to 'default'

Fixes: #65492
4 years agoAuto merge of #65632 - JohnTitor:rollup-adb16gb, r=JohnTitor
bors [Sun, 20 Oct 2019 19:45:09 +0000 (19:45 +0000)]
Auto merge of #65632 - JohnTitor:rollup-adb16gb, r=JohnTitor

Rollup of 5 pull requests

Successful merges:

 - #65460 (Clean up `contains()` `insert()` chains on HashSet)
 - #65463 (Avoid unnecessary arena allocations in `expand_pattern()`.)
 - #65579 (Changed `resolve_type_vars_with_obligations` to also resolve const inference variables)
 - #65605 (Remove unreachable unit tuple compare binop codegen)
 - #65626 (trivial typo fix)

Failed merges:

r? @ghost

4 years agoRemove leading :: from paths in doc examples
Mikko Rantanen [Sun, 20 Oct 2019 18:13:47 +0000 (21:13 +0300)]
Remove leading :: from paths in doc examples

4 years agoRollup merge of #65626 - guanqun:patch-1, r=varkor
Yuki Okushi [Sun, 20 Oct 2019 18:10:59 +0000 (03:10 +0900)]
Rollup merge of #65626 - guanqun:patch-1, r=varkor

trivial typo fix

4 years agoRollup merge of #65605 - bjorn3:fix_63906, r=eddyb
Yuki Okushi [Sun, 20 Oct 2019 18:10:58 +0000 (03:10 +0900)]
Rollup merge of #65605 - bjorn3:fix_63906, r=eddyb

Remove unreachable unit tuple compare binop codegen

Closes #63906
Fixes #63551

This is based on #63906 by @luigishat, who had trouble with rebasing his PR.

4 years agoRollup merge of #65579 - skinny121:resolve_const_vars, r=varkor
Yuki Okushi [Sun, 20 Oct 2019 18:10:57 +0000 (03:10 +0900)]
Rollup merge of #65579 - skinny121:resolve_const_vars, r=varkor

Changed `resolve_type_vars_with_obligations` to also resolve const inference variables

Fixes #65380
r? @varkor

4 years agoRollup merge of #65463 - nnethercote:rm-arena-allocation-from-expand_pattern, r=varkor
Yuki Okushi [Sun, 20 Oct 2019 18:10:55 +0000 (03:10 +0900)]
Rollup merge of #65463 - nnethercote:rm-arena-allocation-from-expand_pattern, r=varkor

Avoid unnecessary arena allocations in `expand_pattern()`.

`expand_pattern()` has two callsites. One of them needs arena
allocation, but the other does not.

This commit moves the arena allocation out of the function. This avoids
the allocation of many 4 KiB page arena chunks that only hold a single
small allocation. It reduces the number of bytes allocated by up to 2%
for various benchmarks, albeit without only a very small improvement in
runtime.

4 years agoRollup merge of #65460 - sinkuu:contains_insert, r=varkor
Yuki Okushi [Sun, 20 Oct 2019 18:10:54 +0000 (03:10 +0900)]
Rollup merge of #65460 - sinkuu:contains_insert, r=varkor

Clean up `contains()` `insert()` chains on HashSet

They can be merged to a single `insert()` call, which may avoid double-hashing/lookup of the value.

4 years agoIgnore DOT files in .gitignore
Dylan MacKenzie [Sun, 20 Oct 2019 18:03:13 +0000 (11:03 -0700)]
Ignore DOT files in .gitignore

4 years agoCheck all files in `src/test` for `borrowck_graphviz_postflow`
Dylan MacKenzie [Sun, 20 Oct 2019 17:46:49 +0000 (10:46 -0700)]
Check all files in `src/test` for `borrowck_graphviz_postflow`

This attribute causes DOT files to be generated in the top-level
directory. It is intended to be used only temporarily and should never
appear on master.

This will prevent #65071 from occurring again.

4 years agoRemove `borrowck_graphviz_postflow` from test
Dylan MacKenzie [Sun, 20 Oct 2019 16:36:04 +0000 (09:36 -0700)]
Remove `borrowck_graphviz_postflow` from test

4 years agotypo fix
guanqun [Sun, 20 Oct 2019 15:03:33 +0000 (23:03 +0800)]
typo fix

4 years agoAuto merge of #65622 - Centril:rollup-l8orba7, r=Centril
bors [Sun, 20 Oct 2019 14:07:46 +0000 (14:07 +0000)]
Auto merge of #65622 - Centril:rollup-l8orba7, r=Centril

Rollup of 6 pull requests

Successful merges:

 - #64996 (Inline `ptr::null(_mut)` even in debug builds)
 - #65551 (Avoid realloc in `CString::new`)
 - #65593 (add test for calling non-const fn)
 - #65595 (move `parse_cfgspecs` to `rustc_interface`)
 - #65600 (Remove unneeded `ref` from docs)
 - #65602 (Fix plural mistake in emitter.rs)

Failed merges:

r? @ghost

4 years agoRollup merge of #65602 - varkor:other-candidates, r=Centril
Mazdak Farrokhzad [Sun, 20 Oct 2019 10:40:22 +0000 (12:40 +0200)]
Rollup merge of #65602 - varkor:other-candidates, r=Centril

Fix plural mistake in emitter.rs

4 years agoRollup merge of #65600 - integer32llc:bye-bye-ref, r=Centril
Mazdak Farrokhzad [Sun, 20 Oct 2019 10:40:20 +0000 (12:40 +0200)]
Rollup merge of #65600 - integer32llc:bye-bye-ref, r=Centril

Remove unneeded `ref` from docs

Will reduce confusion like in https://users.rust-lang.org/t/help-understanding-the-ref-t-syntax/33779 since match ergonomics means you (almost) never have to say `ref` anymore!

There might be more like this, but I don't have a checkout on my computer right this second and I'm on slow wifi and GitHub search isn't powerful enough and that's my story.

4 years agoRollup merge of #65595 - Centril:cfgspecs, r=Mark-Simulacrum
Mazdak Farrokhzad [Sun, 20 Oct 2019 10:40:19 +0000 (12:40 +0200)]
Rollup merge of #65595 - Centril:cfgspecs, r=Mark-Simulacrum

move `parse_cfgspecs` to `rustc_interface`

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

r? @Mark-Simulacrum

4 years agoRollup merge of #65593 - RalfJung:non-const-fn, r=oli-obk
Mazdak Farrokhzad [Sun, 20 Oct 2019 10:40:18 +0000 (12:40 +0200)]
Rollup merge of #65593 - RalfJung:non-const-fn, r=oli-obk

add test for calling non-const fn

The good news is that there is an error. But I expected to see [this error](https://github.com/rust-lang/rust/blob/9578272d681c8691ca2ff3f5c4230b491bc1c694/src/librustc_mir/const_eval.rs#L346) surface. @oli-obk any idea why that message is not shown anywhere?

r? @oli-obk

4 years agoRollup merge of #65551 - sinkuu:cstring_spec, r=sfackler
Mazdak Farrokhzad [Sun, 20 Oct 2019 10:40:16 +0000 (12:40 +0200)]
Rollup merge of #65551 - sinkuu:cstring_spec, r=sfackler

Avoid realloc in `CString::new`

If `&[u8]` or `&str` is given, `CString::new` allocates a new `Vec` with the exact capacity, and then `CString::from_vec_unchecked` calls `.reserve_exact(1)` for nul byte. This PR avoids the reallocation by allocationg `len + 1` bytes beforehand. In microbenchmark this PR speeds up `CString::new(&[u8])` by 30%.

4 years agoRollup merge of #64996 - lzutao:inline-ptr-null, r=oli-obk
Mazdak Farrokhzad [Sun, 20 Oct 2019 10:40:15 +0000 (12:40 +0200)]
Rollup merge of #64996 - lzutao:inline-ptr-null, r=oli-obk

Inline `ptr::null(_mut)` even in debug builds

I think we should treat `ptr::null(_mut)` as a constant. As It may help reduce code size
in debug build.
link: https://godbolt.org/z/b9YMtD
4 years agoAuto merge of #65497 - choller:master, r=tmiasko
bors [Sun, 20 Oct 2019 10:11:10 +0000 (10:11 +0000)]
Auto merge of #65497 - choller:master, r=tmiasko

Avoid injecting sanitizer runtimes into staticlibs (#64629).

This fixes the remaining issue in `creader.rs` and also fixes the expected test failure. I have explicitly turned the `$(CC)` call into a negative check with the `!` to ensure that this command is really failing (if it is not, then either the runtime is attached to the lib or the lib has not been instrumented and both would be an error).

I've also borrowed `program.rs` and the additional `rustc` invocation from @tmiasko 's PR since he pointed out that using `-fsanitize=address` with `$(CC)` for linking could fail if the sanitizer runtimes on the system are incompatible.

With this toolchain I was able to compile Firefox locally without any linker errors. I am still seeing races with Rust in TSan but I assume that is because I did not build with `-Z build-std`.

4 years agoskip all refs-to-uninit-local, not just arguments
Ralf Jung [Sat, 19 Oct 2019 16:16:22 +0000 (18:16 +0200)]
skip all refs-to-uninit-local, not just arguments

4 years agoAuto merge of #65469 - mati865:libc, r=alexcrichton
bors [Sun, 20 Oct 2019 06:10:51 +0000 (06:10 +0000)]
Auto merge of #65469 - mati865:libc, r=alexcrichton

Update libc to 0.2.64

Passed local tests.

cc potentially interested people: @gnzlbg @tlively

4 years agoAuto merge of #65302 - msizanoen1:fix-armv7-segfault, r=alexcrichton
bors [Sun, 20 Oct 2019 02:06:42 +0000 (02:06 +0000)]
Auto merge of #65302 - msizanoen1:fix-armv7-segfault, r=alexcrichton

Upgrade GCC to 8.3.0, glibc to 1.17.0 and crosstool-ng to 1.24.0 for dist-armv7-linux

#62896 was caused by the usage of the GCC 5.2.0 toolchain, which was released back in 2015 and may have bugs affecting LLVM 9.
This PR upgrade GCC to 8.3.0 from 5.2.0, glibc from 1.16.0 to 1.17.0 and crosstool-ng to 1.24.0 only for dist-armv7-linux.
Fixes #62896

r? @alexcrichton

4 years agoImprove error message for APIT with explicit generic parameters
varkor [Sun, 20 Oct 2019 00:11:56 +0000 (01:11 +0100)]
Improve error message for APIT with explicit generic parameters

This is disallowed with type or const generics.

4 years agoAuto merge of #65094 - oxalica:linux-statx, r=alexcrichton
bors [Sat, 19 Oct 2019 22:01:30 +0000 (22:01 +0000)]
Auto merge of #65094 - oxalica:linux-statx, r=alexcrichton

Prefer statx on linux if available

This PR make `metadata`-related functions try to invoke `statx` first on Linux if available,
making `std::fs::Metadata::created` work on Linux with `statx` supported.

It follows the discussion in #61386 , and will fix #59743

The implementation of this PR is simply converting `struct statx` into `struct stat64` with
extra fields for `btime` if `statx` succeeds, since other fields are not currently used.

---

I also did a separated benchmark for `fs::metadata`, `stat64`, `statx`, and `statx` with conversion to `stat64`.
It shows that `statx` with conversion is even more faster than pure `statx`.
I think it's due to `sizeof stat64 == 114` but `sizeof statx == 256`.

Anyway, the bare implementation of `statx` with conversion is only about 0.2% slower than the original impl (`stat64`-family).
With heap-allocation counted (~8.5% of total cost), the difference between `stat` and `statx` (with or without conversion) is just nothing.

Therefore, I think it is not urgent to use bare `struct statx` as underlying representation now.
There is no need to break `std::os::linux::fs::MetadataExt::as_raw_stat` (https://github.com/rust-lang/rust/pull/61386#issuecomment-538074018)

[Separated bare benchmarks](https://gist.github.com/oxalica/c4073ecb202c599fe41b7f15f86dc79c):
```
metadata_ok             time:   [529.41 ns 529.77 ns 530.19 ns]
metadata_err            time:   [538.71 ns 539.39 ns 540.35 ns]
stat64_ok               time:   [484.32 ns 484.53 ns 484.75 ns]
stat64_err              time:   [481.77 ns 482.00 ns 482.24 ns]
statx_ok                time:   [488.07 ns 488.35 ns 488.62 ns]
statx_err               time:   [487.74 ns 488.00 ns 488.27 ns]
statx_cvt_ok            time:   [485.05 ns 485.28 ns 485.53 ns]
statx_cvt_err           time:   [485.23 ns 485.45 ns 485.67 ns]
```

r? @alexcrichton

4 years agoRename resolve_type_vars_with_obligations to
ben [Fri, 18 Oct 2019 23:04:16 +0000 (12:04 +1300)]
Rename resolve_type_vars_with_obligations to
resolve_vars_with_obligations, as it now also resolves const variables.

4 years agoFix resolve_type_vars_with_obligations not resolving const inference
ben [Fri, 18 Oct 2019 22:57:48 +0000 (11:57 +1300)]
Fix resolve_type_vars_with_obligations not resolving const inference
variables.

4 years agoRemove unreachable unit tuple compare binop codegen
Caleb Behunin [Mon, 9 Sep 2019 05:17:10 +0000 (22:17 -0700)]
Remove unreachable unit tuple compare binop codegen

4 years agoAvoid ICE when include! is used by stdin crate
Nika Layzell [Sat, 19 Oct 2019 17:05:46 +0000 (13:05 -0400)]
Avoid ICE when include! is used by stdin crate

This should also eliminate the ICE when using `include_bytes!`, `include_str!`
and `#[doc(include = "...")]`.

Fixes #63900

4 years agoAuto merge of #65599 - Manishearth:clippyup, r=Manishearth
bors [Sat, 19 Oct 2019 17:46:07 +0000 (17:46 +0000)]
Auto merge of #65599 - Manishearth:clippyup, r=Manishearth

Update clippy

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

4 years agoFix plural mistake in emitter.rs
varkor [Sat, 19 Oct 2019 17:08:54 +0000 (18:08 +0100)]
Fix plural mistake in emitter.rs

4 years agoRemove unneeded `ref` from docs
Carol (Nichols || Goulding) [Sat, 19 Oct 2019 15:20:05 +0000 (11:20 -0400)]
Remove unneeded `ref` from docs

Will reduce confusion like in https://users.rust-lang.org/t/help-understanding-the-ref-t-syntax/33779 since match ergonomics means you (almost) never have to say `ref` anymore!

4 years agoadjust miri sysroot determination
Ralf Jung [Sat, 19 Oct 2019 15:17:02 +0000 (17:17 +0200)]
adjust miri sysroot determination

4 years agobump miri
Ralf Jung [Sat, 19 Oct 2019 15:15:12 +0000 (17:15 +0200)]
bump miri

4 years agoUpdate clippy
Manish Goregaokar [Sat, 19 Oct 2019 15:00:48 +0000 (08:00 -0700)]
Update clippy

4 years agoAuto merge of #65598 - Centril:rollup-vc6ht2c, r=Centril
bors [Sat, 19 Oct 2019 14:01:35 +0000 (14:01 +0000)]
Auto merge of #65598 - Centril:rollup-vc6ht2c, r=Centril

Rollup of 5 pull requests

Successful merges:

 - #64007 (Add check for overlapping ranges to unreachable patterns lint)
 - #65192 (Use structured suggestion for restricting bounds)
 - #65226 (BTreeSet symmetric_difference & union optimized)
 - #65448 (rustc_codegen_ssa: remove some unnecessary Box special-casing.)
 - #65505 (Rc: value -> allocation)

Failed merges:

r? @ghost

4 years agoRollup merge of #65505 - RalfJung:rc, r=Centril
Mazdak Farrokhzad [Sat, 19 Oct 2019 14:00:56 +0000 (16:00 +0200)]
Rollup merge of #65505 - RalfJung:rc, r=Centril

Rc: value -> allocation

See https://github.com/rust-lang/rust/issues/64484. This does not yet edit `Arc` as I first wanted to be sure we agree on the terminology the way it actually ends up. "value" as a term appears a lot in this file, and sometimes it refers to the value stored inside the `RcBox` while sometimes it refers to the `RcBox` itself. I tried to properly tease these apart but may have made some mistakes. The former should now always be called "inner value" and the latter "allocation".

One area where I was very unsure of which terminology is dropping: the `value` field of the `RcBox` will get dropped *earlier* than the `RcBox` itself if there are weak references. I decided that "dropping the value stored in the allocation" refers to dropping the value field, while "destroying the allocation" refers to actually freeing its backing memory.

r? @Centril

4 years agoRollup merge of #65448 - eddyb:codegen-box-less-special, r=oli-obk
Mazdak Farrokhzad [Sat, 19 Oct 2019 14:00:54 +0000 (16:00 +0200)]
Rollup merge of #65448 - eddyb:codegen-box-less-special, r=oli-obk

rustc_codegen_ssa: remove some unnecessary Box special-casing.

Could help simplify #60900.

r? @nikomatsakis

4 years agoRollup merge of #65226 - ssomers:master, r=bluss
Mazdak Farrokhzad [Sat, 19 Oct 2019 14:00:53 +0000 (16:00 +0200)]
Rollup merge of #65226 - ssomers:master, r=bluss

BTreeSet symmetric_difference & union optimized

No scalability changes, but:
- Grew the cmp_opt function (shared by symmetric_difference & union) into a MergeIter, with less memory overhead than the pairs of Peekable iterators now, speeding up ~20% on my machine (not so clear on Travis though, I actually switched it off there because it wasn't consistent about identical code). Mainly meant to improve readability by sharing code, though it does end up using more lines of code. Extending and reusing the MergeIter in btree_map might be better, but I'm not sure that's possible or desirable. This MergeIter probably pretends to be more generic than it is, yet doesn't declare to be an iterator because there's no need to, it's only there to help construct genuine iterators SymmetricDifference & Union.
- Compact the code of #64820 by moving if/else into match guards.

r? @bluss

4 years agoRollup merge of #65192 - estebank:restrict-bound, r=matthewjasper
Mazdak Farrokhzad [Sat, 19 Oct 2019 14:00:51 +0000 (16:00 +0200)]
Rollup merge of #65192 - estebank:restrict-bound, r=matthewjasper

Use structured suggestion for restricting bounds

When a trait bound is not met and restricting a type parameter would
make the restriction hold, use a structured suggestion pointing at an
appropriate place (type param in param list or `where` clause).

Account for opaque parameters where instead of suggesting extending
the `where` clause, we suggest appending the new restriction:
`fn foo(impl Trait + UnmetTrait)`. Fix #64565, fix #41817, fix #24354,
cc #26026, cc #37808, cc #24159, fix #37138, fix #24354, cc #20671.

4 years agoRollup merge of #64007 - estebank:overlapping-patterns, r=matthewjasper
Mazdak Farrokhzad [Sat, 19 Oct 2019 14:00:50 +0000 (16:00 +0200)]
Rollup merge of #64007 - estebank:overlapping-patterns, r=matthewjasper

Add check for overlapping ranges to unreachable patterns lint

Fix #63987.

4 years agoshow the proper diagnostics
Ralf Jung [Sat, 19 Oct 2019 13:52:08 +0000 (15:52 +0200)]
show the proper diagnostics

4 years agoadd test for calling non-const fn
Ralf Jung [Sat, 19 Oct 2019 11:13:31 +0000 (13:13 +0200)]
add test for calling non-const fn

4 years agoclarify const_prop ICE protection comment
Ralf Jung [Sat, 19 Oct 2019 09:46:56 +0000 (11:46 +0200)]
clarify const_prop ICE protection comment

4 years agodo all the same edits with Arc
Ralf Jung [Sat, 19 Oct 2019 11:48:02 +0000 (13:48 +0200)]
do all the same edits with Arc

4 years agosome more Rc tweaks
Ralf Jung [Sat, 19 Oct 2019 11:47:32 +0000 (13:47 +0200)]
some more Rc tweaks

4 years agomove parse_cfgspecs to rustc_interface
Mazdak Farrokhzad [Fri, 11 Oct 2019 21:48:16 +0000 (23:48 +0200)]
move parse_cfgspecs to rustc_interface

4 years agoAuto merge of #64890 - wesleywiser:const_prop_rvalue, r=oli-obk
bors [Sat, 19 Oct 2019 08:59:39 +0000 (08:59 +0000)]
Auto merge of #64890 - wesleywiser:const_prop_rvalue, r=oli-obk

[const-prop] Handle remaining MIR Rvalue cases

r? @oli-obk

4 years agothe exampleis about drop, not (de)allocation
Ralf Jung [Sat, 19 Oct 2019 08:14:10 +0000 (10:14 +0200)]
the exampleis about drop, not (de)allocation

4 years agoAuto merge of #65588 - Centril:rollup-9k55k3t, r=Centril
bors [Sat, 19 Oct 2019 05:11:13 +0000 (05:11 +0000)]
Auto merge of #65588 - Centril:rollup-9k55k3t, r=Centril

Rollup of 6 pull requests

Successful merges:

 - #65174 (Fix zero-size uninitialized boxes)
 - #65252 (expand: Simplify expansion of derives)
 - #65485 (Suppress ICE when validators disagree on `LiveDrop`s in presence of `&mut`)
 - #65542 (Refer to "associated functions" instead of "static methods")
 - #65545 (More symbol cleanups)
 - #65576 (Don't add `argc` and `argv` arguments to `main` on WASI.)

Failed merges:

r? @ghost

4 years agoRollup merge of #65576 - sunfishcode:main-needs-argc-argv, r=alexcrichton
Mazdak Farrokhzad [Sat, 19 Oct 2019 05:10:10 +0000 (07:10 +0200)]
Rollup merge of #65576 - sunfishcode:main-needs-argc-argv, r=alexcrichton

Don't add `argc` and `argv` arguments to `main` on WASI.

Add a target setting to allow targets to specify whether the generated
`main` function should be passed `argc` and `argv` arguments. Set it
to false on wasm32-wasi, since WASI's `args::args()` calls into the
WASI APIs itself. This will allow the WASI toolchain to avoid linking
and running command-line argument initialization code when the arguments
aren't actually needed.

4 years agoRollup merge of #65545 - nnethercote:more-symbol-cleanups, r=petrochenkov
Mazdak Farrokhzad [Sat, 19 Oct 2019 05:10:09 +0000 (07:10 +0200)]
Rollup merge of #65545 - nnethercote:more-symbol-cleanups, r=petrochenkov

More symbol cleanups

Some minor improvements, mostly aimed at reducing unimportant differences between `Symbol` and `InternedString`. Helps a little with #60869.

r? @petrochenkov

4 years agoRollup merge of #65542 - estebank:kill-static-methods, r=Centril
Mazdak Farrokhzad [Sat, 19 Oct 2019 05:10:07 +0000 (07:10 +0200)]
Rollup merge of #65542 - estebank:kill-static-methods, r=Centril

Refer to "associated functions" instead of "static methods"

Fix #59782.

4 years agoRollup merge of #65485 - ecstatic-morse:const-validation-mismatch-ugliness, r=eddyb
Mazdak Farrokhzad [Sat, 19 Oct 2019 05:10:06 +0000 (07:10 +0200)]
Rollup merge of #65485 - ecstatic-morse:const-validation-mismatch-ugliness, r=eddyb

Suppress ICE when validators disagree on `LiveDrop`s in presence of `&mut`

Resolves #65394.

This hack disables the validator mismatch ICE in cases where a `MutBorrow` error has been emitted by both validators, but they don't agree on the number of `LiveDrop` errors.

The new validator is more conservative about whether a value is moved from in the presence of mutable borrows. For example, the new validator will emit a `LiveDrop` error on the following code.

```rust
const _: Vec<i32> = {
    let mut x = Vec::new();
    let px = &mut x as *mut _;
    let y = x;
    unsafe { ptr::write(px, Vec::new()); }
    y
};
```

This code is not UB AFAIK (it passes MIRI at least). The current validator does not emit a `LiveDrop` error for `x` upon exit from the initializer. `x` is not actually dropped, so I think this is correct? A proper fix for this would require a new `MaybeInitializedLocals` dataflow analysis or maybe a relaxation of the existing `IndirectlyMutableLocals` one.

r? @RalfJung

4 years agoRollup merge of #65252 - petrochenkov:deriveholders2, r=matthewjasper
Mazdak Farrokhzad [Sat, 19 Oct 2019 05:10:04 +0000 (07:10 +0200)]
Rollup merge of #65252 - petrochenkov:deriveholders2, r=matthewjasper

expand: Simplify expansion of derives

And make it more uniform with other macros.
This is done by merging placeholders for future derives' outputs into the derive container's output fragment early (addressing FIXMEs from https://github.com/rust-lang/rust/pull/63667).

Also, macros with names starting with `_` are no longer reported as unused, in accordance with the usual behavior of `unused` lints.

r? @matthewjasper or @mark-i-m

4 years agoRollup merge of #65174 - SimonSapin:zero-box, r=alexcrichton
Mazdak Farrokhzad [Sat, 19 Oct 2019 05:10:03 +0000 (07:10 +0200)]
Rollup merge of #65174 - SimonSapin:zero-box, r=alexcrichton

Fix zero-size uninitialized boxes

Requesting a zero-size allocation is not allowed, return a dangling pointer instead.

CC https://github.com/rust-lang/rust/issues/63291#issuecomment-538692745

4 years agoAuto merge of #65570 - tmandry:rollup-hck39pf, r=tmandry
bors [Sat, 19 Oct 2019 01:16:41 +0000 (01:16 +0000)]
Auto merge of #65570 - tmandry:rollup-hck39pf, r=tmandry

Rollup of 19 pull requests

Successful merges:

 - #65016 (Always inline `mem::{size_of,align_of}` in debug builds)
 - #65197 (Prepare `MutVisitor`s to handle interned projections)
 - #65201 (Disable Go and OCaml bindings when building LLVM)
 - #65334 (Add long error explanation for E0575)
 - #65364 (Collect occurrences of empty blocks for mismatched braces diagnostic)
 - #65455 (Avoid unnecessary `TokenTree` to `TokenStream` conversions)
 - #65472 (Use a sharded dep node to dep node index map)
 - #65480 (Speed up `LexicalResolve::expansion()`)
 - #65493 (Add long error explanation for E0584)
 - #65496 (properly document panics in div_euclid and rem_euclid)
 - #65498 (Plugins deprecation: don’t suggest simply removing the attribute)
 - #65508 (add option to ping llvm ice-breakers to triagebot)
 - #65511 (save-analysis: Nest tables when processing impl block definitions)
 - #65513 (reorder fmt docs for more clarity)
 - #65532 (doc: make BitSet intro more short)
 - #65535 (rustc: arena-allocate the slice in `ty::GenericsPredicate`, not the whole struct.)
 - #65540 (show up some extra info when t!() fails)
 - #65549 (Fix left/right shift typo in wrapping rotate docs)
 - #65552 (Clarify diagnostics when using `~` as a unary op)

Failed merges:

 - #65390 (Add long error explanation for E0576)
 - #65434 (Add long error explanation for E0577)
 - #65471 (Add long error explanation for E0578)

r? @ghost

4 years agoImprove comments and structure of `ConstProp::const_prop()`
Wesley Wiser [Sun, 13 Oct 2019 17:48:26 +0000 (13:48 -0400)]
Improve comments and structure of `ConstProp::const_prop()`

Per code review feedback

4 years agoDon't ICE when evaluating writes to uninhabited enum variants
Wesley Wiser [Wed, 9 Oct 2019 10:08:46 +0000 (06:08 -0400)]
Don't ICE when evaluating writes to uninhabited enum variants

4 years agoCleanup const_prop() some
Wesley Wiser [Sun, 15 Sep 2019 16:08:09 +0000 (12:08 -0400)]
Cleanup const_prop() some

4 years ago[const-prop] Handle MIR Rvalue::Box
Wesley Wiser [Sun, 15 Sep 2019 16:03:52 +0000 (12:03 -0400)]
[const-prop] Handle MIR Rvalue::Box

4 years agoUninitialized boxes: add test for zero-size allocations
Simon Sapin [Wed, 16 Oct 2019 18:33:55 +0000 (20:33 +0200)]
Uninitialized boxes: add test for zero-size allocations

4 years agoFix rebase
Vadim Petrochenkov [Fri, 18 Oct 2019 21:54:17 +0000 (00:54 +0300)]
Fix rebase

4 years agoprivacy: Avoid one more `unwrap` causing an ICE in rustdoc
Vadim Petrochenkov [Tue, 15 Oct 2019 21:01:47 +0000 (00:01 +0300)]
privacy: Avoid one more `unwrap` causing an ICE in rustdoc

The issue is rustdoc-specific because its root cause if the `everybody_loops` pass makes some def-ids to not have local hir-ids

4 years agoexpand: Simplify expansion of derives
Vadim Petrochenkov [Wed, 9 Oct 2019 22:41:47 +0000 (01:41 +0300)]
expand: Simplify expansion of derives

And make it more uniform with other macros.
By merging placeholders for future derives' outputs into the derive container's output fragment early.

4 years agoresolve: Mark macros starting with an underscore as used
Vadim Petrochenkov [Wed, 9 Oct 2019 22:08:17 +0000 (01:08 +0300)]
resolve: Mark macros starting with an underscore as used

4 years agoRollup merge of #65552 - JohnTitor:use-bitwise-not, r=Dylan-DPC
Tyler Mandry [Fri, 18 Oct 2019 20:48:38 +0000 (13:48 -0700)]
Rollup merge of #65552 - JohnTitor:use-bitwise-not, r=Dylan-DPC

Clarify diagnostics when using `~` as a unary op

It seems we prefer `bitwise not` to `bitwise negation`.
Fixes #57239

r? @estebank

4 years agoRollup merge of #65549 - t-rapp:tr-wrapping-rotate-docs, r=jonas-schievink
Tyler Mandry [Fri, 18 Oct 2019 20:48:37 +0000 (13:48 -0700)]
Rollup merge of #65549 - t-rapp:tr-wrapping-rotate-docs, r=jonas-schievink

Fix left/right shift typo in wrapping rotate docs

This makes the note similar to the one found on rotate functions for primitive types like i32/u32.

4 years agoRollup merge of #65540 - guanqun:extend-t-macro, r=nikomatsakis
Tyler Mandry [Fri, 18 Oct 2019 20:48:35 +0000 (13:48 -0700)]
Rollup merge of #65540 - guanqun:extend-t-macro, r=nikomatsakis

show up some extra info when t!() fails

4 years agoRollup merge of #65535 - eddyb:sliced-predicates, r=nikomatsakis
Tyler Mandry [Fri, 18 Oct 2019 20:48:34 +0000 (13:48 -0700)]
Rollup merge of #65535 - eddyb:sliced-predicates, r=nikomatsakis

rustc: arena-allocate the slice in `ty::GenericsPredicate`, not the whole struct.

While rebasing #59789 I noticed we can do this now. However, it doesn't help much without changing `inferred_outlives_of` to the same type, which I might try next.

4 years agoRollup merge of #65532 - tshepang:shorten-intro, r=Dylan-DPC
Tyler Mandry [Fri, 18 Oct 2019 20:48:32 +0000 (13:48 -0700)]
Rollup merge of #65532 - tshepang:shorten-intro, r=Dylan-DPC

doc: make BitSet intro more short

Also, add a link to the growable type

4 years agoRollup merge of #65513 - RalfJung:fmt, r=Mark-Simulacrum
Tyler Mandry [Fri, 18 Oct 2019 20:48:31 +0000 (13:48 -0700)]
Rollup merge of #65513 - RalfJung:fmt, r=Mark-Simulacrum

reorder fmt docs for more clarity

I adjusted these docs in https://github.com/rust-lang/rust/pull/65332 but wasn't happy with the result when seeing it in rustdoc. So this reorders the subsections in the "Formatting Parameters" section to be more logical (subsections that reference `width` come after the `width` subsection) and they also all have examples now.

4 years agoRollup merge of #65511 - Xanewok:sa-nest-in-impls, r=pnkfelix
Tyler Mandry [Fri, 18 Oct 2019 20:48:29 +0000 (13:48 -0700)]
Rollup merge of #65511 - Xanewok:sa-nest-in-impls, r=pnkfelix

save-analysis: Nest tables when processing impl block definitions

Similar to #65353 (which this PR should've been a part of), however in this case we didn't previously nest the tables when processing trait paths in impl block declarations.

Closes #65411

4 years agoRollup merge of #65508 - rust-lang:llvm-icebreakers-ping-1, r=simulacrum
Tyler Mandry [Fri, 18 Oct 2019 20:48:28 +0000 (13:48 -0700)]
Rollup merge of #65508 - rust-lang:llvm-icebreakers-ping-1, r=simulacrum

add option to ping llvm ice-breakers to triagebot

4 years agoRollup merge of #65498 - SimonSapin:plugin-help, r=Centril
Tyler Mandry [Fri, 18 Oct 2019 20:48:26 +0000 (13:48 -0700)]
Rollup merge of #65498 - SimonSapin:plugin-help, r=Centril

Plugins deprecation: don’t suggest simply removing the attribute

Building Servo with a recent Nightly produces:

```rust
warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/issues/29597
  --> components/script/lib.rs:14:1
   |
14 | #![plugin(script_plugins)]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute
   |
   = note: `#[warn(deprecated)]` on by default
```

First, linking to https://github.com/rust-lang/rust/issues/29597 is not ideal since there is pretty much no discussion there of the deprecation and what can be used instead. This PR changes the link to the deprecation PR which does have more discussion.

Second, the “remove this attribute” suggestion is rather unhelpful. Just because a feature is deprecated doesn’t mean that simply removing its use without a replacement is acceptable.

In the case of custom lint, there is no replacement available. Prefixing a message with “help:” when telling users that they’re screwed honestly feels disrespectful.

This PR also changes the message to be more factual.

4 years agoRollup merge of #65496 - tspiteri:euc-div-panic, r=KodrAus
Tyler Mandry [Fri, 18 Oct 2019 20:48:25 +0000 (13:48 -0700)]
Rollup merge of #65496 - tspiteri:euc-div-panic, r=KodrAus

properly document panics in div_euclid and rem_euclid

For signed numbers, document that `div_euclid` and `rem_euclid` panic not just when `rhs` is 0, but also when the division overflows.

For unsigned numbers, document that `div_euclid` and `rem_euclid` panic when `rhs` is 0.

4 years agoRollup merge of #65493 - GuillaumeGomez:long-err-explanation-E0584, r=kinnison
Tyler Mandry [Fri, 18 Oct 2019 20:48:24 +0000 (13:48 -0700)]
Rollup merge of #65493 - GuillaumeGomez:long-err-explanation-E0584, r=kinnison

Add long error explanation for E0584

Part of #61137.

r? @kinnison

4 years agoRollup merge of #65480 - nnethercote:rm-iterate_until_fixed_size, r=nikomatsakis
Tyler Mandry [Fri, 18 Oct 2019 20:48:22 +0000 (13:48 -0700)]
Rollup merge of #65480 - nnethercote:rm-iterate_until_fixed_size, r=nikomatsakis

Speed up `LexicalResolve::expansion()`

A couple of improvements that speed up `unicode_normalization` by about 4%. The first commit was enabled by the improvements to `BitSet` iteration in #65425.

r? @nikomatsakis

4 years agoRollup merge of #65472 - Zoxc:sharded-dep-graph-2, r=nikomatsakis
Tyler Mandry [Fri, 18 Oct 2019 20:48:20 +0000 (13:48 -0700)]
Rollup merge of #65472 - Zoxc:sharded-dep-graph-2, r=nikomatsakis

Use a sharded dep node to dep node index map

Split out from https://github.com/rust-lang/rust/pull/61845 and based on https://github.com/rust-lang/rust/pull/63756.

r? @nikomatsakis

4 years agoRollup merge of #65455 - nnethercote:avoid-unnecessary-TokenTree-to-TokenStream-conve...
Tyler Mandry [Fri, 18 Oct 2019 20:48:18 +0000 (13:48 -0700)]
Rollup merge of #65455 - nnethercote:avoid-unnecessary-TokenTree-to-TokenStream-conversions, r=petrochenkov

Avoid unnecessary `TokenTree` to `TokenStream` conversions

A `TokenStream` contains any number of `TokenTrees`. Therefore, a single `TokenTree` can be promoted to a `TokenStream`. But doing so costs two allocations: one for the single-element `Vec`, and one for the `Lrc`. (An `IsJoint` value also must be added; the default is `NonJoint`.)

The current code converts `TokenTree`s to `TokenStream`s unnecessarily in a few places. This PR removes some of these unnecessary conversions, both simplifying the code and speeding it up.

r? @petrochenkov

4 years agoRollup merge of #65364 - XiangQingW:master, r=estebank
Tyler Mandry [Fri, 18 Oct 2019 20:48:16 +0000 (13:48 -0700)]
Rollup merge of #65364 - XiangQingW:master, r=estebank

Collect occurrences of empty blocks for mismatched braces diagnostic

Fix #63904

4 years agoRollup merge of #65334 - GuillaumeGomez:long-err-explanation-E0575, r=kinnison
Tyler Mandry [Fri, 18 Oct 2019 20:48:14 +0000 (13:48 -0700)]
Rollup merge of #65334 - GuillaumeGomez:long-err-explanation-E0575, r=kinnison

Add long error explanation for E0575

Part of #61137.

4 years agoRollup merge of #65201 - tmiasko:no-bindings, r=rkruppe
Tyler Mandry [Fri, 18 Oct 2019 20:48:13 +0000 (13:48 -0700)]
Rollup merge of #65201 - tmiasko:no-bindings, r=rkruppe

Disable Go and OCaml bindings when building LLVM

Instead of instaling OCaml bindings in a location where installation
will not fail, don't build them in the first place.

4 years agoRollup merge of #65197 - spastorino:place-mut-visitor-adjusts2, r=oli-obk
Tyler Mandry [Fri, 18 Oct 2019 20:48:11 +0000 (13:48 -0700)]
Rollup merge of #65197 - spastorino:place-mut-visitor-adjusts2, r=oli-obk

Prepare `MutVisitor`s to handle interned projections

The following are all the files where mir's `MutVisitor` is implemented. The `-` there stands for no changes, `visit_place` wasn't making any change on `Place`s. `x` stands for this file was changed to make `visit_place` do whatever it was doing with the base but avoid modifying the projection, instead just create a new one and assign to it.

```
[-] src/librustc_mir/transform/no_landing_pads.rs
[x] src/librustc_mir/transform/promote_consts.rs
[x] src/librustc_mir/transform/generator.rs
[x] src/librustc_mir/transform/erase_regions.rs
[-] src/librustc_mir/transform/instcombine.rs
[x] src/librustc_mir/transform/inline.rs
[x] src/librustc_mir/transform/simplify.rs
[x] src/librustc_mir/util/def_use.rs
[-] src/librustc_mir/transform/const_prop.rs
[-] src/librustc_mir/transform/cleanup_post_borrowck.rs
[x] src/librustc_mir/borrow_check/nll/renumber.rs
[-] src/librustc_mir/transform/copy_prop.rs
```

There is some code repetition, just created the PR so we can start discussing it.

/cc @oli-obk @nikomatsakis

4 years agoRollup merge of #65016 - lzutao:inline-mem-constfn, r=oli-obk
Tyler Mandry [Fri, 18 Oct 2019 20:48:10 +0000 (13:48 -0700)]
Rollup merge of #65016 - lzutao:inline-mem-constfn, r=oli-obk

Always inline `mem::{size_of,align_of}` in debug builds

Those two are const fn and do not have any arguments. Inlining
helps reducing generated code size in debug builds.

See also #64996.

4 years agoreview comments
Esteban Küber [Fri, 18 Oct 2019 20:00:14 +0000 (13:00 -0700)]
review comments

4 years agoreview comment: span bug label
Esteban Küber [Fri, 18 Oct 2019 15:38:08 +0000 (08:38 -0700)]
review comment: span bug label