]> git.lizzy.rs Git - rust.git/log
rust.git
7 years agoRollup merge of #40704 - omtcyfz:clang_version_bump, r=alexcrichton
Corey Farwell [Wed, 22 Mar 2017 23:30:31 +0000 (19:30 -0400)]
Rollup merge of #40704 - omtcyfz:clang_version_bump, r=alexcrichton

Nit: LLVM & Clang latest version is 4.0

Small nit: since latest Clang version is 4.0 it's nice to reflect this in the documentation.

Also, I couldn't find anything, but there might be any hard-coded check that Clang version matches "3.X" anywhere in the build system; if there is one, it'd be great to bump that one too.

7 years agoRollup merge of #40692 - SamWhited:consistent_str_docs_punctuation, r=bstrie
Corey Farwell [Wed, 22 Mar 2017 23:30:30 +0000 (19:30 -0400)]
Rollup merge of #40692 - SamWhited:consistent_str_docs_punctuation, r=bstrie

str: Make docs consistently punctuated

Every so slightly pointless one character PR, but this was driving me nuts while reading the docs a moment ago (all the [other public structs](https://doc.rust-lang.org/std/str/index.html#structs) have descriptions that end in a full-stop).

7 years agoRollup merge of #40690 - GuillaumeGomez:fix-iter-docs, r=frewsxcv
Corey Farwell [Wed, 22 Mar 2017 23:30:29 +0000 (19:30 -0400)]
Rollup merge of #40690 - GuillaumeGomez:fix-iter-docs, r=frewsxcv

Fix invalid linking in iter docs

r? @rust-lang/docs

7 years agoRollup merge of #40689 - GuillaumeGomez:rustdoc-associated-type-formatting, r=frewsxcv
Corey Farwell [Wed, 22 Mar 2017 23:30:28 +0000 (19:30 -0400)]
Rollup merge of #40689 - GuillaumeGomez:rustdoc-associated-type-formatting, r=frewsxcv

Add whitespace around "=" in assoc items

Part of #40641.

r? @rust-lang/docs

Before:

<img width="1440" alt="screen shot 2017-03-20 at 22 42 34" src="https://cloud.githubusercontent.com/assets/3050060/24123102/89181d8c-0dbe-11e7-897c-841497cf7001.png">

After:

<img width="1440" alt="screen shot 2017-03-20 at 22 42 36" src="https://cloud.githubusercontent.com/assets/3050060/24123118/8dec176e-0dbe-11e7-9759-cabbd062a4c2.png">

7 years agoRollup merge of #40619 - stjepang:unstable-book-sort-unstable, r=frewsxcv
Corey Farwell [Wed, 22 Mar 2017 23:30:27 +0000 (19:30 -0400)]
Rollup merge of #40619 - stjepang:unstable-book-sort-unstable, r=frewsxcv

Add docs for sort_unstable to unstable book

Tracking issue for the feature: #40585

r? @steveklabnik

7 years agoRollup merge of #40578 - michaelwoerister:shorter-compiletest-stamps, r=alexcrichton
Corey Farwell [Wed, 22 Mar 2017 23:30:26 +0000 (19:30 -0400)]
Rollup merge of #40578 - michaelwoerister:shorter-compiletest-stamps, r=alexcrichton

Make the filenames of .stamp files generated by compiletest shorter

Otherwise we run into filename length limitations on some file systems. See https://bugs.launchpad.net/ecryptfs/+bug/344878 for an example where we only can have ~145 characters for filenames.

r? @alexcrichton

7 years agoRollup merge of #40548 - alexcrichton:appveyor-ninja, r=brson
Corey Farwell [Wed, 22 Mar 2017 23:30:25 +0000 (19:30 -0400)]
Rollup merge of #40548 - alexcrichton:appveyor-ninja, r=brson

appveyor: Use Ninja to build LLVM on MinGW

I have a suspicion that MinGW's make is the cause of #40546 rather than anything
else, but that's purely a suspicion without any facts to back it up. In any case
we'll eventually be moving the MSVC build over to Ninja in order to leverage
sccache regardless, so this commit simply jumpstarts that process by downloading
Ninja for use by MinGW anyway.

I'm not sure if this closes #40546 for real, but this is my current best shot at
closing it out, so...

Closes #40546

7 years agoRollup merge of #40523 - durka:patch-38, r=petrochenkov
Corey Farwell [Wed, 22 Mar 2017 23:30:24 +0000 (19:30 -0400)]
Rollup merge of #40523 - durka:patch-38, r=petrochenkov

add test for nested macro def (#31946)

Adds a test for issue #31946 which was fixed in 1.12.0.

Closes #31946.

7 years agoRollup merge of #40509 - jseyfried:duplicate_check_macro_exports, r=nrc
Corey Farwell [Wed, 22 Mar 2017 23:30:23 +0000 (19:30 -0400)]
Rollup merge of #40509 - jseyfried:duplicate_check_macro_exports, r=nrc

Forbid conflicts between macros 1.0 exports and macros 2.0 exports

This PR forbids for conflicts between `#[macro_export]`/`#[macro_reexport]` macro exports and `pub use` macro exports. For example,
```rust
// crate A:
pub use macros::foo;
//^ This is allowed today, will be forbidden by this PR.

// crate B:
extern crate A; // This triggers a confusing error today.
use A::foo; // This could refer to refer to either macro export in crate A.
```

r? @nrc

7 years agoappveyor: Use Ninja to build LLVM on MinGW
Alex Crichton [Wed, 15 Mar 2017 14:35:35 +0000 (07:35 -0700)]
appveyor: Use Ninja to build LLVM on MinGW

I have a suspicion that MinGW's make is the cause of #40546 rather than anything
else, but that's purely a suspicion without any facts to back it up. In any case
we'll eventually be moving the MSVC build over to Ninja in order to leverage
sccache regardless, so this commit simply jumpstarts that process by downloading
Ninja for use by MinGW anyway.

I'm not sure if this closes #40546 for real, but this is my current best shot at
closing it out, so...

Closes #40546

7 years agoAuto merge of #40043 - petrochenkov:objpars, r=nikomatsakis
bors [Wed, 22 Mar 2017 02:00:16 +0000 (02:00 +0000)]
Auto merge of #40043 - petrochenkov:objpars, r=nikomatsakis

Refactor parsing of trait object types

Bugs are fixed and code is cleaned up.

User visible changes:
- `ty` matcher in macros accepts trait object types like `Write + Send` (https://github.com/rust-lang/rust/issues/39080)
- Buggy priority of `+` in trait object types starting with `for` is fixed (https://github.com/rust-lang/rust/issues/39317). `&for<'a> Trait<'a> + Send` is now parsed as `(&for<'a> Trait<'a>) + Send` and requires parens `&(for<'a> Trait<'a> + Send)`. For comparison, `&Send + for<'a> Trait<'a>` was parsed like this since [Nov 27, 2014](https://github.com/rust-lang/rust/pull/19298).
- Trailing `+`s are supported in trait objects, like in other bounds.
- Better error reporting for trait objects starting with `?Sized`.

Fixes https://github.com/rust-lang/rust/issues/39080
Fixes https://github.com/rust-lang/rust/issues/39317 [breaking-change]
Closes https://github.com/rust-lang/rust/issues/39298
cc https://github.com/rust-lang/rust/issues/39085 (fixed, then reverted https://github.com/rust-lang/rust/pull/40043#issuecomment-286570653)
cc https://github.com/rust-lang/rust/issues/39318 (fixed, then reverted https://github.com/rust-lang/rust/pull/40043#issuecomment-284493890)

r? @nikomatsakis

7 years agoAuto merge of #40664 - jseyfried:fix_derive_bug, r=nrc
bors [Tue, 21 Mar 2017 23:11:56 +0000 (23:11 +0000)]
Auto merge of #40664 - jseyfried:fix_derive_bug, r=nrc

macros: fix bug in legacy custom derive processing

Fixes #40663.
r? @nrc

7 years agoAdd docs for sort_unstable to unstable book
Stjepan Glavina [Fri, 17 Mar 2017 22:21:21 +0000 (23:21 +0100)]
Add docs for sort_unstable to unstable book

7 years agoFix bug in legacy `#[derive]` processing logic.
Jeffrey Seyfried [Mon, 20 Mar 2017 05:03:10 +0000 (05:03 +0000)]
Fix bug in legacy `#[derive]` processing logic.

7 years agoMake the filenames of .stamp files generated by compiletest shorter.
Michael Woerister [Mon, 20 Mar 2017 11:04:00 +0000 (12:04 +0100)]
Make the filenames of .stamp files generated by compiletest shorter.

Otherwise we run into filename length limitations on some file
systems (especially ecryptfs).

7 years agoadd test for nested macro def (#31946)
Alex Burka [Tue, 14 Mar 2017 18:19:59 +0000 (14:19 -0400)]
add test for nested macro def (#31946)

Adds a test for issue #31946 which was fixed a while ago.

7 years agoNit: LLVM & Clang latest version is 4.0
omtcyfz [Tue, 21 Mar 2017 16:26:19 +0000 (19:26 +0300)]
Nit: LLVM & Clang latest version is 4.0

7 years agoCheck for conflicts between macros 1.0 exports (`#[macro_export]`, `#[macro_reexport]`)
Jeffrey Seyfried [Tue, 14 Mar 2017 05:16:54 +0000 (05:16 +0000)]
Check for conflicts between macros 1.0 exports (`#[macro_export]`, `#[macro_reexport]`)
and macros 2.0 exports (`pub use` macro re-exports and `pub macro` (once implemented)
at the crate root.

7 years agoAdd whitespace around "=" in assoc items
Guillaume Gomez [Mon, 20 Mar 2017 21:41:19 +0000 (22:41 +0100)]
Add whitespace around "=" in assoc items

7 years agoFix invalid linking in iter docs
Guillaume Gomez [Mon, 20 Mar 2017 21:49:22 +0000 (22:49 +0100)]
Fix invalid linking in iter docs

7 years agostr: Make docs consistently punctuated
Sam Whited [Tue, 21 Mar 2017 01:01:18 +0000 (20:01 -0500)]
str: Make docs consistently punctuated

7 years agoRefactor parsing of trait object types
Vadim Petrochenkov [Thu, 16 Mar 2017 21:47:32 +0000 (00:47 +0300)]
Refactor parsing of trait object types

7 years agoAuto merge of #40601 - stjepang:sort-unstable, r=alexcrichton
bors [Tue, 21 Mar 2017 19:50:17 +0000 (19:50 +0000)]
Auto merge of #40601 - stjepang:sort-unstable, r=alexcrichton

Implement feature sort_unstable

Tracking issue for the feature: #40585

This is essentially integration of [pdqsort](https://github.com/stjepang/pdqsort) into libcore.

There's plenty of unsafe blocks to review. The heart of pdqsort is `fn partition_in_blocks` and is probably the most challenging function to understand. It requires some patience, but let me know if you find it too difficult - comments could always be improved.

#### Changes

* Added `sort_unstable` feature.
* Tweaked insertion sort constants for stable sort. Sorting integers is now up to 5% slower, but sorting big elements is much faster (in particular, `sort_large_big_random` is 35% faster). The old constants were highly optimized for sorting integers, so overall the configuration is more balanced now. A minor regression in case of integers is forgivable as we recently had performance improvements (#39538) that completely make up for it.
* Removed some uninteresting sort benchmarks.
* Added a new sort benchmark for string sorting.

#### Benchmarks

The following table compares stable and unstable sorting:
```
name                                 stable ns/iter        unstable ns/iter     diff ns/iter   diff %
slice::sort_large_ascending          7,240 (11049 MB/s)    7,380 (10840 MB/s)            140    1.93%
slice::sort_large_big_random         1,454,138 (880 MB/s)  910,269 (1406 MB/s)      -543,869  -37.40%
slice::sort_large_descending         13,450 (5947 MB/s)    10,895 (7342 MB/s)         -2,555  -19.00%
slice::sort_large_mostly_ascending   204,041 (392 MB/s)    88,639 (902 MB/s)        -115,402  -56.56%
slice::sort_large_mostly_descending  217,109 (368 MB/s)    99,009 (808 MB/s)        -118,100  -54.40%
slice::sort_large_random             477,257 (167 MB/s)    346,028 (231 MB/s)       -131,229  -27.50%
slice::sort_large_random_expensive   21,670,537 (3 MB/s)   22,710,238 (3 MB/s)     1,039,701    4.80%
slice::sort_large_strings            6,284,499 (38 MB/s)   6,410,896 (37 MB/s)       126,397    2.01%
slice::sort_medium_random            3,515 (227 MB/s)      3,327 (240 MB/s)             -188   -5.35%
slice::sort_small_ascending          42 (1904 MB/s)        41 (1951 MB/s)                 -1   -2.38%
slice::sort_small_big_random         503 (2544 MB/s)       514 (2490 MB/s)                11    2.19%
slice::sort_small_descending         72 (1111 MB/s)        69 (1159 MB/s)                 -3   -4.17%
slice::sort_small_random             369 (216 MB/s)        367 (217 MB/s)                 -2   -0.54%
```

Interesting cases:
* Expensive comparison function and string sorting - it's a really close race, but timsort performs a slightly smaller number of comparisons. This is a natural difference of bottom-up merging versus top-down partitioning.
* `large_descending` - unstable sort is faster, but both sorts should have equivalent performance. Both just check whether the slice is descending and if so, they reverse it. I blame LLVM for the discrepancy.

r? @alexcrichton

7 years agoUnit test heapsort
Stjepan Glavina [Tue, 21 Mar 2017 01:38:03 +0000 (02:38 +0100)]
Unit test heapsort

7 years agoRemove stabilized features
Stjepan Glavina [Mon, 20 Mar 2017 15:50:07 +0000 (16:50 +0100)]
Remove stabilized features

7 years agoUse partial insertion sort
Stjepan Glavina [Sun, 19 Mar 2017 20:40:02 +0000 (21:40 +0100)]
Use partial insertion sort

7 years agoTweak the constants a bit
Stjepan Glavina [Sat, 18 Mar 2017 19:24:44 +0000 (20:24 +0100)]
Tweak the constants a bit

7 years agoFix grammar
Stjepan Glavina [Sat, 18 Mar 2017 14:42:07 +0000 (15:42 +0100)]
Fix grammar

7 years agoFaster sort_unstable on presorted inputs
Stjepan Glavina [Sat, 18 Mar 2017 12:21:56 +0000 (13:21 +0100)]
Faster sort_unstable on presorted inputs

7 years agoFix a doctest
Stjepan Glavina [Fri, 17 Mar 2017 22:17:59 +0000 (23:17 +0100)]
Fix a doctest

7 years agoAddress Alex's PR comments
Stjepan Glavina [Fri, 17 Mar 2017 21:51:59 +0000 (22:51 +0100)]
Address Alex's PR comments

7 years agoImplement feature sort_unstable
Stjepan Glavina [Fri, 17 Mar 2017 14:05:44 +0000 (15:05 +0100)]
Implement feature sort_unstable

7 years agoAuto merge of #40693 - frewsxcv:rollup, r=frewsxcv
bors [Tue, 21 Mar 2017 17:02:38 +0000 (17:02 +0000)]
Auto merge of #40693 - frewsxcv:rollup, r=frewsxcv

Rollup of 10 pull requests

- Successful merges: #40229, #40312, #40332, #40502, #40556, #40576, #40667, #40671, #40681, #40685
- Failed merges:

7 years agoAuto merge of #40686 - alexcrichton:less-logging, r=brson
bors [Tue, 21 Mar 2017 14:35:18 +0000 (14:35 +0000)]
Auto merge of #40686 - alexcrichton:less-logging, r=brson

travis: Don't set `RUST_LOG` globally

I have a suspicion that this caused a large regression in cycle times by forcing
the compiler to perform more checks on every `debug!` statement, so let's test
this out by removing the `RUST_LOG` env var globally.

This regression in cycle time was witnessed between [two] [builds] where the
[PR] in question didn't do much suspicious. Judging by how the stage0 times
*also* regressed though then this is my best guess.

[two]: https://travis-ci.org/rust-lang/rust/builds/210149932
[builds]: https://travis-ci.org/rust-lang/rust/builds/210179995
[PR]: https://github.com/rust-lang/rust/pull/40446

7 years agoRollup merge of #40685 - portal-chan:patch-1, r=eddyb
Corey Farwell [Tue, 21 Mar 2017 03:45:05 +0000 (23:45 -0400)]
Rollup merge of #40685 - portal-chan:patch-1, r=eddyb

Add missing associated type Item to Iterator

7 years agoRollup merge of #40681 - est31:nightlies_txt_was_removed, r=alexcrichton
Corey Farwell [Tue, 21 Mar 2017 03:45:03 +0000 (23:45 -0400)]
Rollup merge of #40681 - est31:nightlies_txt_was_removed, r=alexcrichton

config.toml.example: nightlies.txt got removed

Instead, stage0.txt got introduced.

See also commit 02538d463a350f5c3658f7aabefca16eb599d31c

7 years agoRollup merge of #40671 - GuillaumeGomez:options-urls, r=frewsxcv
Corey Farwell [Tue, 21 Mar 2017 03:45:02 +0000 (23:45 -0400)]
Rollup merge of #40671 - GuillaumeGomez:options-urls, r=frewsxcv

Add missing urls in Option enum

r? @rust-lang/docs

7 years agoRollup merge of #40667 - DaseinPhaos:patch-4, r=GuillaumeGomez
Corey Farwell [Tue, 21 Mar 2017 03:45:01 +0000 (23:45 -0400)]
Rollup merge of #40667 - DaseinPhaos:patch-4, r=GuillaumeGomez

Fix typo in `ptr` doc

`sizeof` should be `size_of`

7 years agoRollup merge of #40576 - dwrensha:mir-terminator-kind-doc-typo, r=nikomatsakis
Corey Farwell [Tue, 21 Mar 2017 03:45:00 +0000 (23:45 -0400)]
Rollup merge of #40576 - dwrensha:mir-terminator-kind-doc-typo, r=nikomatsakis

fix innacuracy in mir TerminatorKind::SwitchInt docs

Each index of `values` corresponds to an index of `targets`, and `targets` additionally has a "default case" element at its end, so `targets.len() == values.len() + 1`, not the other way around. For example, [here](https://github.com/rust-lang/rust/blob/0aeb9c12979e6da753701a798d04105b6b1a8c28/src/librustc/mir/mod.rs#L549-L550) is a concrete instance of `SwitchInt` being constructed with `targets.len() == 2` and `values.len() == 1`.

7 years agoRollup merge of #40556 - cramertj:stabilize-pub-restricted, r=petrochenkov
Corey Farwell [Tue, 21 Mar 2017 03:44:59 +0000 (23:44 -0400)]
Rollup merge of #40556 - cramertj:stabilize-pub-restricted, r=petrochenkov

Stabilize pub(restricted)

Fix https://github.com/rust-lang/rust/issues/32409

7 years agoRollup merge of #40502 - jdhorwitz:master, r=steveklabnik
Corey Farwell [Tue, 21 Mar 2017 03:44:58 +0000 (23:44 -0400)]
Rollup merge of #40502 - jdhorwitz:master, r=steveklabnik

clean up visuals on error index #40425

r? @steveklabnik

Knocking these down to a smaller header made it look quite nice in my opinion.

7 years agoRollup merge of #40332 - steveklabnik:extract-book, r=alexcrichton
Corey Farwell [Tue, 21 Mar 2017 03:44:57 +0000 (23:44 -0400)]
Rollup merge of #40332 - steveklabnik:extract-book, r=alexcrichton

Extract book into a submodule

Part of https://github.com/rust-lang/rust/issues/39588

We probably don't want to land this till after the beta branches on friday, but would still ❤️ a review from @alexcrichton , since I am a rustbuild noob.

This pr:

1. removes the book
2. adds it back in as a submodule
3. the submodule includes both the old book and the new book
4. it also includes an index page explaining the difference in editions
5. it also includes redirect pages for the old book URLs.
6. so we build all that stuff too.

r? @alexcrichton

7 years agoRollup merge of #40312 - jdhorwitz:papercut, r=steveklabnik
Corey Farwell [Tue, 21 Mar 2017 03:44:56 +0000 (23:44 -0400)]
Rollup merge of #40312 - jdhorwitz:papercut, r=steveklabnik

Papercut

r? @steveklabnik

7 years agoRollup merge of #40229 - cramertj:break-to-blocks, r=nikomatsakis
Corey Farwell [Tue, 21 Mar 2017 03:44:55 +0000 (23:44 -0400)]
Rollup merge of #40229 - cramertj:break-to-blocks, r=nikomatsakis

Implement `?` in catch expressions

Builds on #39921. Final part of #39849.

r? @nikomatsakis

7 years agotravis: Don't set `RUST_LOG` globally
Alex Crichton [Mon, 20 Mar 2017 21:29:14 +0000 (14:29 -0700)]
travis: Don't set `RUST_LOG` globally

I have a suspicion that this caused a large regression in cycle times by forcing
the compiler to perform more checks on every `debug!` statement, so let's test
this out by removing the `RUST_LOG` env var globally.

This regression in cycle time was witnessed between [two] [builds] where the
[PR] in question didn't do much suspicious. Judging by how the stage0 times
*also* regressed though then this is my best guess.

[two]: https://travis-ci.org/rust-lang/rust/builds/210149932
[builds]: https://travis-ci.org/rust-lang/rust/builds/210179995
[PR]: https://github.com/rust-lang/rust/pull/40446

7 years agoAdd missing associated type Item to Iterator
portal [Mon, 20 Mar 2017 21:29:04 +0000 (23:29 +0200)]
Add missing associated type Item to Iterator

7 years agoconfig.toml.example: nightlies.txt got removed
est31 [Mon, 20 Mar 2017 18:28:04 +0000 (19:28 +0100)]
config.toml.example: nightlies.txt got removed

Instead, stage0.txt got introduced.

See also commit 02538d463a350f5c3658f7aabefca16eb599d31c

7 years agoAuto merge of #39628 - arielb1:shimmir, r=eddyb
bors [Mon, 20 Mar 2017 15:58:10 +0000 (15:58 +0000)]
Auto merge of #39628 - arielb1:shimmir, r=eddyb

Translate shims using MIR

This removes one large remaining part of old trans.

7 years agofix trailing whitespace
steveklabnik [Fri, 17 Mar 2017 13:25:29 +0000 (09:25 -0400)]
fix trailing whitespace

7 years agoexempt hbs from linkchecker
steveklabnik [Wed, 15 Mar 2017 21:03:50 +0000 (17:03 -0400)]
exempt hbs from linkchecker

7 years agoFix up various links
steveklabnik [Wed, 15 Mar 2017 16:13:55 +0000 (12:13 -0400)]
Fix up various links

The unstable book, libstd, libcore, and liballoc all needed some
adjustment.

7 years agoUpdate book and reference submodules
steveklabnik [Tue, 14 Mar 2017 15:01:24 +0000 (11:01 -0400)]
Update book and reference submodules

Some links needed adjustment to support this new scheme.

7 years agoskip nostarch directory
steveklabnik [Mon, 13 Mar 2017 20:41:31 +0000 (16:41 -0400)]
skip nostarch directory

This is for coordinating with our publishers; we don't ever want to test it.

7 years agofix whitespace
steveklabnik [Tue, 7 Mar 2017 22:19:25 +0000 (17:19 -0500)]
fix whitespace

7 years agoFix up some issues.
steveklabnik [Tue, 7 Mar 2017 21:29:05 +0000 (16:29 -0500)]
Fix up some issues.

Becuase I had run a `x.py doc` before doing this work, I had
accidentally relied on some files existing in places that they didn't
need to be.

7 years agoRender redirect pages.
steveklabnik [Tue, 7 Mar 2017 21:07:55 +0000 (16:07 -0500)]
Render redirect pages.

These pages will help people who have links to the older book.

7 years agobuild book index
steveklabnik [Tue, 7 Mar 2017 20:31:41 +0000 (15:31 -0500)]
build book index

7 years agobuild both editions of the book
steveklabnik [Tue, 7 Mar 2017 19:49:50 +0000 (14:49 -0500)]
build both editions of the book

7 years agoImport submodule for the book.
steveklabnik [Tue, 7 Mar 2017 19:43:27 +0000 (14:43 -0500)]
Import submodule for the book.

It's all in the external repository now.

7 years agoRemove the existing book
steveklabnik [Tue, 7 Mar 2017 19:42:33 +0000 (14:42 -0500)]
Remove the existing book

We'll bring this back in with the next commit, as a submodule.

7 years agoAdd missing urls in Option enum
Guillaume Gomez [Mon, 20 Mar 2017 14:06:05 +0000 (15:06 +0100)]
Add missing urls in Option enum

7 years agoFix typo in `ptr` doc
Luxko [Mon, 20 Mar 2017 09:17:10 +0000 (17:17 +0800)]
Fix typo in `ptr` doc

`sizeof` should be `size_of`

7 years agoAuto merge of #40659 - frewsxcv:rollup, r=frewsxcv
bors [Mon, 20 Mar 2017 08:31:16 +0000 (08:31 +0000)]
Auto merge of #40659 - frewsxcv:rollup, r=frewsxcv

Rollup of 9 pull requests

- Successful merges: #40241, #40281, #40398, #40521, #40532, #40554, #40566, #40581, #40587
- Failed merges:

7 years agoAuto merge of #40281 - jimmycuadra:try-from-from-str, r=aturon
bors [Mon, 20 Mar 2017 05:36:36 +0000 (05:36 +0000)]
Auto merge of #40281 - jimmycuadra:try-from-from-str, r=aturon

Rename TryFrom's associated type and implement str::parse using TryFrom.

Per discussion on the tracking issue, naming `TryFrom`'s associated type `Error` is generally more consistent with similar traits in the Rust ecosystem, and what people seem to assume it should be called. It also helps disambiguate from `Result::Err`, the most common "Err".

See https://github.com/rust-lang/rust/issues/33417#issuecomment-269108968.

`TryFrom<&str>` and `FromStr` are equivalent, so have the latter provide the former to ensure that. Using `TryFrom` in the implementation of `str::parse` means types that implement either trait can use it. When we're ready to stabilize `TryFrom`, we should update `FromStr` to
suggest implementing `TryFrom<&str>` instead for new code.

See https://github.com/rust-lang/rust/issues/33417#issuecomment-277175994
and https://github.com/rust-lang/rust/issues/33417#issuecomment-277253827.

Refs #33417.

7 years agoRollup merge of #40587 - GuillaumeGomez:rustdoc-const-display, r=frewsxcv
Corey Farwell [Mon, 20 Mar 2017 00:51:13 +0000 (20:51 -0400)]
Rollup merge of #40587 - GuillaumeGomez:rustdoc-const-display, r=frewsxcv

Fix invalid debug display for associated consts

Fixes #40568.

r? @rust-lang/docs

cc @SergioBenitez

7 years agoRollup merge of #40581 - TimNN:di-global-40, r=alexcrichton
Corey Farwell [Mon, 20 Mar 2017 00:51:12 +0000 (20:51 -0400)]
Rollup merge of #40581 - TimNN:di-global-40, r=alexcrichton

[LLVM 4.0] Add missing debuginfo metadata to globals

Fixes #40580.

cc @rkruppe
cc #40123

7 years agoRollup merge of #40566 - clarcharr:never_error, r=sfackler
Corey Farwell [Mon, 20 Mar 2017 00:51:11 +0000 (20:51 -0400)]
Rollup merge of #40566 - clarcharr:never_error, r=sfackler

Implement std::error::Error for !.

7 years agoRollup merge of #40554 - nrc:rls-data, r=alexcrichton
Corey Farwell [Mon, 20 Mar 2017 00:51:10 +0000 (20:51 -0400)]
Rollup merge of #40554 - nrc:rls-data, r=alexcrichton

Use rls-data crate

This basically pulls out a bunch of data structures used by save-analysis for serialization into an external crate, and pulls that crate in using Rustbuild. The RLS can then share these data structures with the compiler which in some cases will allow more efficient communication between the compiler and the RLS (i.e., without serialisation).

Along the way, I have to pull in rls-span, which is the RLS's way of defining spans (more type-safe than the compiler's built-in way). This is basically just to convert from compiler spans to RLS spans.

I also pull in the crates.io version of rustc-serialize, which is a bit annoying, but seems to be the only way to have serialisable data in an external crate. To make this work, all of the save-analysis crate has to use this version too (cc #40527).

Finally I pull in a line from #40347 to make the unstable crate checking stuff working.

There are a lot of changes to save-analysis but they are all mechanical and trivial - changing from using `From` to `Into` (because of orphan rules) being the main thing.

r? @alexcrichton

7 years agoRollup merge of #40532 - jseyfried:improve_tokenstream_quoter, r=nrc
Corey Farwell [Mon, 20 Mar 2017 00:51:09 +0000 (20:51 -0400)]
Rollup merge of #40532 - jseyfried:improve_tokenstream_quoter, r=nrc

macros: improve the `TokenStream` quoter

This PR
 - renames the `TokenStream` quoter from `qquote!` to `quote!`,
 - uses `$` instead of `unquote` (e.g. `let toks: TokenStream = ...; quote!([$toks])`),
 - allows unquoting `Token`s as well as `TokenTree`s and `TokenStream`s (fixes #39746), and
 - to preserve syntactic space, requires that `$` be followed by
   - a single identifier to unquote, or
   - another `$` to produce a literal `$`.

r? @nrc

7 years agoRollup merge of #40521 - TimNN:panic-free-shift, r=alexcrichton
Corey Farwell [Mon, 20 Mar 2017 00:51:08 +0000 (20:51 -0400)]
Rollup merge of #40521 - TimNN:panic-free-shift, r=alexcrichton

Implemente overflowing_sh* with new unchecked_sh* intrinsics

Also update some 128 bit builtins to not rely on the constant evaluator to avoid checked operations.

Fixes #40508.

cc @nagisa, @alexcrichton

Note: I still have a build running to see if the 128 bit changes worked (unoptimized builds take *forever* to compile), however at least the overflowing builtins no longer reference `core::panicking::panic`.

7 years agoRollup merge of #40398 - eddyb:struct-hint, r=nikomatsakis
Corey Farwell [Mon, 20 Mar 2017 00:51:07 +0000 (20:51 -0400)]
Rollup merge of #40398 - eddyb:struct-hint, r=nikomatsakis

Propagate expected type hints through struct literals.

Partial fix for #31260 to maximize backwards-compatibility, i.e. the hint is provided but not coerced to.

The added test works because `{...; x}` with a hint of `T` coerces `x` to `T`, and the reasoning why that is slightly different has to do with DSTs: `&Struct { tail: [x] }: &Struct<[T]>` has a hint of `[T]` for `[x]`, but the inferred type should be `[T; 1]` to succeed later, so `[x]` shouldn't be *forced* to be `[T]`.

*However*, implementing that complete behavior in a backwards-compatible way may be non-trivial, and has not yet been fully investigated, while this PR fixes #40355 and can be backported.

r? @nikomatsakis

7 years agoRollup merge of #40281 - jimmycuadra:try-from-from-str, r=aturon
Corey Farwell [Mon, 20 Mar 2017 00:51:06 +0000 (20:51 -0400)]
Rollup merge of #40281 - jimmycuadra:try-from-from-str, r=aturon

Rename TryFrom's associated type and implement str::parse using TryFrom.

Per discussion on the tracking issue, naming `TryFrom`'s associated type `Error` is generally more consistent with similar traits in the Rust ecosystem, and what people seem to assume it should be called. It also helps disambiguate from `Result::Err`, the most common "Err".

See https://github.com/rust-lang/rust/issues/33417#issuecomment-269108968.

`TryFrom<&str>` and `FromStr` are equivalent, so have the latter provide the former to ensure that. Using `TryFrom` in the implementation of `str::parse` means types that implement either trait can use it. When we're ready to stabilize `TryFrom`, we should update `FromStr` to
suggest implementing `TryFrom<&str>` instead for new code.

See https://github.com/rust-lang/rust/issues/33417#issuecomment-277175994
and https://github.com/rust-lang/rust/issues/33417#issuecomment-277253827.

Refs #33417.

7 years agoRollup merge of #40241 - Sawyer47:fix-39997, r=alexcrichton
Corey Farwell [Mon, 20 Mar 2017 00:51:06 +0000 (20:51 -0400)]
Rollup merge of #40241 - Sawyer47:fix-39997, r=alexcrichton

Change how the `0` flag works in format!

Now it always implies right-alignment, so that padding zeroes are placed after the sign (if any) and before the digits. In other words, it always takes precedence over explicitly specified `[[fill]align]`. This also affects the '#' flag: zeroes are placed after the prefix (0b, 0o, 0x) and before the digits.

Here's a short summary of how similar format strings work in Python and Rust:

```
              :05     :<05    :>05    :^05
Python 3.6  |-0001| |-1000| |000-1| |0-100|
Rust before |-0001| |-1000| |-0001| |-0100|
Rust after  |-0001| |-0001| |-0001| |-0001|

             :#05x   :<#05x  :>#05x  :^#05x
Python 3.6  |0x001| |0x100| |000x1| |00x10|
Rust before |0x001| |0x100| |000x1| |0x010|
Rust after  |0x001| |0x001| |0x001| |0x001|
```

Fixes #39997 [breaking-change]

7 years agoAuto merge of #39799 - dpc:create_dir_all, r=alexcrichton
bors [Sun, 19 Mar 2017 21:02:53 +0000 (21:02 +0000)]
Auto merge of #39799 - dpc:create_dir_all, r=alexcrichton

Fix race condition in fs::create_dir_all

The code would crash if the directory was created after create_dir_all
checked whether the directory already existed.  This was contrary to
the documentation which claimed to create the directory if it doesn't
exist, implying (but not stating) that there would not be a failure
due to the directory existing.

7 years agoAuto merge of #40651 - frewsxcv:rollup, r=frewsxcv
bors [Sun, 19 Mar 2017 17:44:02 +0000 (17:44 +0000)]
Auto merge of #40651 - frewsxcv:rollup, r=frewsxcv

Rollup of 13 pull requests

- Successful merges: #40441, #40445, #40562, #40564, #40583, #40588, #40589, #40590, #40603, #40611, #40621, #40646, #40648
- Failed merges:

7 years agoupdate LLVM
Ariel Ben-Yehuda [Sun, 19 Mar 2017 15:51:27 +0000 (17:51 +0200)]
update LLVM

pick up a fix to LLVM PR29151.

7 years agoRollup merge of #40648 - s3rvac:fix-path-docs-typo, r=frewsxcv
Corey Farwell [Sun, 19 Mar 2017 14:18:23 +0000 (10:18 -0400)]
Rollup merge of #40648 - s3rvac:fix-path-docs-typo, r=frewsxcv

Fix a typo in path.rs docs

The name of the variable used in the example is `path`, not `os_str`.

7 years agoRollup merge of #40646 - russmack:issue-40435-mention-none, r=frewsxcv
Corey Farwell [Sun, 19 Mar 2017 14:18:23 +0000 (10:18 -0400)]
Rollup merge of #40646 - russmack:issue-40435-mention-none, r=frewsxcv

Add mention of None as possible return. Closes #40435.

This commit adds a small mention to some methods that None is returned when the slice is empty.

7 years agoRollup merge of #40621 - jswalden:dependant-spelling-fix, r=sfackler
Corey Farwell [Sun, 19 Mar 2017 14:18:21 +0000 (10:18 -0400)]
Rollup merge of #40621 - jswalden:dependant-spelling-fix, r=sfackler

Fix a spelling error in HashMap documentation, and slightly reword surrounding text for precision

Noticed while reading docs just now.

It's possible that the prior wording *meant* to state that the seed's randomness depends on the exact instant that the system RNG was created, I guess.  But unless there's an API guarantee that this is the case, the wording seems over-precise.  Is there a formal API guarantee that would forbid, say, the system RNG from generating all output using the Intel RDRAND instruction?  I don't think the quality of output in that case would depend on when the RNG was created.  Yet it seems to me like it could well be a valid source of randomness when computing the initial seed.

For that reason, tying the randomness of the seed, to the quality of the RNG's output *at the precise instant the seed is computed*, seems less confining.  That instantaneous quality level could be determined by the quality at the instant the RNG was created -- but instantaneous quality need not be low for that precise reason.

7 years agoRollup merge of #40611 - ScottAbbey:patch-1, r=GuillaumeGomez
Corey Farwell [Sun, 19 Mar 2017 14:18:20 +0000 (10:18 -0400)]
Rollup merge of #40611 - ScottAbbey:patch-1, r=GuillaumeGomez

Fix typo in mutex.rs docs

This seems to match other uses of "be accessed" in the document.

7 years agoRollup merge of #40603 - QuietMisdreavus:slice-ptr-docs, r=GuillaumeGomez
Corey Farwell [Sun, 19 Mar 2017 14:18:19 +0000 (10:18 -0400)]
Rollup merge of #40603 - QuietMisdreavus:slice-ptr-docs, r=GuillaumeGomez

minor wording tweak to slice::{as_ptr, as_mut_ptr}

Per #37334, the slice-as-pointer methods mentioned that "modifying the slice may cause its buffer to be reallocated", when in fact modifying the *slice* itself would cause no such change. (It is a borrow, after all!) This is a tweak to the wording of that line to stress it's the *collection* that could cause the buffer to be reallocated.

r? @steveklabnik

7 years agoRollup merge of #40590 - z1mvader:master, r=steveklabnik
Corey Farwell [Sun, 19 Mar 2017 14:18:19 +0000 (10:18 -0400)]
Rollup merge of #40590 - z1mvader:master, r=steveklabnik

documented order of conversion between u32 an ipv4addr

This fixes https://github.com/rust-lang/rust/issues/40118

7 years agoRollup merge of #40589 - topecongiro:floating-point-literal, r=nagisa
Corey Farwell [Sun, 19 Mar 2017 14:18:18 +0000 (10:18 -0400)]
Rollup merge of #40589 - topecongiro:floating-point-literal, r=nagisa

Parse 0e+10 as a valid floating-point literal

Fixes issue #40408.

7 years agoRollup merge of #40588 - topecongiro:add-missing-tests, r=alexcrichton
Corey Farwell [Sun, 19 Mar 2017 14:18:17 +0000 (10:18 -0400)]
Rollup merge of #40588 - topecongiro:add-missing-tests, r=alexcrichton

Add a test for issue 34571

Closes #34571.

7 years agoRollup merge of #40583 - jseyfried:fix_include_macro_regression, r=nrc
Corey Farwell [Sun, 19 Mar 2017 14:18:16 +0000 (10:18 -0400)]
Rollup merge of #40583 - jseyfried:fix_include_macro_regression, r=nrc

macros: fix regression with `include!()`

Fixes #40469, a regression when `include!()`ing a `macro_rules!` containing `$crate`.
r? @nrc

7 years agoRollup merge of #40564 - GuillaumeGomez:rustdoc-const, r=frewsxcv
Corey Farwell [Sun, 19 Mar 2017 14:18:15 +0000 (10:18 -0400)]
Rollup merge of #40564 - GuillaumeGomez:rustdoc-const, r=frewsxcv

Fix const not displayed in rustdoc

Fixes #40331.

r? @rust-lang/docs

7 years agoRollup merge of #40562 - mbrubeck:bootstrap, r=alexcrichton
Corey Farwell [Sun, 19 Mar 2017 14:18:14 +0000 (10:18 -0400)]
Rollup merge of #40562 - mbrubeck:bootstrap, r=alexcrichton

Remove unused param from bootstrap::clean::rm_rf

None

7 years agoRollup merge of #40445 - estebank:issue-18150, r=jonathandturner
Corey Farwell [Sun, 19 Mar 2017 14:18:13 +0000 (10:18 -0400)]
Rollup merge of #40445 - estebank:issue-18150, r=jonathandturner

Point to let when modifying field of immutable variable

Point at the immutable local variable when trying to modify one of its
fields.

Given a file:

```rust
struct Foo {
    pub v: Vec<String>
}

fn main() {
    let f = Foo { v: Vec::new() };
    f.v.push("cat".to_string());
}
```

present the following output:

```
error: cannot borrow immutable field `f.v` as mutable
 --> file.rs:7:13
  |
6 |    let f = Foo { v: Vec::new() };
  |        - this should be `mut`
7 |    f.v.push("cat".to_string());
  |    ^^^

error: aborting due to previous error
```

Fix #27593.

7 years agoRollup merge of #40441 - tschottdorf:promotable-rfc, r=eddyb
Corey Farwell [Sun, 19 Mar 2017 14:18:12 +0000 (10:18 -0400)]
Rollup merge of #40441 - tschottdorf:promotable-rfc, r=eddyb

Add feature gate for rvalue-static-promotion

Probably needs more tests (which ones?) and there may be other things that need to be done. Also not sure whether the version that introduces the flag is really `1.15.1`.

See https://github.com/rust-lang/rfcs/pull/1414.

Updates #38865.

7 years agoAuto merge of #40346 - jseyfried:path_and_tokenstream_attr, r=nrc
bors [Sun, 19 Mar 2017 10:56:08 +0000 (10:56 +0000)]
Auto merge of #40346 - jseyfried:path_and_tokenstream_attr, r=nrc

`TokenStream`-based attributes, paths in attribute and derive macro invocations

This PR
 - refactors `Attribute` to use  `Path` and `TokenStream` instead of `MetaItem`.
 - supports macro invocation paths for attribute procedural macros.
   - e.g. `#[::foo::attr_macro] struct S;`, `#[cfg_attr(all(), foo::attr_macro)] struct S;`
 - supports macro invocation paths for derive procedural macros.
   - e.g. `#[derive(foo::Bar, super::Baz)] struct S;`
 - supports arbitrary tokens as arguments to attribute procedural macros.
   - e.g. `#[foo::attr_macro arbitrary + tokens] struct S;`
 - supports using arbitrary tokens in "inert attributes" with derive procedural macros.
   - e.g. `#[derive(Foo)] struct S(#[inert arbitrary + tokens] i32);`
where `#[proc_macro_derive(Foo, attributes(inert))]`

r? @nrc

7 years agoFix a typo in path.rs docs
Petr Zemek [Sun, 19 Mar 2017 06:02:20 +0000 (07:02 +0100)]
Fix a typo in path.rs docs

The name of the variable used in the example is `path`, not `os_str`.

7 years agoFix problems left in `concurrent_recursive_mkdir`
Dawid Ciężarkiewicz [Sun, 19 Mar 2017 04:03:51 +0000 (21:03 -0700)]
Fix problems left in `concurrent_recursive_mkdir`

Increase lifetime of `tmpdir`, and really change the length of test
path.

7 years agoAdd mention of None as possible return. Closes #40435.
Russell Mackenzie [Sun, 19 Mar 2017 01:39:11 +0000 (01:39 +0000)]
Add mention of None as possible return. Closes #40435.

7 years agoAuto merge of #40538 - aturon:stab-1.17, r=alexcrichton
bors [Sun, 19 Mar 2017 01:40:57 +0000 (01:40 +0000)]
Auto merge of #40538 - aturon:stab-1.17, r=alexcrichton

Library stabilizations for 1.17

Details of the stabilizations are available in the commits. Includes only library stabilizations; there are a couple of compiler stabilizations that should also be done for 1.17.

Will need a beta backport, which I will create after approval.

r? @alexcrichton

7 years agoAuto merge of #40625 - alexcrichton:update-cargo-again, r=alexcrichton
bors [Sat, 18 Mar 2017 15:22:29 +0000 (15:22 +0000)]
Auto merge of #40625 - alexcrichton:update-cargo-again, r=alexcrichton

Update the cargo submodule again

Unfortunately it was reverted back to a broken state in
e06c51553ddc202a79f2c0b76822ad56c4a30f80 by accident, so let's bring it forward
again!

Closes https://github.com/rust-lang/cargo/issues/3844

7 years agoadd inline attributes to stage 0 methods
Tim Neumann [Sat, 18 Mar 2017 13:52:35 +0000 (14:52 +0100)]
add inline attributes to stage 0 methods

7 years agoParse 0e+10 as a valid floating-point literal
topecongiro [Fri, 17 Mar 2017 00:03:52 +0000 (09:03 +0900)]
Parse 0e+10 as a valid floating-point literal

Fixes issue #40408.

7 years agoAdd more catch-related CFG and lifetime tests and fix CFG bug
Taylor Cramer [Tue, 14 Mar 2017 23:48:01 +0000 (16:48 -0700)]
Add more catch-related CFG and lifetime tests and fix CFG bug

7 years agoImplement ? in catch expressions and add tests
Taylor Cramer [Tue, 28 Feb 2017 19:05:03 +0000 (11:05 -0800)]
Implement ? in catch expressions and add tests

7 years agoUpdate the cargo submodule again
Alex Crichton [Sat, 18 Mar 2017 03:47:35 +0000 (20:47 -0700)]
Update the cargo submodule again

Unfortunately it was reverted back to a broken state in
e06c51553ddc202a79f2c0b76822ad56c4a30f80 by accident, so let's bring it forward
again!