]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_expand/src/expand.rs
Remove `crate` visibility usage in compiler
[rust.git] / compiler / rustc_expand / src / expand.rs
1 use crate::base::*;
2 use crate::config::StripUnconfigured;
3 use crate::hygiene::SyntaxContext;
4 use crate::mbe::macro_rules::annotate_err_with_kind;
5 use crate::module::{mod_dir_path, parse_external_mod, DirOwnership, ParsedExternalMod};
6 use crate::placeholders::{placeholder, PlaceholderExpander};
7
8 use rustc_ast as ast;
9 use rustc_ast::mut_visit::*;
10 use rustc_ast::ptr::P;
11 use rustc_ast::token::{self, Delimiter};
12 use rustc_ast::tokenstream::TokenStream;
13 use rustc_ast::visit::{self, AssocCtxt, Visitor};
14 use rustc_ast::{AssocItemKind, AstNodeWrapper, AttrStyle, ExprKind, ForeignItemKind};
15 use rustc_ast::{HasAttrs, HasNodeId};
16 use rustc_ast::{Inline, ItemKind, MacArgs, MacStmtStyle, MetaItemKind, ModKind};
17 use rustc_ast::{NestedMetaItem, NodeId, PatKind, StmtKind, TyKind};
18 use rustc_ast_pretty::pprust;
19 use rustc_data_structures::map_in_place::MapInPlace;
20 use rustc_data_structures::sync::Lrc;
21 use rustc_errors::{Applicability, PResult};
22 use rustc_feature::Features;
23 use rustc_parse::parser::{
24     AttemptLocalParseRecovery, CommaRecoveryMode, ForceCollect, Parser, RecoverColon, RecoverComma,
25 };
26 use rustc_parse::validate_attr;
27 use rustc_session::lint::builtin::{UNUSED_ATTRIBUTES, UNUSED_DOC_COMMENTS};
28 use rustc_session::lint::BuiltinLintDiagnostics;
29 use rustc_session::parse::{feature_err, ParseSess};
30 use rustc_session::Limit;
31 use rustc_span::symbol::{sym, Ident};
32 use rustc_span::{FileName, LocalExpnId, Span};
33
34 use smallvec::SmallVec;
35 use std::ops::Deref;
36 use std::path::PathBuf;
37 use std::rc::Rc;
38 use std::{iter, mem};
39
40 macro_rules! ast_fragments {
41     (
42         $($Kind:ident($AstTy:ty) {
43             $kind_name:expr;
44             $(one fn $mut_visit_ast:ident; fn $visit_ast:ident;)?
45             $(many fn $flat_map_ast_elt:ident; fn $visit_ast_elt:ident($($args:tt)*);)?
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.
57         #[derive(Copy, Clone, PartialEq, Eq)]
58         pub enum AstFragmentKind {
59             OptExpr,
60             $($Kind,)*
61         }
62
63         impl AstFragmentKind {
64             pub fn name(self) -> &'static str {
65                 match self {
66                     AstFragmentKind::OptExpr => "expression",
67                     $(AstFragmentKind::$Kind => $kind_name,)*
68                 }
69             }
70
71             fn make_from<'a>(self, result: Box<dyn MacResult + 'a>) -> Option<AstFragment> {
72                 match self {
73                     AstFragmentKind::OptExpr =>
74                         result.make_expr().map(Some).map(AstFragment::OptExpr),
75                     $(AstFragmentKind::$Kind => result.$make_ast().map(AstFragment::$Kind),)*
76                 }
77             }
78         }
79
80         impl AstFragment {
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| {
87                         ${ignore(flat_map_ast_elt)}
88                         placeholder(AstFragmentKind::$Kind, *id, None).$make_ast()
89                     })),)?)*
90                     _ => panic!("unexpected AST fragment kind")
91                 }
92             }
93
94             pub fn make_opt_expr(self) -> Option<P<ast::Expr>> {
95                 match self {
96                     AstFragment::OptExpr(expr) => expr,
97                     _ => panic!("AstFragment::make_* called on the wrong kind of fragment"),
98                 }
99             }
100
101             $(pub fn $make_ast(self) -> $AstTy {
102                 match self {
103                     AstFragment::$Kind(ast) => ast,
104                     _ => panic!("AstFragment::make_* called on the wrong kind of fragment"),
105                 }
106             })*
107
108             fn make_ast<T: InvocationCollectorNode>(self) -> T::OutputTy {
109                 T::fragment_to_output(self)
110             }
111
112             pub fn mut_visit_with<F: MutVisitor>(&mut self, vis: &mut F) {
113                 match self {
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                     }
123                     $($(AstFragment::$Kind(ast) => vis.$mut_visit_ast(ast),)?)*
124                     $($(AstFragment::$Kind(ast) =>
125                         ast.flat_map_in_place(|ast| vis.$flat_map_ast_elt(ast)),)?)*
126                 }
127             }
128
129             pub fn visit_with<'a, V: Visitor<'a>>(&'a self, visitor: &mut V) {
130                 match *self {
131                     AstFragment::OptExpr(Some(ref expr)) => visitor.visit_expr(expr),
132                     AstFragment::OptExpr(None) => {}
133                     $($(AstFragment::$Kind(ref ast) => visitor.$visit_ast(ast),)?)*
134                     $($(AstFragment::$Kind(ref ast) => for ast_elt in &ast[..] {
135                         visitor.$visit_ast_elt(ast_elt, $($args)*);
136                     })?)*
137                 }
138             }
139         }
140
141         impl<'a> MacResult for crate::mbe::macro_rules::ParserAnyMacro<'a> {
142             $(fn $make_ast(self: Box<crate::mbe::macro_rules::ParserAnyMacro<'a>>)
143                            -> Option<$AstTy> {
144                 Some(self.make(AstFragmentKind::$Kind).$make_ast())
145             })*
146         }
147     }
148 }
149
150 ast_fragments! {
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; }
154     Stmts(SmallVec<[ast::Stmt; 1]>) {
155         "statement"; many fn flat_map_stmt; fn visit_stmt(); fn make_stmts;
156     }
157     Items(SmallVec<[P<ast::Item>; 1]>) {
158         "item"; many fn flat_map_item; fn visit_item(); fn make_items;
159     }
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;
165     }
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;
171     }
172     ForeignItems(SmallVec<[P<ast::ForeignItem>; 1]>) {
173         "foreign item";
174         many fn flat_map_foreign_item;
175         fn visit_foreign_item();
176         fn make_foreign_items;
177     }
178     Arms(SmallVec<[ast::Arm; 1]>) {
179         "match arm"; many fn flat_map_arm; fn visit_arm(); fn make_arms;
180     }
181     ExprFields(SmallVec<[ast::ExprField; 1]>) {
182         "field expression"; many fn flat_map_expr_field; fn visit_expr_field(); fn make_expr_fields;
183     }
184     PatFields(SmallVec<[ast::PatField; 1]>) {
185         "field pattern";
186         many fn flat_map_pat_field;
187         fn visit_pat_field();
188         fn make_pat_fields;
189     }
190     GenericParams(SmallVec<[ast::GenericParam; 1]>) {
191         "generic parameter";
192         many fn flat_map_generic_param;
193         fn visit_generic_param();
194         fn make_generic_params;
195     }
196     Params(SmallVec<[ast::Param; 1]>) {
197         "function parameter"; many fn flat_map_param; fn visit_param(); fn make_params;
198     }
199     FieldDefs(SmallVec<[ast::FieldDef; 1]>) {
200         "field";
201         many fn flat_map_field_def;
202         fn visit_field_def();
203         fn make_field_defs;
204     }
205     Variants(SmallVec<[ast::Variant; 1]>) {
206         "variant"; many fn flat_map_variant; fn visit_variant(); fn make_variants;
207     }
208     Crate(ast::Crate) { "crate"; one fn visit_crate; fn visit_crate; fn make_crate; }
209 }
210
211 pub enum SupportsMacroExpansion {
212     No,
213     Yes { supports_inner_attrs: bool },
214 }
215
216 impl AstFragmentKind {
217     pub(crate) fn dummy(self, span: Span) -> AstFragment {
218         self.make_from(DummyResult::any(span)).expect("couldn't create a dummy AST fragment")
219     }
220
221     pub fn supports_macro_expansion(self) -> SupportsMacroExpansion {
222         match self {
223             AstFragmentKind::OptExpr
224             | AstFragmentKind::Expr
225             | AstFragmentKind::Stmts
226             | AstFragmentKind::Ty
227             | AstFragmentKind::Pat => SupportsMacroExpansion::Yes { supports_inner_attrs: false },
228             AstFragmentKind::Items
229             | AstFragmentKind::TraitItems
230             | AstFragmentKind::ImplItems
231             | AstFragmentKind::ForeignItems
232             | AstFragmentKind::Crate => SupportsMacroExpansion::Yes { supports_inner_attrs: true },
233             AstFragmentKind::Arms
234             | AstFragmentKind::ExprFields
235             | AstFragmentKind::PatFields
236             | AstFragmentKind::GenericParams
237             | AstFragmentKind::Params
238             | AstFragmentKind::FieldDefs
239             | AstFragmentKind::Variants => SupportsMacroExpansion::No,
240         }
241     }
242
243     fn expect_from_annotatables<I: IntoIterator<Item = Annotatable>>(
244         self,
245         items: I,
246     ) -> AstFragment {
247         let mut items = items.into_iter();
248         match self {
249             AstFragmentKind::Arms => {
250                 AstFragment::Arms(items.map(Annotatable::expect_arm).collect())
251             }
252             AstFragmentKind::ExprFields => {
253                 AstFragment::ExprFields(items.map(Annotatable::expect_expr_field).collect())
254             }
255             AstFragmentKind::PatFields => {
256                 AstFragment::PatFields(items.map(Annotatable::expect_pat_field).collect())
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             }
264             AstFragmentKind::FieldDefs => {
265                 AstFragment::FieldDefs(items.map(Annotatable::expect_field_def).collect())
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             }
285             AstFragmentKind::Expr => AstFragment::Expr(
286                 items.next().expect("expected exactly one expression").expect_expr(),
287             ),
288             AstFragmentKind::OptExpr => {
289                 AstFragment::OptExpr(items.next().map(Annotatable::expect_expr))
290             }
291             AstFragmentKind::Crate => {
292                 AstFragment::Crate(items.next().expect("expected exactly one crate").expect_crate())
293             }
294             AstFragmentKind::Pat | AstFragmentKind::Ty => {
295                 panic!("patterns and types aren't annotatable")
296             }
297         }
298     }
299 }
300
301 pub struct Invocation {
302     pub kind: InvocationKind,
303     pub fragment_kind: AstFragmentKind,
304     pub expansion_data: ExpansionData,
305 }
306
307 pub enum InvocationKind {
308     Bang {
309         mac: ast::MacCall,
310         span: Span,
311     },
312     Attr {
313         attr: ast::Attribute,
314         // Re-insertion position for inert attributes.
315         pos: usize,
316         item: Annotatable,
317         // Required for resolving derive helper attributes.
318         derives: Vec<ast::Path>,
319     },
320     Derive {
321         path: ast::Path,
322         item: Annotatable,
323     },
324 }
325
326 impl 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 {
334             InvocationKind::Attr { item: Annotatable::FieldDef(field), .. }
335             | InvocationKind::Derive { item: Annotatable::FieldDef(field), .. }
336                 if field.ident.is_none() =>
337             {
338                 Some(field.vis.clone())
339             }
340             _ => None,
341         }
342     }
343 }
344
345 impl Invocation {
346     pub fn span(&self) -> Span {
347         match &self.kind {
348             InvocationKind::Bang { span, .. } => *span,
349             InvocationKind::Attr { attr, .. } => attr.span,
350             InvocationKind::Derive { path, .. } => path.span,
351         }
352     }
353 }
354
355 pub struct MacroExpander<'a, 'b> {
356     pub cx: &'a mut ExtCtxt<'b>,
357     monotonic: bool, // cf. `cx.monotonic_expander()`
358 }
359
360 impl<'a, 'b> MacroExpander<'a, 'b> {
361     pub fn new(cx: &'a mut ExtCtxt<'b>, monotonic: bool) -> Self {
362         MacroExpander { cx, monotonic }
363     }
364
365     pub fn expand_crate(&mut self, krate: ast::Crate) -> ast::Crate {
366         let file_path = match self.cx.source_map().span_to_filename(krate.spans.inner_span) {
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()),
371         };
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         });
379         let krate = self.fully_expand_fragment(AstFragment::Crate(krate)).make_crate();
380         assert_eq!(krate.id, ast::CRATE_NODE_ID);
381         self.cx.trace_macros_diag();
382         krate
383     }
384
385     // Recursively expand all macro invocations in this AST fragment.
386     pub fn fully_expand_fragment(&mut self, input_fragment: AstFragment) -> AstFragment {
387         let orig_expansion_data = self.cx.current_expansion.clone();
388         let orig_force_mode = self.cx.force_mode;
389
390         // Collect all macro invocations and replace them with placeholders.
391         let (mut fragment_with_placeholders, mut invocations) =
392             self.collect_invocations(input_fragment, &[]);
393
394         // Optimization: if we resolve all imports now,
395         // we'll be able to immediately resolve most of imported macros.
396         self.resolve_imports();
397
398         // Resolve paths in all invocations and produce output expanded fragments for them, but
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();
404         let mut undetermined_invocations = Vec::new();
405         let (mut progress, mut force) = (false, !self.monotonic);
406         loop {
407             let Some((invoc, ext)) = invocations.pop() else {
408                 self.resolve_imports();
409                 if undetermined_invocations.is_empty() {
410                     break;
411                 }
412                 invocations = mem::take(&mut undetermined_invocations);
413                 force = !mem::replace(&mut progress, false);
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                 }
420                 continue;
421             };
422
423             let ext = match ext {
424                 Some(ext) => ext,
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                     ) {
436                         Ok(ext) => ext,
437                         Err(Indeterminate) => {
438                             // Cannot resolve, will retry this invocation later.
439                             undetermined_invocations.push((invoc, None));
440                             continue;
441                         }
442                     }
443                 }
444             };
445
446             let ExpansionData { depth, id: expn_id, .. } = invoc.expansion_data;
447             let depth = depth - orig_expansion_data.depth;
448             self.cx.current_expansion = invoc.expansion_data.clone();
449             self.cx.force_mode = force;
450
451             let fragment_kind = invoc.fragment_kind;
452             let (expanded_fragment, new_invocations) = match self.expand_invoc(invoc, &ext.kind) {
453                 ExpandResult::Ready(fragment) => {
454                     let mut derive_invocations = Vec::new();
455                     let derive_placeholders = self
456                         .cx
457                         .resolver
458                         .take_derive_resolutions(expn_id)
459                         .map(|derives| {
460                             derive_invocations.reserve(derives.len());
461                             derives
462                                 .into_iter()
463                                 .map(|(path, item, _exts)| {
464                                     // FIXME: Consider using the derive resolutions (`_exts`)
465                                     // instead of enqueuing the derives to be resolved again later.
466                                     let expn_id = LocalExpnId::fresh_empty();
467                                     derive_invocations.push((
468                                         Invocation {
469                                             kind: InvocationKind::Derive { path, item },
470                                             fragment_kind,
471                                             expansion_data: ExpansionData {
472                                                 id: expn_id,
473                                                 ..self.cx.current_expansion.clone()
474                                             },
475                                         },
476                                         None,
477                                     ));
478                                     NodeId::placeholder_from_expn_id(expn_id)
479                                 })
480                                 .collect::<Vec<_>>()
481                         })
482                         .unwrap_or_default();
483
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)
490                 }
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                 }
503             };
504
505             progress = true;
506             if expanded_fragments.len() < depth {
507                 expanded_fragments.push(Vec::new());
508             }
509             expanded_fragments[depth - 1].push((expn_id, expanded_fragment));
510             invocations.extend(new_invocations.into_iter().rev());
511         }
512
513         self.cx.current_expansion = orig_expansion_data;
514         self.cx.force_mode = orig_force_mode;
515
516         // Finally incorporate all the expanded macros into the input AST fragment.
517         let mut placeholder_expander = PlaceholderExpander::default();
518         while let Some(expanded_fragments) = expanded_fragments.pop() {
519             for (expn_id, expanded_fragment) in expanded_fragments.into_iter().rev() {
520                 placeholder_expander
521                     .add(NodeId::placeholder_from_expn_id(expn_id), expanded_fragment);
522             }
523         }
524         fragment_with_placeholders.mut_visit_with(&mut placeholder_expander);
525         fragment_with_placeholders
526     }
527
528     fn resolve_imports(&mut self) {
529         if self.monotonic {
530             self.cx.resolver.resolve_imports();
531         }
532     }
533
534     /// Collects all macro invocations reachable at this time in this AST fragment, and replace
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.
538     fn collect_invocations(
539         &mut self,
540         mut fragment: AstFragment,
541         extra_placeholders: &[NodeId],
542     ) -> (AstFragment, Vec<(Invocation, Option<Lrc<SyntaxExtension>>)>) {
543         // Resolve `$crate`s in the fragment for pretty-printing.
544         self.cx.resolver.resolve_dollar_crates();
545
546         let mut invocations = {
547             let mut collector = InvocationCollector {
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`
553                 cx: self.cx,
554                 invocations: Vec::new(),
555                 monotonic: self.monotonic,
556             };
557             fragment.mut_visit_with(&mut collector);
558             fragment.add_placeholders(extra_placeholders);
559             collector.invocations
560         };
561
562         if self.monotonic {
563             self.cx
564                 .resolver
565                 .visit_ast_fragment_with_placeholders(self.cx.current_expansion.id, &fragment);
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             }
579         }
580
581         (fragment, invocations)
582     }
583
584     fn error_recursion_limit_reached(&mut self) {
585         let expn_data = self.cx.current_expansion.id.expn_data();
586         let suggested_limit = match self.cx.ecfg.recursion_limit {
587             Limit(0) => Limit(2),
588             limit => limit * 2,
589         };
590         self.cx
591             .struct_span_err(
592                 expn_data.call_site,
593                 &format!("recursion limit reached while expanding `{}`", expn_data.kind.descr()),
594             )
595             .help(&format!(
596                 "consider increasing the recursion limit by adding a \
597                  `#![recursion_limit = \"{}\"]` attribute to your crate (`{}`)",
598                 suggested_limit, self.cx.ecfg.crate_name,
599             ))
600             .emit();
601         self.cx.trace_macros_diag();
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.
606     fn error_wrong_fragment_kind(&mut self, kind: AstFragmentKind, mac: &ast::MacCall, span: Span) {
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
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);
623         if !recursion_limit.value_within_limit(self.cx.current_expansion.depth) {
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()));
632         }
633
634         let (fragment_kind, span) = (invoc.fragment_kind, invoc.span());
635         ExpandResult::Ready(match invoc.kind {
636             InvocationKind::Bang { mac, .. } => match ext {
637                 SyntaxExtensionKind::Bang(expander) => {
638                     let Ok(tok_result) = expander.expand(self.cx, span, mac.args.inner_tokens()) else {
639                         return ExpandResult::Ready(fragment_kind.dummy(span));
640                     };
641                     self.parse_ast_fragment(tok_result, fragment_kind, &mac.path, span)
642                 }
643                 SyntaxExtensionKind::LegacyBang(expander) => {
644                     let prev = self.cx.current_expansion.prior_type_ascription;
645                     self.cx.current_expansion.prior_type_ascription = mac.prior_type_ascription;
646                     let tok_result = expander.expand(self.cx, span, mac.args.inner_tokens());
647                     let result = if let Some(result) = fragment_kind.make_from(tok_result) {
648                         result
649                     } else {
650                         self.error_wrong_fragment_kind(fragment_kind, &mac, span);
651                         fragment_kind.dummy(span)
652                     };
653                     self.cx.current_expansion.prior_type_ascription = prev;
654                     result
655                 }
656                 _ => unreachable!(),
657             },
658             InvocationKind::Attr { attr, pos, mut item, derives } => match ext {
659                 SyntaxExtensionKind::Attr(expander) => {
660                     self.gate_proc_macro_input(&item);
661                     self.gate_proc_macro_attr_item(span, &item);
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(
669                             &self.cx.sess.parse_sess,
670                             krate,
671                         ),
672                         Annotatable::Item(item_inner)
673                             if matches!(attr.style, AttrStyle::Inner)
674                                 && matches!(
675                                     item_inner.kind,
676                                     ItemKind::Mod(
677                                         _,
678                                         ModKind::Unloaded | ModKind::Loaded(_, Inline::No, _),
679                                     )
680                                 ) =>
681                         {
682                             rustc_parse::fake_token_stream(&self.cx.sess.parse_sess, item_inner)
683                         }
684                         _ => item.to_tokens(&self.cx.sess.parse_sess),
685                     };
686                     let attr_item = attr.unwrap_normal_item();
687                     if let MacArgs::Eq(..) = attr_item.args {
688                         self.cx.span_err(span, "key-value macro attributes are not supported");
689                     }
690                     let inner_tokens = attr_item.args.inner_tokens();
691                     let Ok(tok_result) = expander.expand(self.cx, span, inner_tokens, tokens) else {
692                         return ExpandResult::Ready(fragment_kind.dummy(span));
693                     };
694                     self.parse_ast_fragment(tok_result, fragment_kind, &attr_item.path, span)
695                 }
696                 SyntaxExtensionKind::LegacyAttr(expander) => {
697                     match validate_attr::parse_meta(&self.cx.sess.parse_sess, &attr) {
698                         Ok(meta) => {
699                             let items = match expander.expand(self.cx, span, &meta, item) {
700                                 ExpandResult::Ready(items) => items,
701                                 ExpandResult::Retry(item) => {
702                                     // Reassemble the original invocation for retrying.
703                                     return ExpandResult::Retry(Invocation {
704                                         kind: InvocationKind::Attr { attr, pos, item, derives },
705                                         ..invoc
706                                     });
707                                 }
708                             };
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                             }
717                         }
718                         Err(mut err) => {
719                             err.emit();
720                             fragment_kind.dummy(span)
721                         }
722                     }
723                 }
724                 SyntaxExtensionKind::NonMacroAttr => {
725                     self.cx.expanded_inert_attrs.mark(&attr);
726                     item.visit_attrs(|attrs| attrs.insert(pos, attr));
727                     fragment_kind.expect_from_annotatables(iter::once(item))
728                 }
729                 _ => unreachable!(),
730             },
731             InvocationKind::Derive { path, item } => match ext {
732                 SyntaxExtensionKind::Derive(expander)
733                 | SyntaxExtensionKind::LegacyDerive(expander) => {
734                     if let SyntaxExtensionKind::Derive(..) = ext {
735                         self.gate_proc_macro_input(&item);
736                     }
737                     let meta = ast::MetaItem { kind: MetaItemKind::Word, span, path };
738                     let items = match expander.expand(self.cx, span, &meta, item) {
739                         ExpandResult::Ready(items) => items,
740                         ExpandResult::Retry(item) => {
741                             // Reassemble the original invocation for retrying.
742                             return ExpandResult::Retry(Invocation {
743                                 kind: InvocationKind::Derive { path: meta.path, item },
744                                 ..invoc
745                             });
746                         }
747                     };
748                     fragment_kind.expect_from_annotatables(items)
749                 }
750                 _ => unreachable!(),
751             },
752         })
753     }
754
755     fn gate_proc_macro_attr_item(&self, span: Span, item: &Annotatable) {
756         let kind = match item {
757             Annotatable::Item(_)
758             | Annotatable::TraitItem(_)
759             | Annotatable::ImplItem(_)
760             | Annotatable::ForeignItem(_)
761             | Annotatable::Crate(..) => return,
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             }
770             Annotatable::Expr(_) => "expressions",
771             Annotatable::Arm(..)
772             | Annotatable::ExprField(..)
773             | Annotatable::PatField(..)
774             | Annotatable::GenericParam(..)
775             | Annotatable::Param(..)
776             | Annotatable::FieldDef(..)
777             | Annotatable::Variant(..) => panic!("unexpected annotatable"),
778         };
779         if self.cx.ecfg.proc_macro_hygiene() {
780             return;
781         }
782         feature_err(
783             &self.cx.sess.parse_sess,
784             sym::proc_macro_hygiene,
785             span,
786             &format!("custom attributes cannot be applied to {}", kind),
787         )
788         .emit();
789     }
790
791     fn gate_proc_macro_input(&self, annotatable: &Annotatable) {
792         struct GateProcMacroInput<'a> {
793             parse_sess: &'a ParseSess,
794         }
795
796         impl<'ast, 'a> Visitor<'ast> for GateProcMacroInput<'a> {
797             fn visit_item(&mut self, item: &'ast ast::Item) {
798                 match &item.kind {
799                     ItemKind::Mod(_, mod_kind)
800                         if !matches!(mod_kind, ModKind::Loaded(_, Inline::Yes, _)) =>
801                     {
802                         feature_err(
803                             self.parse_sess,
804                             sym::proc_macro_hygiene,
805                             item.span,
806                             "non-inline modules in proc macro input are unstable",
807                         )
808                         .emit();
809                     }
810                     _ => {}
811                 }
812
813                 visit::walk_item(self, item);
814             }
815         }
816
817         if !self.cx.ecfg.proc_macro_hygiene() {
818             annotatable
819                 .visit_with(&mut GateProcMacroInput { parse_sess: &self.cx.sess.parse_sess });
820         }
821     }
822
823     fn parse_ast_fragment(
824         &mut self,
825         toks: TokenStream,
826         kind: AstFragmentKind,
827         path: &ast::Path,
828         span: Span,
829     ) -> AstFragment {
830         let mut parser = self.cx.new_parser_from_tts(toks);
831         match parse_ast_fragment(&mut parser, kind) {
832             Ok(fragment) => {
833                 ensure_complete_parse(&mut parser, path, kind.name(), span);
834                 fragment
835             }
836             Err(mut err) => {
837                 if err.span.is_dummy() {
838                     err.set_span(span);
839                 }
840                 annotate_err_with_kind(&mut err, kind, span);
841                 err.emit();
842                 self.cx.trace_macros_diag();
843                 kind.dummy(span)
844             }
845         }
846     }
847 }
848
849 pub fn parse_ast_fragment<'a>(
850     this: &mut Parser<'a>,
851     kind: AstFragmentKind,
852 ) -> PResult<'a, AstFragment> {
853     Ok(match kind {
854         AstFragmentKind::Items => {
855             let mut items = SmallVec::new();
856             while let Some(item) = this.parse_item(ForceCollect::No)? {
857                 items.push(item);
858             }
859             AstFragment::Items(items)
860         }
861         AstFragmentKind::TraitItems => {
862             let mut items = SmallVec::new();
863             while let Some(item) = this.parse_trait_item(ForceCollect::No)? {
864                 items.extend(item);
865             }
866             AstFragment::TraitItems(items)
867         }
868         AstFragmentKind::ImplItems => {
869             let mut items = SmallVec::new();
870             while let Some(item) = this.parse_impl_item(ForceCollect::No)? {
871                 items.extend(item);
872             }
873             AstFragment::ImplItems(items)
874         }
875         AstFragmentKind::ForeignItems => {
876             let mut items = SmallVec::new();
877             while let Some(item) = this.parse_foreign_item(ForceCollect::No)? {
878                 items.extend(item);
879             }
880             AstFragment::ForeignItems(items)
881         }
882         AstFragmentKind::Stmts => {
883             let mut stmts = SmallVec::new();
884             // Won't make progress on a `}`.
885             while this.token != token::Eof && this.token != token::CloseDelim(Delimiter::Brace) {
886                 if let Some(stmt) = this.parse_full_stmt(AttemptLocalParseRecovery::Yes)? {
887                     stmts.push(stmt);
888                 }
889             }
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             }
899         }
900         AstFragmentKind::Ty => AstFragment::Ty(this.parse_ty()?),
901         AstFragmentKind::Pat => AstFragment::Pat(this.parse_pat_allow_top_alt(
902             None,
903             RecoverComma::No,
904             RecoverColon::Yes,
905             CommaRecoveryMode::LikelyTuple,
906         )?),
907         AstFragmentKind::Crate => AstFragment::Crate(this.parse_crate_mod()?),
908         AstFragmentKind::Arms
909         | AstFragmentKind::ExprFields
910         | AstFragmentKind::PatFields
911         | AstFragmentKind::GenericParams
912         | AstFragmentKind::Params
913         | AstFragmentKind::FieldDefs
914         | AstFragmentKind::Variants => panic!("unexpected AST fragment kind"),
915     })
916 }
917
918 pub fn ensure_complete_parse<'a>(
919     this: &mut Parser<'a>,
920     macro_path: &ast::Path,
921     kind_name: &str,
922     span: Span,
923 ) {
924     if this.token != token::Eof {
925         let token = pprust::token_to_string(&this.token);
926         let msg = format!("macro expansion ignores token `{}` and any following", token);
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                 );
948             }
949             _ => {}
950         }
951         err.emit();
952     }
953 }
954
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.
977 macro_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
992 enum 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`.
999 trait InvocationCollectorNode: HasAttrs + HasNodeId + Sized {
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;
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
1032 impl 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     }
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();
1086                 let ParsedExternalMod { items, spans, file_path, dir_path, dir_ownership } =
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
1107                 *mod_kind = ModKind::Loaded(items, Inline::No, spans);
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
1138 struct TraitItemTag;
1139 impl InvocationCollectorNode for AstNodeWrapper<P<ast::AssocItem>, TraitItemTag> {
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     }
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
1163 struct ImplItemTag;
1164 impl InvocationCollectorNode for AstNodeWrapper<P<ast::AssocItem>, ImplItemTag> {
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     }
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
1188 impl 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     }
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
1211 impl 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     }
1219     fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1220         noop_flat_map_variant(self, visitor)
1221     }
1222 }
1223
1224 impl 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     }
1232     fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1233         noop_flat_map_field_def(self, visitor)
1234     }
1235 }
1236
1237 impl 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     }
1245     fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1246         noop_flat_map_pat_field(self, visitor)
1247     }
1248 }
1249
1250 impl 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     }
1258     fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1259         noop_flat_map_expr_field(self, visitor)
1260     }
1261 }
1262
1263 impl 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     }
1271     fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1272         noop_flat_map_param(self, visitor)
1273     }
1274 }
1275
1276 impl 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     }
1284     fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1285         noop_flat_map_generic_param(self, visitor)
1286     }
1287 }
1288
1289 impl 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     }
1297     fn noop_flat_map<V: MutVisitor>(self, visitor: &mut V) -> Self::OutputTy {
1298         noop_flat_map_arm(self, visitor)
1299     }
1300 }
1301
1302 impl 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     }
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
1358 impl 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     }
1367     fn noop_visit<V: MutVisitor>(&mut self, visitor: &mut V) {
1368         noop_visit_crate(self, visitor)
1369     }
1370 }
1371
1372 impl 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     }
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
1396 impl 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     }
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
1420 impl 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     }
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
1448 struct OptExprTag;
1449 impl InvocationCollectorNode for AstNodeWrapper<P<ast::Expr>, OptExprTag> {
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     }
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
1478 struct InvocationCollector<'a, 'b> {
1479     cx: &'a mut ExtCtxt<'b>,
1480     invocations: Vec<(Invocation, Option<Lrc<SyntaxExtension>>)>,
1481     monotonic: bool,
1482 }
1483
1484 impl<'a, 'b> InvocationCollector<'a, 'b> {
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
1494     fn collect(&mut self, fragment_kind: AstFragmentKind, kind: InvocationKind) -> AstFragment {
1495         let expn_id = LocalExpnId::fresh_empty();
1496         let vis = kind.placeholder_visibility();
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                 },
1506             },
1507             None,
1508         ));
1509         placeholder(fragment_kind, NodeId::placeholder_from_expn_id(expn_id), vis)
1510     }
1511
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();
1516         self.collect(kind, InvocationKind::Bang { mac, span })
1517     }
1518
1519     fn collect_attr(
1520         &mut self,
1521         (attr, pos, derives): (ast::Attribute, usize, Vec<ast::Path>),
1522         item: Annotatable,
1523         kind: AstFragmentKind,
1524     ) -> AstFragment {
1525         self.collect(kind, InvocationKind::Attr { attr, pos, item, derives })
1526     }
1527
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).
1531     fn take_first_attr(
1532         &self,
1533         item: &mut impl HasAttrs,
1534     ) -> Option<(ast::Attribute, usize, Vec<ast::Path>)> {
1535         let mut attr = None;
1536
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
1553         item.visit_attrs(|attrs| {
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..]
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
1572                     (attr, pos, following_derives)
1573                 }
1574                 _ => return,
1575             });
1576         });
1577
1578         attr
1579     }
1580
1581     // Detect use of feature-gated or invalid attributes on macro invocations
1582     // since they will not be detected after macro expansion.
1583     fn check_attributes(&self, attrs: &[ast::Attribute], call: &ast::MacCall) {
1584         let features = self.cx.ecfg.features.unwrap();
1585         let mut attrs = attrs.iter().peekable();
1586         let mut span: Option<Span> = None;
1587         while let Some(attr) = attrs.next() {
1588             rustc_ast_passes::feature_gate::check_attribute(attr, self.cx.sess, features);
1589             validate_attr::check_meta(&self.cx.sess.parse_sess, attr);
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
1598             if attr.is_doc_comment() {
1599                 self.cx.sess.parse_sess.buffer_lint_with_diagnostic(
1600                     &UNUSED_DOC_COMMENTS,
1601                     current_span,
1602                     self.cx.current_expansion.lint_node_id,
1603                     "unused doc comment",
1604                     BuiltinLintDiagnostics::UnusedDocComment(attr.span),
1605                 );
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                 }
1623             }
1624         }
1625     }
1626
1627     fn expand_cfg_true(
1628         &mut self,
1629         node: &mut impl HasAttrs,
1630         attr: ast::Attribute,
1631         pos: usize,
1632     ) -> bool {
1633         let res = self.cfg().cfg_true(&attr);
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));
1640         }
1641         res
1642     }
1643
1644     fn expand_cfg_attr(&self, node: &mut impl HasAttrs, attr: ast::Attribute, pos: usize) {
1645         node.visit_attrs(|attrs| {
1646             attrs.splice(pos..pos, self.cfg().expand_cfg_attr(attr, false));
1647         });
1648     }
1649
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                     _ => {
1668                         Node::pre_flat_map_node_collect_attr(&self.cfg(), &attr);
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| {
1682                         assign_id!(this, node.node_id_mut(), || node.noop_flat_map(this))
1683                     }) {
1684                         Ok(output) => output,
1685                         Err(returned_node) => {
1686                             node = returned_node;
1687                             continue;
1688                         }
1689                     }
1690                 }
1691             };
1692         }
1693     }
1694
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 => {
1730                     assign_id!(self, node.node_id_mut(), || node.noop_visit(self))
1731                 }
1732             };
1733         }
1734     }
1735 }
1736
1737 impl<'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)
1740     }
1741
1742     fn flat_map_trait_item(&mut self, node: P<ast::AssocItem>) -> SmallVec<[P<ast::AssocItem>; 1]> {
1743         self.flat_map_node(AstNodeWrapper::new(node, TraitItemTag))
1744     }
1745
1746     fn flat_map_impl_item(&mut self, node: P<ast::AssocItem>) -> SmallVec<[P<ast::AssocItem>; 1]> {
1747         self.flat_map_node(AstNodeWrapper::new(node, ImplItemTag))
1748     }
1749
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     }
1756
1757     fn flat_map_variant(&mut self, node: ast::Variant) -> SmallVec<[ast::Variant; 1]> {
1758         self.flat_map_node(node)
1759     }
1760
1761     fn flat_map_field_def(&mut self, node: ast::FieldDef) -> SmallVec<[ast::FieldDef; 1]> {
1762         self.flat_map_node(node)
1763     }
1764
1765     fn flat_map_pat_field(&mut self, node: ast::PatField) -> SmallVec<[ast::PatField; 1]> {
1766         self.flat_map_node(node)
1767     }
1768
1769     fn flat_map_expr_field(&mut self, node: ast::ExprField) -> SmallVec<[ast::ExprField; 1]> {
1770         self.flat_map_node(node)
1771     }
1772
1773     fn flat_map_param(&mut self, node: ast::Param) -> SmallVec<[ast::Param; 1]> {
1774         self.flat_map_node(node)
1775     }
1776
1777     fn flat_map_generic_param(
1778         &mut self,
1779         node: ast::GenericParam,
1780     ) -> SmallVec<[ast::GenericParam; 1]> {
1781         self.flat_map_node(node)
1782     }
1783
1784     fn flat_map_arm(&mut self, node: ast::Arm) -> SmallVec<[ast::Arm; 1]> {
1785         self.flat_map_node(node)
1786     }
1787
1788     fn flat_map_stmt(&mut self, node: ast::Stmt) -> SmallVec<[ast::Stmt; 1]> {
1789         // FIXME: invocations in semicolon-less expressions positions are expanded as expressions,
1790         // changing that requires some compatibility measures.
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
1794             // trailing expression in a block (e.g. `fn foo() { my_macro!() }`).
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
1809                 }
1810                 _ => noop_flat_map_stmt(node, self),
1811             };
1812         }
1813
1814         self.flat_map_node(node)
1815     }
1816
1817     fn visit_crate(&mut self, node: &mut ast::Crate) {
1818         self.visit_node(node)
1819     }
1820
1821     fn visit_ty(&mut self, node: &mut P<ast::Ty>) {
1822         self.visit_node(node)
1823     }
1824
1825     fn visit_pat(&mut self, node: &mut P<ast::Pat>) {
1826         self.visit_node(node)
1827     }
1828
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() {
1832             self.cfg().maybe_emit_expr_attr_err(attr);
1833         }
1834         self.visit_node(node)
1835     }
1836
1837     fn filter_map_expr(&mut self, node: P<ast::Expr>) -> Option<P<ast::Expr>> {
1838         self.flat_map_node(AstNodeWrapper::new(node, OptExprTag))
1839     }
1840
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;
1848     }
1849
1850     fn visit_id(&mut self, id: &mut NodeId) {
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();
1855         }
1856     }
1857 }
1858
1859 pub struct ExpansionConfig<'feat> {
1860     pub crate_name: String,
1861     pub features: Option<&'feat Features>,
1862     pub recursion_limit: Limit,
1863     pub trace_mac: bool,
1864     pub should_test: bool,          // If false, strip `#[test]` nodes
1865     pub span_debug: bool,           // If true, use verbose debugging for `proc_macro::Span`
1866     pub proc_macro_backtrace: bool, // If true, show backtraces for proc-macro panics
1867 }
1868
1869 impl<'feat> ExpansionConfig<'feat> {
1870     pub fn default(crate_name: String) -> ExpansionConfig<'static> {
1871         ExpansionConfig {
1872             crate_name,
1873             features: None,
1874             recursion_limit: Limit::new(1024),
1875             trace_mac: false,
1876             should_test: false,
1877             span_debug: false,
1878             proc_macro_backtrace: false,
1879         }
1880     }
1881
1882     fn proc_macro_hygiene(&self) -> bool {
1883         self.features.map_or(false, |features| features.proc_macro_hygiene)
1884     }
1885 }