Skip to content

Commit db75d7e

Browse files
authored
Rollup merge of #101602 - nnethercote:AttrTokenStream, r=petrochenkov
Streamline `AttrAnnotatedTokenStream` r? ```@petrochenkov```
2 parents c815756 + d2df07c commit db75d7e

File tree

11 files changed

+181
-200
lines changed

11 files changed

+181
-200
lines changed

compiler/rustc_ast/src/ast.rs

+14-14
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub use UnsafeSource::*;
2424

2525
use crate::ptr::P;
2626
use crate::token::{self, CommentKind, Delimiter};
27-
use crate::tokenstream::{DelimSpan, LazyTokenStream, TokenStream};
27+
use crate::tokenstream::{DelimSpan, LazyAttrTokenStream, TokenStream};
2828
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
2929
use rustc_data_structures::stack::ensure_sufficient_stack;
3030
use rustc_data_structures::sync::Lrc;
@@ -91,7 +91,7 @@ pub struct Path {
9191
/// The segments in the path: the things separated by `::`.
9292
/// Global paths begin with `kw::PathRoot`.
9393
pub segments: Vec<PathSegment>,
94-
pub tokens: Option<LazyTokenStream>,
94+
pub tokens: Option<LazyAttrTokenStream>,
9595
}
9696

