]> git.lizzy.rs Git - rust.git/log
rust.git
2 years agoAuto merge of #92711 - zredb:issue-90187-fix, r=notriddle
bors [Sun, 30 Jan 2022 20:57:34 +0000 (20:57 +0000)]
Auto merge of #92711 - zredb:issue-90187-fix, r=notriddle

rustdoc: Remove `def_id_no_primitives`

Fixes #90187.

2 years agoAuto merge of #93482 - ehuss:rollup-qjyppci, r=ehuss
bors [Sun, 30 Jan 2022 18:12:08 +0000 (18:12 +0000)]
Auto merge of #93482 - ehuss:rollup-qjyppci, r=ehuss

Rollup of 5 pull requests

Successful merges:

 - #92887 (Bootstrap compiler update)
 - #92908 (Render more readable macro matcher tokens in rustdoc)
 - #93183 (rustdoc: mobile nav fixes)
 - #93192 (Add VS 2022 into error message)
 - #93475 (Add test to ensure that theme is applied correctly when going back in history)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoRollup merge of #93475 - GuillaumeGomez:theme-in-history, r=jsha
Eric Huss [Sun, 30 Jan 2022 16:37:51 +0000 (08:37 -0800)]
Rollup merge of #93475 - GuillaumeGomez:theme-in-history, r=jsha

Add test to ensure that theme is applied correctly when going back in history

Fixes #93258.

r? `@jsha`

2 years agoRollup merge of #93192 - theidexisted:patch-1, r=wesleywiser
Eric Huss [Sun, 30 Jan 2022 16:37:50 +0000 (08:37 -0800)]
Rollup merge of #93192 - theidexisted:patch-1, r=wesleywiser

Add VS 2022 into error message

2 years agoRollup merge of #93183 - jsha:mobile-nav-fixes, r=GuillaumeGomez
Eric Huss [Sun, 30 Jan 2022 16:37:49 +0000 (08:37 -0800)]
Rollup merge of #93183 - jsha:mobile-nav-fixes, r=GuillaumeGomez

rustdoc: mobile nav fixes

- Make sure the mobile-topbar doesn't overflow its height if the user sets a bigger font.

- Make sure the sidebar can be scrolled all the way to the bottom by shortening it to accommodate the mobile-topbar.

- Make the item name in the mobile-topbar clickable to go to the top of the page.

- Remove excess padding sidebar in mobile mode.

Demo https://rustdoc.crud.net/jsha/mobile-nav-fixes/std/string/struct.String.html

r? `@GuillaumeGomez`

2 years agoRollup merge of #92908 - dtolnay:rustdoc, r=GuillaumeGomez
Eric Huss [Sun, 30 Jan 2022 16:37:47 +0000 (08:37 -0800)]
Rollup merge of #92908 - dtolnay:rustdoc, r=GuillaumeGomez

Render more readable macro matcher tokens in rustdoc

Follow-up to #92334.

This PR lifts some of the token rendering logic from https://github.com/dtolnay/prettyplease into rustdoc so that even the matchers for which a source code snippet is not available (because they are macro-generated, or any other reason) follow some baseline good assumptions about where the tokens in the macro matcher are appropriate to space.

The below screenshots show an example of the difference using one of the gnarliest macros I could find. Some things to notice:

- In the **before**, notice how a couple places break in between `$(....)`↵`*`, which is just about the worst possible place that it could break.

- In the **before**, the lines that wrapped are weirdly indented by 1 space of indentation relative to column 0. In the **after**, we use the typical way of block indenting in Rust syntax which is put the open/close delimiters on their own line and indent their contents by 4 spaces relative to the previous line (so 8 spaces relative to column 0, because the matcher itself is indented by 4 relative to the `macro_rules` header).

- In the **after**, macro_rules metavariables like `$tokens:tt` are kept together, which is how just about everybody writing Rust today writes them.

## Before

