]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_expand/src/expand.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / compiler / rustc_expand / src / expand.rs
CommitLineData
e74abb32 1use crate::base::*;
dfeec247 2use crate::config::StripUnconfigured;
6a06907d 3use crate::hygiene::SyntaxContext;
e74abb32 4use crate::mbe::macro_rules::annotate_err_with_kind;
6a06907d 5use crate::module::{mod_dir_path, parse_external_mod, DirOwnership, ParsedExternalMod};
e74abb32
XL
6use crate::placeholders::{placeholder, PlaceholderExpander};
7
6a06907d 8use rustc_ast as ast;
74b04a01
XL
9use rustc_ast::mut_visit::*;
10use rustc_ast::ptr::P;
04454e1e 11use rustc_ast::token::{self, Delimiter};
74b04a01 12use rustc_ast::tokenstream::TokenStream;
74b04a01 13use rustc_ast::visit::{self, AssocCtxt, Visitor};
04454e1e
FG
14use rustc_ast::{AssocItemKind, AstNodeWrapper, AttrStyle, ExprKind, ForeignItemKind};
15use rustc_ast::{HasAttrs, HasNodeId};
5e7ed085
FG
16use rustc_ast::{Inline, ItemKind, MacArgs, MacStmtStyle, MetaItemKind, ModKind};
17use rustc_ast::{NestedMetaItem, NodeId, PatKind, StmtKind, TyKind};
74b04a01 18use rustc_ast_pretty::pprust;
ba9703b0 19use rustc_data_structures::map_in_place::MapInPlace;
6a06907d 20use rustc_data_structures::sync::Lrc;
a2a8927a 21use rustc_errors::{Applicability, PResult};
60c5eb7d 22use rustc_feature::Features;
136023e0 23use rustc_parse::parser::{
5e7ed085 24 AttemptLocalParseRecovery, CommaRecoveryMode, ForceCollect, Parser, RecoverColon, RecoverComma,
136023e0 25};
60c5eb7d 26use rustc_parse::validate_attr;
94222f64 27use rustc_session::lint::builtin::{UNUSED_ATTRIBUTES, UNUSED_DOC_COMMENTS};
74b04a01
XL
28use rustc_session::lint::BuiltinLintDiagnostics;
29use rustc_session::parse::{feature_err, ParseSess};
f9f354fc 30use rustc_session::Limit;
17df50a5 31use rustc_span::symbol::{sym, Ident};
136023e0 32use rustc_span::{FileName, LocalExpnId, Span};
9fa01778 33
a2a8927a 34use smallvec::SmallVec;
5099ac24 35use std::ops::Deref;
ff7c6d11 36use std::path::PathBuf;
dfeec247 37use std::rc::Rc;
17df50a5 38use std::{iter, mem};
9e0c209e 39
8faf50e0
XL
40macro_rules! ast_fragments {
41 (
42 $($Kind:ident($AstTy:ty) {
43 $kind_name:expr;
9fa01778 44 $(one fn $mut_visit_ast:ident; fn $visit_ast:ident;)?
74b04a01 45 $(many fn $flat_map_ast_elt:ident; fn $visit_ast_elt:ident($($args:tt)*);)?
8faf50e0
XL
46 fn $make_ast:ident;
47 })*
48 ) => {
49 /// A fragment of AST that can be produced by a single macro expansion.
50 /// Can also serve as an input and intermediate result for macro expansion operations.
51 pub enum AstFragment {
52 OptExpr(Option<P<ast::Expr>>),
53 $($Kind($AstTy),)*
54 }
55
56 /// "Discriminant" of an AST fragment.
9e0c209e 57 #[derive(Copy, Clone, PartialEq, Eq)]
8faf50e0
XL
58 pub enum AstFragmentKind {
59 OptExpr,
60 $($Kind,)*
61 }
9e0c209e 62
8faf50e0 63 impl AstFragmentKind {
9e0c209e
SL
64 pub fn name(self) -> &'static str {
65 match self {
8faf50e0
XL
66 AstFragmentKind::OptExpr => "expression",
67 $(AstFragmentKind::$Kind => $kind_name,)*
9e0c209e
SL
68 }
69 }
92a42be0 70
8faf50e0 71 fn make_from<'a>(self, result: Box<dyn MacResult + 'a>) -> Option<AstFragment> {
9e0c209e 72 match self {
8faf50e0
XL
73 AstFragmentKind::OptExpr =>
74 result.make_expr().map(Some).map(AstFragment::OptExpr),
75 $(AstFragmentKind::$Kind => result.$make_ast().map(AstFragment::$Kind),)*
9e0c209e
SL
76 }
77 }
78 }
1a4d82fc 79
8faf50e0 80 impl AstFragment {
e74abb32
XL
81 pub fn add_placeholders(&mut self, placeholders: &[NodeId]) {
82 if placeholders.is_empty() {
83 return;
84 }
85 match self {
86 $($(AstFragment::$Kind(ast) => ast.extend(placeholders.iter().flat_map(|id| {
04454e1e 87 ${ignore(flat_map_ast_elt)}
e74abb32
XL
88 placeholder(AstFragmentKind::$Kind, *id, None).$make_ast()
89 })),)?)*
90 _ => panic!("unexpected AST fragment kind")
91 }
92 }
93
9e0c209e
SL
94 pub fn make_opt_expr(self) -> Option<P<ast::Expr>> {
95 match self {
8faf50e0
XL
96 AstFragment::OptExpr(expr) => expr,
97 _ => panic!("AstFragment::make_* called on the wrong kind of fragment"),
9e0c209e
SL
98 }
99 }
8faf50e0
XL
100
101 $(pub fn $make_ast(self) -> $AstTy {
9e0c209e 102 match self {
8faf50e0
XL
103 AstFragment::$Kind(ast) => ast,
104 _ => panic!("AstFragment::make_* called on the wrong kind of fragment"),
9e0c209e 105 }
8faf50e0 106 })*
9e0c209e 107
5099ac24
FG
108 fn make_ast<T: InvocationCollectorNode>(self) -> T::OutputTy {
109 T::fragment_to_output(self)
110 }
111
9fa01778 112 pub fn mut_visit_with<F: MutVisitor>(&mut self, vis: &mut F) {
9e0c209e 113 match self {
9fa01778
XL
114 AstFragment::OptExpr(opt_expr) => {
115 visit_clobber(opt_expr, |opt_expr| {
116 if let Some(expr) = opt_expr {
117 vis.filter_map_expr(expr)
118 } else {
119 None
120 }
121 });
122 }
dc9dc135 123 $($(AstFragment::$Kind(ast) => vis.$mut_visit_ast(ast),)?)*
8faf50e0 124 $($(AstFragment::$Kind(ast) =>
dc9dc135 125 ast.flat_map_in_place(|ast| vis.$flat_map_ast_elt(ast)),)?)*
9e0c209e
SL
126 }
127 }
1a4d82fc 128
476ff2be 129 pub fn visit_with<'a, V: Visitor<'a>>(&'a self, visitor: &mut V) {
9e0c209e 130 match *self {
8faf50e0
XL
131 AstFragment::OptExpr(Some(ref expr)) => visitor.visit_expr(expr),
132 AstFragment::OptExpr(None) => {}
dc9dc135 133 $($(AstFragment::$Kind(ref ast) => visitor.$visit_ast(ast),)?)*
8faf50e0 134 $($(AstFragment::$Kind(ref ast) => for ast_elt in &ast[..] {
74b04a01 135 visitor.$visit_ast_elt(ast_elt, $($args)*);
dc9dc135 136 })?)*
9e0c209e 137 }
3157f602 138 }
9e0c209e
SL
139 }
140
e74abb32
XL
141 impl<'a> MacResult for crate::mbe::macro_rules::ParserAnyMacro<'a> {
142 $(fn $make_ast(self: Box<crate::mbe::macro_rules::ParserAnyMacro<'a>>)
8faf50e0
XL
143 -> Option<$AstTy> {
144 Some(self.make(AstFragmentKind::$Kind).$make_ast())
9e0c209e 145 })*
1a4d82fc 146 }
9e0c209e 147 }
3157f602 148}
1a4d82fc 149
8faf50e0 150ast_fragments! {
9fa01778
XL
151 Expr(P<ast::Expr>) { "expression"; one fn visit_expr; fn visit_expr; fn make_expr; }
152 Pat(P<ast::Pat>) { "pattern"; one fn visit_pat; fn visit_pat; fn make_pat; }
153 Ty(P<ast::Ty>) { "type"; one fn visit_ty; fn visit_ty; fn make_ty; }
0bf4aa26 154 Stmts(SmallVec<[ast::Stmt; 1]>) {
74b04a01 155 "statement"; many fn flat_map_stmt; fn visit_stmt(); fn make_stmts;
0bf4aa26
XL
156 }
157 Items(SmallVec<[P<ast::Item>; 1]>) {
74b04a01 158 "item"; many fn flat_map_item; fn visit_item(); fn make_items;
0bf4aa26 159 }
74b04a01
XL
160 TraitItems(SmallVec<[P<ast::AssocItem>; 1]>) {
161 "trait item";
162 many fn flat_map_trait_item;
163 fn visit_assoc_item(AssocCtxt::Trait);
164 fn make_trait_items;
8faf50e0 165 }
74b04a01
XL
166 ImplItems(SmallVec<[P<ast::AssocItem>; 1]>) {
167 "impl item";
168 many fn flat_map_impl_item;
169 fn visit_assoc_item(AssocCtxt::Impl);
170 fn make_impl_items;
8faf50e0 171 }
74b04a01 172 ForeignItems(SmallVec<[P<ast::ForeignItem>; 1]>) {
e1599b0c
XL
173 "foreign item";
174 many fn flat_map_foreign_item;
74b04a01 175 fn visit_foreign_item();
e1599b0c
XL
176 fn make_foreign_items;
177 }
178 Arms(SmallVec<[ast::Arm; 1]>) {
74b04a01 179 "match arm"; many fn flat_map_arm; fn visit_arm(); fn make_arms;
e1599b0c 180 }
5099ac24 181 ExprFields(SmallVec<[ast::ExprField; 1]>) {
6a06907d 182 "field expression"; many fn flat_map_expr_field; fn visit_expr_field(); fn make_expr_fields;
e1599b0c 183 }
5099ac24 184 PatFields(SmallVec<[ast::PatField; 1]>) {
e1599b0c 185 "field pattern";
6a06907d
XL
186 many fn flat_map_pat_field;
187 fn visit_pat_field();
188 fn make_pat_fields;
e1599b0c
XL
189 }
190 GenericParams(SmallVec<[ast::GenericParam; 1]>) {
191 "generic parameter";
192 many fn flat_map_generic_param;
74b04a01 193 fn visit_generic_param();
e1599b0c
XL
194 fn make_generic_params;
195 }
196 Params(SmallVec<[ast::Param; 1]>) {
74b04a01 197 "function parameter"; many fn flat_map_param; fn visit_param(); fn make_params;
e1599b0c 198 }
5099ac24 199 FieldDefs(SmallVec<[ast::FieldDef; 1]>) {
e1599b0c 200 "field";
6a06907d
XL
201 many fn flat_map_field_def;
202 fn visit_field_def();
203 fn make_field_defs;
e1599b0c
XL
204 }
205 Variants(SmallVec<[ast::Variant; 1]>) {
74b04a01 206 "variant"; many fn flat_map_variant; fn visit_variant(); fn make_variants;
8faf50e0 207 }
a2a8927a 208 Crate(ast::Crate) { "crate"; one fn visit_crate; fn visit_crate; fn make_crate; }
3157f602 209}
c1a9b12d 210
cdc7bbd5
XL
211pub enum SupportsMacroExpansion {
212 No,
213 Yes { supports_inner_attrs: bool },
214}
215
8faf50e0 216impl AstFragmentKind {
ba9703b0 217 crate fn dummy(self, span: Span) -> AstFragment {
416331ca 218 self.make_from(DummyResult::any(span)).expect("couldn't create a dummy AST fragment")
9e0c209e
SL
219 }
220
cdc7bbd5 221 pub fn supports_macro_expansion(self) -> SupportsMacroExpansion {
fc512014
XL
222 match self {
223 AstFragmentKind::OptExpr
224 | AstFragmentKind::Expr
fc512014 225 | AstFragmentKind::Stmts
cdc7bbd5
XL
226 | AstFragmentKind::Ty
227 | AstFragmentKind::Pat => SupportsMacroExpansion::Yes { supports_inner_attrs: false },
228 AstFragmentKind::Items
fc512014
XL
229 | AstFragmentKind::TraitItems
230 | AstFragmentKind::ImplItems
a2a8927a
XL
231 | AstFragmentKind::ForeignItems
232 | AstFragmentKind::Crate => SupportsMacroExpansion::Yes { supports_inner_attrs: true },
fc512014 233 AstFragmentKind::Arms
5099ac24
FG
234 | AstFragmentKind::ExprFields
235 | AstFragmentKind::PatFields
fc512014
XL
236 | AstFragmentKind::GenericParams
237 | AstFragmentKind::Params
5099ac24 238 | AstFragmentKind::FieldDefs
cdc7bbd5 239 | AstFragmentKind::Variants => SupportsMacroExpansion::No,
fc512014
XL
240 }
241 }
242
dfeec247
XL
243 fn expect_from_annotatables<I: IntoIterator<Item = Annotatable>>(
244 self,
245 items: I,
246 ) -> AstFragment {
0531ce1d 247 let mut items = items.into_iter();
9e0c209e 248 match self {
dfeec247
XL
249 AstFragmentKind::Arms => {
250 AstFragment::Arms(items.map(Annotatable::expect_arm).collect())
251 }
5099ac24
FG
252 AstFragmentKind::ExprFields => {
253 AstFragment::ExprFields(items.map(Annotatable::expect_expr_field).collect())
dfeec247 254 }
5099ac24
FG
255 AstFragmentKind::PatFields => {
256 AstFragment::PatFields(items.map(Annotatable::expect_pat_field).collect())
dfeec247
XL
257 }
258 AstFragmentKind::GenericParams => {
259 AstFragment::GenericParams(items.map(Annotatable::expect_generic_param).collect())
260 }
261 AstFragmentKind::Params => {
262 AstFragment::Params(items.map(Annotatable::expect_param).collect())
263 }
5099ac24
FG
264 AstFragmentKind::FieldDefs => {
265 AstFragment::FieldDefs(items.map(Annotatable::expect_field_def).collect())
dfeec247
XL
266 }
267 AstFragmentKind::Variants => {
268 AstFragment::Variants(items.map(Annotatable::expect_variant).collect())
269 }
270 AstFragmentKind::Items => {
271 AstFragment::Items(items.map(Annotatable::expect_item).collect())
272 }
273 AstFragmentKind::ImplItems => {
274 AstFragment::ImplItems(items.map(Annotatable::expect_impl_item).collect())
275 }
276 AstFragmentKind::TraitItems => {
277 AstFragment::TraitItems(items.map(Annotatable::expect_trait_item).collect())
278 }
279 AstFragmentKind::ForeignItems => {
280 AstFragment::ForeignItems(items.map(Annotatable::expect_foreign_item).collect())
281 }
282 AstFragmentKind::Stmts => {
283 AstFragment::Stmts(items.map(Annotatable::expect_stmt).collect())
284 }
8faf50e0 285 AstFragmentKind::Expr => AstFragment::Expr(
dfeec247 286 items.next().expect("expected exactly one expression").expect_expr(),
0531ce1d 287 ),
dfeec247
XL
288 AstFragmentKind::OptExpr => {
289 AstFragment::OptExpr(items.next().map(Annotatable::expect_expr))
290 }
a2a8927a
XL
291 AstFragmentKind::Crate => {
292 AstFragment::Crate(items.next().expect("expected exactly one crate").expect_crate())
293 }
dfeec247
XL
294 AstFragmentKind::Pat | AstFragmentKind::Ty => {
295 panic!("patterns and types aren't annotatable")
296 }
9e0c209e 297 }
3157f602
XL
298 }
299}
300
9e0c209e
SL
301pub struct Invocation {
302 pub kind: InvocationKind,
e1599b0c 303 pub fragment_kind: AstFragmentKind,
8bb4bdeb 304 pub expansion_data: ExpansionData,
9e0c209e
SL
305}
306
307pub enum InvocationKind {
308 Bang {
ba9703b0 309 mac: ast::MacCall,
9e0c209e
SL
310 span: Span,
311 },
312 Attr {
416331ca 313 attr: ast::Attribute,
6a06907d
XL
314 // Re-insertion position for inert attributes.
315 pos: usize,
8bb4bdeb 316 item: Annotatable,
416331ca 317 // Required for resolving derive helper attributes.
5099ac24 318 derives: Vec<ast::Path>,
8bb4bdeb
XL
319 },
320 Derive {
5099ac24 321 path: ast::Path,
9e0c209e
SL
322 item: Annotatable,
323 },
324}
325
e74abb32
XL
326impl InvocationKind {
327 fn placeholder_visibility(&self) -> Option<ast::Visibility> {
328 // HACK: For unnamed fields placeholders should have the same visibility as the actual
329 // fields because for tuple structs/variants resolve determines visibilities of their
330 // constructor using these field visibilities before attributes on them are are expanded.
331 // The assumption is that the attribute expansion cannot change field visibilities,
332 // and it holds because only inert attributes are supported in this position.
333 match self {
6a06907d
XL
334 InvocationKind::Attr { item: Annotatable::FieldDef(field), .. }
335 | InvocationKind::Derive { item: Annotatable::FieldDef(field), .. }
dfeec247
XL
336 if field.ident.is_none() =>
337 {
338 Some(field.vis.clone())
339 }
e74abb32
XL
340 _ => None,
341 }
342 }
343}
344
9e0c209e 345impl Invocation {
8faf50e0 346 pub fn span(&self) -> Span {
416331ca
XL
347 match &self.kind {
348 InvocationKind::Bang { span, .. } => *span,
349 InvocationKind::Attr { attr, .. } => attr.span,
350 InvocationKind::Derive { path, .. } => path.span,
c1a9b12d 351 }
5bcae85e
SL
352 }
353}
c1a9b12d 354
dc9dc135 355pub struct MacroExpander<'a, 'b> {
9e0c209e 356 pub cx: &'a mut ExtCtxt<'b>,
a1dfa0c6 357 monotonic: bool, // cf. `cx.monotonic_expander()`
9e0c209e
SL
358}
359
360impl<'a, 'b> MacroExpander<'a, 'b> {
361 pub fn new(cx: &'a mut ExtCtxt<'b>, monotonic: bool) -> Self {
dc9dc135 362 MacroExpander { cx, monotonic }
9e0c209e
SL
363 }
364
a2a8927a 365 pub fn expand_crate(&mut self, krate: ast::Crate) -> ast::Crate {
5e7ed085 366 let file_path = match self.cx.source_map().span_to_filename(krate.spans.inner_span) {
17df50a5
XL
367 FileName::Real(name) => name
368 .into_local_path()
369 .expect("attempting to resolve a file path in an external file"),
370 other => PathBuf::from(other.prefer_local().to_string()),
c30ab7b3 371 };
6a06907d
XL
372 let dir_path = file_path.parent().unwrap_or(&file_path).to_owned();
373 self.cx.root_path = dir_path.clone();
374 self.cx.current_expansion.module = Rc::new(ModuleData {
375 mod_path: vec![Ident::from_str(&self.cx.ecfg.crate_name)],
376 file_path_stack: vec![file_path],
377 dir_path,
378 });
a2a8927a
XL
379 let krate = self.fully_expand_fragment(AstFragment::Crate(krate)).make_crate();
380 assert_eq!(krate.id, ast::CRATE_NODE_ID);
7cac9316 381 self.cx.trace_macros_diag();
9e0c209e 382 krate
5bcae85e 383 }
1a4d82fc 384
e1599b0c
XL
385 // Recursively expand all macro invocations in this AST fragment.
386 pub fn fully_expand_fragment(&mut self, input_fragment: AstFragment) -> AstFragment {
9e0c209e 387 let orig_expansion_data = self.cx.current_expansion.clone();
fc512014 388 let orig_force_mode = self.cx.force_mode;
9e0c209e 389
8faf50e0 390 // Collect all macro invocations and replace them with placeholders.
dfeec247
XL
391 let (mut fragment_with_placeholders, mut invocations) =
392 self.collect_invocations(input_fragment, &[]);
8faf50e0
XL
393
394 // Optimization: if we resolve all imports now,
395 // we'll be able to immediately resolve most of imported macros.
476ff2be 396 self.resolve_imports();
9e0c209e 397
b7449926 398 // Resolve paths in all invocations and produce output expanded fragments for them, but
8faf50e0
XL
399 // do not insert them into our input AST fragment yet, only store in `expanded_fragments`.
400 // The output fragments also go through expansion recursively until no invocations are left.
401 // Unresolved macros produce dummy outputs as a recovery measure.
402 invocations.reverse();
403 let mut expanded_fragments = Vec::new();
c30ab7b3
SL
404 let mut undetermined_invocations = Vec::new();
405 let (mut progress, mut force) = (false, !self.monotonic);
406 loop {
3c0e092e 407 let Some((invoc, ext)) = invocations.pop() else {
476ff2be 408 self.resolve_imports();
dfeec247
XL
409 if undetermined_invocations.is_empty() {
410 break;
411 }
416331ca 412 invocations = mem::take(&mut undetermined_invocations);
c30ab7b3 413 force = !mem::replace(&mut progress, false);
fc512014
XL
414 if force && self.monotonic {
415 self.cx.sess.delay_span_bug(
416 invocations.last().unwrap().0.span(),
417 "expansion entered force mode without producing any errors",
418 );
419 }
dfeec247 420 continue;
c30ab7b3
SL
421 };
422
6a06907d
XL
423 let ext = match ext {
424 Some(ext) => ext,
ba9703b0
XL
425 None => {
426 let eager_expansion_root = if self.monotonic {
427 invoc.expansion_data.id
428 } else {
429 orig_expansion_data.id
430 };
431 match self.cx.resolver.resolve_macro_invocation(
432 &invoc,
433 eager_expansion_root,
434 force,
435 ) {
6a06907d 436 Ok(ext) => ext,
ba9703b0
XL
437 Err(Indeterminate) => {
438 // Cannot resolve, will retry this invocation later.
439 undetermined_invocations.push((invoc, None));
440 continue;
441 }
442 }
c30ab7b3
SL
443 }
444 };
445
416331ca 446 let ExpansionData { depth, id: expn_id, .. } = invoc.expansion_data;
136023e0 447 let depth = depth - orig_expansion_data.depth;
9e0c209e 448 self.cx.current_expansion = invoc.expansion_data.clone();
fc512014 449 self.cx.force_mode = force;
9e0c209e 450
fc512014 451 let fragment_kind = invoc.fragment_kind;
6a06907d
XL
452 let (expanded_fragment, new_invocations) = match self.expand_invoc(invoc, &ext.kind) {
453 ExpandResult::Ready(fragment) => {
cdc7bbd5 454 let mut derive_invocations = Vec::new();
6a06907d
XL
455 let derive_placeholders = self
456 .cx
457 .resolver
458 .take_derive_resolutions(expn_id)
459 .map(|derives| {
cdc7bbd5 460 derive_invocations.reserve(derives.len());
6a06907d
XL
461 derives
462 .into_iter()
136023e0 463 .map(|(path, item, _exts)| {
6a06907d
XL
464 // FIXME: Consider using the derive resolutions (`_exts`)
465 // instead of enqueuing the derives to be resolved again later.
136023e0 466 let expn_id = LocalExpnId::fresh_empty();
cdc7bbd5 467 derive_invocations.push((
6a06907d 468 Invocation {
136023e0 469 kind: InvocationKind::Derive { path, item },
6a06907d
XL
470 fragment_kind,
471 expansion_data: ExpansionData {
472 id: expn_id,
473 ..self.cx.current_expansion.clone()
474 },
fc512014 475 },
6a06907d
XL
476 None,
477 ));
478 NodeId::placeholder_from_expn_id(expn_id)
479 })
480 .collect::<Vec<_>>()
481 })
482 .unwrap_or_default();
ea8adc8c 483
cdc7bbd5
XL
484 let (fragment, collected_invocations) =
485 self.collect_invocations(fragment, &derive_placeholders);
486 // We choose to expand any derive invocations associated with this macro invocation
487 // *before* any macro invocations collected from the output fragment
488 derive_invocations.extend(collected_invocations);
489 (fragment, derive_invocations)
8bb4bdeb 490 }
6a06907d
XL
491 ExpandResult::Retry(invoc) => {
492 if force {
493 self.cx.span_bug(
494 invoc.span(),
495 "expansion entered force mode but is still stuck",
496 );
497 } else {
498 // Cannot expand, will retry this invocation later.
499 undetermined_invocations.push((invoc, Some(ext)));
500 continue;
501 }
502 }
9e0c209e
SL
503 };
504
ba9703b0 505 progress = true;
8faf50e0
XL
506 if expanded_fragments.len() < depth {
507 expanded_fragments.push(Vec::new());
9e0c209e 508 }
416331ca 509 expanded_fragments[depth - 1].push((expn_id, expanded_fragment));
ba9703b0 510 invocations.extend(new_invocations.into_iter().rev());
9e0c209e
SL
511 }
512
513 self.cx.current_expansion = orig_expansion_data;
fc512014 514 self.cx.force_mode = orig_force_mode;
9e0c209e 515
8faf50e0 516 // Finally incorporate all the expanded macros into the input AST fragment.
94222f64 517 let mut placeholder_expander = PlaceholderExpander::default();
8faf50e0 518 while let Some(expanded_fragments) = expanded_fragments.pop() {
e1599b0c 519 for (expn_id, expanded_fragment) in expanded_fragments.into_iter().rev() {
dfeec247
XL
520 placeholder_expander
521 .add(NodeId::placeholder_from_expn_id(expn_id), expanded_fragment);
9e0c209e
SL
522 }
523 }
9fa01778
XL
524 fragment_with_placeholders.mut_visit_with(&mut placeholder_expander);
525 fragment_with_placeholders
9e0c209e
SL
526 }
527
476ff2be
SL
528 fn resolve_imports(&mut self) {
529 if self.monotonic {
476ff2be 530 self.cx.resolver.resolve_imports();
476ff2be
SL
531 }
532 }
533
9fa01778 534 /// Collects all macro invocations reachable at this time in this AST fragment, and replace
8faf50e0
XL
535 /// them with "placeholders" - dummy macro invocations with specially crafted `NodeId`s.
536 /// Then call into resolver that builds a skeleton ("reduced graph") of the fragment and
537 /// prepares data for resolving paths of macro invocations.
dfeec247
XL
538 fn collect_invocations(
539 &mut self,
540 mut fragment: AstFragment,
541 extra_placeholders: &[NodeId],
6a06907d 542 ) -> (AstFragment, Vec<(Invocation, Option<Lrc<SyntaxExtension>>)>) {
9fa01778 543 // Resolve `$crate`s in the fragment for pretty-printing.
416331ca 544 self.cx.resolver.resolve_dollar_crates();
9fa01778 545
c295e0f8 546 let mut invocations = {
9e0c209e 547 let mut collector = InvocationCollector {
cdc7bbd5
XL
548 // Non-derive macro invocations cannot see the results of cfg expansion - they
549 // will either be removed along with the item, or invoked before the cfg/cfg_attr
550 // attribute is expanded. Therefore, we don't need to configure the tokens
551 // Derive macros *can* see the results of cfg-expansion - they are handled
552 // specially in `fully_expand_fragment`
9e0c209e
SL
553 cx: self.cx,
554 invocations: Vec::new(),
555 monotonic: self.monotonic,
556 };
9fa01778 557 fragment.mut_visit_with(&mut collector);
e74abb32 558 fragment.add_placeholders(extra_placeholders);
9fa01778 559 collector.invocations
9e0c209e 560 };
9e0c209e
SL
561
562 if self.monotonic {
dfeec247
XL
563 self.cx
564 .resolver
565 .visit_ast_fragment_with_placeholders(self.cx.current_expansion.id, &fragment);
c295e0f8
XL
566
567 if self.cx.sess.opts.debugging_opts.incremental_relative_spans {
568 for (invoc, _) in invocations.iter_mut() {
569 let expn_id = invoc.expansion_data.id;
570 let parent_def = self.cx.resolver.invocation_parent(expn_id);
571 let span = match &mut invoc.kind {
572 InvocationKind::Bang { ref mut span, .. } => span,
573 InvocationKind::Attr { attr, .. } => &mut attr.span,
574 InvocationKind::Derive { path, .. } => &mut path.span,
575 };
576 *span = span.with_parent(Some(parent_def));
577 }
578 }
9e0c209e
SL
579 }
580
9fa01778 581 (fragment, invocations)
9e0c209e
SL
582 }
583
74b04a01
XL
584 fn error_recursion_limit_reached(&mut self) {
585 let expn_data = self.cx.current_expansion.id.expn_data();
c295e0f8
XL
586 let suggested_limit = match self.cx.ecfg.recursion_limit {
587 Limit(0) => Limit(2),
588 limit => limit * 2,
589 };
74b04a01
XL
590 self.cx
591 .struct_span_err(
dfeec247
XL
592 expn_data.call_site,
593 &format!("recursion limit reached while expanding `{}`", expn_data.kind.descr()),
74b04a01
XL
594 )
595 .help(&format!(
c295e0f8
XL
596 "consider increasing the recursion limit by adding a \
597 `#![recursion_limit = \"{}\"]` attribute to your crate (`{}`)",
74b04a01
XL
598 suggested_limit, self.cx.ecfg.crate_name,
599 ))
600 .emit();
601 self.cx.trace_macros_diag();
74b04a01
XL
602 }
603
604 /// A macro's expansion does not fit in this fragment kind.
605 /// For example, a non-type macro in a type position.
ba9703b0 606 fn error_wrong_fragment_kind(&mut self, kind: AstFragmentKind, mac: &ast::MacCall, span: Span) {
74b04a01
XL
607 let msg = format!(
608 "non-{kind} macro in {kind} position: {path}",
609 kind = kind.name(),
610 path = pprust::path_to_string(&mac.path),
611 );
612 self.cx.span_err(span, &msg);
613 self.cx.trace_macros_diag();
614 }
615
ba9703b0
XL
616 fn expand_invoc(
617 &mut self,
618 invoc: Invocation,
619 ext: &SyntaxExtensionKind,
620 ) -> ExpandResult<AstFragment, Invocation> {
621 let recursion_limit =
622 self.cx.reduced_recursion_limit.unwrap_or(self.cx.ecfg.recursion_limit);
f9f354fc 623 if !recursion_limit.value_within_limit(self.cx.current_expansion.depth) {
ba9703b0
XL
624 if self.cx.reduced_recursion_limit.is_none() {
625 self.error_recursion_limit_reached();
626 }
627
628 // Reduce the recursion limit by half each time it triggers.
629 self.cx.reduced_recursion_limit = Some(recursion_limit / 2);
630
631 return ExpandResult::Ready(invoc.fragment_kind.dummy(invoc.span()));
9e0c209e 632 }
cc61c64b 633
e74abb32 634 let (fragment_kind, span) = (invoc.fragment_kind, invoc.span());
ba9703b0 635 ExpandResult::Ready(match invoc.kind {
416331ca
XL
636 InvocationKind::Bang { mac, .. } => match ext {
637 SyntaxExtensionKind::Bang(expander) => {
5e7ed085
FG
638 let Ok(tok_result) = expander.expand(self.cx, span, mac.args.inner_tokens()) else {
639 return ExpandResult::Ready(fragment_kind.dummy(span));
ba9703b0 640 };
e74abb32 641 self.parse_ast_fragment(tok_result, fragment_kind, &mac.path, span)
dc9dc135 642 }
416331ca
XL
643 SyntaxExtensionKind::LegacyBang(expander) => {
644 let prev = self.cx.current_expansion.prior_type_ascription;
e1599b0c 645 self.cx.current_expansion.prior_type_ascription = mac.prior_type_ascription;
60c5eb7d 646 let tok_result = expander.expand(self.cx, span, mac.args.inner_tokens());
416331ca
XL
647 let result = if let Some(result) = fragment_kind.make_from(tok_result) {
648 result
649 } else {
74b04a01 650 self.error_wrong_fragment_kind(fragment_kind, &mac, span);
416331ca
XL
651 fragment_kind.dummy(span)
652 };
653 self.cx.current_expansion.prior_type_ascription = prev;
654 result
655 }
dfeec247
XL
656 _ => unreachable!(),
657 },
6a06907d 658 InvocationKind::Attr { attr, pos, mut item, derives } => match ext {
416331ca 659 SyntaxExtensionKind::Attr(expander) => {
e74abb32 660 self.gate_proc_macro_input(&item);
416331ca 661 self.gate_proc_macro_attr_item(span, &item);
a2a8927a
XL
662 let tokens = match &item {
663 // FIXME: Collect tokens and use them instead of generating
664 // fake ones. These are unstable, so it needs to be
665 // fixed prior to stabilization
666 // Fake tokens when we are invoking an inner attribute, and
667 // we are invoking it on an out-of-line module or crate.
668 Annotatable::Crate(krate) => rustc_parse::fake_token_stream_for_crate(
5869c6ff 669 &self.cx.sess.parse_sess,
a2a8927a
XL
670 krate,
671 ),
672 Annotatable::Item(item_inner)
5099ac24 673 if matches!(attr.style, AttrStyle::Inner)
a2a8927a
XL
674 && matches!(
675 item_inner.kind,
676 ItemKind::Mod(
677 _,
678 ModKind::Unloaded | ModKind::Loaded(_, Inline::No, _),
679 )
680 ) =>
681 {
04454e1e 682 rustc_parse::fake_token_stream(&self.cx.sess.parse_sess, item_inner)
a2a8927a 683 }
04454e1e 684 _ => item.to_tokens(&self.cx.sess.parse_sess),
5869c6ff 685 };
74b04a01
XL
686 let attr_item = attr.unwrap_normal_item();
687 if let MacArgs::Eq(..) = attr_item.args {
60c5eb7d
XL
688 self.cx.span_err(span, "key-value macro attributes are not supported");
689 }
ba9703b0 690 let inner_tokens = attr_item.args.inner_tokens();
5e7ed085
FG
691 let Ok(tok_result) = expander.expand(self.cx, span, inner_tokens, tokens) else {
692 return ExpandResult::Ready(fragment_kind.dummy(span));
ba9703b0 693 };
74b04a01 694 self.parse_ast_fragment(tok_result, fragment_kind, &attr_item.path, span)
416331ca
XL
695 }
696 SyntaxExtensionKind::LegacyAttr(expander) => {
3dfed10e 697 match validate_attr::parse_meta(&self.cx.sess.parse_sess, &attr) {
416331ca 698 Ok(meta) => {
ba9703b0
XL
699 let items = match expander.expand(self.cx, span, &meta, item) {
700 ExpandResult::Ready(items) => items,
fc512014 701 ExpandResult::Retry(item) => {
ba9703b0 702 // Reassemble the original invocation for retrying.
fc512014 703 return ExpandResult::Retry(Invocation {
6a06907d 704 kind: InvocationKind::Attr { attr, pos, item, derives },
fc512014
XL
705 ..invoc
706 });
ba9703b0
XL
707 }
708 };
cdc7bbd5
XL
709 if fragment_kind == AstFragmentKind::Expr && items.is_empty() {
710 let msg =
711 "removing an expression is not supported in this position";
712 self.cx.span_err(span, msg);
713 fragment_kind.dummy(span)
714 } else {
715 fragment_kind.expect_from_annotatables(items)
716 }
416331ca
XL
717 }
718 Err(mut err) => {
719 err.emit();
720 fragment_kind.dummy(span)
721 }
722 }
723 }
94222f64
XL
724 SyntaxExtensionKind::NonMacroAttr => {
725 self.cx.expanded_inert_attrs.mark(&attr);
6a06907d 726 item.visit_attrs(|attrs| attrs.insert(pos, attr));
416331ca
XL
727 fragment_kind.expect_from_annotatables(iter::once(item))
728 }
dfeec247
XL
729 _ => unreachable!(),
730 },
416331ca 731 InvocationKind::Derive { path, item } => match ext {
dfeec247
XL
732 SyntaxExtensionKind::Derive(expander)
733 | SyntaxExtensionKind::LegacyDerive(expander) => {
e74abb32
XL
734 if let SyntaxExtensionKind::Derive(..) = ext {
735 self.gate_proc_macro_input(&item);
736 }
5099ac24 737 let meta = ast::MetaItem { kind: MetaItemKind::Word, span, path };
ba9703b0
XL
738 let items = match expander.expand(self.cx, span, &meta, item) {
739 ExpandResult::Ready(items) => items,
fc512014 740 ExpandResult::Retry(item) => {
ba9703b0 741 // Reassemble the original invocation for retrying.
fc512014
XL
742 return ExpandResult::Retry(Invocation {
743 kind: InvocationKind::Derive { path: meta.path, item },
744 ..invoc
745 });
ba9703b0
XL
746 }
747 };
416331ca
XL
748 fragment_kind.expect_from_annotatables(items)
749 }
dfeec247
XL
750 _ => unreachable!(),
751 },
ba9703b0 752 })
9e0c209e
SL
753 }
754
83c7162d 755 fn gate_proc_macro_attr_item(&self, span: Span, item: &Annotatable) {
e74abb32 756 let kind = match item {
dfeec247
XL
757 Annotatable::Item(_)
758 | Annotatable::TraitItem(_)
e74abb32 759 | Annotatable::ImplItem(_)
a2a8927a
XL
760 | Annotatable::ForeignItem(_)
761 | Annotatable::Crate(..) => return,
fc512014
XL
762 Annotatable::Stmt(stmt) => {
763 // Attributes are stable on item statements,
764 // but unstable on all other kinds of statements
765 if stmt.is_item() {
766 return;
767 }
768 "statements"
769 }
e74abb32 770 Annotatable::Expr(_) => "expressions",
e1599b0c 771 Annotatable::Arm(..)
6a06907d
XL
772 | Annotatable::ExprField(..)
773 | Annotatable::PatField(..)
e1599b0c
XL
774 | Annotatable::GenericParam(..)
775 | Annotatable::Param(..)
6a06907d 776 | Annotatable::FieldDef(..)
dfeec247 777 | Annotatable::Variant(..) => panic!("unexpected annotatable"),
83c7162d 778 };
e74abb32 779 if self.cx.ecfg.proc_macro_hygiene() {
dfeec247 780 return;
e74abb32 781 }
60c5eb7d 782 feature_err(
3dfed10e 783 &self.cx.sess.parse_sess,
e74abb32 784 sym::proc_macro_hygiene,
83c7162d 785 span,
83c7162d 786 &format!("custom attributes cannot be applied to {}", kind),
60c5eb7d
XL
787 )
788 .emit();
83c7162d
XL
789 }
790
e74abb32
XL
791 fn gate_proc_macro_input(&self, annotatable: &Annotatable) {
792 struct GateProcMacroInput<'a> {
94b46f34
XL
793 parse_sess: &'a ParseSess,
794 }
795
e74abb32
XL
796 impl<'ast, 'a> Visitor<'ast> for GateProcMacroInput<'a> {
797 fn visit_item(&mut self, item: &'ast ast::Item) {
798 match &item.kind {
5099ac24 799 ItemKind::Mod(_, mod_kind)
6a06907d
XL
800 if !matches!(mod_kind, ModKind::Loaded(_, Inline::Yes, _)) =>
801 {
60c5eb7d 802 feature_err(
e74abb32
XL
803 self.parse_sess,
804 sym::proc_macro_hygiene,
805 item.span,
e74abb32 806 "non-inline modules in proc macro input are unstable",
60c5eb7d
XL
807 )
808 .emit();
e74abb32
XL
809 }
810 _ => {}
94b46f34 811 }
94b46f34 812
e74abb32 813 visit::walk_item(self, item);
94b46f34 814 }
e74abb32
XL
815 }
816
817 if !self.cx.ecfg.proc_macro_hygiene() {
3dfed10e
XL
818 annotatable
819 .visit_with(&mut GateProcMacroInput { parse_sess: &self.cx.sess.parse_sess });
94b46f34
XL
820 }
821 }
822
416331ca
XL
823 fn parse_ast_fragment(
824 &mut self,
825 toks: TokenStream,
826 kind: AstFragmentKind,
5099ac24 827 path: &ast::Path,
416331ca
XL
828 span: Span,
829 ) -> AstFragment {
e1599b0c 830 let mut parser = self.cx.new_parser_from_tts(toks);
74b04a01 831 match parse_ast_fragment(&mut parser, kind) {
8faf50e0 832 Ok(fragment) => {
e74abb32 833 ensure_complete_parse(&mut parser, path, kind.name(), span);
416331ca 834 fragment
ff7c6d11 835 }
9e0c209e 836 Err(mut err) => {
5869c6ff
XL
837 if err.span.is_dummy() {
838 err.set_span(span);
839 }
416331ca 840 annotate_err_with_kind(&mut err, kind, span);
9cc50fc6 841 err.emit();
ea8adc8c 842 self.cx.trace_macros_diag();
ff7c6d11 843 kind.dummy(span)
1a4d82fc 844 }
ff7c6d11 845 }
9e0c209e
SL
846 }
847}
970d7e83 848
e74abb32
XL
849pub fn parse_ast_fragment<'a>(
850 this: &mut Parser<'a>,
851 kind: AstFragmentKind,
e74abb32
XL
852) -> PResult<'a, AstFragment> {
853 Ok(match kind {
854 AstFragmentKind::Items => {
855 let mut items = SmallVec::new();
5869c6ff 856 while let Some(item) = this.parse_item(ForceCollect::No)? {
e74abb32 857 items.push(item);
9e0c209e 858 }
e74abb32
XL
859 AstFragment::Items(items)
860 }
861 AstFragmentKind::TraitItems => {
862 let mut items = SmallVec::new();
cdc7bbd5 863 while let Some(item) = this.parse_trait_item(ForceCollect::No)? {
74b04a01 864 items.extend(item);
9e0c209e 865 }
e74abb32
XL
866 AstFragment::TraitItems(items)
867 }
868 AstFragmentKind::ImplItems => {
869 let mut items = SmallVec::new();
cdc7bbd5 870 while let Some(item) = this.parse_impl_item(ForceCollect::No)? {
74b04a01 871 items.extend(item);
9e0c209e 872 }
e74abb32
XL
873 AstFragment::ImplItems(items)
874 }
875 AstFragmentKind::ForeignItems => {
876 let mut items = SmallVec::new();
cdc7bbd5 877 while let Some(item) = this.parse_foreign_item(ForceCollect::No)? {
74b04a01 878 items.extend(item);
83c7162d 879 }
e74abb32
XL
880 AstFragment::ForeignItems(items)
881 }
882 AstFragmentKind::Stmts => {
883 let mut stmts = SmallVec::new();
74b04a01 884 // Won't make progress on a `}`.
04454e1e 885 while this.token != token::Eof && this.token != token::CloseDelim(Delimiter::Brace) {
29967ef6 886 if let Some(stmt) = this.parse_full_stmt(AttemptLocalParseRecovery::Yes)? {
e74abb32 887 stmts.push(stmt);
9e0c209e 888 }
223e47cc 889 }
e74abb32
XL
890 AstFragment::Stmts(stmts)
891 }
892 AstFragmentKind::Expr => AstFragment::Expr(this.parse_expr()?),
893 AstFragmentKind::OptExpr => {
894 if this.token != token::Eof {
895 AstFragment::OptExpr(Some(this.parse_expr()?))
896 } else {
897 AstFragment::OptExpr(None)
898 }
dfeec247 899 }
e74abb32 900 AstFragmentKind::Ty => AstFragment::Ty(this.parse_ty()?),
136023e0
XL
901 AstFragmentKind::Pat => AstFragment::Pat(this.parse_pat_allow_top_alt(
902 None,
903 RecoverComma::No,
904 RecoverColon::Yes,
5e7ed085 905 CommaRecoveryMode::LikelyTuple,
136023e0 906 )?),
a2a8927a 907 AstFragmentKind::Crate => AstFragment::Crate(this.parse_crate_mod()?),
e74abb32 908 AstFragmentKind::Arms
5099ac24
FG
909 | AstFragmentKind::ExprFields
910 | AstFragmentKind::PatFields
e74abb32
XL
911 | AstFragmentKind::GenericParams
912 | AstFragmentKind::Params
5099ac24 913 | AstFragmentKind::FieldDefs
dfeec247 914 | AstFragmentKind::Variants => panic!("unexpected AST fragment kind"),
e74abb32
XL
915 })
916}
a1dfa0c6 917
e74abb32
XL
918pub fn ensure_complete_parse<'a>(
919 this: &mut Parser<'a>,
5099ac24 920 macro_path: &ast::Path,
e74abb32
XL
921 kind_name: &str,
922 span: Span,
923) {
924 if this.token != token::Eof {
dfeec247
XL
925 let token = pprust::token_to_string(&this.token);
926 let msg = format!("macro expansion ignores token `{}` and any following", token);
e74abb32
XL
927 // Avoid emitting backtrace info twice.
928 let def_site_span = this.token.span.with_ctxt(SyntaxContext::root());
929 let mut err = this.struct_span_err(def_site_span, &msg);
930 err.span_label(span, "caused by the macro expansion here");
931 let msg = format!(
932 "the usage of `{}!` is likely invalid in {} context",
933 pprust::path_to_string(macro_path),
934 kind_name,
935 );
936 err.note(&msg);
937 let semi_span = this.sess.source_map().next_point(span);
938
939 let semi_full_span = semi_span.to(this.sess.source_map().next_point(semi_span));
940 match this.sess.source_map().span_to_snippet(semi_full_span) {
941 Ok(ref snippet) if &snippet[..] != ";" && kind_name == "expression" => {
942 err.span_suggestion(
943 semi_span,
944 "you might be missing a semicolon here",
945 ";".to_owned(),
946 Applicability::MaybeIncorrect,
947 );
a1dfa0c6 948 }
e74abb32 949 _ => {}
1a4d82fc 950 }
e74abb32 951 err.emit();
1a4d82fc 952 }
1a4d82fc
JJ
953}
954
5099ac24
FG
955/// Wraps a call to `noop_visit_*` / `noop_flat_map_*`
956/// for an AST node that supports attributes
957/// (see the `Annotatable` enum)
958/// This method assigns a `NodeId`, and sets that `NodeId`
959/// as our current 'lint node id'. If a macro call is found
960/// inside this AST node, we will use this AST node's `NodeId`
961/// to emit lints associated with that macro (allowing
962/// `#[allow]` / `#[deny]` to be applied close to
963/// the macro invocation).
964///
965/// Do *not* call this for a macro AST node
966/// (e.g. `ExprKind::MacCall`) - we cannot emit lints
967/// at these AST nodes, since they are removed and
968/// replaced with the result of macro expansion.
969///
970/// All other `NodeId`s are assigned by `visit_id`.
971/// * `self` is the 'self' parameter for the current method,
972/// * `id` is a mutable reference to the `NodeId` field
973/// of the current AST node.
974/// * `closure` is a closure that executes the
975/// `noop_visit_*` / `noop_flat_map_*` method
976/// for the current AST node.
977macro_rules! assign_id {
978 ($self:ident, $id:expr, $closure:expr) => {{
979 let old_id = $self.cx.current_expansion.lint_node_id;
980 if $self.monotonic {
981 debug_assert_eq!(*$id, ast::DUMMY_NODE_ID);
982 let new_id = $self.cx.resolver.next_node_id();
983 *$id = new_id;
984 $self.cx.current_expansion.lint_node_id = new_id;
985 }
986 let ret = ($closure)();
987 $self.cx.current_expansion.lint_node_id = old_id;
988 ret
989 }};
990}
991
992enum AddSemicolon {
993 Yes,
994 No,
995}
996
997/// A trait implemented for all `AstFragment` nodes and providing all pieces
998/// of functionality used by `InvocationCollector`.
04454e1e 999trait InvocationCollectorNode: HasAttrs + HasNodeId + Sized {
5099ac24
FG
1000 type OutputTy = SmallVec<[Self; 1]>;
1001 type AttrsTy: Deref<Target = [ast::Attribute]> = Vec<ast::Attribute>;
1002 const KIND: AstFragmentKind;
1003 fn to_annotatable(self) -> Annotatable;
1004 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy;
5099ac24
FG
1005 fn descr() -> &'static str {
1006 unreachable!()
1007 }
1008 fn noop_flat_map<V: MutVisitor>(self, _visitor: &mut V) -> Self::OutputTy {
1009 unreachable!()
1010 }
1011 fn noop_visit<V: MutVisitor>(&mut self, _visitor: &mut V) {
1012 unreachable!()
1013 }
1014 fn is_mac_call(&self) -> bool {
1015 false
1016 }
1017 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1018 unreachable!()
1019 }
1020 fn pre_flat_map_node_collect_attr(_cfg: &StripUnconfigured<'_>, _attr: &ast::Attribute) {}
1021 fn post_flat_map_node_collect_bang(_output: &mut Self::OutputTy, _add_semicolon: AddSemicolon) {
1022 }
1023 fn wrap_flat_map_node_noop_flat_map(
1024 node: Self,
1025 collector: &mut InvocationCollector<'_, '_>,
1026 noop_flat_map: impl FnOnce(Self, &mut InvocationCollector<'_, '_>) -> Self::OutputTy,
1027 ) -> Result<Self::OutputTy, Self> {
1028 Ok(noop_flat_map(node, collector))
1029 }
1030}
1031
1032impl InvocationCollectorNode for P<ast::Item> {
1033 const KIND: AstFragmentKind = AstFragmentKind::Items;
1034 fn to_annotatable(self) -> Annotatable {
1035 Annotatable::Item(self)
1036 }
1037 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1038 fragment.make_items()
1039 }
5099ac24
FG
1040 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1041 noop_flat_map_item(self, visitor)
1042 }
1043 fn is_mac_call(&self) -> bool {
1044 matches!(self.kind, ItemKind::MacCall(..))
1045 }
1046 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1047 let node = self.into_inner();
1048 match node.kind {
1049 ItemKind::MacCall(mac) => (mac, node.attrs, AddSemicolon::No),
1050 _ => unreachable!(),
1051 }
1052 }
1053 fn wrap_flat_map_node_noop_flat_map(
1054 mut node: Self,
1055 collector: &mut InvocationCollector<'_, '_>,
1056 noop_flat_map: impl FnOnce(Self, &mut InvocationCollector<'_, '_>) -> Self::OutputTy,
1057 ) -> Result<Self::OutputTy, Self> {
1058 if !matches!(node.kind, ItemKind::Mod(..)) {
1059 return Ok(noop_flat_map(node, collector));
1060 }
1061
1062 // Work around borrow checker not seeing through `P`'s deref.
1063 let (ident, span, mut attrs) = (node.ident, node.span, mem::take(&mut node.attrs));
1064 let ItemKind::Mod(_, mod_kind) = &mut node.kind else {
1065 unreachable!()
1066 };
1067
1068 let ecx = &mut collector.cx;
1069 let (file_path, dir_path, dir_ownership) = match mod_kind {
1070 ModKind::Loaded(_, inline, _) => {
1071 // Inline `mod foo { ... }`, but we still need to push directories.
1072 let (dir_path, dir_ownership) = mod_dir_path(
1073 &ecx.sess,
1074 ident,
1075 &attrs,
1076 &ecx.current_expansion.module,
1077 ecx.current_expansion.dir_ownership,
1078 *inline,
1079 );
1080 node.attrs = attrs;
1081 (None, dir_path, dir_ownership)
1082 }
1083 ModKind::Unloaded => {
1084 // We have an outline `mod foo;` so we need to parse the file.
1085 let old_attrs_len = attrs.len();
5e7ed085 1086 let ParsedExternalMod { items, spans, file_path, dir_path, dir_ownership } =
5099ac24
FG
1087 parse_external_mod(
1088 &ecx.sess,
1089 ident,
1090 span,
1091 &ecx.current_expansion.module,
1092 ecx.current_expansion.dir_ownership,
1093 &mut attrs,
1094 );
1095
1096 if let Some(lint_store) = ecx.lint_store {
1097 lint_store.pre_expansion_lint(
1098 ecx.sess,
1099 ecx.resolver.registered_tools(),
1100 ecx.current_expansion.lint_node_id,
1101 &attrs,
1102 &items,
1103 ident.name.as_str(),
1104 );
1105 }
1106
5e7ed085 1107 *mod_kind = ModKind::Loaded(items, Inline::No, spans);
5099ac24
FG
1108 node.attrs = attrs;
1109 if node.attrs.len() > old_attrs_len {
1110 // If we loaded an out-of-line module and added some inner attributes,
1111 // then we need to re-configure it and re-collect attributes for
1112 // resolution and expansion.
1113 return Err(node);
1114 }
1115 (Some(file_path), dir_path, dir_ownership)
1116 }
1117 };
1118
1119 // Set the module info before we flat map.
1120 let mut module = ecx.current_expansion.module.with_dir_path(dir_path);
1121 module.mod_path.push(ident);
1122 if let Some(file_path) = file_path {
1123 module.file_path_stack.push(file_path);
1124 }
1125
1126 let orig_module = mem::replace(&mut ecx.current_expansion.module, Rc::new(module));
1127 let orig_dir_ownership =
1128 mem::replace(&mut ecx.current_expansion.dir_ownership, dir_ownership);
1129
1130 let res = Ok(noop_flat_map(node, collector));
1131
1132 collector.cx.current_expansion.dir_ownership = orig_dir_ownership;
1133 collector.cx.current_expansion.module = orig_module;
1134 res
1135 }
1136}
1137
1138struct TraitItemTag;
04454e1e 1139impl InvocationCollectorNode for AstNodeWrapper<P<ast::AssocItem>, TraitItemTag> {
5099ac24
FG
1140 type OutputTy = SmallVec<[P<ast::AssocItem>; 1]>;
1141 const KIND: AstFragmentKind = AstFragmentKind::TraitItems;
1142 fn to_annotatable(self) -> Annotatable {
1143 Annotatable::TraitItem(self.wrapped)
1144 }
1145 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1146 fragment.make_trait_items()
1147 }
5099ac24
FG
1148 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1149 noop_flat_map_assoc_item(self.wrapped, visitor)
1150 }
1151 fn is_mac_call(&self) -> bool {
1152 matches!(self.wrapped.kind, AssocItemKind::MacCall(..))
1153 }
1154 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1155 let item = self.wrapped.into_inner();
1156 match item.kind {
1157 AssocItemKind::MacCall(mac) => (mac, item.attrs, AddSemicolon::No),
1158 _ => unreachable!(),
1159 }
1160 }
1161}
1162
1163struct ImplItemTag;
04454e1e 1164impl InvocationCollectorNode for AstNodeWrapper<P<ast::AssocItem>, ImplItemTag> {
5099ac24
FG
1165 type OutputTy = SmallVec<[P<ast::AssocItem>; 1]>;
1166 const KIND: AstFragmentKind = AstFragmentKind::ImplItems;
1167 fn to_annotatable(self) -> Annotatable {
1168 Annotatable::ImplItem(self.wrapped)
1169 }
1170 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1171 fragment.make_impl_items()
1172 }
5099ac24
FG
1173 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1174 noop_flat_map_assoc_item(self.wrapped, visitor)
1175 }
1176 fn is_mac_call(&self) -> bool {
1177 matches!(self.wrapped.kind, AssocItemKind::MacCall(..))
1178 }
1179 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1180 let item = self.wrapped.into_inner();
1181 match item.kind {
1182 AssocItemKind::MacCall(mac) => (mac, item.attrs, AddSemicolon::No),
1183 _ => unreachable!(),
1184 }
1185 }
1186}
1187
1188impl InvocationCollectorNode for P<ast::ForeignItem> {
1189 const KIND: AstFragmentKind = AstFragmentKind::ForeignItems;
1190 fn to_annotatable(self) -> Annotatable {
1191 Annotatable::ForeignItem(self)
1192 }
1193 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1194 fragment.make_foreign_items()
1195 }
5099ac24
FG
1196 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1197 noop_flat_map_foreign_item(self, visitor)
1198 }
1199 fn is_mac_call(&self) -> bool {
1200 matches!(self.kind, ForeignItemKind::MacCall(..))
1201 }
1202 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1203 let node = self.into_inner();
1204 match node.kind {
1205 ForeignItemKind::MacCall(mac) => (mac, node.attrs, AddSemicolon::No),
1206 _ => unreachable!(),
1207 }
1208 }
1209}
1210
1211impl InvocationCollectorNode for ast::Variant {
1212 const KIND: AstFragmentKind = AstFragmentKind::Variants;
1213 fn to_annotatable(self) -> Annotatable {
1214 Annotatable::Variant(self)
1215 }
1216 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1217 fragment.make_variants()
1218 }
5099ac24
FG
1219 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1220 noop_flat_map_variant(self, visitor)
1221 }
1222}
1223
1224impl InvocationCollectorNode for ast::FieldDef {
1225 const KIND: AstFragmentKind = AstFragmentKind::FieldDefs;
1226 fn to_annotatable(self) -> Annotatable {
1227 Annotatable::FieldDef(self)
1228 }
1229 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1230 fragment.make_field_defs()
1231 }
5099ac24
FG
1232 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1233 noop_flat_map_field_def(self, visitor)
1234 }
1235}
1236
1237impl InvocationCollectorNode for ast::PatField {
1238 const KIND: AstFragmentKind = AstFragmentKind::PatFields;
1239 fn to_annotatable(self) -> Annotatable {
1240 Annotatable::PatField(self)
1241 }
1242 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1243 fragment.make_pat_fields()
1244 }
5099ac24
FG
1245 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1246 noop_flat_map_pat_field(self, visitor)
1247 }
1248}
1249
1250impl InvocationCollectorNode for ast::ExprField {
1251 const KIND: AstFragmentKind = AstFragmentKind::ExprFields;
1252 fn to_annotatable(self) -> Annotatable {
1253 Annotatable::ExprField(self)
1254 }
1255 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1256 fragment.make_expr_fields()
1257 }
5099ac24
FG
1258 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1259 noop_flat_map_expr_field(self, visitor)
1260 }
1261}
1262
1263impl InvocationCollectorNode for ast::Param {
1264 const KIND: AstFragmentKind = AstFragmentKind::Params;
1265 fn to_annotatable(self) -> Annotatable {
1266 Annotatable::Param(self)
1267 }
1268 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1269 fragment.make_params()
1270 }
5099ac24
FG
1271 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1272 noop_flat_map_param(self, visitor)
1273 }
1274}
1275
1276impl InvocationCollectorNode for ast::GenericParam {
1277 const KIND: AstFragmentKind = AstFragmentKind::GenericParams;
1278 fn to_annotatable(self) -> Annotatable {
1279 Annotatable::GenericParam(self)
1280 }
1281 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1282 fragment.make_generic_params()
1283 }
5099ac24
FG
1284 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1285 noop_flat_map_generic_param(self, visitor)
1286 }
1287}
1288
1289impl InvocationCollectorNode for ast::Arm {
1290 const KIND: AstFragmentKind = AstFragmentKind::Arms;
1291 fn to_annotatable(self) -> Annotatable {
1292 Annotatable::Arm(self)
1293 }
1294 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1295 fragment.make_arms()
1296 }
5099ac24
FG
1297 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1298 noop_flat_map_arm(self, visitor)
1299 }
1300}
1301
1302impl InvocationCollectorNode for ast::Stmt {
1303 type AttrsTy = ast::AttrVec;
1304 const KIND: AstFragmentKind = AstFragmentKind::Stmts;
1305 fn to_annotatable(self) -> Annotatable {
1306 Annotatable::Stmt(P(self))
1307 }
1308 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1309 fragment.make_stmts()
1310 }
5099ac24
FG
1311 fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1312 noop_flat_map_stmt(self, visitor)
1313 }
1314 fn is_mac_call(&self) -> bool {
1315 match &self.kind {
1316 StmtKind::MacCall(..) => true,
1317 StmtKind::Item(item) => matches!(item.kind, ItemKind::MacCall(..)),
1318 StmtKind::Semi(expr) => matches!(expr.kind, ExprKind::MacCall(..)),
1319 StmtKind::Expr(..) => unreachable!(),
1320 StmtKind::Local(..) | StmtKind::Empty => false,
1321 }
1322 }
1323 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1324 // We pull macro invocations (both attributes and fn-like macro calls) out of their
1325 // `StmtKind`s and treat them as statement macro invocations, not as items or expressions.
1326 let (add_semicolon, mac, attrs) = match self.kind {
1327 StmtKind::MacCall(mac) => {
1328 let ast::MacCallStmt { mac, style, attrs, .. } = mac.into_inner();
1329 (style == MacStmtStyle::Semicolon, mac, attrs)
1330 }
1331 StmtKind::Item(item) => match item.into_inner() {
1332 ast::Item { kind: ItemKind::MacCall(mac), attrs, .. } => {
1333 (mac.args.need_semicolon(), mac, attrs.into())
1334 }
1335 _ => unreachable!(),
1336 },
1337 StmtKind::Semi(expr) => match expr.into_inner() {
1338 ast::Expr { kind: ExprKind::MacCall(mac), attrs, .. } => {
1339 (mac.args.need_semicolon(), mac, attrs)
1340 }
1341 _ => unreachable!(),
1342 },
1343 _ => unreachable!(),
1344 };
1345 (mac, attrs, if add_semicolon { AddSemicolon::Yes } else { AddSemicolon::No })
1346 }
1347 fn post_flat_map_node_collect_bang(stmts: &mut Self::OutputTy, add_semicolon: AddSemicolon) {
1348 // If this is a macro invocation with a semicolon, then apply that
1349 // semicolon to the final statement produced by expansion.
1350 if matches!(add_semicolon, AddSemicolon::Yes) {
1351 if let Some(stmt) = stmts.pop() {
1352 stmts.push(stmt.add_trailing_semicolon());
1353 }
1354 }
1355 }
1356}
1357
1358impl InvocationCollectorNode for ast::Crate {
1359 type OutputTy = ast::Crate;
1360 const KIND: AstFragmentKind = AstFragmentKind::Crate;
1361 fn to_annotatable(self) -> Annotatable {
1362 Annotatable::Crate(self)
1363 }
1364 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1365 fragment.make_crate()
1366 }
5099ac24
FG
1367 fn noop_visit<V: MutVisitor>(&mut self, visitor: &mut V) {
1368 noop_visit_crate(self, visitor)
1369 }
1370}
1371
1372impl InvocationCollectorNode for P<ast::Ty> {
1373 type OutputTy = P<ast::Ty>;
1374 const KIND: AstFragmentKind = AstFragmentKind::Ty;
1375 fn to_annotatable(self) -> Annotatable {
1376 unreachable!()
1377 }
1378 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1379 fragment.make_ty()
1380 }
5099ac24
FG
1381 fn noop_visit<V: MutVisitor>(&mut self, visitor: &mut V) {
1382 noop_visit_ty(self, visitor)
1383 }
1384 fn is_mac_call(&self) -> bool {
1385 matches!(self.kind, ast::TyKind::MacCall(..))
1386 }
1387 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1388 let node = self.into_inner();
1389 match node.kind {
1390 TyKind::MacCall(mac) => (mac, Vec::new(), AddSemicolon::No),
1391 _ => unreachable!(),
1392 }
1393 }
1394}
1395
1396impl InvocationCollectorNode for P<ast::Pat> {
1397 type OutputTy = P<ast::Pat>;
1398 const KIND: AstFragmentKind = AstFragmentKind::Pat;
1399 fn to_annotatable(self) -> Annotatable {
1400 unreachable!()
1401 }
1402 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1403 fragment.make_pat()
1404 }
5099ac24
FG
1405 fn noop_visit<V: MutVisitor>(&mut self, visitor: &mut V) {
1406 noop_visit_pat(self, visitor)
1407 }
1408 fn is_mac_call(&self) -> bool {
1409 matches!(self.kind, PatKind::MacCall(..))
1410 }
1411 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1412 let node = self.into_inner();
1413 match node.kind {
1414 PatKind::MacCall(mac) => (mac, Vec::new(), AddSemicolon::No),
1415 _ => unreachable!(),
1416 }
1417 }
1418}
1419
1420impl InvocationCollectorNode for P<ast::Expr> {
1421 type OutputTy = P<ast::Expr>;
1422 type AttrsTy = ast::AttrVec;
1423 const KIND: AstFragmentKind = AstFragmentKind::Expr;
1424 fn to_annotatable(self) -> Annotatable {
1425 Annotatable::Expr(self)
1426 }
1427 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1428 fragment.make_expr()
1429 }
5099ac24
FG
1430 fn descr() -> &'static str {
1431 "an expression"
1432 }
1433 fn noop_visit<V: MutVisitor>(&mut self, visitor: &mut V) {
1434 noop_visit_expr(self, visitor)
1435 }
1436 fn is_mac_call(&self) -> bool {
1437 matches!(self.kind, ExprKind::MacCall(..))
1438 }
1439 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1440 let node = self.into_inner();
1441 match node.kind {
1442 ExprKind::MacCall(mac) => (mac, node.attrs, AddSemicolon::No),
1443 _ => unreachable!(),
1444 }
1445 }
1446}
1447
1448struct OptExprTag;
04454e1e 1449impl InvocationCollectorNode for AstNodeWrapper<P<ast::Expr>, OptExprTag> {
5099ac24
FG
1450 type OutputTy = Option<P<ast::Expr>>;
1451 type AttrsTy = ast::AttrVec;
1452 const KIND: AstFragmentKind = AstFragmentKind::OptExpr;
1453 fn to_annotatable(self) -> Annotatable {
1454 Annotatable::Expr(self.wrapped)
1455 }
1456 fn fragment_to_output(fragment: AstFragment) -> Self::OutputTy {
1457 fragment.make_opt_expr()
1458 }
5099ac24
FG
1459 fn noop_flat_map<V: MutVisitor>(mut self, visitor: &mut V) -> Self::OutputTy {
1460 noop_visit_expr(&mut self.wrapped, visitor);
1461 Some(self.wrapped)
1462 }
1463 fn is_mac_call(&self) -> bool {
1464 matches!(self.wrapped.kind, ast::ExprKind::MacCall(..))
1465 }
1466 fn take_mac_call(self) -> (ast::MacCall, Self::AttrsTy, AddSemicolon) {
1467 let node = self.wrapped.into_inner();
1468 match node.kind {
1469 ExprKind::MacCall(mac) => (mac, node.attrs, AddSemicolon::No),
1470 _ => unreachable!(),
1471 }
1472 }
1473 fn pre_flat_map_node_collect_attr(cfg: &StripUnconfigured<'_>, attr: &ast::Attribute) {
1474 cfg.maybe_emit_expr_attr_err(&attr);
1475 }
1476}
1477
dc9dc135 1478struct InvocationCollector<'a, 'b> {
9e0c209e 1479 cx: &'a mut ExtCtxt<'b>,
6a06907d 1480 invocations: Vec<(Invocation, Option<Lrc<SyntaxExtension>>)>,
9e0c209e
SL
1481 monotonic: bool,
1482}
223e47cc 1483
9e0c209e 1484impl<'a, 'b> InvocationCollector<'a, 'b> {
5e7ed085
FG
1485 fn cfg(&self) -> StripUnconfigured<'_> {
1486 StripUnconfigured {
1487 sess: &self.cx.sess,
1488 features: self.cx.ecfg.features,
1489 config_tokens: false,
1490 lint_node_id: self.cx.current_expansion.lint_node_id,
1491 }
1492 }
1493
8faf50e0 1494 fn collect(&mut self, fragment_kind: AstFragmentKind, kind: InvocationKind) -> AstFragment {
136023e0 1495 let expn_id = LocalExpnId::fresh_empty();
e74abb32 1496 let vis = kind.placeholder_visibility();
ba9703b0
XL
1497 self.invocations.push((
1498 Invocation {
1499 kind,
1500 fragment_kind,
1501 expansion_data: ExpansionData {
1502 id: expn_id,
1503 depth: self.cx.current_expansion.depth + 1,
1504 ..self.cx.current_expansion.clone()
1505 },
c30ab7b3 1506 },
ba9703b0
XL
1507 None,
1508 ));
e74abb32 1509 placeholder(fragment_kind, NodeId::placeholder_from_expn_id(expn_id), vis)
1a4d82fc 1510 }
223e47cc 1511
c295e0f8
XL
1512 fn collect_bang(&mut self, mac: ast::MacCall, kind: AstFragmentKind) -> AstFragment {
1513 // cache the macro call span so that it can be
1514 // easily adjusted for incremental compilation
1515 let span = mac.span();
416331ca 1516 self.collect(kind, InvocationKind::Bang { mac, span })
9e0c209e 1517 }
85aaf69f 1518
dfeec247
XL
1519 fn collect_attr(
1520 &mut self,
5099ac24 1521 (attr, pos, derives): (ast::Attribute, usize, Vec<ast::Path>),
dfeec247
XL
1522 item: Annotatable,
1523 kind: AstFragmentKind,
dfeec247 1524 ) -> AstFragment {
6a06907d 1525 self.collect(kind, InvocationKind::Attr { attr, pos, item, derives })
b7449926
XL
1526 }
1527
6a06907d
XL
1528 /// If `item` is an attribute invocation, remove the attribute and return it together with
1529 /// its position and derives following it. We have to collect the derives in order to resolve
1530 /// legacy derive helpers (helpers written before derives that introduce them).
fc512014 1531 fn take_first_attr(
5099ac24 1532 &self,
04454e1e 1533 item: &mut impl HasAttrs,
5099ac24 1534 ) -> Option<(ast::Attribute, usize, Vec<ast::Path>)> {
6a06907d
XL
1535 let mut attr = None;
1536
5099ac24
FG
1537 let mut cfg_pos = None;
1538 let mut attr_pos = None;
1539 for (pos, attr) in item.attrs().iter().enumerate() {
1540 if !attr.is_doc_comment() && !self.cx.expanded_inert_attrs.is_marked(attr) {
1541 let name = attr.ident().map(|ident| ident.name);
1542 if name == Some(sym::cfg) || name == Some(sym::cfg_attr) {
1543 cfg_pos = Some(pos); // a cfg attr found, no need to search anymore
1544 break;
1545 } else if attr_pos.is_none()
1546 && !name.map_or(false, rustc_feature::is_builtin_attr_name)
1547 {
1548 attr_pos = Some(pos); // a non-cfg attr found, still may find a cfg attr
1549 }
1550 }
1551 }
1552
6a06907d 1553 item.visit_attrs(|attrs| {
5099ac24
FG
1554 attr = Some(match (cfg_pos, attr_pos) {
1555 (Some(pos), _) => (attrs.remove(pos), pos, Vec::new()),
1556 (_, Some(pos)) => {
1557 let attr = attrs.remove(pos);
1558 let following_derives = attrs[pos..]
6a06907d
XL
1559 .iter()
1560 .filter(|a| a.has_name(sym::derive))
1561 .flat_map(|a| a.meta_item_list().unwrap_or_default())
1562 .filter_map(|nested_meta| match nested_meta {
1563 NestedMetaItem::MetaItem(ast::MetaItem {
1564 kind: MetaItemKind::Word,
1565 path,
1566 ..
1567 }) => Some(path),
1568 _ => None,
1569 })
1570 .collect();
1571
5099ac24
FG
1572 (attr, pos, following_derives)
1573 }
1574 _ => return,
1575 });
0531ce1d
XL
1576 });
1577
6a06907d 1578 attr
0531ce1d
XL
1579 }
1580
32a655c1
SL
1581 // Detect use of feature-gated or invalid attributes on macro invocations
1582 // since they will not be detected after macro expansion.
5099ac24 1583 fn check_attributes(&self, attrs: &[ast::Attribute], call: &ast::MacCall) {
32a655c1 1584 let features = self.cx.ecfg.features.unwrap();
cdc7bbd5
XL
1585 let mut attrs = attrs.iter().peekable();
1586 let mut span: Option<Span> = None;
1587 while let Some(attr) = attrs.next() {
3dfed10e
XL
1588 rustc_ast_passes::feature_gate::check_attribute(attr, self.cx.sess, features);
1589 validate_attr::check_meta(&self.cx.sess.parse_sess, attr);
cdc7bbd5
XL
1590
1591 let current_span = if let Some(sp) = span { sp.to(attr.span) } else { attr.span };
1592 span = Some(current_span);
1593
1594 if attrs.peek().map_or(false, |next_attr| next_attr.doc_str().is_some()) {
1595 continue;
1596 }
1597
94222f64 1598 if attr.is_doc_comment() {
3dfed10e 1599 self.cx.sess.parse_sess.buffer_lint_with_diagnostic(
74b04a01 1600 &UNUSED_DOC_COMMENTS,
cdc7bbd5 1601 current_span,
94222f64 1602 self.cx.current_expansion.lint_node_id,
74b04a01
XL
1603 "unused doc comment",
1604 BuiltinLintDiagnostics::UnusedDocComment(attr.span),
1605 );
94222f64
XL
1606 } else if rustc_attr::is_builtin_attr(attr) {
1607 let attr_name = attr.ident().unwrap().name;
1608 // `#[cfg]` and `#[cfg_attr]` are special - they are
1609 // eagerly evaluated.
1610 if attr_name != sym::cfg && attr_name != sym::cfg_attr {
1611 self.cx.sess.parse_sess.buffer_lint_with_diagnostic(
1612 &UNUSED_ATTRIBUTES,
1613 attr.span,
1614 self.cx.current_expansion.lint_node_id,
1615 &format!("unused attribute `{}`", attr_name),
1616 BuiltinLintDiagnostics::UnusedBuiltinAttribute {
1617 attr_name,
1618 macro_name: pprust::path_to_string(&call.path),
1619 invoc_span: call.path.span,
1620 },
1621 );
1622 }
74b04a01 1623 }
32a655c1
SL
1624 }
1625 }
85aaf69f 1626
5099ac24
FG
1627 fn expand_cfg_true(
1628 &mut self,
04454e1e 1629 node: &mut impl HasAttrs,
5099ac24
FG
1630 attr: ast::Attribute,
1631 pos: usize,
1632 ) -> bool {
5e7ed085 1633 let res = self.cfg().cfg_true(&attr);
5099ac24
FG
1634 if res {
1635 // FIXME: `cfg(TRUE)` attributes do not currently remove themselves during expansion,
1636 // and some tools like rustdoc and clippy rely on that. Find a way to remove them
1637 // while keeping the tools working.
1638 self.cx.expanded_inert_attrs.mark(&attr);
1639 node.visit_attrs(|attrs| attrs.insert(pos, attr));
136023e0 1640 }
5099ac24 1641 res
a2a8927a
XL
1642 }
1643
04454e1e 1644 fn expand_cfg_attr(&self, node: &mut impl HasAttrs, attr: ast::Attribute, pos: usize) {
5099ac24 1645 node.visit_attrs(|attrs| {
5e7ed085 1646 attrs.splice(pos..pos, self.cfg().expand_cfg_attr(attr, false));
9fa01778 1647 });
c34b1796 1648 }
223e47cc 1649
5099ac24
FG
1650 fn flat_map_node<Node: InvocationCollectorNode<OutputTy: Default>>(
1651 &mut self,
1652 mut node: Node,
1653 ) -> Node::OutputTy {
1654 loop {
1655 return match self.take_first_attr(&mut node) {
1656 Some((attr, pos, derives)) => match attr.name_or_empty() {
1657 sym::cfg => {
1658 if self.expand_cfg_true(&mut node, attr, pos) {
1659 continue;
1660 }
1661 Default::default()
1662 }
1663 sym::cfg_attr => {
1664 self.expand_cfg_attr(&mut node, attr, pos);
1665 continue;
1666 }
1667 _ => {
5e7ed085 1668 Node::pre_flat_map_node_collect_attr(&self.cfg(), &attr);
5099ac24
FG
1669 self.collect_attr((attr, pos, derives), node.to_annotatable(), Node::KIND)
1670 .make_ast::<Node>()
1671 }
1672 },
1673 None if node.is_mac_call() => {
1674 let (mac, attrs, add_semicolon) = node.take_mac_call();
1675 self.check_attributes(&attrs, &mac);
1676 let mut res = self.collect_bang(mac, Node::KIND).make_ast::<Node>();
1677 Node::post_flat_map_node_collect_bang(&mut res, add_semicolon);
1678 res
1679 }
1680 None => {
1681 match Node::wrap_flat_map_node_noop_flat_map(node, self, |mut node, this| {
04454e1e 1682 assign_id!(this, node.node_id_mut(), || node.noop_flat_map(this))
5099ac24
FG
1683 }) {
1684 Ok(output) => output,
1685 Err(returned_node) => {
1686 node = returned_node;
1687 continue;
1688 }
1689 }
1690 }
1691 };
e1599b0c 1692 }
e1599b0c
XL
1693 }
1694
5099ac24
FG
1695 fn visit_node<Node: InvocationCollectorNode<OutputTy = Node> + DummyAstNode>(
1696 &mut self,
1697 node: &mut Node,
1698 ) {
1699 loop {
1700 return match self.take_first_attr(node) {
1701 Some((attr, pos, derives)) => match attr.name_or_empty() {
1702 sym::cfg => {
1703 let span = attr.span;
1704 if self.expand_cfg_true(node, attr, pos) {
1705 continue;
1706 }
1707 let msg =
1708 format!("removing {} is not supported in this position", Node::descr());
1709 self.cx.span_err(span, &msg);
1710 continue;
1711 }
1712 sym::cfg_attr => {
1713 self.expand_cfg_attr(node, attr, pos);
1714 continue;
1715 }
1716 _ => visit_clobber(node, |node| {
1717 self.collect_attr((attr, pos, derives), node.to_annotatable(), Node::KIND)
1718 .make_ast::<Node>()
1719 }),
1720 },
1721 None if node.is_mac_call() => {
1722 visit_clobber(node, |node| {
1723 // Do not clobber unless it's actually a macro (uncommon case).
1724 let (mac, attrs, _) = node.take_mac_call();
1725 self.check_attributes(&attrs, &mac);
1726 self.collect_bang(mac, Node::KIND).make_ast::<Node>()
1727 })
1728 }
1729 None => {
04454e1e 1730 assign_id!(self, node.node_id_mut(), || node.noop_visit(self))
5099ac24
FG
1731 }
1732 };
e1599b0c 1733 }
e1599b0c 1734 }
5099ac24 1735}
e1599b0c 1736
5099ac24
FG
1737impl<'a, 'b> MutVisitor for InvocationCollector<'a, 'b> {
1738 fn flat_map_item(&mut self, node: P<ast::Item>) -> SmallVec<[P<ast::Item>; 1]> {
1739 self.flat_map_node(node)
e1599b0c
XL
1740 }
1741
5099ac24 1742 fn flat_map_trait_item(&mut self, node: P<ast::AssocItem>) -> SmallVec<[P<ast::AssocItem>; 1]> {
04454e1e 1743 self.flat_map_node(AstNodeWrapper::new(node, TraitItemTag))
e1599b0c
XL
1744 }
1745
5099ac24 1746 fn flat_map_impl_item(&mut self, node: P<ast::AssocItem>) -> SmallVec<[P<ast::AssocItem>; 1]> {
04454e1e 1747 self.flat_map_node(AstNodeWrapper::new(node, ImplItemTag))
e1599b0c
XL
1748 }
1749
5099ac24
FG
1750 fn flat_map_foreign_item(
1751 &mut self,
1752 node: P<ast::ForeignItem>,
1753 ) -> SmallVec<[P<ast::ForeignItem>; 1]> {
1754 self.flat_map_node(node)
1755 }
e1599b0c 1756
5099ac24
FG
1757 fn flat_map_variant(&mut self, node: ast::Variant) -> SmallVec<[ast::Variant; 1]> {
1758 self.flat_map_node(node)
e1599b0c
XL
1759 }
1760
5099ac24
FG
1761 fn flat_map_field_def(&mut self, node: ast::FieldDef) -> SmallVec<[ast::FieldDef; 1]> {
1762 self.flat_map_node(node)
1763 }
0531ce1d 1764
5099ac24
FG
1765 fn flat_map_pat_field(&mut self, node: ast::PatField) -> SmallVec<[ast::PatField; 1]> {
1766 self.flat_map_node(node)
1767 }
0531ce1d 1768
5099ac24
FG
1769 fn flat_map_expr_field(&mut self, node: ast::ExprField) -> SmallVec<[ast::ExprField; 1]> {
1770 self.flat_map_node(node)
3157f602 1771 }
3157f602 1772
5099ac24
FG
1773 fn flat_map_param(&mut self, node: ast::Param) -> SmallVec<[ast::Param; 1]> {
1774 self.flat_map_node(node)
1775 }
e9174d1e 1776
5099ac24
FG
1777 fn flat_map_generic_param(
1778 &mut self,
1779 node: ast::GenericParam,
1780 ) -> SmallVec<[ast::GenericParam; 1]> {
1781 self.flat_map_node(node)
9e0c209e 1782 }
e9174d1e 1783
5099ac24
FG
1784 fn flat_map_arm(&mut self, node: ast::Arm) -> SmallVec<[ast::Arm; 1]> {
1785 self.flat_map_node(node)
1786 }
1a4d82fc 1787
5e7ed085 1788 fn flat_map_stmt(&mut self, node: ast::Stmt) -> SmallVec<[ast::Stmt; 1]> {
94222f64
XL
1789 // FIXME: invocations in semicolon-less expressions positions are expanded as expressions,
1790 // changing that requires some compatibility measures.
5099ac24
FG
1791 if node.is_expr() {
1792 // The only way that we can end up with a `MacCall` expression statement,
1793 // (as opposed to a `StmtKind::MacCall`) is if we have a macro as the
5e7ed085 1794 // trailing expression in a block (e.g. `fn foo() { my_macro!() }`).
5099ac24
FG
1795 // Record this information, so that we can report a more specific
1796 // `SEMICOLON_IN_EXPRESSIONS_FROM_MACROS` lint if needed.
1797 // See #78991 for an investigation of treating macros in this position
1798 // as statements, rather than expressions, during parsing.
1799 return match &node.kind {
1800 StmtKind::Expr(expr)
1801 if matches!(**expr, ast::Expr { kind: ExprKind::MacCall(..), .. }) =>
1802 {
1803 self.cx.current_expansion.is_trailing_mac = true;
1804 // Don't use `assign_id` for this statement - it may get removed
1805 // entirely due to a `#[cfg]` on the contained expression
1806 let res = noop_flat_map_stmt(node, self);
1807 self.cx.current_expansion.is_trailing_mac = false;
1808 res
0531ce1d 1809 }
5e7ed085 1810 _ => noop_flat_map_stmt(node, self),
5099ac24 1811 };
3157f602
XL
1812 }
1813
5099ac24 1814 self.flat_map_node(node)
1a4d82fc
JJ
1815 }
1816
5099ac24
FG
1817 fn visit_crate(&mut self, node: &mut ast::Crate) {
1818 self.visit_node(node)
1a4d82fc
JJ
1819 }
1820
5099ac24
FG
1821 fn visit_ty(&mut self, node: &mut P<ast::Ty>) {
1822 self.visit_node(node)
85aaf69f
SL
1823 }
1824
5099ac24
FG
1825 fn visit_pat(&mut self, node: &mut P<ast::Pat>) {
1826 self.visit_node(node)
1a4d82fc
JJ
1827 }
1828
5099ac24
FG
1829 fn visit_expr(&mut self, node: &mut P<ast::Expr>) {
1830 // FIXME: Feature gating is performed inconsistently between `Expr` and `OptExpr`.
1831 if let Some(attr) = node.attrs.first() {
5e7ed085 1832 self.cfg().maybe_emit_expr_attr_err(attr);
83c7162d 1833 }
5099ac24 1834 self.visit_node(node)
83c7162d
XL
1835 }
1836
5099ac24 1837 fn filter_map_expr(&mut self, node: P<ast::Expr>) -> Option<P<ast::Expr>> {
04454e1e 1838 self.flat_map_node(AstNodeWrapper::new(node, OptExprTag))
5099ac24 1839 }
e1599b0c 1840
5099ac24
FG
1841 fn visit_block(&mut self, node: &mut P<ast::Block>) {
1842 let orig_dir_ownership = mem::replace(
1843 &mut self.cx.current_expansion.dir_ownership,
1844 DirOwnership::UnownedViaBlock,
1845 );
1846 noop_visit_block(node, self);
1847 self.cx.current_expansion.dir_ownership = orig_dir_ownership;
83c7162d
XL
1848 }
1849
5099ac24 1850 fn visit_id(&mut self, id: &mut NodeId) {
136023e0
XL
1851 // We may have already assigned a `NodeId`
1852 // by calling `assign_id`
1853 if self.monotonic && *id == ast::DUMMY_NODE_ID {
1854 *id = self.cx.resolver.next_node_id();
9e0c209e 1855 }
54a0048b
SL
1856 }
1857}
1858
85aaf69f 1859pub struct ExpansionConfig<'feat> {
1a4d82fc 1860 pub crate_name: String,
85aaf69f 1861 pub features: Option<&'feat Features>,
f9f354fc 1862 pub recursion_limit: Limit,
d9579d0f 1863 pub trace_mac: bool,
6a06907d
XL
1864 pub should_test: bool, // If false, strip `#[test]` nodes
1865 pub span_debug: bool, // If true, use verbose debugging for `proc_macro::Span`
1b1a35ee 1866 pub proc_macro_backtrace: bool, // If true, show backtraces for proc-macro panics
1a4d82fc
JJ
1867}
1868
85aaf69f
SL
1869impl<'feat> ExpansionConfig<'feat> {
1870 pub fn default(crate_name: String) -> ExpansionConfig<'static> {
1a4d82fc 1871 ExpansionConfig {
3b2f2976 1872 crate_name,
85aaf69f 1873 features: None,
f9f354fc 1874 recursion_limit: Limit::new(1024),
d9579d0f 1875 trace_mac: false,
3157f602 1876 should_test: false,
f035d41b 1877 span_debug: false,
1b1a35ee 1878 proc_macro_backtrace: false,
1a4d82fc 1879 }
970d7e83 1880 }
85aaf69f 1881
416331ca
XL
1882 fn proc_macro_hygiene(&self) -> bool {
1883 self.features.map_or(false, |features| features.proc_macro_hygiene)
1884 }
970d7e83 1885}