9797
impl PartialEq<Symbol> for Path {
@@ -534,7 +534,7 @@ pub struct Block {
534534
/// Distinguishes between `unsafe { ... }` and `{ ... }`.
535535
pub rules: BlockCheckMode,
536536
pub span: Span,
537-
pub tokens: Option<LazyTokenStream>,
537+
pub tokens: Option<LazyAttrTokenStream>,
538538
/// The following *isn't* a parse error, but will cause multiple errors in following stages.
539539
/// ```compile_fail
540540
/// let x = {
@@ -553,7 +553,7 @@ pub struct Pat {
553553
pub id: NodeId,
554554
pub kind: PatKind,
555555
pub span: Span,
556-
pub tokens: Option<LazyTokenStream>,
556+
pub tokens: Option<LazyAttrTokenStream>,
557557
}
558558

559559
impl Pat {
@@ -937,8 +937,8 @@ impl Stmt {
937937
/// a trailing semicolon.
938938
///
939939
/// This only modifies the parsed AST struct, not the attached
940-
/// `LazyTokenStream`. The parser is responsible for calling
941-
/// `CreateTokenStream::add_trailing_semi` when there is actually
940+
/// `LazyAttrTokenStream`. The parser is responsible for calling
941+
/// `ToAttrTokenStream::add_trailing_semi` when there is actually
942942
/// a semicolon in the tokenstream.
943943
pub fn add_trailing_semicolon(mut self) -> Self {
944944
self.kind = match self.kind {
@@ -984,7 +984,7 @@ pub struct MacCallStmt {
984984
pub mac: P<MacCall>,
985985
pub style: MacStmtStyle,
986986
pub attrs: AttrVec,
987-
pub tokens: Option<LazyTokenStream>,
987+
pub tokens: Option<LazyAttrTokenStream>,
988988
}
989989

990990
#[derive(Clone, Copy, PartialEq, Encodable, Decodable, Debug)]
@@ -1009,7 +1009,7 @@ pub struct Local {
10091009
pub kind: LocalKind,
10101010
pub span: Span,
10111011
pub attrs: AttrVec,
1012-
pub tokens: Option<LazyTokenStream>,
1012+
pub tokens: Option<LazyAttrTokenStream>,
10131013
}
10141014

10151015
#[derive(Clone, Encodable, Decodable, Debug)]
@@ -1108,7 +1108,7 @@ pub struct Expr {
11081108
pub kind: ExprKind,
11091109
pub span: Span,
11101110
pub attrs: AttrVec,
1111-
pub tokens: Option<LazyTokenStream>,
1111+
pub tokens: Option<LazyAttrTokenStream>,
11121112
}
11131113

11141114
impl Expr {
@@ -1967,7 +1967,7 @@ pub struct Ty {
19671967
pub id: NodeId,
19681968
pub kind: TyKind,
19691969
pub span: Span,
1970-
pub tokens: Option<LazyTokenStream>,
1970+
pub tokens: Option<LazyAttrTokenStream>,
19711971
}
19721972

19731973
impl Clone for Ty {
@@ -2532,7 +2532,7 @@ impl<D: Decoder> Decodable<D> for AttrId {
25322532
pub struct AttrItem {
25332533
pub path: Path,
25342534
pub args: MacArgs,
2535-
pub tokens: Option<LazyTokenStream>,
2535+
pub tokens: Option<LazyAttrTokenStream>,
25362536
}
25372537

25382538
/// A list of attributes.
@@ -2552,7 +2552,7 @@ pub struct Attribute {
25522552
#[derive(Clone, Encodable, Decodable, Debug)]
25532553
pub struct NormalAttr {
25542554
pub item: AttrItem,
2555-
pub tokens: Option<LazyTokenStream>,
2555+
pub tokens: Option<LazyAttrTokenStream>,
25562556
}
25572557

25582558
#[derive(Clone, Encodable, Decodable, Debug)]
@@ -2603,7 +2603,7 @@ impl PolyTraitRef {
26032603
pub struct Visibility {
26042604
pub kind: VisibilityKind,
26052605
pub span: Span,
2606-
pub tokens: Option<LazyTokenStream>,
2606+
pub tokens: Option<LazyAttrTokenStream>,
26072607
}
26082608

26092609
#[derive(Clone, Encodable, Decodable, Debug)]
@@ -2689,7 +2689,7 @@ pub struct Item<K = ItemKind> {
26892689
///
26902690
/// Note that the tokens here do not include the outer attributes, but will
26912691
/// include inner attributes.
2692-
pub tokens: Option<LazyTokenStream>,
2692+
pub tokens: Option<LazyAttrTokenStream>,
26932693
}
26942694

26952695
impl Item {

compiler/rustc_ast/src/ast_traits.rs

+19-19
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
use crate::ptr::P;
66
use crate::token::Nonterminal;
7-
use crate::tokenstream::LazyTokenStream;
7+
use crate::tokenstream::LazyAttrTokenStream;
88
use crate::{Arm, Crate, ExprField, FieldDef, GenericParam, Param, PatField, Variant};
99
use crate::{AssocItem, Expr, ForeignItem, Item, NodeId};
1010
use crate::{AttrItem, AttrKind, Block, Pat, Path, Ty, Visibility};
@@ -124,18 +124,18 @@ impl HasSpan for AttrItem {
124124

125125
/// A trait for AST nodes having (or not having) collected tokens.
126126
pub trait HasTokens {
127-
fn tokens(&self) -> Option<&LazyTokenStream>;
128-
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>>;
127+
fn tokens(&self) -> Option<&LazyAttrTokenStream>;
128+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>>;
129129
}
130130

131131
macro_rules! impl_has_tokens {
132132
($($T:ty),+ $(,)?) => {
133133
$(
134134
impl HasTokens for $T {
135-
fn tokens(&self) -> Option<&LazyTokenStream> {
135+
fn tokens(&self) -> Option<&LazyAttrTokenStream> {
136136
self.tokens.as_ref()
137137
}
138-
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
138+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>> {
139139
Some(&mut self.tokens)
140140
}
141141
}
@@ -147,10 +147,10 @@ macro_rules! impl_has_tokens_none {
147147
($($T:ty),+ $(,)?) => {
148148
$(
149149
impl HasTokens for $T {
150-
fn tokens(&self) -> Option<&LazyTokenStream> {
150+
fn tokens(&self) -> Option<&LazyAttrTokenStream> {
151151
None
152152
}
153-
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
153+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>> {
154154
None
155155
}
156156
}
@@ -162,25 +162,25 @@ impl_has_tokens!(AssocItem, AttrItem, Block, Expr, ForeignItem, Item, Pat, Path,
162162
impl_has_tokens_none!(Arm, ExprField, FieldDef, GenericParam, Param, PatField, Variant);
163163

164164
impl<T: AstDeref<Target: HasTokens>> HasTokens for T {
165-
fn tokens(&self) -> Option<&LazyTokenStream> {
165+
fn tokens(&self) -> Option<&LazyAttrTokenStream> {
166166
self.ast_deref().tokens()
167167
}
168-
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
168+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>> {
169169
self.ast_deref_mut().tokens_mut()
170170
}
171171
}
172172

173173
impl<T: HasTokens> HasTokens for Option<T> {
174-
fn tokens(&self) -> Option<&LazyTokenStream> {
174+
fn tokens(&self) -> Option<&LazyAttrTokenStream> {
175175
self.as_ref().and_then(|inner| inner.tokens())
176176
}
177-
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
177+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>> {
178178
self.as_mut().and_then(|inner| inner.tokens_mut())
179179
}
180180
}
181181

182182
impl HasTokens for StmtKind {
183-
fn tokens(&self) -> Option<&LazyTokenStream> {
183+
fn tokens(&self) -> Option<&LazyAttrTokenStream> {
184184
match self {
185185
StmtKind::Local(local) => local.tokens.as_ref(),
186186
StmtKind::Item(item) => item.tokens(),
@@ -189,7 +189,7 @@ impl HasTokens for StmtKind {
189189
StmtKind::MacCall(mac) => mac.tokens.as_ref(),
190190
}
191191
}
192-
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
192+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>> {
193193
match self {
194194
StmtKind::Local(local) => Some(&mut local.tokens),
195195
StmtKind::Item(item) => item.tokens_mut(),
@@ -201,24 +201,24 @@ impl HasTokens for StmtKind {
201201
}
202202

203203
impl HasTokens for Stmt {
204-
fn tokens(&self) -> Option<&LazyTokenStream> {
204+
fn tokens(&self) -> Option<&LazyAttrTokenStream> {
205205
self.kind.tokens()
206206
}
207-
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
207+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>> {
208208
self.kind.tokens_mut()
209209
}
210210
}
211211

212212
impl HasTokens for Attribute {
213-
fn tokens(&self) -> Option<&LazyTokenStream> {
213+
fn tokens(&self) -> Option<&LazyAttrTokenStream> {
214214
match &self.kind {
215215
AttrKind::Normal(normal) => normal.tokens.as_ref(),
216216
kind @ AttrKind::DocComment(..) => {
217217
panic!("Called tokens on doc comment attr {:?}", kind)
218218
}
219219
}
220220
}
221-
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
221+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>> {
222222
Some(match &mut self.kind {
223223
AttrKind::Normal(normal) => &mut normal.tokens,
224224
kind @ AttrKind::DocComment(..) => {
@@ -229,7 +229,7 @@ impl HasTokens for Attribute {
229229
}
230230

231231
impl HasTokens for Nonterminal {
232-
fn tokens(&self) -> Option<&LazyTokenStream> {
232+
fn tokens(&self) -> Option<&LazyAttrTokenStream> {
233233
match self {
234234
Nonterminal::NtItem(item) => item.tokens(),
235235
Nonterminal::NtStmt(stmt) => stmt.tokens(),
@@ -243,7 +243,7 @@ impl HasTokens for Nonterminal {
243243
Nonterminal::NtIdent(..) | Nonterminal::NtLifetime(..) => None,
244244
}
245245
}
246-
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
246+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyAttrTokenStream>> {
247247
match self {
248248
Nonterminal::NtItem(item) => item.tokens_mut(),
249249
Nonterminal::NtStmt(stmt) => stmt.tokens_mut(),

compiler/rustc_ast/src/attr/mod.rs

+8-11
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ use crate::ast::{MacArgs, MacArgsEq, MacDelimiter, MetaItem, MetaItemKind, Neste
77
use crate::ast::{Path, PathSegment};
88
use crate::ptr::P;
99
use crate::token::{self, CommentKind, Delimiter, Token};
10-
use crate::tokenstream::{AttrAnnotatedTokenStream, AttrAnnotatedTokenTree};
1110
use crate::tokenstream::{DelimSpan, Spacing, TokenTree};
12-
use crate::tokenstream::{LazyTokenStream, TokenStream};
11+
use crate::tokenstream::{LazyAttrTokenStream, TokenStream};
1312
use crate::util::comments;
1413

1514
use rustc_index::bit_set::GrowableBitSet;
@@ -296,20 +295,18 @@ impl Attribute {
296295
}
297296
}
298297

299-
pub fn tokens(&self) -> AttrAnnotatedTokenStream {
298+
pub fn tokens(&self) -> TokenStream {
300299
match self.kind {
301300
AttrKind::Normal(ref normal) => normal
302301
.tokens
303302
.as_ref()
304303
.unwrap_or_else(|| panic!("attribute is missing tokens: {:?}", self))
305-
.create_token_stream(),
306-
AttrKind::DocComment(comment_kind, data) => AttrAnnotatedTokenStream::from((
307-
AttrAnnotatedTokenTree::Token(Token::new(
308-
token::DocComment(comment_kind, self.style, data),
309-
self.span,
310-
)),
304+
.to_attr_token_stream()
305+
.to_tokenstream(),
306+
AttrKind::DocComment(comment_kind, data) => TokenStream::new(vec![TokenTree::Token(
307+
Token::new(token::DocComment(comment_kind, self.style, data), self.span),
311308
Spacing::Alone,
312-
)),
309+
)]),
313310
}
314311
}
315312
}
@@ -356,7 +353,7 @@ pub fn mk_attr(style: AttrStyle, path: Path, args: MacArgs, span: Span) -> Attri
356353

357354
pub fn mk_attr_from_item(
358355
item: AttrItem,
359-
tokens: Option<LazyTokenStream>,
356+
tokens: Option<LazyAttrTokenStream>,
360357
style: AttrStyle,
361358
span: Span,
362359
) -> Attribute {

compiler/rustc_ast/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#![feature(if_let_guard)]
1616
#![cfg_attr(bootstrap, feature(label_break_value))]
1717
#![feature(let_chains)]
18+
#![feature(let_else)]
1819
#![feature(min_specialization)]
1920
#![feature(negative_impls)]
2021
#![feature(slice_internals)]

compiler/rustc_ast/src/mut_visit.rs

+15-15
Original file line numberDiff line numberDiff line change
@@ -642,17 +642,17 @@ pub fn noop_flat_map_param<T: MutVisitor>(mut param: Param, vis: &mut T) -> Smal
642642
}
643643

644644
// No `noop_` prefix because there isn't a corresponding method in `MutVisitor`.
645-
pub fn visit_attr_annotated_tt<T: MutVisitor>(tt: &mut AttrAnnotatedTokenTree, vis: &mut T) {
645+
pub fn visit_attr_tt<T: MutVisitor>(tt: &mut AttrTokenTree, vis: &mut T) {
646646
match tt {
647-
AttrAnnotatedTokenTree::Token(token) => {
647+
AttrTokenTree::Token(token, _) => {
648648
visit_token(token, vis);
649649
}
650-
AttrAnnotatedTokenTree::Delimited(DelimSpan { open, close }, _delim, tts) => {
650+
AttrTokenTree::Delimited(DelimSpan { open, close }, _delim, tts) => {
651651
vis.visit_span(open);
652652
vis.visit_span(close);
653-
visit_attr_annotated_tts(tts, vis);
653+
visit_attr_tts(tts, vis);
654654
}
655-
AttrAnnotatedTokenTree::Attributes(data) => {
655+
AttrTokenTree::Attributes(data) => {
656656
for attr in &mut *data.attrs {
657657
match &mut attr.kind {
658658
AttrKind::Normal(normal) => {
@@ -690,27 +690,27 @@ pub fn visit_tts<T: MutVisitor>(TokenStream(tts): &mut TokenStream, vis: &mut T)
690690
}
691691
}
692692

693-
pub fn visit_attr_annotated_tts<T: MutVisitor>(
694-
AttrAnnotatedTokenStream(tts): &mut AttrAnnotatedTokenStream,
695-
vis: &mut T,
696-
) {
693+
pub fn visit_attr_tts<T: MutVisitor>(AttrTokenStream(tts): &mut AttrTokenStream, vis: &mut T) {
697694
if T::VISIT_TOKENS && !tts.is_empty() {
698695
let tts = Lrc::make_mut(tts);
699-
visit_vec(tts, |(tree, _is_joint)| visit_attr_annotated_tt(tree, vis));
696+
visit_vec(tts, |tree| visit_attr_tt(tree, vis));
700697
}
701698
}
702699

703-
pub fn visit_lazy_tts_opt_mut<T: MutVisitor>(lazy_tts: Option<&mut LazyTokenStream>, vis: &mut T) {
700+
pub fn visit_lazy_tts_opt_mut<T: MutVisitor>(
701+
lazy_tts: Option<&mut LazyAttrTokenStream>,
702+
vis: &mut T,
703+
) {
704704
if T::VISIT_TOKENS {
705705
if let Some(lazy_tts) = lazy_tts {
706-
let mut tts = lazy_tts.create_token_stream();
707-
visit_attr_annotated_tts(&mut tts, vis);
708-
*lazy_tts = LazyTokenStream::new(tts);
706+
let mut tts = lazy_tts.to_attr_token_stream();
707+
visit_attr_tts(&mut tts, vis);
708+
*lazy_tts = LazyAttrTokenStream::new(tts);
709709
}
710710
}
711711
}
712712

713-
pub fn visit_lazy_tts<T: MutVisitor>(lazy_tts: &mut Option<LazyTokenStream>, vis: &mut T) {
713+
pub fn visit_lazy_tts<T: MutVisitor>(lazy_tts: &mut Option<LazyAttrTokenStream>, vis: &mut T) {
714714
visit_lazy_tts_opt_mut(lazy_tts.as_mut(), vis);
715715
}
716716

0 commit comments

Comments
 (0)