Skip to content

Commit 8a79d08

Browse files
committed
Auto merge of #68566 - pietroalbini:rollup-22hbo3e, r=pietroalbini
Rollup of 4 pull requests Successful merges: - #67928 (Update RELEASES.md for 1.41.0) - #68370 (Ensure that we error when calling "const extern fn" with wrong convention) - #68531 ([self-profiler] Two small cleanups) - #68562 (Fix spelling errors) Failed merges: r? @ghost
2 parents 1d5f6d4 + 5f9284c commit 8a79d08

File tree

10 files changed

+170
-19
lines changed

10 files changed

+170
-19
lines changed

RELEASES.md

+115
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,118 @@
1+
Version 1.41.0 (2020-01-30)
2+
===========================
3+
4+
Language
5+
--------
6+
7+
- [You can now pass type parameters to foreign items when implementing
8+
traits.][65879] E.g. You can now write `impl<T> From<Foo> for Vec<T> {}`.
9+
- [You can now arbitrarily nest receiver types in the `self` position.][64325] E.g. you can
10+
now write `fn foo(self: Box<Box<Self>>) {}`. Previously only `Self`, `&Self`,
11+
`&mut Self`, `Arc<Self>`, `Rc<Self>`, and `Box<Self>` were allowed.
12+
- [You can now use any valid identifier in a `format_args` macro.][66847]
13+
Previously identifiers starting with an underscore were not allowed.
14+
- [Visibility modifiers (e.g. `pub`) are now syntactically allowed on trait items and
15+
enum variants.][66183] These are still rejected semantically, but
16+
can be seen and parsed by procedural macros and conditional compilation.
17+
18+
Compiler
19+
--------
20+
21+
- [Rustc will now warn if you have unused loop `'label`s.][66325]
22+
- [Removed support for the `i686-unknown-dragonfly` target.][67255]
23+
- [Added tier 3 support\* for the `riscv64gc-unknown-linux-gnu` target.][66661]
24+
- [You can now pass an arguments file passing the `@path` syntax
25+
to rustc.][66172] Note that the format differs somewhat from what is
26+
found in other tooling; please see [the documentation][argfile-docs] for
27+
more information.
28+
- [You can now provide `--extern` flag without a path, indicating that it is
29+
available from the search path or specified with an `-L` flag.][64882]
30+
31+
\* Refer to Rust's [platform support page][forge-platform-support] for more
32+
information on Rust's tiered platform support.
33+
34+
[argfile-docs]: https://doc.rust-lang.org/nightly/rustc/command-line-arguments.html#path-load-command-line-flags-from-a-path
35+
36+
Libraries
37+
---------
38+
39+
- [The `core::panic` module is now stable.][66771] It was already stable
40+
through `std`.
41+
- [`NonZero*` numerics now implement `From<NonZero*>` if it's a smaller integer
42+
width.][66277] E.g. `NonZeroU16` now implements `From<NonZeroU8>`.
43+
- [`MaybeUninit<T>` now implements `fmt::Debug`.][65013]
44+
45+
Stabilized APIs
46+
---------------
47+
48+
- [`Result::map_or`]
49+
- [`Result::map_or_else`]
50+
- [`std::rc::Weak::weak_count`]
51+
- [`std::rc::Weak::strong_count`]
52+
- [`std::sync::Weak::weak_count`]
53+
- [`std::sync::Weak::strong_count`]
54+
55+
Cargo
56+
-----
57+
58+
- [Cargo will now document all the private items for binary crates
59+
by default.][cargo/7593]
60+
- [`cargo-install` will now reinstall the package if it detects that it is out
61+
of date.][cargo/7560]
62+
- [Cargo.lock now uses a more git friendly format that should help to reduce
63+
merge conflicts.][cargo/7579]
64+
- [You can now override specific dependencies's build settings][cargo/7591] E.g.
65+
`[profile.dev.overrides.image] opt-level = 2` sets the `image` crate's
66+
optimisation level to `2` for debug builds. You can also use
67+
`[profile.<profile>.build_overrides]` to override build scripts and
68+
their dependencies.
69+
70+
Misc
71+
----
72+
73+
- [You can now specify `edition` in documentation code blocks to compile the block
74+
for that edition.][66238] E.g. `edition2018` tells rustdoc that the code sample
75+
should be compiled the 2018 edition of Rust.
76+
- [You can now provide custom themes to rustdoc with `--theme`, and check the
77+
current theme with `--check-theme`.][54733]
78+
- [You can use `#[cfg(doc)]` to compile an item when building documentation.][61351]
79+
80+
Compatibility Notes
81+
-------------------
82+
83+
- [As previously announced 1.41.0 will be the last tier 1 release for 32-bit
84+
Apple targets.][apple-32bit-drop] This means that the source code is still
85+
available to build, but the targets are no longer being tested and release
86+
binaries for those platforms will no longer be distributed by the Rust project.
87+
Please refer to the linked blog post for more information.
88+
89+
[54733]: https://github.com/rust-lang/rust/pull/54733/
90+
[61351]: https://github.com/rust-lang/rust/pull/61351/
91+
[67255]: https://github.com/rust-lang/rust/pull/67255/
92+
[66661]: https://github.com/rust-lang/rust/pull/66661/
93+
[66771]: https://github.com/rust-lang/rust/pull/66771/
94+
[66847]: https://github.com/rust-lang/rust/pull/66847/
95+
[66238]: https://github.com/rust-lang/rust/pull/66238/
96+
[66277]: https://github.com/rust-lang/rust/pull/66277/
97+
[66325]: https://github.com/rust-lang/rust/pull/66325/
98+
[66172]: https://github.com/rust-lang/rust/pull/66172/
99+
[66183]: https://github.com/rust-lang/rust/pull/66183/
100+
[65879]: https://github.com/rust-lang/rust/pull/65879/
101+
[65013]: https://github.com/rust-lang/rust/pull/65013/
102+
[64882]: https://github.com/rust-lang/rust/pull/64882/
103+
[64325]: https://github.com/rust-lang/rust/pull/64325/
104+
[cargo/7560]: https://github.com/rust-lang/cargo/pull/7560/
105+
[cargo/7579]: https://github.com/rust-lang/cargo/pull/7579/
106+
[cargo/7591]: https://github.com/rust-lang/cargo/pull/7591/
107+
[cargo/7593]: https://github.com/rust-lang/cargo/pull/7593/
108+
[`Result::map_or_else`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.map_or_else
109+
[`Result::map_or`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.map_or
110+
[`std::rc::Weak::weak_count`]: https://doc.rust-lang.org/std/rc/struct.Weak.html#method.weak_count
111+
[`std::rc::Weak::strong_count`]: https://doc.rust-lang.org/std/rc/struct.Weak.html#method.strong_count
112+
[`std::sync::Weak::weak_count`]: https://doc.rust-lang.org/std/sync/struct.Weak.html#method.weak_count
113+
[`std::sync::Weak::strong_count`]: https://doc.rust-lang.org/std/sync/struct.Weak.html#method.strong_count
114+
[apple-32bit-drop]: https://blog.rust-lang.org/2020/01/03/reducing-support-for-32-bit-apple-targets.html
115+
1116
Version 1.40.0 (2019-12-19)
2117
===========================
3118

src/librustc_ast_lowering/pat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
129129
let mut prev_rest_span = None;
130130

131131
let mut iter = pats.iter();
132-
// Lower all the patterns until the first occurence of a sub-slice pattern.
132+
// Lower all the patterns until the first occurrence of a sub-slice pattern.
133133
for pat in iter.by_ref() {
134134
match pat.kind {
135135
// Found a sub-slice pattern `..`. Record, lower it to `_`, and stop here.

src/librustc_data_structures/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#![feature(integer_atomics)]
2424
#![feature(test)]
2525
#![feature(associated_type_bounds)]
26+
#![feature(thread_id_value)]
2627
#![cfg_attr(unix, feature(libc))]
2728
#![allow(rustc::default_hash_types)]
2829

src/librustc_data_structures/profiling.rs

+5-14
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ use std::fs;
8888
use std::path::Path;
8989
use std::process;
9090
use std::sync::Arc;
91-
use std::thread::ThreadId;
9291
use std::time::{Duration, Instant};
9392
use std::u32;
9493

@@ -129,17 +128,13 @@ bitflags::bitflags! {
129128
Self::QUERY_PROVIDERS.bits |
130129
Self::QUERY_BLOCKED.bits |
131130
Self::INCR_CACHE_LOADS.bits;
132-
133-
// empty() and none() aren't const-fns unfortunately
134-
const NONE = 0;
135-
const ALL = !Self::NONE.bits;
136131
}
137132
}
138133

139134
// keep this in sync with the `-Z self-profile-events` help message in librustc_session/options.rs
140135
const EVENT_FILTERS_BY_NAME: &[(&str, EventFilter)] = &[
141-
("none", EventFilter::NONE),
142-
("all", EventFilter::ALL),
136+
("none", EventFilter::empty()),
137+
("all", EventFilter::all()),
143138
("default", EventFilter::DEFAULT),
144139
("generic-activity", EventFilter::GENERIC_ACTIVITIES),
145140
("query-provider", EventFilter::QUERY_PROVIDERS),
@@ -149,10 +144,6 @@ const EVENT_FILTERS_BY_NAME: &[(&str, EventFilter)] = &[
149144
("query-keys", EventFilter::QUERY_KEYS),
150145
];
151146

152-
fn thread_id_to_u32(tid: ThreadId) -> u32 {
153-
unsafe { std::mem::transmute::<ThreadId, u64>(tid) as u32 }
154-
}
155-
156147
/// Something that uniquely identifies a query invocation.
157148
pub struct QueryInvocationId(pub u32);
158149

@@ -185,7 +176,7 @@ impl SelfProfilerRef {
185176
// If there is no SelfProfiler then the filter mask is set to NONE,
186177
// ensuring that nothing ever tries to actually access it.
187178
let event_filter_mask =
188-
profiler.as_ref().map(|p| p.event_filter_mask).unwrap_or(EventFilter::NONE);
179+
profiler.as_ref().map(|p| p.event_filter_mask).unwrap_or(EventFilter::empty());
189180

190181
SelfProfilerRef {
191182
profiler,
@@ -318,7 +309,7 @@ impl SelfProfilerRef {
318309
) {
319310
drop(self.exec(event_filter, |profiler| {
320311
let event_id = StringId::new_virtual(query_invocation_id.0);
321-
let thread_id = thread_id_to_u32(std::thread::current().id());
312+
let thread_id = std::thread::current().id().as_u64() as u32;
322313

323314
profiler.profiler.record_instant_event(
324315
event_kind(profiler),
@@ -477,7 +468,7 @@ impl<'a> TimingGuard<'a> {
477468
event_kind: StringId,
478469
event_id: EventId,
479470
) -> TimingGuard<'a> {
480-
let thread_id = thread_id_to_u32(std::thread::current().id());
471+
let thread_id = std::thread::current().id().as_u64() as u32;
481472
let raw_profiler = &profiler.profiler;
482473
let timing_guard =
483474
raw_profiler.start_recording_interval_event(event_kind, event_id, thread_id);

src/librustc_typeck/check/op.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
477477
}
478478

479479
/// If one of the types is an uncalled function and calling it would yield the other type,
480-
/// suggest calling the function. Returns wether a suggestion was given.
480+
/// suggest calling the function. Returns whether a suggestion was given.
481481
fn add_type_neq_err_label(
482482
&self,
483483
err: &mut rustc_errors::DiagnosticBuilder<'_>,

src/libstd/sys/sgx/os.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn errno() -> i32 {
1919

2020
pub fn error_string(errno: i32) -> String {
2121
if errno == RESULT_SUCCESS {
22-
"operation succesful".into()
22+
"operation successful".into()
2323
} else if ((Error::UserRangeStart as _)..=(Error::UserRangeEnd as _)).contains(&errno) {
2424
format!("user-specified error {:08x}", errno)
2525
} else {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Checks that we report ABI mismatches for "const extern fn"
2+
// compile-flags: -Z unleash-the-miri-inside-of-you
3+
4+
#![feature(const_extern_fn)]
5+
6+
const extern "C" fn c_fn() {}
7+
8+
const fn call_rust_fn(my_fn: extern "Rust" fn()) {
9+
my_fn(); //~ ERROR any use of this value will cause an error
10+
//~^ WARN skipping const checks
11+
}
12+
13+
const VAL: () = call_rust_fn(unsafe { std::mem::transmute(c_fn as extern "C" fn()) });
14+
//~^ WARN skipping const checks
15+
16+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
warning: skipping const checks
2+
--> $DIR/abi-mismatch.rs:9:5
3+
|
4+
LL | my_fn();
5+
| ^^^^^^^
6+
7+
warning: skipping const checks
8+
--> $DIR/abi-mismatch.rs:13:39
9+
|
10+
LL | const VAL: () = call_rust_fn(unsafe { std::mem::transmute(c_fn as extern "C" fn()) });
11+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12+
13+
error: any use of this value will cause an error
14+
--> $DIR/abi-mismatch.rs:9:5
15+
|
16+
LL | my_fn();
17+
| ^^^^^^^
18+
| |
19+
| tried to call a function with ABI C using caller ABI Rust
20+
| inside call to `call_rust_fn` at $DIR/abi-mismatch.rs:13:17
21+
...
22+
LL | const VAL: () = call_rust_fn(unsafe { std::mem::transmute(c_fn as extern "C" fn()) });
23+
| --------------------------------------------------------------------------------------
24+
|
25+
= note: `#[deny(const_err)]` on by default
26+
27+
error: aborting due to previous error
28+

src/test/ui/issues/issue-67037-pat-tup-scrut-ty-diff-less-fields.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// However, we did not account for the expected type being different than the tuple pattern type.
1111
// This caused an issue when the tuple pattern type (`P<T>`) was generic.
1212
// Specifically, we tried deriving the 0th field's type using the `substs` of the expected type.
13-
// When attempting to substitute `T`, there was no such substitution, so "out of range" occured.
13+
// When attempting to substitute `T`, there was no such substitution, so "out of range" occurred.
1414

1515
struct U {} // 0 type parameters offered
1616
struct P<T>(T); // 1 type parameter wanted

src/tools/compiletest/src/runtest.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2949,7 +2949,7 @@ impl<'test> TestCx<'test> {
29492949
};
29502950
if run_output_errors > 0 {
29512951
self.fatal_proc_rec(
2952-
&format!("{} errors occured comparing run output.", run_output_errors),
2952+
&format!("{} errors occurred comparing run output.", run_output_errors),
29532953
&proc_res,
29542954
);
29552955
}

0 commit comments

Comments
 (0)