]> git.lizzy.rs Git - rust.git/log
rust.git
7 years agoAuto merge of #38813 - eddyb:lazy-11, r=nikomatsakis
bors [Sun, 8 Jan 2017 11:36:52 +0000 (11:36 +0000)]
Auto merge of #38813 - eddyb:lazy-11, r=nikomatsakis

[11/n] Separate ty::Tables into one per each body.

_This is part of a series ([prev](https://github.com/rust-lang/rust/pull/38449) | [next]()) of patches designed to rework rustc into an out-of-order on-demand pipeline model for both better feature support (e.g. [MIR-based](https://github.com/solson/miri) early constant evaluation) and incremental execution of compiler passes (e.g. type-checking), with beneficial consequences to IDE support as well.
If any motivation is unclear, please ask for additional PR description clarifications or code comments._

<hr>

In order to track the results of type-checking and inference for incremental recompilation, they must be stored separately for each function or constant value, instead of lumped together.

These side-`Tables` also have to be tracked by various passes, as they visit through bodies (all of which have `Tables`, even if closures share the ones from their parent functions). This is usually done by switching a `tables` field in an override of `visit_nested_body` before recursing through `visit_body`, to the relevant one and then restoring it - however, in many cases the nesting is unnecessary and creating the visitor for each body in the crate and then visiting that body, would be a much cleaner solution.

To simplify handling of inlined HIR & its side-tables, their `NodeId` remapping and entries HIR map were fully stripped out, which means that `NodeId`s from inlined HIR must not be used where a local `NodeId` is expected. It might be possible to make the nodes (`Expr`, `Block`, `Pat`, etc.) that only show up within a `Body` have IDs that are scoped to that `Body`, which would also allow `Tables` to use `Vec`s.

That last part also fixes #38790 which was accidentally introduced in a previous refactor.

7 years agoAuto merge of #38679 - alexcrichton:always-deny-warnings, r=nrc
bors [Sun, 8 Jan 2017 08:22:06 +0000 (08:22 +0000)]
Auto merge of #38679 - alexcrichton:always-deny-warnings, r=nrc

Remove not(stage0) from deny(warnings)

Historically this was done to accommodate bugs in lints, but there hasn't been a
bug in a lint since this feature was added which the warnings affected. Let's
completely purge warnings from all our stages by denying warnings in all stages.
This will also assist in tracking down `stage0` code to be removed whenever
we're updating the bootstrap compiler.

7 years agoAuto merge of #38883 - alexcrichton:android-flaky, r=brson
bors [Sun, 8 Jan 2017 06:19:14 +0000 (06:19 +0000)]
Auto merge of #38883 - alexcrichton:android-flaky, r=brson

compiletest: Fix flaky Android gdb test runs

Local testing showed that I was able to reproduce an error where debuginfo tests
on Android would fail with "connection reset by peer". Further investigation
turned out that the gdb tests are android with bit of process management:

* First an `adb forward` command is run to ensure that the host's port 5039 is
  the same as the emulator's.
* Next an `adb shell` command is run to execute the `gdbserver` executable
  inside the emulator. This gdb server will attach to port 5039 and listen for
  remote gdb debugging sessions.
* Finally, we run `gdb` on the host (not in the emulator) and then connect to
  this gdb server to send it commands.

The problem was happening when the host's gdb was failing to connect to the
remote gdbserver running inside the emulator. The previous test for this was
that after `adb shell` executed we'd sleep for a second and then attempt to make
a TCP connection to port 5039. If successful we'd run gdb and on failure we'd
sleep again.

It turns out, however, that as soon as we've executed `adb forward` all TCP
connections to 5039 will succeed. This means that we would only ever sleep for
at most one second, and if this wasn't enough time we'd just fail later because
we would assume that gdbserver had started but it may not have done so yet.

This commit fixes these issues by removing the TCP connection to test if
gdbserver is ready to go. Instead we read the stdout of the process and wait for
it to print that it's listening at which point we start running gdb. I've found
that locally at least I was unable to reproduce the failure after these changes.

Closes #38710

7 years agoAuto merge of #38822 - michaelwoerister:collect-fn-once-adapter, r=eddyb
bors [Sun, 8 Jan 2017 04:18:32 +0000 (04:18 +0000)]
Auto merge of #38822 - michaelwoerister:collect-fn-once-adapter, r=eddyb

trans: Fix missing closure env drop-glue in trans-item collector.

FnOnce adapters automatically generated by the compiler introduce a call to drop the closure environment. The collector didn't pick up on that because this drop call does not show up in MIR. That could lead to an assertion being triggered if the drop-glue for the environment wasn't instantiated via something else.

Fixes #38810

cc @arielb1

r? @eddyb or @nikomatsakis

7 years agoAuto merge of #38807 - comex:pprint-expr-attr, r=nrc
bors [Sun, 8 Jan 2017 02:10:26 +0000 (02:10 +0000)]
Auto merge of #38807 - comex:pprint-expr-attr, r=nrc

Print attributes on expressions when pretty printing.

Test case: `rustc -Z unstable-options --unpretty=hir <(echo 'fn main() { #[allow()] main() }')`

7 years agoAuto merge of #38798 - jsgf:fix-rpath, r=nikomatsakis
bors [Sun, 8 Jan 2017 00:10:15 +0000 (00:10 +0000)]
Auto merge of #38798 - jsgf:fix-rpath, r=nikomatsakis

rustc: use -Xlinker when specifying an rpath with ',' in it

The `-Wl` option splits its parameters on commas, so if rustc specifies
`-Wl,-rpath,<path>` when `<path>` contains commas, the path gets split up
and the linker gets a partial path and spurious extra parameters.

Gcc/clang support the more verbose `-Xlinker` option to pass options to the linker directly, so use it for comma-containing paths.

Fixes issue #38795.

7 years agoAuto merge of #38781 - SimonSapin:unishrink, r=alexcrichton
bors [Sat, 7 Jan 2017 21:28:47 +0000 (21:28 +0000)]
Auto merge of #38781 - SimonSapin:unishrink, r=alexcrichton

Reduce the size of static data in std_unicode::tables

`BoolTrie` works well for sets of code points spread out through most of Unicode’s range, but is uses a lot of space for sets with few, mostly low, code points.

This switches a few of its instances to a similar but simpler trie data structure.

CC @raphlinus, who wrote the original `BoolTrie`.

## Before

`size_of::<BoolTrie>()` is 1552, which is added to `table.r3.len() * 8 + t.r5.len() + t.r6.len() * 8`:

* `Cc_table`: 1632
* `White_Space_table`: 1656
* `Pattern_White_Space_table`: 1640
* Total: 4928 bytes

## After

`size_of::<SmallBoolTrie>()` is 32, which is added to `t.r1.len() + t.r2.len() * 8`:

* `Cc_table`: 51
* `White_Space_table`: 273
* `Pattern_White_Space_table`: 193
* Total: 517 bytes

## Difference

Every Rust program with `std` statically linked should be about 4 KB smaller.

7 years agoAuto merge of #38733 - sfackler:peek-mut-pop, r=alexcrichton
bors [Sat, 7 Jan 2017 19:21:49 +0000 (19:21 +0000)]
Auto merge of #38733 - sfackler:peek-mut-pop, r=alexcrichton

Add PeekMut::pop

A fairly common workflow is to put a bunch of stuff into a binary heap
and then mutate the top value until its empty. This both makes that a
bit more convenient (no need to save a boolean off and pop after to
avoid borrowck issues), and a bit more efficient since you only shift
once.

r? @alexcrichton

cc @rust-lang/libs

7 years agoAuto merge of #38551 - aidanhs:aphs-vec-in-place, r=brson
bors [Sat, 7 Jan 2017 13:02:52 +0000 (13:02 +0000)]
Auto merge of #38551 - aidanhs:aphs-vec-in-place, r=brson

Implement placement-in protocol for `Vec`

Follow-up of #32366 per comment at https://github.com/rust-lang/rust/issues/30172#issuecomment-268099009, updating to latest rust, leaving @apasel422 as author and putting myself as committer.

I've removed the implementation of `push` in terms of place to make this PR more conservative.

7 years agoAuto merge of #38469 - tbu-:pr_writeln_no_args, r=brson
bors [Sat, 7 Jan 2017 10:59:46 +0000 (10:59 +0000)]
Auto merge of #38469 - tbu-:pr_writeln_no_args, r=brson

Allow `writeln!` without arguments, in symmetry with `println!`

CC #36825.

7 years agoAuto merge of #38327 - Yamakaky:into-ipaddr, r=brson
bors [Sat, 7 Jan 2017 09:00:52 +0000 (09:00 +0000)]
Auto merge of #38327 - Yamakaky:into-ipaddr, r=brson

Impl From<Ipv4Addr, Ipv6Addr> for IpAddr.

Fixes https://github.com/rust-lang/rfcs/issues/1816.

7 years agoAuto merge of #38859 - jonathandturner:E0088_fix, r=eddyb
bors [Sat, 7 Jan 2017 05:59:38 +0000 (05:59 +0000)]
Auto merge of #38859 - jonathandturner:E0088_fix, r=eddyb

E0088/E0090 fix

This fixes an issue reported by @eddyb (https://github.com/rust-lang/rust/pull/36208#issuecomment-2707092230) where the check for "too few lifetime parameters" was removed in one of the error message PRs.

I also removed the span shrinking from E0088, as early bound lifetimes give you a confusing underline in some cases.

r=eddyb

7 years agoAuto merge of #38858 - ollie27:rustbuild_docs_std, r=alexcrichton
bors [Sat, 7 Jan 2017 04:02:43 +0000 (04:02 +0000)]
Auto merge of #38858 - ollie27:rustbuild_docs_std, r=alexcrichton

rustbuild: Stop building docs for std dependancies

Fixes: #38319
r? @alexcrichton

7 years agoAuto merge of #38855 - Mark-Simulacrum:immediate-fix, r=eddyb
bors [Sat, 7 Jan 2017 02:01:51 +0000 (02:01 +0000)]
Auto merge of #38855 - Mark-Simulacrum:immediate-fix, r=eddyb

Fix ICE on i686 when calling immediate() on OperandValue::Ref in return

Fixes #38727, and adds a test case.

r? @eddyb

7 years agoAuto merge of #38835 - alexcrichton:less-overlapped, r=brson
bors [Fri, 6 Jan 2017 23:49:57 +0000 (23:49 +0000)]
Auto merge of #38835 - alexcrichton:less-overlapped, r=brson

std: Don't pass overlapped handles to processes

This commit fixes a mistake introduced in #31618 where overlapped handles were
leaked to child processes on Windows. On Windows once a handle is in overlapped
mode it should always have I/O executed with an instance of `OVERLAPPED`. Most
child processes, however, are not prepared to have their stdio handles in
overlapped mode as they don't use `OVERLAPPED` on reads/writes to the handle.

Now we haven't had any odd behavior in Rust up to this point, and the original
bug was introduced almost a year ago. I believe this is because it turns out
that if you *don't* pass an `OVERLAPPED` then the system will [supply one for
you][link]. In this case everything will go awry if you concurrently operate on
the handle. In Rust, however, the stdio handles are always locked, and there's
no way to not use them unlocked in libstd. Due to that change we've always had
synchronized access to these handles, which means that Rust programs typically
"just work".

Conversely, though, this commit fixes the test case included, which exhibits
behavior that other programs Rust spawns may attempt to execute. Namely, the
stdio handles may be concurrently used and having them in overlapped mode wreaks
havoc.

[link]: https://blogs.msdn.microsoft.com/oldnewthing/20121012-00/?p=6343

Closes #38811

7 years agoAuto merge of #38815 - cardoe:fix-print, r=nikomatsakis
bors [Fri, 6 Jan 2017 21:23:51 +0000 (21:23 +0000)]
Auto merge of #38815 - cardoe:fix-print, r=nikomatsakis

fix help for the --print option

Since 8285ab5c99, which was merged in with #38061, the help for the
--print option is missing the surrounding [ ] around the possible
options.

Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
7 years agorustc: store ty::Tables separately for each body (except closures').
Eduard-Mihai Burtescu [Wed, 4 Jan 2017 02:01:58 +0000 (04:01 +0200)]
rustc: store ty::Tables separately for each body (except closures').

7 years agorustc: keep track of tables everywhere as if they were per-body.
Eduard-Mihai Burtescu [Fri, 6 Jan 2017 19:54:24 +0000 (21:54 +0200)]
rustc: keep track of tables everywhere as if they were per-body.

7 years agoAuto merge of #38792 - jseyfried:improve_macros_11_diagnostics, r=nikomatsakis
bors [Fri, 6 Jan 2017 19:23:06 +0000 (19:23 +0000)]
Auto merge of #38792 - jseyfried:improve_macros_11_diagnostics, r=nikomatsakis

proc macros 1.1: improve diagnostics

Fixes #38586.
r? @nrc

7 years agocompiletest: Fix flaky Android gdb test runs
Alex Crichton [Fri, 6 Jan 2017 18:26:40 +0000 (10:26 -0800)]
compiletest: Fix flaky Android gdb test runs

Local testing showed that I was able to reproduce an error where debuginfo tests
on Android would fail with "connection reset by peer". Further investigation
turned out that the gdb tests are android with bit of process management:

* First an `adb forward` command is run to ensure that the host's port 5039 is
  the same as the emulator's.
* Next an `adb shell` command is run to execute the `gdbserver` executable
  inside the emulator. This gdb server will attach to port 5039 and listen for
  remote gdb debugging sessions.
* Finally, we run `gdb` on the host (not in the emulator) and then connect to
  this gdb server to send it commands.

The problem was happening when the host's gdb was failing to connect to the
remote gdbserver running inside the emulator. The previous test for this was
that after `adb shell` executed we'd sleep for a second and then attempt to make
a TCP connection to port 5039. If successful we'd run gdb and on failure we'd
sleep again.

It turns out, however, that as soon as we've executed `adb forward` all TCP
connections to 5039 will succeed. This means that we would only ever sleep for
at most one second, and if this wasn't enough time we'd just fail later because
we would assume that gdbserver had started but it may not have done so yet.

This commit fixes these issues by removing the TCP connection to test if
gdbserver is ready to go. Instead we read the stdout of the process and wait for
it to print that it's listening at which point we start running gdb. I've found
that locally at least I was unable to reproduce the failure after these changes.

Closes #38710

7 years agoAuto merge of #38304 - sfackler:no-ipv6only, r=alexcrichton
bors [Fri, 6 Jan 2017 16:55:06 +0000 (16:55 +0000)]
Auto merge of #38304 - sfackler:no-ipv6only, r=alexcrichton

Deprecate TcpListener::set_only_v6

This was supposed to have been removed in #33124 but snuck through :(

Should the docs be removed?

I left the accessor undeprecated since it should actually work, though that method doesn't exist on other networking types.

r? @alexcrichton
cc @rust-lang/libs

7 years agoAuto merge of #38833 - arielb1:constant-mir-overflow, r=eddyb
bors [Fri, 6 Jan 2017 09:43:37 +0000 (09:43 +0000)]
Auto merge of #38833 - arielb1:constant-mir-overflow, r=eddyb

fix promotion of MIR terminators

promotion of MIR terminators used to try to promote the destination it
is trying to promote, leading to stack overflow.

Also clean up the code in `promote_temp` a bit to make it more understandable.

Fixes #37991.

cc @nikomatsakis
r? @eddyb

7 years agoAuto merge of #38793 - jseyfried:fix_macro_export_duplicates, r=nrc
bors [Fri, 6 Jan 2017 06:41:31 +0000 (06:41 +0000)]
Auto merge of #38793 - jseyfried:fix_macro_export_duplicates, r=nrc

Fix regression with duplicate `#[macro_export] macro_rules!`

Fixes #38715.
r? @nrc

7 years agoDeprecate TcpListener::set_only_v6
Steven Fackler [Sun, 11 Dec 2016 17:52:36 +0000 (09:52 -0800)]
Deprecate TcpListener::set_only_v6

This was supposed to have been removed in #33124 but snuck through :(

7 years agoAdd a tracking issue
Steven Fackler [Fri, 6 Jan 2017 03:36:35 +0000 (19:36 -0800)]
Add a tracking issue

7 years agoAuto merge of #38069 - canndrew:empty-sub-patterns-again, r=nikomatsakis
bors [Fri, 6 Jan 2017 00:17:41 +0000 (00:17 +0000)]
Auto merge of #38069 - canndrew:empty-sub-patterns-again, r=nikomatsakis

Fix handling of empty types in patterns.

Fix for #12609.

7 years agoFix tidy warning
Jonathan Turner [Thu, 5 Jan 2017 23:18:11 +0000 (10:18 +1100)]
Fix tidy warning

7 years agoAdd in test for E0090
Jonathan Turner [Thu, 5 Jan 2017 23:05:55 +0000 (10:05 +1100)]
Add in test for E0090

7 years agoAdd back in previous logic and remove span shrinking
Jonathan Turner [Thu, 5 Jan 2017 23:00:07 +0000 (10:00 +1100)]
Add back in previous logic and remove span shrinking

7 years agorustbuild: Stop building docs for std dependancies
Oliver Middleton [Thu, 5 Jan 2017 22:26:04 +0000 (22:26 +0000)]
rustbuild: Stop building docs for std dependancies

7 years agoAuto merge of #38689 - pnkfelix:dont-check-stability-on-private-items, r=nikomatsakis
bors [Thu, 5 Jan 2017 21:58:45 +0000 (21:58 +0000)]
Auto merge of #38689 - pnkfelix:dont-check-stability-on-private-items, r=nikomatsakis

Dont check stability for items that are not pub to universe.

Dont check stability for items that are not pub to universe.

In other words, skip it for private and even `pub(restricted)` items, because stability checks are only relevant to things visible in other crates.

Fix #38412.

7 years agoFix ICE on i686 when calling immediate() on OperandValue::Ref in return
Mark Simulacrum [Thu, 5 Jan 2017 19:22:51 +0000 (12:22 -0700)]
Fix ICE on i686 when calling immediate() on OperandValue::Ref in return

7 years agoAuto merge of #38817 - jseyfried:improve_unused_qualification_lint, r=petrochenkov
bors [Thu, 5 Jan 2017 19:56:31 +0000 (19:56 +0000)]
Auto merge of #38817 - jseyfried:improve_unused_qualification_lint, r=petrochenkov

resolve: don't `unused_qualifications`-check global paths

We started `unused_qualifications`-checking global paths in #38014, causing #38682.
Fixes #38682.
r? @nrc

7 years agofix doc test for E0001
Andrew Cann [Thu, 5 Jan 2017 17:00:03 +0000 (01:00 +0800)]
fix doc test for E0001

7 years agoUn-remove E0001, put a notice on it instead
Andrew Cann [Thu, 5 Jan 2017 15:48:02 +0000 (23:48 +0800)]
Un-remove E0001, put a notice on it instead

7 years agoAuto merge of #38152 - arielb1:special-copy, r=nikomatsakis
bors [Thu, 5 Jan 2017 13:05:30 +0000 (13:05 +0000)]
Auto merge of #38152 - arielb1:special-copy, r=nikomatsakis

Fix associated types in copy implementations

Fixes an ICE and an error in checking copy implementations.

r? @nikomatsakis

7 years agoAuto merge of #38776 - eddyb:unsigned-means-unsigned, r=pnkfelix
bors [Thu, 5 Jan 2017 11:06:10 +0000 (11:06 +0000)]
Auto merge of #38776 - eddyb:unsigned-means-unsigned, r=pnkfelix

Properly ban the negation of unsigned integers in type-checking.

Lint-time banning of unsigned negation appears to be vestigial from a time it was feature-gated.
But now it always errors and we do have the ability to deref the checking of e.g. `-0`, through the trait obligation fulfillment context, which will only succeed/error when the `0` gets inferred to a specific type.

The two removed tests are the main reason for finally cleaning this up, they need changing all the time when refactoring the HIR-based `rustc_const_eval` and/or `rustc_passes::consts`, as warnings pile up.

7 years agoAuto merge of #38767 - est31:master, r=eddyb
bors [Thu, 5 Jan 2017 09:02:40 +0000 (09:02 +0000)]
Auto merge of #38767 - est31:master, r=eddyb

Some i128 tests

* Add some FFI tests for i128 on architectures where we have sort of working "C" FFI support. On all other architectures we ignore the test.
* enhance the u128 overflow tests

7 years agoAuto merge of #38756 - Mark-Simulacrum:2nd-trans-cleanup, r=eddyb
bors [Thu, 5 Jan 2017 06:01:24 +0000 (06:01 +0000)]
Auto merge of #38756 - Mark-Simulacrum:2nd-trans-cleanup, r=eddyb

Additional cleanup to rustc_trans

Removes `BlockAndBuilder`, `FunctionContext`, and `MaybeSizedValue`.

`LvalueRef` is used instead of `MaybeSizedValue`, which has the added benefit of making functions operating on `Lvalue`s be able to take just that (since it encodes the type with an `LvalueTy`, which can carry discriminant information) instead of a `MaybeSizedValue` and a discriminant.

r? @eddyb

7 years agoAuto merge of #38731 - alexcrichton:supafast-cross-dist, r=brson
bors [Thu, 5 Jan 2017 04:01:35 +0000 (04:01 +0000)]
Auto merge of #38731 - alexcrichton:supafast-cross-dist, r=brson

rustbuild: Quickly `dist` cross-host compilers

This commit optimizes the compile time for creating tarballs of cross-host
compilers and as a proof of concept adds two to the standard Travis matrix. Much
of this commit is further refactoring and refining of the `step.rs` definitions
along with the interpretation of `--target` and `--host` flags. This has gotten
confusing enough that I've also added a small test suite to
`src/bootstrap/step.rs` to ensure what we're doing works and doesn't regress.

After this commit when you execute:

    ./x.py dist --host $MY_HOST --target $MY_HOST

the build system will compile two compilers. The first is for the build platform
and the second is for the host platform. This second compiler is then packaged
up and placed into `build/dist` and is ready to go. With a fully cached LLVM and
docker image I was able to create a cross-host compiler in around 20 minutes
locally.

Eventually we plan to add a whole litany of cross-host entries to the Travis
matrix, but for now we're just adding a few before we eat up all the extra
capacity.

cc #38531

7 years agoAuto merge of #38770 - steveklabnik:doc-custom-derive, r=alexcrichton
bors [Thu, 5 Jan 2017 00:11:37 +0000 (00:11 +0000)]
Auto merge of #38770 - steveklabnik:doc-custom-derive, r=alexcrichton

Document custom derive.

These are some bare-bones documentation for custom derive, needed
to stabilize "macros 1.1",
https://github.com/rust-lang/rust/issues/35900

The book chapter is based off of a blog post by @cbreeden,
https://cbreeden.github.io/Macros11/

Normally, we have a policy of not mentioning external crates in
documentation. However, given that syn/quote are basically neccesary
for properly using macros 1.1, I feel that not including them here
would make the documentation very bad. So the rules should be bent
in this instance.

So far, this PR includes only docs; @alexcrichton said in https://github.com/rust-lang/rust/issues/35900 that he'd be okay with landing them before stabilization; I don't mind either way.

7 years agostd: Don't pass overlapped handles to processes
Alex Crichton [Wed, 4 Jan 2017 23:32:39 +0000 (15:32 -0800)]
std: Don't pass overlapped handles to processes

This commit fixes a mistake introduced in #31618 where overlapped handles were
leaked to child processes on Windows. On Windows once a handle is in overlapped
mode it should always have I/O executed with an instance of `OVERLAPPED`. Most
child processes, however, are not prepared to have their stdio handles in
overlapped mode as they don't use `OVERLAPPED` on reads/writes to the handle.

Now we haven't had any odd behavior in Rust up to this point, and the original
bug was introduced almost a year ago. I believe this is because it turns out
that if you *don't* pass an `OVERLAPPED` then the system will [supply one for
you][link]. In this case everything will go awry if you concurrently operate on
the handle. In Rust, however, the stdio handles are always locked, and there's
no way to not use them unlocked in libstd. Due to that change we've always had
synchronized access to these handles, which means that Rust programs typically
"just work".

Conversely, though, this commit fixes the test case included, which exhibits
behavior that other programs Rust spawns may attempt to execute. Namely, the
stdio handles may be concurrently used and having them in overlapped mode wreaks
havoc.

[link]: https://blogs.msdn.microsoft.com/oldnewthing/20121012-00/?p=6343

Closes #38811

7 years agofix promotion of MIR terminators
Ariel Ben-Yehuda [Wed, 4 Jan 2017 23:19:54 +0000 (01:19 +0200)]
fix promotion of MIR terminators

promotion of MIR terminators used to try to promote the destination it
is trying to promote, leading to stack overflow.

Fixes #37991.

7 years agoDocument custom derive.
Steve Klabnik [Mon, 2 Jan 2017 01:33:37 +0000 (20:33 -0500)]
Document custom derive.

These are some bare-bones documentation for custom derive, needed
to stabilize "macros 1.1",
https://github.com/rust-lang/rust/issues/35900

The book chapter is based off of a blog post by @cbreeden,
https://cbreeden.github.io/Macros11/

Normally, we have a policy of not mentioning external crates in
documentation. However, given that syn/quote are basically neccesary
for properly using macros 1.1, I feel that not including them here
would make the documentation very bad. So the rules should be bent
in this instance.

7 years agotrans: Make the trans-item collector see through VTableFnPointer.
Michael Woerister [Wed, 4 Jan 2017 21:54:37 +0000 (16:54 -0500)]
trans: Make the trans-item collector see through VTableFnPointer.

7 years agoAuto merge of #38783 - alexcrichton:stabilize-proc-macro, r=nikomatsakis
bors [Wed, 4 Jan 2017 20:06:21 +0000 (20:06 +0000)]
Auto merge of #38783 - alexcrichton:stabilize-proc-macro, r=nikomatsakis

rustc: Stabilize the `proc_macro` feature

This commit stabilizes the `proc_macro` and `proc_macro_lib` features in the
compiler to stabilize the "Macros 1.1" feature of the language. Many more
details can be found on the tracking issue, #35900.

Closes #35900

7 years agorustbuild: Quickly `dist` cross-host compilers
Alex Crichton [Sat, 31 Dec 2016 03:50:57 +0000 (19:50 -0800)]
rustbuild: Quickly `dist` cross-host compilers

This commit optimizes the compile time for creating tarballs of cross-host
compilers and as a proof of concept adds two to the standard Travis matrix. Much
of this commit is further refactoring and refining of the `step.rs` definitions
along with the interpretation of `--target` and `--host` flags. This has gotten
confusing enough that I've also added a small test suite to
`src/bootstrap/step.rs` to ensure what we're doing works and doesn't regress.

After this commit when you execute:

    ./x.py dist --host $MY_HOST --target $MY_HOST

the build system will compile two compilers. The first is for the build platform
and the second is for the host platform. This second compiler is then packaged
up and placed into `build/dist` and is ready to go. With a fully cached LLVM and
docker image I was able to create a cross-host compiler in around 20 minutes
locally.

Eventually we plan to add a whole litany of cross-host entries to the Travis
matrix, but for now we're just adding a few before we eat up all the extra
capacity.

cc #38531

7 years agoFix errors introduced during rebase
Mark Simulacrum [Wed, 4 Jan 2017 18:47:43 +0000 (11:47 -0700)]
Fix errors introduced during rebase

7 years agoSimplify handling of dropping structs.
Mark Simulacrum [Wed, 4 Jan 2017 03:54:22 +0000 (20:54 -0700)]
Simplify handling of dropping structs.

7 years agoPull out downcasting into caller of iter_variant
Mark Simulacrum [Wed, 4 Jan 2017 03:16:36 +0000 (20:16 -0700)]
Pull out downcasting into caller of iter_variant

Renames iter_variant to iter_variant_fields to more clearly communicate
the purpose of the function.

7 years agoRemove extraneous setting of builder positions.
Mark Simulacrum [Wed, 4 Jan 2017 03:10:45 +0000 (20:10 -0700)]
Remove extraneous setting of builder positions.

7 years agoSimplify code further
Mark Simulacrum [Mon, 2 Jan 2017 21:47:15 +0000 (14:47 -0700)]
Simplify code further

7 years agoInline and remove Builder::entry_block
Mark Simulacrum [Mon, 2 Jan 2017 20:51:09 +0000 (13:51 -0700)]
Inline and remove Builder::entry_block

7 years agoFix style nit
Mark Simulacrum [Mon, 2 Jan 2017 20:24:04 +0000 (13:24 -0700)]
Fix style nit

7 years agoBuilder.build_new_block -> Builder.build_sibling_block
Mark Simulacrum [Mon, 2 Jan 2017 20:18:38 +0000 (13:18 -0700)]
Builder.build_new_block -> Builder.build_sibling_block

7 years agoInline trans_switch to simplify code
Mark Simulacrum [Mon, 2 Jan 2017 20:05:42 +0000 (13:05 -0700)]
Inline trans_switch to simplify code

7 years agoMove trans_field_ptr and struct_field_ptr to mir/lvalue
Mark Simulacrum [Mon, 2 Jan 2017 19:13:59 +0000 (12:13 -0700)]
Move trans_field_ptr and struct_field_ptr to mir/lvalue

7 years agoMove trans_const to mir::constant
Mark Simulacrum [Mon, 2 Jan 2017 18:00:42 +0000 (11:00 -0700)]
Move trans_const to mir::constant

7 years agoChange trans_field_ptr to utilize LvalueTy to determine discriminant.
Mark Simulacrum [Mon, 2 Jan 2017 16:06:01 +0000 (09:06 -0700)]
Change trans_field_ptr to utilize LvalueTy to determine discriminant.

7 years agoUse LvalueRef instead of MaybeSizedValue
Mark Simulacrum [Sun, 1 Jan 2017 22:50:15 +0000 (15:50 -0700)]
Use LvalueRef instead of MaybeSizedValue

7 years agoSimpliy block creation in MirContext
Mark Simulacrum [Sun, 1 Jan 2017 18:13:50 +0000 (11:13 -0700)]
Simpliy block creation in MirContext

7 years agoAdd Builder::sess and Builder::tcx methods
Mark Simulacrum [Sun, 1 Jan 2017 15:46:34 +0000 (08:46 -0700)]
Add Builder::sess and Builder::tcx methods

7 years agoAdd method, new_block, to MirContext for block construction.
Mark Simulacrum [Sun, 1 Jan 2017 08:29:23 +0000 (01:29 -0700)]
Add method, new_block, to MirContext for block construction.

This makes a slow transition to block construction happening only from
MirContext easier.

7 years agoPurge FunctionContext
Mark Simulacrum [Sun, 1 Jan 2017 07:42:09 +0000 (00:42 -0700)]
Purge FunctionContext

7 years agoReplace BlockAndBuilder with Builder.
Mark Simulacrum [Sat, 31 Dec 2016 23:00:24 +0000 (16:00 -0700)]
Replace BlockAndBuilder with Builder.

7 years agoAdd test for i128 ffi usage
est31 [Sun, 1 Jan 2017 22:06:57 +0000 (23:06 +0100)]
Add test for i128 ffi usage

7 years agoenhance u128 overflow tests
est31 [Sun, 1 Jan 2017 18:53:12 +0000 (19:53 +0100)]
enhance u128 overflow tests

7 years agoAuto merge of #38414 - estebank:doc-dissambiguate, r=steveklabnik
bors [Wed, 4 Jan 2017 17:11:02 +0000 (17:11 +0000)]
Auto merge of #38414 - estebank:doc-dissambiguate, r=steveklabnik

Rustdoc: disambiguate Implementors when the type name is not unique

Presentation [goes from](https://doc.rust-lang.org/stable/std/iter/trait.ExactSizeIterator.html#implementors):

<img width="492" alt="" src="https://cloud.githubusercontent.com/assets/1606434/21276752/b2b50474-c387-11e6-96e1-9766851da269.png">

to:

<img width="787" alt="" src="https://cloud.githubusercontent.com/assets/1606434/21276763/bb37f6b0-c387-11e6-8596-9163cb254674.png">

on cases where there're multiple implementors with the same name.

Fixes #37762.

7 years agotrans: Collect drop-glue translation item for closure env in fn-once-adapters.
Michael Woerister [Wed, 4 Jan 2017 15:01:27 +0000 (10:01 -0500)]
trans: Collect drop-glue translation item for closure env in fn-once-adapters.

7 years agoAuto merge of #38670 - dotdash:transmute_align, r=eddyb
bors [Wed, 4 Jan 2017 14:26:17 +0000 (14:26 +0000)]
Auto merge of #38670 - dotdash:transmute_align, r=eddyb

Fix transmute::<T, U> where T requires a bigger alignment than U

For transmute::<T, U> we simply pointercast the destination from a U
pointer to a T pointer, without providing any alignment information,
thus LLVM assumes that the destination is aligned to hold a value of
type T, which is not necessarily true. This can lead to LLVM emitting
machine instructions that assume said alignment, and thus cause aborts.

To fix this, we need to provide the actual alignment to store_operand()
and in turn to store() so they can set the proper alignment information
on the stores and LLVM can emit the proper machine instructions.

Fixes #32947

7 years agotypeck::coherence::builtin - sort impls in the DefId order
Ariel Ben-Yehuda [Wed, 4 Jan 2017 09:54:57 +0000 (11:54 +0200)]
typeck::coherence::builtin - sort impls in the DefId order

this makes error messages consistent across architectures

7 years agoAuto merge of #38773 - sanxiyn:rustdoc-ice, r=steveklabnik
bors [Wed, 4 Jan 2017 09:24:24 +0000 (09:24 +0000)]
Auto merge of #38773 - sanxiyn:rustdoc-ice, r=steveklabnik

Avoid rustdoc ICE when an unstable feature is used

Fix #36159.

7 years agoFix regression with duplicate `#[macro_export] macro_rules!`.
Jeffrey Seyfried [Tue, 3 Jan 2017 00:36:34 +0000 (00:36 +0000)]
Fix regression with duplicate `#[macro_export] macro_rules!`.

7 years agoAuto merge of #38552 - eddyb:bad-blocks, r=arielb1
bors [Wed, 4 Jan 2017 06:29:14 +0000 (06:29 +0000)]
Auto merge of #38552 - eddyb:bad-blocks, r=arielb1

Don't leak the compiler's internal representation of scopes in error messages.

Fixes #37884 (actually fixes #27942, which was made worse by #37412) by handling more node types.
Ideally we'd turn the unknown node type situations into ICEs and fix them as they show up in errors.
But we might want to backport this patch so I was less aggressive.

7 years agoDon't `unused_qualifications`-check global paths.
Jeffrey Seyfried [Tue, 3 Jan 2017 02:47:18 +0000 (02:47 +0000)]
Don't `unused_qualifications`-check global paths.

7 years agofix help for the --print option
Doug Goldstein [Wed, 4 Jan 2017 05:44:10 +0000 (23:44 -0600)]
fix help for the --print option

Since 8285ab5c99, which was merged in with #38061, the help for the
--print option is missing the surrounding [ ] around the possible
options.

Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
7 years agoAuto merge of #38707 - redox-os:master, r=brson
bors [Wed, 4 Jan 2017 04:28:15 +0000 (04:28 +0000)]
Auto merge of #38707 - redox-os:master, r=brson

Add socket timeout and ttl support in `sys::redox`

This adds support for `read_timeout`, `write_timeout`, and `ttl` on `TcpStream`, `TcpListener`, and `UdpSocket` in the `sys::redox` module.

The DNS lookup has been set to use a 5 second timeout by default.

7 years agoUpdate for changes to TraitItem on master.
Eduard-Mihai Burtescu [Wed, 4 Jan 2017 02:36:20 +0000 (04:36 +0200)]
Update for changes to TraitItem on master.

7 years agoDon't leak the compiler's internal representation of scopes in error messages.
Eduard-Mihai Burtescu [Thu, 22 Dec 2016 17:46:08 +0000 (19:46 +0200)]
Don't leak the compiler's internal representation of scopes in error messages.

7 years agoFix build after rebase
Andrew Cann [Wed, 4 Jan 2017 03:07:32 +0000 (11:07 +0800)]
Fix build after rebase

7 years agoAuto merge of #38809 - alexcrichton:rustbuild-fresh, r=brson
bors [Wed, 4 Jan 2017 01:51:06 +0000 (01:51 +0000)]
Auto merge of #38809 - alexcrichton:rustbuild-fresh, r=brson

rustbuild: Fix a few rebuilding issues

Did a bit of investigation and found a few small unrelated issues, but this should help clean up a lot of errors we've been seeing locally.

7 years agoAuto merge of #38066 - bluss:string-slice-error, r=sfackler
bors [Tue, 3 Jan 2017 23:51:42 +0000 (23:51 +0000)]
Auto merge of #38066 - bluss:string-slice-error, r=sfackler

Use more specific panic message for &str slicing errors

Separate out of bounds errors from character boundary errors, and print
more details for character boundary errors.

It reports the first error it finds in:

1. begin out of bounds
2. end out of bounds
3. begin <= end violated
3. begin not char boundary
5. end not char boundary.

Example:

    &"abcαβγ"[..4]

    thread 'str::test_slice_fail_boundary_1' panicked at 'byte index 4 is not
    a char boundary; it is inside 'α' (bytes 3..5) of `abcαβγ`'

Fixes #38052

7 years agoRevert cargo.lock
Jeremy Soller [Tue, 3 Jan 2017 22:47:14 +0000 (15:47 -0700)]
Revert cargo.lock

7 years agoRemove -lc, -lm from the target spec - the cross compiler will link those
Jeremy Soller [Tue, 3 Jan 2017 22:42:41 +0000 (15:42 -0700)]
Remove -lc, -lm from the target spec - the cross compiler will link those

7 years agorustbuild: Update where we look for mtime changes
Alex Crichton [Tue, 3 Jan 2017 22:16:05 +0000 (14:16 -0800)]
rustbuild: Update where we look for mtime changes

Recent versions of Cargo lift less output up into the "main" directory, so let's
look more inside the `deps` folder for changes to propagate differences.

Closes #38744
Closes #38746

7 years agorustbuild: Allow create_sysroot in stage0
Alex Crichton [Tue, 3 Jan 2017 22:07:30 +0000 (14:07 -0800)]
rustbuild: Allow create_sysroot in stage0

Despite what the comment says, we actually need to do this. We're not cleaning
out the stage0 compiler's sysroot, but rather just our own sysroot that we
assembled previously.

7 years agosimplify Copy implementation error reporting
Ariel Ben-Yehuda [Tue, 3 Jan 2017 21:54:12 +0000 (23:54 +0200)]
simplify Copy implementation error reporting

Span the affected fields instead of reporting the field/variant name.

7 years agorustfmt coherence::builtin
Ariel Ben-Yehuda [Tue, 3 Jan 2017 19:51:28 +0000 (21:51 +0200)]
rustfmt coherence::builtin

7 years agonormalize field types in copy implementations
Ariel Ben-Yehuda [Sun, 4 Dec 2016 00:04:08 +0000 (02:04 +0200)]
normalize field types in copy implementations

Fixes #34377.

7 years agocoherence: check builtin impls after the specialization graph is ready
Ariel Ben-Yehuda [Sat, 3 Dec 2016 23:32:49 +0000 (01:32 +0200)]
coherence: check builtin impls after the specialization graph is ready

Fixes #33187.

7 years agocoherence: code cleanup
Ariel Ben-Yehuda [Sat, 3 Dec 2016 22:58:13 +0000 (00:58 +0200)]
coherence: code cleanup

7 years agocoherence: move the builtin trait checks to their own module
Ariel Ben-Yehuda [Sat, 3 Dec 2016 22:28:30 +0000 (00:28 +0200)]
coherence: move the builtin trait checks to their own module

no functional changes

7 years agoProperly ban the negation of unsigned integers in type-checking.
Eduard-Mihai Burtescu [Tue, 3 Jan 2017 19:48:17 +0000 (21:48 +0200)]
Properly ban the negation of unsigned integers in type-checking.

7 years agorustc: use -Xlinker when specifying an rpath with ',' in it
Jeremy Fitzhardinge [Tue, 3 Jan 2017 17:45:02 +0000 (09:45 -0800)]
rustc: use -Xlinker when specifying an rpath with ',' in it

The `-Wl` option splits its parameters on commas, so if rustc specifies
`-Wl,-rpath,<path>` when `<path>` contains commas, the path gets split up
and the linker gets a partial path and spurious extra parameters.

Gcc/clang support the more verbose `-Xlinker` option to pass options
to the linker directly, so use it for comma-containing paths.

Fixes rust issue #38795.

7 years agoPrint attributes on expressions when pretty printing.
comex [Tue, 3 Jan 2017 19:24:53 +0000 (20:24 +0100)]
Print attributes on expressions when pretty printing.

7 years agoRegression test and exploratory unit test.
Felix S. Klock II [Tue, 3 Jan 2017 14:54:38 +0000 (09:54 -0500)]
Regression test and exploratory unit test.

7 years agoDont check stability for items that are not pub to universe.
Felix S. Klock II [Thu, 29 Dec 2016 21:00:53 +0000 (16:00 -0500)]
Dont check stability for items that are not pub to universe.

Includes special case handling for trait methods.

Fix #38412.

7 years agoAuto merge of #38473 - zackmdavis:issue_kebab, r=sanxiyn
bors [Tue, 3 Jan 2017 09:42:22 +0000 (09:42 +0000)]
Auto merge of #38473 - zackmdavis:issue_kebab, r=sanxiyn

prefer hyphens in test files named after issue numbers

We have a lot of tests with filenames honoring particular issues by
number. Typically, these are called issue-${issue_no}.rs (note the
hyphen):

```
$ find . -regextype posix-egrep -regex '.*/issue-[0-9]*.rs' | wc
   1289    1289   35935
```

We also had a much smaller number of files that are like this, but don't
have a hyphen in between the substring `issue` and the number:

```
$ find . -regextype posix-egrep -regex '.*/issue[0-9]*.rs'
./debuginfo/issue14411.rs
./debuginfo/issue12886.rs
./debuginfo/issue13213.rs
./debuginfo/issue22656.rs
./debuginfo/issue7712.rs
./compile-fail/issue32829.rs
./run-pass/issue24353.rs
./run-pass/issue34796.rs
./run-pass/issue18173.rs
./run-pass/issue22346.rs
./run-pass/auxiliary/issue13507.rs
./run-pass/issue26127.rs
./run-pass/issue22008.rs
./run-pass/issue34569.rs
./run-pass/issue29927.rs
./run-pass/issue36260.rs
```

Some would argue that the inconsistency is æsthetically displeasing,
hence this trivial patch. (Note that run-pass/auxiliary/issue13507.rs
has an excuse; it's `use`d in run-pass/issue-13507-2.rs; the matter of
there being two different compile-fail tests with different name
conventions for issue no. 32829 is also neglected here for the sake of
keeping this trivial cleanup patch as trivial as possible for ease of
review.)

7 years agoFix make tidy
Andrew Cann [Sat, 31 Dec 2016 01:17:51 +0000 (09:17 +0800)]
Fix make tidy

7 years agoChange file structure, add comments for inhabitedness.rs
Andrew Cann [Sat, 31 Dec 2016 00:51:25 +0000 (08:51 +0800)]
Change file structure, add comments for inhabitedness.rs