Skip to content

Commit 99da9ae

Browse files
committed
Auto merge of rust-lang#95558 - matthiaskrgr:rollup-vpmk7t8, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - rust-lang#95475 (rustdoc: Only show associated consts from inherent impls in sidebar) - rust-lang#95516 (ptr_metadata test: avoid ptr-to-int transmutes) - rust-lang#95528 (skip slow int_log tests in Miri) - rust-lang#95531 (expand: Do not count metavar declarations on RHS of `macro_rules`) - rust-lang#95532 (make utf8_char_counts test faster in Miri) - rust-lang#95546 (add notes about alignment-altering reallocations to Allocator docs) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 0677edc + a92286f commit 99da9ae

File tree

8 files changed

+63
-28
lines changed

8 files changed

+63
-28
lines changed

compiler/rustc_expand/src/mbe/macro_parser.rs

+6-12
Original file line numberDiff line numberDiff line change
@@ -263,18 +263,12 @@ crate type NamedParseResult = ParseResult<FxHashMap<MacroRulesNormalizedIdent, N
263263
pub(super) fn count_metavar_decls(matcher: &[TokenTree]) -> usize {
264264
matcher
265265
.iter()
266-
.map(|tt| {
267-
match tt {
268-
TokenTree::Delimited(_, delim) => count_metavar_decls(delim.inner_tts()),
269-
TokenTree::MetaVar(..) => 0,
270-
TokenTree::MetaVarDecl(..) => 1,
271-
// RHS meta-variable expressions eventually end-up here. `0` is returned to inform
272-
// that no meta-variable was found, because "meta-variables" != "meta-variable
273-
// expressions".
274-
TokenTree::MetaVarExpr(..) => 0,
275-
TokenTree::Sequence(_, seq) => seq.num_captures,
276-
TokenTree::Token(..) => 0,
277-
}
266+
.map(|tt| match tt {
267+
TokenTree::MetaVarDecl(..) => 1,
268+
TokenTree::Sequence(_, seq) => seq.num_captures,
269+
TokenTree::Delimited(_, delim) => count_metavar_decls(delim.inner_tts()),
270+
TokenTree::Token(..) => 0,
271+
TokenTree::MetaVar(..) | TokenTree::MetaVarExpr(..) => unreachable!(),
278272
})
279273
.sum()
280274
}

compiler/rustc_expand/src/mbe/quoted.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::mbe::macro_parser;
1+
use crate::mbe::macro_parser::count_metavar_decls;
22
use crate::mbe::{Delimited, KleeneOp, KleeneToken, MetaVarExpr, SequenceRepetition, TokenTree};
33

44
use rustc_ast::token::{self, Token};
@@ -211,14 +211,15 @@ fn parse_tree(
211211
let (separator, kleene) =
212212
parse_sep_and_kleene_op(&mut trees, delim_span.entire(), sess);
213213
// Count the number of captured "names" (i.e., named metavars)
214-
let name_captures = macro_parser::count_metavar_decls(&sequence);
214+
let num_captures =
215+
if parsing_patterns { count_metavar_decls(&sequence) } else { 0 };
215216
TokenTree::Sequence(
216217
delim_span,
217218
Lrc::new(SequenceRepetition {
218219
tts: sequence,
219220
separator,
220221
kleene,
221-
num_captures: name_captures,
222+
num_captures,
222223
}),
223224
)
224225
}

library/alloc/tests/str.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -2234,11 +2234,14 @@ fn utf8_chars() {
22342234
#[test]
22352235
fn utf8_char_counts() {
22362236
let strs = [("e", 1), ("é", 1), ("€", 1), ("\u{10000}", 1), ("eé€\u{10000}", 4)];
2237-
let mut reps =
2238-
[8, 64, 256, 512, 1024].iter().copied().flat_map(|n| n - 8..=n + 8).collect::<Vec<usize>>();
2237+
let spread = if cfg!(miri) { 4 } else { 8 };
2238+
let mut reps = [8, 64, 256, 512]
2239+
.iter()
2240+
.copied()
2241+
.flat_map(|n| n - spread..=n + spread)
2242+
.collect::<Vec<usize>>();
22392243
if cfg!(not(miri)) {
2240-
let big = 1 << 16;
2241-
reps.extend(big - 8..=big + 8);
2244+
reps.extend([1024, 1 << 16].iter().copied().flat_map(|n| n - spread..=n + spread));
22422245
}
22432246
let counts = if cfg!(miri) { 0..1 } else { 0..8 };
22442247
let padding = counts.map(|len| " ".repeat(len)).collect::<Vec<String>>();

library/core/src/alloc/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ pub unsafe trait Allocator {
173173
/// * `old_layout` must [*fit*] that block of memory (The `new_layout` argument need not fit it.).
174174
/// * `new_layout.size()` must be greater than or equal to `old_layout.size()`.
175175
///
176+
/// Note that `new_layout.align()` need not be the same as `old_layout.align()`.
177+
///
176178
/// [*currently allocated*]: #currently-allocated-memory
177179
/// [*fit*]: #memory-fitting
178180
///
@@ -234,6 +236,8 @@ pub unsafe trait Allocator {
234236
/// * `old_layout` must [*fit*] that block of memory (The `new_layout` argument need not fit it.).
235237
/// * `new_layout.size()` must be greater than or equal to `old_layout.size()`.
236238
///
239+
/// Note that `new_layout.align()` need not be the same as `old_layout.align()`.
240+
///
237241
/// [*currently allocated*]: #currently-allocated-memory
238242
/// [*fit*]: #memory-fitting
239243
///
@@ -296,6 +300,8 @@ pub unsafe trait Allocator {
296300
/// * `old_layout` must [*fit*] that block of memory (The `new_layout` argument need not fit it.).
297301
/// * `new_layout.size()` must be smaller than or equal to `old_layout.size()`.
298302
///
303+
/// Note that `new_layout.align()` need not be the same as `old_layout.align()`.
304+
///
299305
/// [*currently allocated*]: #currently-allocated-memory
300306
/// [*fit*]: #memory-fitting
301307
///

library/core/tests/num/int_log.rs

+10
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@ fn checked_log() {
2222
assert_eq!(0i8.checked_log(4), None);
2323
assert_eq!(0i16.checked_log(4), None);
2424

25+
#[cfg(not(miri))] // Miri is too slow
2526
for i in i16::MIN..=0 {
2627
assert_eq!(i.checked_log(4), None);
2728
}
29+
#[cfg(not(miri))] // Miri is too slow
2830
for i in 1..=i16::MAX {
2931
assert_eq!(i.checked_log(13), Some((i as f32).log(13.0) as u32));
3032
}
33+
#[cfg(not(miri))] // Miri is too slow
3134
for i in 1..=u16::MAX {
3235
assert_eq!(i.checked_log(13), Some((i as f32).log(13.0) as u32));
3336
}
@@ -48,6 +51,7 @@ fn checked_log2() {
4851
for i in 1..=u8::MAX {
4952
assert_eq!(i.checked_log2(), Some((i as f32).log2() as u32));
5053
}
54+
#[cfg(not(miri))] // Miri is too slow
5155
for i in 1..=u16::MAX {
5256
// Guard against Android's imprecise f32::log2 implementation.
5357
if i != 8192 && i != 32768 {
@@ -60,9 +64,11 @@ fn checked_log2() {
6064
for i in 1..=i8::MAX {
6165
assert_eq!(i.checked_log2(), Some((i as f32).log2() as u32));
6266
}
67+
#[cfg(not(miri))] // Miri is too slow
6368
for i in i16::MIN..=0 {
6469
assert_eq!(i.checked_log2(), None);
6570
}
71+
#[cfg(not(miri))] // Miri is too slow
6672
for i in 1..=i16::MAX {
6773
// Guard against Android's imprecise f32::log2 implementation.
6874
if i != 8192 {
@@ -87,15 +93,19 @@ fn checked_log10() {
8793
assert_eq!(0i8.checked_log10(), None);
8894
assert_eq!(0i16.checked_log10(), None);
8995

96+
#[cfg(not(miri))] // Miri is too slow
9097
for i in i16::MIN..=0 {
9198
assert_eq!(i.checked_log10(), None);
9299
}
100+
#[cfg(not(miri))] // Miri is too slow
93101
for i in 1..=i16::MAX {
94102
assert_eq!(i.checked_log10(), Some((i as f32).log10() as u32));
95103
}
104+
#[cfg(not(miri))] // Miri is too slow
96105
for i in 1..=u16::MAX {
97106
assert_eq!(i.checked_log10(), Some((i as f32).log10() as u32));
98107
}
108+
#[cfg(not(miri))] // Miri is too slow
99109
for i in 1..=100_000u32 {
100110
assert_eq!(i.checked_log10(), Some((i as f32).log10() as u32));
101111
}

library/core/tests/ptr.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -490,11 +490,11 @@ fn ptr_metadata() {
490490
let vtable_5: DynMetadata<dyn Display> =
491491
metadata(&Pair(true, 7_u32) as &Pair<bool, dyn Display>);
492492
unsafe {
493-
let address_1: usize = std::mem::transmute(vtable_1);
494-
let address_2: usize = std::mem::transmute(vtable_2);
495-
let address_3: usize = std::mem::transmute(vtable_3);
496-
let address_4: usize = std::mem::transmute(vtable_4);
497-
let address_5: usize = std::mem::transmute(vtable_5);
493+
let address_1: *const () = std::mem::transmute(vtable_1);
494+
let address_2: *const () = std::mem::transmute(vtable_2);
495+
let address_3: *const () = std::mem::transmute(vtable_3);
496+
let address_4: *const () = std::mem::transmute(vtable_4);
497+
let address_5: *const () = std::mem::transmute(vtable_5);
498498
// Different trait => different vtable pointer
499499
assert_ne!(address_1, address_2);
500500
// Different erased type => different vtable pointer

src/librustdoc/html/render/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1987,6 +1987,7 @@ fn sidebar_assoc_items(cx: &Context<'_>, out: &mut Buffer, it: &clean::Item) {
19871987
let used_links_bor = &mut used_links;
19881988
let mut assoc_consts = v
19891989
.iter()
1990+
.filter(|i| i.inner_impl().trait_.is_none())
19901991
.flat_map(|i| get_associated_constants(i.inner_impl(), used_links_bor))
19911992
.collect::<Vec<_>>();
19921993
if !assoc_consts.is_empty() {

src/test/rustdoc/associated-consts.rs

+24-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ pub trait Trait {
99
pub struct Bar;
1010

1111
// @has 'foo/struct.Bar.html'
12-
// @has - '//h3[@class="sidebar-title"]' 'Associated Constants'
13-
// @has - '//div[@class="sidebar-elems"]//a' 'FOO'
12+
// @!has - '//h3[@class="sidebar-title"]' 'Associated Constants'
13+
// @!has - '//div[@class="sidebar-elems"]//a' 'FOO'
1414
impl Trait for Bar {
1515
const FOO: u32 = 1;
1616

@@ -22,10 +22,30 @@ pub enum Foo {
2222
}
2323

2424
// @has 'foo/enum.Foo.html'
25-
// @has - '//h3[@class="sidebar-title"]' 'Associated Constants'
26-
// @has - '//div[@class="sidebar-elems"]//a' 'FOO'
25+
// @!has - '//h3[@class="sidebar-title"]' 'Associated Constants'
26+
// @!has - '//div[@class="sidebar-elems"]//a' 'FOO'
2727
impl Trait for Foo {
2828
const FOO: u32 = 1;
2929

3030
fn foo() {}
3131
}
32+
33+
pub struct Baz;
34+
35+
// @has 'foo/struct.Baz.html'
36+
// @has - '//h3[@class="sidebar-title"]' 'Associated Constants'
37+
// @has - '//div[@class="sidebar-elems"]//a' 'FOO'
38+
impl Baz {
39+
pub const FOO: u32 = 42;
40+
}
41+
42+
pub enum Quux {
43+
B,
44+
}
45+
46+
// @has 'foo/enum.Quux.html'
47+
// @has - '//h3[@class="sidebar-title"]' 'Associated Constants'
48+
// @has - '//div[@class="sidebar-elems"]//a' 'FOO'
49+
impl Quux {
50+
pub const FOO: u32 = 42;
51+
}

0 commit comments

Comments
 (0)