Skip to content

Commit c8915ee

Browse files
committed
Auto merge of #80790 - JohnTitor:rollup-js1noez, r=JohnTitor
Rollup of 10 pull requests Successful merges: - #80012 (Add pointing const identifier when emitting E0435) - #80521 (MIR Inline is incompatible with coverage) - #80659 (Edit rustc_ast::tokenstream docs) - #80660 (Properly handle primitive disambiguators in rustdoc) - #80738 (Remove bottom margin from crate version when the docs sidebar is collapsed) - #80744 (rustdoc: Turn `next_def_id` comments into docs) - #80750 (Don't use to_string on Symbol in rustc_passes/check_attr.rs) - #80769 (Improve wording of parse doc) - #80780 (Return EOF_CHAR constant instead of magic char.) - #80784 (rustc_parse: Better spans for synthesized token streams) Failed merges: - #80785 (rustc_ast_pretty: Remove `PrintState::insert_extra_parens`) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 8f0b945 + 695f878 commit c8915ee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+607
-372
lines changed

compiler/rustc_ast/src/token.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ impl fmt::Display for NonterminalKind {
771771
}
772772

773773
impl Nonterminal {
774-
fn span(&self) -> Span {
774+
pub fn span(&self) -> Span {
775775
match self {
776776
NtItem(item) => item.span,
777777
NtBlock(block) => block.span,

compiler/rustc_ast/src/tokenstream.rs

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
//! # Token Streams
22
//!
33
//! `TokenStream`s represent syntactic objects before they are converted into ASTs.
4-
//! A `TokenStream` is, roughly speaking, a sequence (eg stream) of `TokenTree`s,
5-
//! which are themselves a single `Token` or a `Delimited` subsequence of tokens.
4+
//! A `TokenStream` is, roughly speaking, a sequence of [`TokenTree`]s,
5+
//! which are themselves a single [`Token`] or a `Delimited` subsequence of tokens.
66
//!
77
//! ## Ownership
88
//!
99
//! `TokenStream`s are persistent data structures constructed as ropes with reference
1010
//! counted-children. In general, this means that calling an operation on a `TokenStream`
1111
//! (such as `slice`) produces an entirely new `TokenStream` from the borrowed reference to
12-
//! the original. This essentially coerces `TokenStream`s into 'views' of their subparts,
12+
//! the original. This essentially coerces `TokenStream`s into "views" of their subparts,
1313
//! and a borrowed `TokenStream` is sufficient to build an owned `TokenStream` without taking
1414
//! ownership of the original.
1515
@@ -24,9 +24,9 @@ use smallvec::{smallvec, SmallVec};
2424

2525
use std::{fmt, iter, mem};
2626

27-
/// When the main rust parser encounters a syntax-extension invocation, it
28-
/// parses the arguments to the invocation as a token-tree. This is a very
29-
/// loose structure, such that all sorts of different AST-fragments can
27+
/// When the main Rust parser encounters a syntax-extension invocation, it
28+
/// parses the arguments to the invocation as a token tree. This is a very
29+
/// loose structure, such that all sorts of different AST fragments can
3030
/// be passed to syntax extensions using a uniform type.
3131
///
3232
/// If the syntax extension is an MBE macro, it will attempt to match its
@@ -38,9 +38,9 @@ use std::{fmt, iter, mem};
3838
/// Nothing special happens to misnamed or misplaced `SubstNt`s.
3939
#[derive(Debug, Clone, PartialEq, Encodable, Decodable, HashStable_Generic)]
4040
pub enum TokenTree {
41-
/// A single token
41+
/// A single token.
4242
Token(Token),
43-
/// A delimited sequence of token trees
43+
/// A delimited sequence of token trees.
4444
Delimited(DelimSpan, DelimToken, TokenStream),
4545
}
4646

@@ -62,7 +62,7 @@ where
6262
}
6363

6464
impl TokenTree {
65-
/// Checks if this TokenTree is equal to the other, regardless of span information.
65+
/// Checks if this `TokenTree` is equal to the other, regardless of span information.
6666
pub fn eq_unspanned(&self, other: &TokenTree) -> bool {
6767
match (self, other) {
6868
(TokenTree::Token(token), TokenTree::Token(token2)) => token.kind == token2.kind,
@@ -73,7 +73,7 @@ impl TokenTree {
7373
}
7474
}
7575

76-
/// Retrieves the TokenTree's span.
76+
/// Retrieves the `TokenTree`'s span.
7777
pub fn span(&self) -> Span {
7878
match self {
7979
TokenTree::Token(token) => token.span,
@@ -140,7 +140,7 @@ impl CreateTokenStream for TokenStream {
140140
}
141141
}
142142

143-
/// A lazy version of `TokenStream`, which defers creation
143+
/// A lazy version of [`TokenStream`], which defers creation
144144
/// of an actual `TokenStream` until it is needed.
145145
/// `Box` is here only to reduce the structure size.
146146
#[derive(Clone)]
@@ -188,11 +188,12 @@ impl<CTX> HashStable<CTX> for LazyTokenStream {
188188
}
189189
}
190190

191-
/// A `TokenStream` is an abstract sequence of tokens, organized into `TokenTree`s.
191+
/// A `TokenStream` is an abstract sequence of tokens, organized into [`TokenTree`]s.
192192
///
193193
/// The goal is for procedural macros to work with `TokenStream`s and `TokenTree`s
194194
/// instead of a representation of the abstract syntax tree.
195-
/// Today's `TokenTree`s can still contain AST via `token::Interpolated` for back-compat.
195+
/// Today's `TokenTree`s can still contain AST via `token::Interpolated` for
196+
/// backwards compatability.
196197
#[derive(Clone, Debug, Default, Encodable, Decodable)]
197198
pub struct TokenStream(pub(crate) Lrc<Vec<TreeAndSpacing>>);
198199

@@ -429,7 +430,7 @@ impl TokenStreamBuilder {
429430
}
430431
}
431432

432-
/// By-reference iterator over a `TokenStream`.
433+
/// By-reference iterator over a [`TokenStream`].
433434
#[derive(Clone)]
434435
pub struct CursorRef<'t> {
435436
stream: &'t TokenStream,
@@ -457,8 +458,8 @@ impl<'t> Iterator for CursorRef<'t> {
457458
}
458459
}
459460

460-
/// Owning by-value iterator over a `TokenStream`.
461-
/// FIXME: Many uses of this can be replaced with by-reference iterator to avoid clones.
461+
/// Owning by-value iterator over a [`TokenStream`].
462+
// FIXME: Many uses of this can be replaced with by-reference iterator to avoid clones.
462463
#[derive(Clone)]
463464
pub struct Cursor {
464465
pub stream: TokenStream,

compiler/rustc_ast_lowering/src/lib.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,7 @@ pub trait ResolverAstLowering {
206206
) -> LocalDefId;
207207
}
208208

209-
type NtToTokenstream =
210-
fn(&Nonterminal, &ParseSess, Span, CanSynthesizeMissingTokens) -> TokenStream;
209+
type NtToTokenstream = fn(&Nonterminal, &ParseSess, CanSynthesizeMissingTokens) -> TokenStream;
211210

212211
/// Context of `impl Trait` in code, which determines whether it is allowed in an HIR subtree,
213212
/// and if so, what meaning it has.
@@ -417,12 +416,7 @@ impl<'a> TokenStreamLowering<'a> {
417416
fn lower_token(&mut self, token: Token) -> TokenStream {
418417
match token.kind {
419418
token::Interpolated(nt) => {
420-
let tts = (self.nt_to_tokenstream)(
421-
&nt,
422-
self.parse_sess,
423-
token.span,
424-
self.synthesize_tokens,
425-
);
419+
let tts = (self.nt_to_tokenstream)(&nt, self.parse_sess, self.synthesize_tokens);
426420
TokenTree::Delimited(
427421
DelimSpan::from_single(token.span),
428422
DelimToken::NoDelim,

compiler/rustc_error_codes/src/error_codes/E0435.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ let foo = 42;
77
let a: [u8; foo]; // error: attempt to use a non-constant value in a constant
88
```
99

10+
'constant' means 'a compile-time value'.
11+
12+
More details can be found in the [Variables and Mutability] section of the book.
13+
14+
[Variables and Mutability]: https://doc.rust-lang.org/book/ch03-01-variables-and-mutability.html#differences-between-variables-and-constants
15+
1016
To fix this error, please replace the value with a constant. Example:
1117

1218
```

compiler/rustc_expand/src/base.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ impl Annotatable {
141141
}
142142

143143
crate fn into_tokens(self, sess: &ParseSess) -> TokenStream {
144-
nt_to_tokenstream(&self.into_nonterminal(), sess, DUMMY_SP, CanSynthesizeMissingTokens::No)
144+
nt_to_tokenstream(&self.into_nonterminal(), sess, CanSynthesizeMissingTokens::No)
145145
}
146146

147147
pub fn expect_item(self) -> P<ast::Item> {

compiler/rustc_expand/src/expand.rs

-1
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,6 @@ impl<'a, 'b> MacroExpander<'a, 'b> {
743743
AttrStyle::Inner => rustc_parse::fake_token_stream(
744744
&self.cx.sess.parse_sess,
745745
&item.into_nonterminal(),
746-
span,
747746
),
748747
};
749748
let attr_item = attr.unwrap_normal_item();

compiler/rustc_expand/src/proc_macro.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,7 @@ impl MultiItemModifier for ProcMacroDerive {
9494
let input = if item.pretty_printing_compatibility_hack() {
9595
TokenTree::token(token::Interpolated(Lrc::new(item)), DUMMY_SP).into()
9696
} else {
97-
nt_to_tokenstream(
98-
&item,
99-
&ecx.sess.parse_sess,
100-
DUMMY_SP,
101-
CanSynthesizeMissingTokens::Yes,
102-
)
97+
nt_to_tokenstream(&item, &ecx.sess.parse_sess, CanSynthesizeMissingTokens::Yes)
10398
};
10499

105100
let server = proc_macro_server::Rustc::new(ecx);

compiler/rustc_expand/src/proc_macro_server.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ impl FromInternal<(TreeAndSpacing, &'_ ParseSess, &'_ mut Vec<Self>)>
179179
{
180180
TokenTree::Ident(Ident::new(sess, name.name, is_raw, name.span))
181181
} else {
182-
let stream = nt_to_tokenstream(&nt, sess, span, CanSynthesizeMissingTokens::No);
182+
let stream = nt_to_tokenstream(&nt, sess, CanSynthesizeMissingTokens::No);
183183
TokenTree::Group(Group {
184184
delimiter: Delimiter::None,
185185
stream,

compiler/rustc_lexer/src/cursor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ impl<'a> Cursor<'a> {
3333

3434
#[cfg(not(debug_assertions))]
3535
{
36-
'\0'
36+
EOF_CHAR
3737
}
3838
}
3939

compiler/rustc_mir/src/transform/inline.rs

+9
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@ impl<'tcx> MirPass<'tcx> for Inline {
4141
return;
4242
}
4343

44+
if tcx.sess.opts.debugging_opts.instrument_coverage {
45+
// Since `Inline` happens after `InstrumentCoverage`, the function-specific coverage
46+
// counters can be invalidated, such as by merging coverage counter statements from
47+
// a pre-inlined function into a different function. This kind of change is invalid,
48+
// so inlining must be skipped. Note: This check is performed here so inlining can
49+
// be disabled without preventing other optimizations (regardless of `mir_opt_level`).
50+
return;
51+
}
52+
4453
if inline(tcx, body) {
4554
debug!("running simplify cfg on {:?}", body.source);
4655
CfgSimplifier::new(body).simplify();

compiler/rustc_parse/src/lib.rs

+8-12
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,6 @@ pub fn parse_in<'a, T>(
236236
pub fn nt_to_tokenstream(
237237
nt: &Nonterminal,
238238
sess: &ParseSess,
239-
span: Span,
240239
synthesize_tokens: CanSynthesizeMissingTokens,
241240
) -> TokenStream {
242241
// A `Nonterminal` is often a parsed AST item. At this point we now
@@ -256,11 +255,9 @@ pub fn nt_to_tokenstream(
256255
|tokens: Option<&LazyTokenStream>| tokens.as_ref().map(|t| t.create_token_stream());
257256

258257
let tokens = match *nt {
259-
Nonterminal::NtItem(ref item) => {
260-
prepend_attrs(sess, &item.attrs, nt, span, item.tokens.as_ref())
261-
}
258+
Nonterminal::NtItem(ref item) => prepend_attrs(sess, &item.attrs, nt, item.tokens.as_ref()),
262259
Nonterminal::NtBlock(ref block) => convert_tokens(block.tokens.as_ref()),
263-
Nonterminal::NtStmt(ref stmt) => prepend_attrs(sess, stmt.attrs(), nt, span, stmt.tokens()),
260+
Nonterminal::NtStmt(ref stmt) => prepend_attrs(sess, stmt.attrs(), nt, stmt.tokens()),
264261
Nonterminal::NtPat(ref pat) => convert_tokens(pat.tokens.as_ref()),
265262
Nonterminal::NtTy(ref ty) => convert_tokens(ty.tokens.as_ref()),
266263
Nonterminal::NtIdent(ident, is_raw) => {
@@ -277,31 +274,30 @@ pub fn nt_to_tokenstream(
277274
if expr.tokens.is_none() {
278275
debug!("missing tokens for expr {:?}", expr);
279276
}
280-
prepend_attrs(sess, &expr.attrs, nt, span, expr.tokens.as_ref())
277+
prepend_attrs(sess, &expr.attrs, nt, expr.tokens.as_ref())
281278
}
282279
};
283280

284281
if let Some(tokens) = tokens {
285282
return tokens;
286283
} else if matches!(synthesize_tokens, CanSynthesizeMissingTokens::Yes) {
287-
return fake_token_stream(sess, nt, span);
284+
return fake_token_stream(sess, nt);
288285
} else {
289286
let pretty = rustc_ast_pretty::pprust::nonterminal_to_string_no_extra_parens(&nt);
290-
panic!("Missing tokens at {:?} for nt {:?}", span, pretty);
287+
panic!("Missing tokens for nt {:?}", pretty);
291288
}
292289
}
293290

294-
pub fn fake_token_stream(sess: &ParseSess, nt: &Nonterminal, span: Span) -> TokenStream {
291+
pub fn fake_token_stream(sess: &ParseSess, nt: &Nonterminal) -> TokenStream {
295292
let source = pprust::nonterminal_to_string(nt);
296293
let filename = FileName::macro_expansion_source_code(&source);
297-
parse_stream_from_source_str(filename, source, sess, Some(span))
294+
parse_stream_from_source_str(filename, source, sess, Some(nt.span()))
298295
}
299296

300297
fn prepend_attrs(
301298
sess: &ParseSess,
302299
attrs: &[ast::Attribute],
303300
nt: &Nonterminal,
304-
span: Span,
305301
tokens: Option<&tokenstream::LazyTokenStream>,
306302
) -> Option<tokenstream::TokenStream> {
307303
if attrs.is_empty() {
@@ -312,7 +308,7 @@ fn prepend_attrs(
312308
// FIXME: Correctly handle tokens for inner attributes.
313309
// For now, we fall back to reparsing the original AST node
314310
if attr.style == ast::AttrStyle::Inner {
315-
return Some(fake_token_stream(sess, nt, span));
311+
return Some(fake_token_stream(sess, nt));
316312
}
317313
builder.push(attr.tokens());
318314
}

compiler/rustc_passes/src/check_attr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ impl CheckAttrVisitor<'tcx> {
359359
return false;
360360
}
361361
let item_name = self.tcx.hir().name(hir_id);
362-
if item_name.to_string() == doc_alias {
362+
if &*item_name.as_str() == doc_alias {
363363
self.tcx
364364
.sess
365365
.struct_span_err(

compiler/rustc_resolve/src/diagnostics.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -398,13 +398,19 @@ impl<'a> Resolver<'a> {
398398
err.help("use the `|| { ... }` closure form instead");
399399
err
400400
}
401-
ResolutionError::AttemptToUseNonConstantValueInConstant => {
401+
ResolutionError::AttemptToUseNonConstantValueInConstant(ident, sugg) => {
402402
let mut err = struct_span_err!(
403403
self.session,
404404
span,
405405
E0435,
406406
"attempt to use a non-constant value in a constant"
407407
);
408+
err.span_suggestion(
409+
ident.span,
410+
&sugg,
411+
"".to_string(),
412+
Applicability::MaybeIncorrect,
413+
);
408414
err.span_label(span, "non-constant value");
409415
err
410416
}

0 commit comments

Comments
 (0)