![Screenshot from 2022-01-14 13-05-53](https://user-images.githubusercontent.com/1940490/149585105-1f182b78-751f-421f-a234-9dbc04fa3bbd.png)

## After

![Screenshot from 2022-01-14 13-06-04](https://user-images.githubusercontent.com/1940490/149585118-d4b52ea7-3e67-4b6e-a12b-31dfb8172f86.png)

r? `@camelid`

2 years agoRollup merge of #92887 - pietroalbini:pa-bootstrap-update, r=Mark-Simulacrum
Eric Huss [Sun, 30 Jan 2022 16:37:46 +0000 (08:37 -0800)]
Rollup merge of #92887 - pietroalbini:pa-bootstrap-update, r=Mark-Simulacrum

Bootstrap compiler update

r? ``@Mark-Simulacrum``

2 years agoAdd test to ensure that theme is applied correctly when going back in history
Guillaume Gomez [Sun, 30 Jan 2022 10:39:10 +0000 (11:39 +0100)]
Add test to ensure that theme is applied correctly when going back in history

2 years agoAuto merge of #93468 - matthiaskrgr:rollup-vxullvd, r=matthiaskrgr
bors [Sun, 30 Jan 2022 10:30:42 +0000 (10:30 +0000)]
Auto merge of #93468 - matthiaskrgr:rollup-vxullvd, r=matthiaskrgr

Rollup of 8 pull requests

Successful merges:

 - #93256 (Make `join!` description more accurate)
 - #93358 (Add note suggesting that predicate may be satisfied, but is not `const`)
 - #93362 (Do not register infer var for GAT projection in RPIT)
 - #93391 (rustdoc: remove tooltip from source link)
 - #93414 (Move unstable is_{arch}_feature_detected! macros to std::arch)
 - #93441 (rustdoc: load the set of in-scope traits for modules with no docstring)
 - #93459 (fs: Don't copy d_name from struct dirent)
 - #93463 (Rename _args -> args in format_args expansion)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agorustdoc: small fixes to mobile navigation
Jacob Hoffman-Andrews [Sat, 22 Jan 2022 01:44:54 +0000 (17:44 -0800)]
rustdoc: small fixes to mobile navigation

- Make sure the mobile-topbar doesn't overflow its height if the user
  sets a bigger font.

- Make sure the sidebar can be scrolled all the way to the bottom by
  shortening it to accommodate the mobile-topbar.

- Make the item name in the mobile-topbar clickable to go to the top of
  the page.

- Remove excess padding sidebar in mobile mode.

2 years agoRollup merge of #93463 - dtolnay:_args, r=cjgillot
Matthias Krüger [Sat, 29 Jan 2022 23:04:17 +0000 (00:04 +0100)]
Rollup merge of #93463 - dtolnay:_args, r=cjgillot

Rename _args -> args in format_args expansion

As observed in https://github.com/rust-lang/rust/pull/91359#discussion_r786058960, prior to that PR this variable was sometimes never used, such as in the case of:

```rust
println!("");

// used to expand to:
::std::io::_print(
    ::core::fmt::Arguments::new_v1(
        &["\n"],
        &match () {
            _args => [],
        },
    ),
);
```

so the leading underscore in `_args` was used to suppress an unused variable lint. However after #91359 the variable is always used when present, as the unused case would instead expand to:

```rust
::std::io::_print(::core::fmt::Arguments::new_v1(&["\n"], &[]));
```

2 years agoRollup merge of #93459 - tavianator:dirent-copy-only-reclen, r=cuviper
Matthias Krüger [Sat, 29 Jan 2022 23:04:16 +0000 (00:04 +0100)]
Rollup merge of #93459 - tavianator:dirent-copy-only-reclen, r=cuviper

fs: Don't copy d_name from struct dirent

The dirent returned from readdir() is only guaranteed to be valid for
d_reclen bytes on common platforms.  Since we copy the name separately
anyway, we can copy everything except d_name into DirEntry::entry.

Fixes #93384.

2 years agoRollup merge of #93441 - notriddle:notriddle/collect-crate-doc-links-very-early,...
Matthias Krüger [Sat, 29 Jan 2022 23:04:15 +0000 (00:04 +0100)]
Rollup merge of #93441 - notriddle:notriddle/collect-crate-doc-links-very-early, r=petrochenkov

rustdoc: load the set of in-scope traits for modules with no docstring

Fixes #93428

This fix is a response to a couple of special cases related to the `module_id`, which is eventually used for trait candidates:

  * The module id is always set to the current crate, when checking `crate::`.

    Normally, the set of in-scope traits would be set in `load_links_in_attrs`, but if there are no doc comments, then that loop will never run.

  * the module id is set to the parent module, when resolving a module that is spelled like this:

        // Notice how we use an outlined doc comment here!
        // [`Test::my_fn`]
        mod something {
        }

    As with the above problem with `crate::`, we need to make sure the module gets its traits in scope resolved, even if it has no doc comments of its own.

2 years agoRollup merge of #93414 - Amanieu:std_arch_detect, r=m-ou-se
Matthias Krüger [Sat, 29 Jan 2022 23:04:14 +0000 (00:04 +0100)]
Rollup merge of #93414 - Amanieu:std_arch_detect, r=m-ou-se

Move unstable is_{arch}_feature_detected! macros to std::arch

These macros are unstable, except for `is_x86_feature_detected` which is still exported from the crate root for backwards-compatibility.

This should unblock the stabilization of `is_aarch64_feature_detected`.

r? ```@m-ou-se```

2 years agoRollup merge of #93391 - notriddle:notriddle/remove-srclink-tooltip, r=jsha,Guillaume...
Matthias Krüger [Sat, 29 Jan 2022 23:04:13 +0000 (00:04 +0100)]
Rollup merge of #93391 - notriddle:notriddle/remove-srclink-tooltip, r=jsha,GuillaumeGomez

rustdoc: remove tooltip from source link

This made more sense back when it was abbreviated, but now it seems redundant.

2 years agoRollup merge of #93362 - compiler-errors:ice-gat-in-rpit, r=oli-obk
Matthias Krüger [Sat, 29 Jan 2022 23:04:12 +0000 (00:04 +0100)]
Rollup merge of #93362 - compiler-errors:ice-gat-in-rpit, r=oli-obk

Do not register infer var for GAT projection in RPIT

Fixes #93340
Fixes #91603

r? ```@oli-obk```

2 years agoRollup merge of #93358 - compiler-errors:is-not-const, r=fee1-dead
Matthias Krüger [Sat, 29 Jan 2022 23:04:11 +0000 (00:04 +0100)]
Rollup merge of #93358 - compiler-errors:is-not-const, r=fee1-dead

Add note suggesting that predicate may be satisfied, but is not `const`

Not sure if we should be printing this in addition to, or perhaps _instead_ of the help message:
```
help: the trait `~const Add` is not implemented for `NonConstAdd`
```

Also added `ParamEnv::is_const` and `PolyTraitPredicate::is_const_if_const` and, in a separate commit, used those in other places instead of `== hir::Constness::Const`, etc.

r? ````@fee1-dead````

2 years agoRollup merge of #93256 - EFanZh:patch-1, r=joshtriplett
Matthias Krüger [Sat, 29 Jan 2022 23:04:10 +0000 (00:04 +0100)]
Rollup merge of #93256 - EFanZh:patch-1, r=joshtriplett

Make `join!` description more accurate

2 years agofs: Add a regression test for #93384
Tavian Barnes [Sat, 29 Jan 2022 17:18:27 +0000 (12:18 -0500)]
fs: Add a regression test for #93384

2 years agofs: Don't copy d_name from struct dirent
Tavian Barnes [Sat, 29 Jan 2022 16:23:28 +0000 (11:23 -0500)]
fs: Don't copy d_name from struct dirent

The dirent returned from readdir() is only guaranteed to be valid for
d_reclen bytes on common platforms.  Since we copy the name separately
anyway, we can copy everything except d_name into DirEntry::entry.

Fixes #93384.

2 years agoRename _args -> args in format_args expansion
David Tolnay [Sat, 29 Jan 2022 20:44:41 +0000 (12:44 -0800)]
Rename _args -> args in format_args expansion

2 years agoAuto merge of #93457 - matthiaskrgr:rollup-e43ry1l, r=matthiaskrgr
bors [Sat, 29 Jan 2022 16:08:35 +0000 (16:08 +0000)]
Auto merge of #93457 - matthiaskrgr:rollup-e43ry1l, r=matthiaskrgr

Rollup of 8 pull requests

Successful merges:

 - #88205 (Add Explanation For Error E0772)
 - #92274 (Add `intrinsics::const_deallocate`)
 - #93236 (Make `NonNull::new` `const`)
 - #93299 (Fix dot separator when there is no source link)
 - #93410 (kmc-solid: Implement `net::FileDesc::duplicate`)
 - #93424 (fix nit)
 - #93431 (remove unused `jemallocator` crate)
 - #93453 (Add GUI theme change test)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoRollup merge of #93453 - GuillaumeGomez:theme-change-test, r=jsha
Matthias Krüger [Sat, 29 Jan 2022 13:46:35 +0000 (14:46 +0100)]
Rollup merge of #93453 - GuillaumeGomez:theme-change-test, r=jsha

Add GUI theme change test

r? `@jsha`

2 years agoRollup merge of #93431 - lqd:remove-jemallocator, r=Mark-Simulacrum
Matthias Krüger [Sat, 29 Jan 2022 13:46:34 +0000 (14:46 +0100)]
Rollup merge of #93431 - lqd:remove-jemallocator, r=Mark-Simulacrum

remove unused `jemallocator` crate

When it was noticed that the rustc binary wasn't actually using jemalloc via `#[global_allocator]` and that was removed, the dependency remained.

Tests pass locally with a `jemalloc = true` build, but I'll trigger a try build to ensure I haven't missed an edge-case somewhere.

r? ```@ghost``` until that completes

2 years agoRollup merge of #93424 - lcnr:nit, r=spastorino
Matthias Krüger [Sat, 29 Jan 2022 13:46:33 +0000 (14:46 +0100)]
Rollup merge of #93424 - lcnr:nit, r=spastorino

fix nit

2 years agoRollup merge of #93410 - solid-rs:feat-kmc-solid-net-dup, r=dtolnay
Matthias Krüger [Sat, 29 Jan 2022 13:46:32 +0000 (14:46 +0100)]
Rollup merge of #93410 - solid-rs:feat-kmc-solid-net-dup, r=dtolnay

kmc-solid: Implement `net::FileDesc::duplicate`

This PR implements `std::sys::solid::net::FileDesc::duplicate`, which was accidentally left out when this target was added by #86191.

2 years agoRollup merge of #93299 - GuillaumeGomez:dot-separator-no-source, r=jsha
Matthias Krüger [Sat, 29 Jan 2022 13:46:32 +0000 (14:46 +0100)]
Rollup merge of #93299 - GuillaumeGomez:dot-separator-no-source, r=jsha

Fix dot separator when there is no source link

Fixes #92973.

We did well adding this test since there was a bug:

![Screenshot from 2022-01-25 17-05-48](https://user-images.githubusercontent.com/3050060/151016535-39b45f52-e1e0-4963-ad19-532e24ec4c9b.png)

r? `@jsha`

2 years agoRollup merge of #93236 - woppopo:const_nonnull_new, r=oli-obk
Matthias Krüger [Sat, 29 Jan 2022 13:46:31 +0000 (14:46 +0100)]
Rollup merge of #93236 - woppopo:const_nonnull_new, r=oli-obk

Make `NonNull::new` `const`

Tracking issue: #93235

2 years agoRollup merge of #92274 - woppopo:const_deallocate, r=oli-obk
Matthias Krüger [Sat, 29 Jan 2022 13:46:30 +0000 (14:46 +0100)]
Rollup merge of #92274 - woppopo:const_deallocate, r=oli-obk

Add `intrinsics::const_deallocate`

Tracking issue: #79597
Related: #91884

This allows deallocation of a memory allocated by `intrinsics::const_allocate`. At the moment, this can be only used to reduce memory usage, but in the future this may be useful to detect memory leaks (If an allocated memory remains after evaluation, raise an error...?).

2 years agoRollup merge of #88205 - danii:e0772, r=GuillaumeGomez
Matthias Krüger [Sat, 29 Jan 2022 13:46:29 +0000 (14:46 +0100)]
Rollup merge of #88205 - danii:e0772, r=GuillaumeGomez

Add Explanation For Error E0772

I've added an error explanation for the error code E0772.

Assists with #61137

2 years agoAuto merge of #92312 - BGR360:needs-test, r=Mark-Simulacrum
bors [Sat, 29 Jan 2022 13:04:51 +0000 (13:04 +0000)]
Auto merge of #92312 - BGR360:needs-test, r=Mark-Simulacrum

Add tests for three old ICEs

Closes #84044
Closes #91594
Closes #89066

2 years agoDocument about some behaviors of `const_(de)allocate` and add some tests.
woppopo [Sat, 29 Jan 2022 10:13:23 +0000 (19:13 +0900)]
Document about some behaviors of `const_(de)allocate` and add some tests.

2 years agoExtend theme change GUI test
Guillaume Gomez [Sat, 29 Jan 2022 09:44:27 +0000 (10:44 +0100)]
Extend theme change GUI test

2 years agoUpdate browser-ui-test version to 0.5.8
Guillaume Gomez [Sat, 29 Jan 2022 09:44:18 +0000 (10:44 +0100)]
Update browser-ui-test version to 0.5.8

2 years agoAuto merge of #93351 - anp:fuchsia-remove-dir-all, r=tmandry
bors [Sat, 29 Jan 2022 09:01:01 +0000 (09:01 +0000)]
Auto merge of #93351 - anp:fuchsia-remove-dir-all, r=tmandry

Bump libc and fix remove_dir_all on Fuchsia after CVE fix

With the previous `is_dir` impl, we would attempt to unlink
a directory in the None branch, but Fuchsia supports returning
ENOTEMPTY from unlinkat() without the AT_REMOVEDIR flag because
we don't currently differentiate unlinking files and directories
by default.

On the Fuchsia side I've opened https://fxbug.dev/92273 to discuss
whether this is the correct behavior, but it doesn't seem like
addressing the error code is necessary to make our tests happy.

Depends on https://github.com/rust-lang/libc/pull/2654 since we
apparently haven't needed to reference DT_UNKNOWN before this.

2 years agoAuto merge of #93434 - Mark-Simulacrum:apple-various, r=pietroalbini
bors [Sat, 29 Jan 2022 02:20:00 +0000 (02:20 +0000)]
Auto merge of #93434 - Mark-Simulacrum:apple-various, r=pietroalbini

Move tier-2 (without host tools) apple targets to separate builder

One-off (likely fairly unreliable, but give some idea) measurements:

* dist-apple-various (new):  2h10m
* dist-x86_64-apple: 2h55m -> 2h36m (cutting roughly 20 minutes)

2 years agoAdd test for old ICE in #89066
Ben Reeves [Mon, 27 Dec 2021 06:24:19 +0000 (00:24 -0600)]
Add test for old ICE in #89066

2 years agoAdd test for old ICE in #91594
Ben Reeves [Mon, 27 Dec 2021 06:09:19 +0000 (00:09 -0600)]
Add test for old ICE in #91594

2 years agoAdd test for old ICE
Ben Reeves [Mon, 27 Dec 2021 05:30:46 +0000 (23:30 -0600)]
Add test for old ICE

The ICE from #84044 no longer occurs.

2 years agoAuto merge of #93427 - matthiaskrgr:rollup-esd3ixl, r=matthiaskrgr
bors [Fri, 28 Jan 2022 23:20:38 +0000 (23:20 +0000)]
Auto merge of #93427 - matthiaskrgr:rollup-esd3ixl, r=matthiaskrgr

Rollup of 10 pull requests

Successful merges:

 - #92611 (Add links to the reference and rust by example for asm! docs and lints)
 - #93158 (wasi: implement `sock_accept` and enable networking)
 - #93239 (Add os::unix::net::SocketAddr::from_path)
 - #93261 (Some unwinding related cg_ssa cleanups)
 - #93295 (Avoid double panics when using `TempDir` in tests)
 - #93353 (Unimpl {Add,Sub,Mul,Div,Rem,BitXor,BitOr,BitAnd}<$t> for Saturating<$t>)
 - #93356 (Edit docs introduction for `std::cmp::PartialOrd`)
 - #93375 (fix typo `documenation`)
 - #93399 (rustbuild: Fix compiletest warning when building outside of root.)
 - #93404 (Fix a typo from #92899)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoFix remove_dir_all on Fuchsia after CVE fix.
Adam Perry [Wed, 26 Jan 2022 22:32:21 +0000 (22:32 +0000)]
Fix remove_dir_all on Fuchsia after CVE fix.

With the previous `is_dir` impl, we would attempt to unlink
a directory in the None branch, but Fuchsia supports returning
ENOTEMPTY from unlinkat() without the AT_REMOVEDIR flag because
we don't currently differentiate unlinking files and directories
by default.

On the Fuchsia side I've opened https://fxbug.dev/92273 to discuss
whether this is the correct behavior, but it doesn't seem like
addressing the error code is necessary to make our tests happy.

Updates std's libc crate to include DT_UNKNOWN for Fuchsia.

2 years agoAuto merge of #93426 - pnkfelix:issue-91671-backport-llvm-fix, r=nikic
bors [Fri, 28 Jan 2022 20:11:52 +0000 (20:11 +0000)]
Auto merge of #93426 - pnkfelix:issue-91671-backport-llvm-fix, r=nikic

backport llvm fix for issue 91671.

fix #91671

2 years agorustdoc: load the set of in-scope traits for modules with no docstring
Michael Howell [Fri, 28 Jan 2022 19:12:17 +0000 (12:12 -0700)]
rustdoc: load the set of in-scope traits for modules with no docstring

Fixes #93428

This fix is a response to a couple of special cases related to the
`module_id`, which is eventually used for trait candidates:

  * The module id is always set to the current crate, when checking `crate::`.

    Normally, the set of in-scope traits would be set in `load_links_in_attrs`,
    but if there are no doc comments, then that loop will never run.

  * the module id is set to the parent module, when resolving a module
    that is spelled like this:

        // Notice how we use an outlined doc comment here!
        // [`Test::my_fn`]
        mod something {
        }

    As with the above problem with `crate::`, we need to make sure the
    module gets its traits in scope resolved, even if it has no doc comments
    of its own.

2 years agoMove target-only apple targets to separate builder
Mark Rousskov [Fri, 28 Jan 2022 17:26:36 +0000 (12:26 -0500)]
Move target-only apple targets to separate builder

2 years agoAdd Explanation For Error E0772
Daniel Conley [Fri, 28 Jan 2022 16:00:56 +0000 (11:00 -0500)]
Add Explanation For Error E0772

2 years agoremove unused `jemallocator` crate
Rémy Rakic [Fri, 28 Jan 2022 15:56:05 +0000 (16:56 +0100)]
remove unused `jemallocator` crate

2 years agobackport llvm fix for issue 91671.
Felix S. Klock II [Fri, 28 Jan 2022 14:22:16 +0000 (09:22 -0500)]
backport llvm fix for issue 91671.

2 years agoRollup merge of #93404 - rust-lang:scottmcm-patch-1, r=wesleywiser
Matthias Krüger [Fri, 28 Jan 2022 14:20:30 +0000 (15:20 +0100)]
Rollup merge of #93404 - rust-lang:scottmcm-patch-1, r=wesleywiser

Fix a typo from #92899

Just happened to notice this in passing

2 years agoRollup merge of #93399 - ehuss:fix-compiletest-path-relative, r=Mark-Simulacrum
Matthias Krüger [Fri, 28 Jan 2022 14:20:29 +0000 (15:20 +0100)]
Rollup merge of #93399 - ehuss:fix-compiletest-path-relative, r=Mark-Simulacrum

rustbuild: Fix compiletest warning when building outside of root.

This fixes a warning that would happen when passing arguments to compiletest (like `x.py test src/test/ui`) when running `x.py` outside of the root source directory. For example, the CI builders do this, which causes a confusing warning message. This also fixes it so that passing a full path works (like `x.py test src/test/ui/hello.rs`) in the same scenario (previously it would just ignore the `hello.rs` part).

2 years agoRollup merge of #93375 - Kvicii:ISSUE_93374, r=notriddle
Matthias Krüger [Fri, 28 Jan 2022 14:20:28 +0000 (15:20 +0100)]
Rollup merge of #93375 - Kvicii:ISSUE_93374, r=notriddle

fix typo `documenation`

2 years agoRollup merge of #93356 - pierwill:partialord-headline, r=dtolnay
Matthias Krüger [Fri, 28 Jan 2022 14:20:27 +0000 (15:20 +0100)]
Rollup merge of #93356 - pierwill:partialord-headline, r=dtolnay

Edit docs introduction for `std::cmp::PartialOrd`

This makes `PartialOrd` consistent with the other three traits in this module, which all include links to their corresponding mathematical concepts on Wikipedia.

<img width="500" alt="Screen Shot 2022-01-26 at 10 24 23 PM" src="https://user-images.githubusercontent.com/19642016/151291720-decd85ed-cd6e-4be0-84a9-619b98ceb386.png">

2 years agoRollup merge of #93353 - kellerkindt:saturating_int_assign_impl, r=joshtriplett
Matthias Krüger [Fri, 28 Jan 2022 14:20:26 +0000 (15:20 +0100)]
Rollup merge of #93353 - kellerkindt:saturating_int_assign_impl, r=joshtriplett

Unimpl {Add,Sub,Mul,Div,Rem,BitXor,BitOr,BitAnd}<$t> for Saturating<$t>

Tracking issue #92354

Analog to 9648b313cc8896970a12f45b3bb5c0593c3d510f #93208 reduce `saturating_int_assign_impl` (#93208) to:

```rust
let mut value = Saturating(2u8);
value += 3u8;
value -= 1u8;
value *= 2u8;
value /= 2u8;
value %= 2u8;
value ^= 255u8;
value |= 123u8;
value &= 2u8;
```

See https://github.com/rust-lang/rust/pull/93208#issuecomment-1022564429

2 years agoRollup merge of #93295 - ChrisDenton:tempdir-double-panic, r=dtolnay
Matthias Krüger [Fri, 28 Jan 2022 14:20:25 +0000 (15:20 +0100)]
Rollup merge of #93295 - ChrisDenton:tempdir-double-panic, r=dtolnay

Avoid double panics when using `TempDir` in tests

`TempDir` could panic on drop if `remove_dir_all` returns an error. If this happens while already panicking, the test process would abort and therefore not show the test results.

This PR tries to avoid such double panics.

2 years agoRollup merge of #93261 - bjorn3:cg_ssa_refactor6, r=cjgillot
Matthias Krüger [Fri, 28 Jan 2022 14:20:24 +0000 (15:20 +0100)]
Rollup merge of #93261 - bjorn3:cg_ssa_refactor6, r=cjgillot

Some unwinding related cg_ssa cleanups

These should make it a bit easier for alternative codegen backends to implement unwinding.

2 years agoRollup merge of #93239 - Thomasdezeeuw:socketaddr_creation, r=m-ou-se
Matthias Krüger [Fri, 28 Jan 2022 14:20:23 +0000 (15:20 +0100)]
Rollup merge of #93239 - Thomasdezeeuw:socketaddr_creation, r=m-ou-se

Add os::unix::net::SocketAddr::from_path

Creates a new SocketAddr from a path, supports both regular paths and
abstract namespaces.

Note that `SocketAddr::from_abstract_namespace` could be removed after this as `SocketAddr::unix` also supports abstract namespaces.

Updates #65275
Unblocks https://github.com/tokio-rs/mio/issues/1527

r? `@m-ou-se`

2 years agoRollup merge of #93158 - haraldh:wasi_sock_accept, r=dtolnay
Matthias Krüger [Fri, 28 Jan 2022 14:20:22 +0000 (15:20 +0100)]
Rollup merge of #93158 - haraldh:wasi_sock_accept, r=dtolnay

wasi: implement `sock_accept` and enable networking

With the addition of `sock_accept()` to snapshot1, simple networking via a passed `TcpListener` is possible. This PR implements the basics to make a simple server work.

See also:
* [wasmtime tracking issue](https://github.com/bytecodealliance/wasmtime/issues/3730)
* [wasmtime PR](https://github.com/bytecodealliance/wasmtime/pull/3711)

TODO:
* [ ] Discussion of `SocketAddr` return value for `::accept()`

```rust
        Ok((
            TcpStream::from_inner(unsafe { Socket::from_raw_fd(fd as _) }),
            // WASI has no concept of SocketAddr yet
            // return an unspecified IPv4Addr
            SocketAddr::new(Ipv4Addr::UNSPECIFIED.into(), 0),
        ))
```

2 years agoRollup merge of #92611 - Amanieu:asm-reference, r=m-ou-se
Matthias Krüger [Fri, 28 Jan 2022 14:20:21 +0000 (15:20 +0100)]
Rollup merge of #92611 - Amanieu:asm-reference, r=m-ou-se

Add links to the reference and rust by example for asm! docs and lints

These were previously removed in #91728 due to broken links.

cc ``@ehuss`` since this updates the rust-by-example submodule

2 years agofix nit
lcnr [Fri, 28 Jan 2022 14:02:47 +0000 (15:02 +0100)]
fix nit

2 years agoupdate cfg(bootstrap)s
Pietro Albini [Fri, 14 Jan 2022 08:50:49 +0000 (09:50 +0100)]
update cfg(bootstrap)s

2 years agobump bootstrap compiler
Pietro Albini [Fri, 14 Jan 2022 08:50:33 +0000 (09:50 +0100)]
bump bootstrap compiler

2 years agoUpdate tracking issue for unix_socket_creation
Thomas de Zeeuw [Fri, 28 Jan 2022 14:00:17 +0000 (15:00 +0100)]
Update tracking issue for unix_socket_creation

2 years agoUpdate stdarch submodule
Amanieu d'Antras [Fri, 28 Jan 2022 09:51:09 +0000 (09:51 +0000)]
Update stdarch submodule

2 years agoAuto merge of #93006 - michaelwoerister:fix-unsized-ptr-debuginfo, r=davidtwco,oli-obk
bors [Fri, 28 Jan 2022 12:46:13 +0000 (12:46 +0000)]
Auto merge of #93006 - michaelwoerister:fix-unsized-ptr-debuginfo, r=davidtwco,oli-obk

Fix debuginfo for pointers/references to unsized types

This PR makes the compiler emit fat pointer debuginfo in all cases. Before, we sometimes got thin-pointer debuginfo, making it impossible to fully interpret the pointed to memory in debuggers. The code is actually cleaner now, especially around generation of trait object pointer debuginfo.

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

~~Blocked on https://github.com/rust-lang/rust/pull/92729.~~

2 years agowasi: enable TcpListener and TcpStream
Harald Hoyer [Fri, 21 Jan 2022 13:19:48 +0000 (14:19 +0100)]
wasi: enable TcpListener and TcpStream

With the addition of `sock_accept()` to snapshot1, simple networking via
a passed `TcpListener` is possible. This patch implements the basics to
make a simple server work.

Signed-off-by: Harald Hoyer <harald@profian.com>
2 years agowasi: update to wasi 0.11.0
Harald Hoyer [Fri, 21 Jan 2022 13:19:13 +0000 (14:19 +0100)]
wasi: update to wasi 0.11.0

To make use of `sock_accept()`, update the wasi crate to `0.11.0`.

Signed-off-by: Harald Hoyer <harald@profian.com>
2 years agoMove unstable is_{arch}_feature_detected! macros to std::arch
Amanieu d'Antras [Fri, 28 Jan 2022 09:36:04 +0000 (09:36 +0000)]
Move unstable is_{arch}_feature_detected! macros to std::arch

2 years agoAuto merge of #90677 - bobrippling:suggest-tuple-parens, r=camelid
bors [Fri, 28 Jan 2022 09:46:22 +0000 (09:46 +0000)]
Auto merge of #90677 - bobrippling:suggest-tuple-parens, r=camelid

Suggest tuple-parentheses for enum variants

This follows on from #86493 / #86481, making the parentheses suggestion. To summarise, given the following code:

```rust
fn f() -> Option<(i32, i8)> {
    Some(1, 2)
}
```

The current output is:

```
error[E0061]: this enum variant takes 1 argument but 2 arguments were supplied
 --> b.rs:2:5
  |
2 |     Some(1, 2)
  |     ^^^^ -  - supplied 2 arguments
  |     |
  |     expected 1 argument

error: aborting due to previous error

For more information about this error, try `rustc --explain E0061`.
```

With this change, `rustc` will now suggest parentheses when:
- The callee is expecting a single tuple argument
- The number of arguments passed matches the element count in the above tuple
- The arguments' types match the tuple's fields

```
error[E0061]: this enum variant takes 1 argument but 2 arguments were supplied
 --> b.rs:2:5
  |
2 |     Some(1, 2)
  |     ^^^^ -  - supplied 2 arguments
  |
help: use parentheses to construct a tuple
  |
2 |     Some((1, 2))
  |          +    +
```

2 years ago[debuginfo] Fix and unify handling of fat pointers in debuginfo: Don't mark fat point...
Michael Woerister [Fri, 28 Jan 2022 09:41:36 +0000 (10:41 +0100)]
[debuginfo] Fix and unify handling of fat pointers in debuginfo: Don't mark fat pointer fields as artificial.

LLDB does not seem to see fields if they are marked with DW_AT_artificial
which breaks pretty printers that use these fields for decoding fat pointers.

2 years agoAdd a test case for using NonNull::new in const context
woppopo [Fri, 28 Jan 2022 09:41:35 +0000 (18:41 +0900)]
Add a test case for using NonNull::new in const context

2 years agoRemove extra empty doc line
Guillaume Gomez [Fri, 28 Jan 2022 09:06:41 +0000 (10:06 +0100)]
Remove extra empty doc line

2 years agotest_const_allocate_at_runtime
woppopo [Fri, 28 Jan 2022 08:27:33 +0000 (17:27 +0900)]
test_const_allocate_at_runtime

2 years agoEdit docs introduction for `std::cmp::PartialOrd`
pierwill [Thu, 27 Jan 2022 02:57:46 +0000 (20:57 -0600)]
Edit docs introduction for `std::cmp::PartialOrd`

This makes `PartialOrd` consistent with the other three traits in this
module, which all include links to their respective mathematical concepts
on Wikipedia.

2 years agoAuto merge of #93343 - lqd:attrs, r=spastorino
bors [Fri, 28 Jan 2022 06:28:08 +0000 (06:28 +0000)]
Auto merge of #93343 - lqd:attrs, r=spastorino

Only traverse attrs once while checking for coherence override attributes

In coherence, while checking for negative impls override attributes: only traverse the `DefId`s' attributes once.

This PR is an easy way to get back some of the small perf loss in #93175

2 years agokmc-solid: Implement `FileDesc::duplicate`
Tomoaki Kawada [Fri, 28 Jan 2022 05:53:54 +0000 (14:53 +0900)]
kmc-solid: Implement `FileDesc::duplicate`

2 years agofix typo `documenation`
Kvicii [Fri, 28 Jan 2022 02:26:49 +0000 (10:26 +0800)]
fix typo `documenation`

2 years agoFix a typo from #92899
scottmcm [Fri, 28 Jan 2022 01:35:33 +0000 (01:35 +0000)]
Fix a typo from #92899

Just happened to notice this in passing

2 years agoAuto merge of #93376 - flip1995:clippyup, r=Manishearth
bors [Fri, 28 Jan 2022 01:33:00 +0000 (01:33 +0000)]
Auto merge of #93376 - flip1995:clippyup, r=Manishearth

Update Clippy

r? `@Manishearth`

2 years agorustbuild: Fix compiletest warning when building outside of root.
Eric Huss [Thu, 27 Jan 2022 23:57:38 +0000 (15:57 -0800)]
rustbuild: Fix compiletest warning when building outside of root.

2 years agoAuto merge of #93390 - matthiaskrgr:rollup-4xeki5w, r=matthiaskrgr
bors [Thu, 27 Jan 2022 22:34:34 +0000 (22:34 +0000)]
Auto merge of #93390 - matthiaskrgr:rollup-4xeki5w, r=matthiaskrgr

Rollup of 8 pull requests

Successful merges:

 - #91641 (Define c_char using cfg_if rather than repeating 40-line cfg)
 - #92899 (Mention std::iter::zip in Iterator::zip docs)
 - #93193 (Add test for stable hash uniqueness of adjacent field values)
 - #93325 (Introduce a limit to Levenshtein distance computation)
 - #93339 (rustdoc: add test case for multiple traits and erased names)
 - #93357 (Clarify the `usage-of-qualified-ty` error message.)
 - #93363 (`#[rustc_pass_by_value]` cleanup)
 - #93365 (More arena cleanups)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agorustdoc: remove tooltip from source link
Michael Howell [Thu, 27 Jan 2022 22:09:52 +0000 (15:09 -0700)]
rustdoc: remove tooltip from source link

This made more sense back when it was abbreviated, but now it
seems redundant.

2 years agoRollup merge of #93365 - nnethercote:more-arena-cleanups, r=oli-obk
Matthias Krüger [Thu, 27 Jan 2022 21:32:30 +0000 (22:32 +0100)]
Rollup merge of #93365 - nnethercote:more-arena-cleanups, r=oli-obk

More arena cleanups

A sequel to #90990.

r? `@oli-obk`

2 years agoRollup merge of #93363 - lcnr:pass-by-value, r=petrochenkov
Matthias Krüger [Thu, 27 Jan 2022 21:32:29 +0000 (22:32 +0100)]
Rollup merge of #93363 - lcnr:pass-by-value, r=petrochenkov

`#[rustc_pass_by_value]` cleanup

2 years agoRollup merge of #93357 - nnethercote:clarify-usage-of-qualified-ty, r=lcnr
Matthias Krüger [Thu, 27 Jan 2022 21:32:28 +0000 (22:32 +0100)]
Rollup merge of #93357 - nnethercote:clarify-usage-of-qualified-ty, r=lcnr

Clarify the `usage-of-qualified-ty` error message.

I found this message confusing when I encountered it. This commit makes
it clearer that you have to import the unqualified type yourself.

r? `@lcnr`

2 years agoRollup merge of #93339 - notriddle:notriddle/test-generics-multi-trait, r=GuillaumeGomez
Matthias Krüger [Thu, 27 Jan 2022 21:32:27 +0000 (22:32 +0100)]
Rollup merge of #93339 - notriddle:notriddle/test-generics-multi-trait, r=GuillaumeGomez

rustdoc: add test case for multiple traits and erased names

https://github.com/rust-lang/rust/pull/92339#discussion_r792805289

2 years agoRollup merge of #93325 - tmiasko:lev, r=davidtwco
Matthias Krüger [Thu, 27 Jan 2022 21:32:26 +0000 (22:32 +0100)]
Rollup merge of #93325 - tmiasko:lev, r=davidtwco

Introduce a limit to Levenshtein distance computation

Incorporate distance limit from `find_best_match_for_name` directly into
Levenshtein distance computation.

Use the string size difference as a lower bound on the distance and exit
early when it exceeds the specified limit.

After finding a candidate within a limit, lower the limit further to
restrict the search space.

2 years agoRollup merge of #93193 - Kobzol:stable-hash-permutation-test, r=the8472
Matthias Krüger [Thu, 27 Jan 2022 21:32:24 +0000 (22:32 +0100)]
Rollup merge of #93193 - Kobzol:stable-hash-permutation-test, r=the8472

Add test for stable hash uniqueness of adjacent field values

This PR adds a simple test to check that stable hash will produce a different hash if the order of two values that have the same combined bit pattern changes.

r? `@the8472`

2 years agoRollup merge of #92899 - cameron1024:zip-docs, r=dtolnay
Matthias Krüger [Thu, 27 Jan 2022 21:32:23 +0000 (22:32 +0100)]
Rollup merge of #92899 - cameron1024:zip-docs, r=dtolnay

Mention std::iter::zip in Iterator::zip docs

Closes https://github.com/rust-lang/rust/issues/91960

I'm not sure about the wording. I think it's alright, but happy to change.

2 years agoRollup merge of #91641 - dtolnay:cchar-if, r=Mark-Simulacrum
Matthias Krüger [Thu, 27 Jan 2022 21:32:23 +0000 (22:32 +0100)]
Rollup merge of #91641 - dtolnay:cchar-if, r=Mark-Simulacrum

Define c_char using cfg_if rather than repeating 40-line cfg

Libstd has a 40-line cfg that defines the targets on which `c_char` is unsigned, and then repeats the same cfg with `not(…)` for the targets on which `c_char` is signed.

This PR replaces it with a `cfg_if!` in which an `else` takes care of the signed case.

I confirmed that `x.py doc library/std` inlines the type alias because c_char_definition is not a publicly accessible path:

![Screenshot from 2021-12-07 13-42-07](https://user-images.githubusercontent.com/1940490/145110596-f1058406-9f32-44ff-9a81-1dfd19b4a24f.png)

2 years agoTouch up PR 92899 Iterator::zip docs
David Tolnay [Thu, 27 Jan 2022 20:41:03 +0000 (12:41 -0800)]
Touch up PR 92899 Iterator::zip docs

2 years agoClarify `ArenaAllocatable`'s second parameter.
Nicholas Nethercote [Tue, 25 Jan 2022 23:46:40 +0000 (10:46 +1100)]
Clarify `ArenaAllocatable`'s second parameter.

It's simply a binary thing to allow different behaviour for `Copy` vs
`!Copy` types. The new code makes this much clearer; I was scratching my
head over the old code for some time.

2 years agoAdd some comments.
Nicholas Nethercote [Tue, 25 Jan 2022 23:33:41 +0000 (10:33 +1100)]
Add some comments.

2 years ago[debuginfo] Fix and unify handling of fat pointers in debuginfo: Change doc comment...
Michael Woerister [Thu, 27 Jan 2022 15:55:48 +0000 (16:55 +0100)]
[debuginfo] Fix and unify handling of fat pointers in debuginfo: Change doc comment so it is not interpreted as doc-test.

2 years agoMerge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
flip1995 [Thu, 27 Jan 2022 14:12:45 +0000 (15:12 +0100)]
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup

2 years agofix typo `documenation`
Kvicii [Thu, 27 Jan 2022 14:07:17 +0000 (22:07 +0800)]
fix typo `documenation`

2 years agoAuto merge of #8359 - flip1995:rustup, r=flip1995
bors [Thu, 27 Jan 2022 13:48:23 +0000 (13:48 +0000)]
Auto merge of #8359 - flip1995:rustup, r=flip1995

Rustup

r? `@ghost`

changelog: none

2 years agoBump nightly version -> 2022-01-27
flip1995 [Thu, 27 Jan 2022 13:23:42 +0000 (14:23 +0100)]
Bump nightly version -> 2022-01-27

2 years agoMerge remote-tracking branch 'upstream/master' into rustup
flip1995 [Thu, 27 Jan 2022 13:23:31 +0000 (14:23 +0100)]
Merge remote-tracking branch 'upstream/master' into rustup

2 years ago[debuginfo] Fix and unify handling of fat pointers in debuginfo: Fix some debuginfo...
Michael Woerister [Tue, 25 Jan 2022 11:14:17 +0000 (12:14 +0100)]
[debuginfo] Fix and unify handling of fat pointers in debuginfo: Fix some debuginfo tests for old GDB versions and 32-bit targets.

2 years agotry apply `rustc_pass_by_value` to `Span`
lcnr [Thu, 27 Jan 2022 07:17:13 +0000 (08:17 +0100)]
try apply `rustc_pass_by_value` to `Span`

2 years agoUse sockaddr_un in unix SocketAddr::from_path
Thomas de Zeeuw [Thu, 27 Jan 2022 08:54:28 +0000 (09:54 +0100)]
Use sockaddr_un in unix SocketAddr::from_path