Skip to content

Commit 60fe8b3

Browse files
committed
Auto merge of rust-lang#87220 - petrochenkov:derivecfglimit2, r=Aaron1011
Make `#[derive(A, B, ...)]` cfg-eval its input only for `A, B, ...` and stabilize `feature(macro_attributes_in_derive_output)` Stabilization report: rust-lang#87220 (comment) Closes rust-lang#81119 r? `@Aaron1011`
2 parents 6867dd2 + 85f0290 commit 60fe8b3

File tree

9 files changed

+124
-157
lines changed

9 files changed

+124
-157
lines changed

compiler/rustc_builtin_macros/src/cfg_eval.rs

+14-15
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ use crate::util::check_builtin_macro_attribute;
22

33
use rustc_ast as ast;
44
use rustc_ast::mut_visit::MutVisitor;
5+
use rustc_ast::ptr::P;
56
use rustc_ast::tokenstream::CanSynthesizeMissingTokens;
67
use rustc_ast::visit::Visitor;
78
use rustc_ast::{mut_visit, visit};
89
use rustc_ast::{AstLike, Attribute};
910
use rustc_expand::base::{Annotatable, ExtCtxt};
1011
use rustc_expand::config::StripUnconfigured;
1112
use rustc_expand::configure;
13+
use rustc_feature::Features;
1214
use rustc_parse::parser::ForceCollect;
1315
use rustc_session::utils::FlattenNonterminals;
14-
15-
use rustc_ast::ptr::P;
16+
use rustc_session::Session;
1617
use rustc_span::symbol::sym;
1718
use rustc_span::Span;
1819
use smallvec::SmallVec;
@@ -24,21 +25,19 @@ crate fn expand(
2425
annotatable: Annotatable,
2526
) -> Vec<Annotatable> {
2627
check_builtin_macro_attribute(ecx, meta_item, sym::cfg_eval);
27-
vec![cfg_eval(ecx, annotatable)]
28+
vec![cfg_eval(ecx.sess, ecx.ecfg.features, annotatable)]
2829
}
2930

30-
crate fn cfg_eval(ecx: &ExtCtxt<'_>, annotatable: Annotatable) -> Annotatable {
31-
CfgEval {
32-
cfg: &mut StripUnconfigured {
33-
sess: ecx.sess,
34-
features: ecx.ecfg.features,
35-
config_tokens: true,
36-
},
37-
}
38-
.configure_annotatable(annotatable)
39-
// Since the item itself has already been configured by the `InvocationCollector`,
40-
// we know that fold result vector will contain exactly one element.
41-
.unwrap()
31+
crate fn cfg_eval(
32+
sess: &Session,
33+
features: Option<&Features>,
34+
annotatable: Annotatable,
35+
) -> Annotatable {
36+
CfgEval { cfg: &mut StripUnconfigured { sess, features, config_tokens: true } }
37+
.configure_annotatable(annotatable)
38+
// Since the item itself has already been configured by the `InvocationCollector`,
39+
// we know that fold result vector will contain exactly one element.
40+
.unwrap()
4241
}
4342

4443
struct CfgEval<'a, 'b> {

compiler/rustc_builtin_macros/src/derive.rs

+33-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
use crate::cfg_eval::cfg_eval;
22

3-
use rustc_ast::{self as ast, attr, token, ItemKind, MetaItemKind, NestedMetaItem, StmtKind};
3+
use rustc_ast as ast;
4+
use rustc_ast::{attr, token, GenericParamKind, ItemKind, MetaItemKind, NestedMetaItem, StmtKind};
45
use rustc_errors::{struct_span_err, Applicability};
56
use rustc_expand::base::{Annotatable, ExpandResult, ExtCtxt, Indeterminate, MultiItemModifier};
67
use rustc_feature::AttributeTemplate;
78
use rustc_parse::validate_attr;
89
use rustc_session::Session;
9-
use rustc_span::symbol::sym;
10+
use rustc_span::symbol::{sym, Ident};
1011
use rustc_span::Span;
1112

1213
crate struct Expander;
@@ -26,8 +27,7 @@ impl MultiItemModifier for Expander {
2627
return ExpandResult::Ready(vec![item]);
2728
}
2829

29-
let item = cfg_eval(ecx, item);
30-
30+
let (sess, features) = (ecx.sess, ecx.ecfg.features);
3131
let result =
3232
ecx.resolver.resolve_derives(ecx.current_expansion.id, ecx.force_mode, &|| {
3333
let template =
@@ -40,7 +40,8 @@ impl MultiItemModifier for Expander {
4040
template,
4141
);
4242

43-
attr.meta_item_list()
43+
let mut resolutions: Vec<_> = attr
44+
.meta_item_list()
4445
.unwrap_or_default()
4546
.into_iter()
4647
.filter_map(|nested_meta| match nested_meta {
@@ -56,8 +57,21 @@ impl MultiItemModifier for Expander {
5657
report_path_args(sess, &meta);
5758
meta.path
5859
})
59-
.map(|path| (path, item.clone(), None))
60-
.collect()
60+
.map(|path| (path, dummy_annotatable(), None))
61+
.collect();
62+
63+
// Do not configure or clone items unless necessary.
64+
match &mut resolutions[..] {
65+
[] => {}
66+
[(_, first_item, _), others @ ..] => {
67+
*first_item = cfg_eval(sess, features, item.clone());
68+
for (_, item, _) in others {
69+
*item = first_item.clone();
70+
}
71+
}
72+
}
73+
74+
resolutions
6175
});
6276

6377
match result {
@@ -67,6 +81,18 @@ impl MultiItemModifier for Expander {
6781
}
6882
}
6983

84+
// The cheapest `Annotatable` to construct.
85+
fn dummy_annotatable() -> Annotatable {
86+
Annotatable::GenericParam(ast::GenericParam {
87+
id: ast::DUMMY_NODE_ID,
88+
ident: Ident::invalid(),
89+
attrs: Default::default(),
90+
bounds: Default::default(),
91+
is_placeholder: false,
92+
kind: GenericParamKind::Lifetime,
93+
})
94+
}
95+
7096
fn report_bad_target(sess: &Session, item: &Annotatable, span: Span) -> bool {
7197
let item_kind = match item {
7298
Annotatable::Item(item) => Some(&item.kind),

compiler/rustc_feature/src/accepted.rs

+2
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,8 @@ declare_features! (
295295
(accepted, const_fn_union, "1.56.0", Some(51909), None),
296296
/// Allows explicit discriminants on non-unit enum variants.
297297
(accepted, arbitrary_enum_discriminant, "1.56.0", Some(60553), None),
298+
/// Allows macro attributes to observe output of `#[derive]`.
299+
(accepted, macro_attributes_in_derive_output, "1.57.0", Some(81119), None),
298300

299301
// -------------------------------------------------------------------------
300302
// feature-group-end: accepted features

compiler/rustc_feature/src/active.rs

-3
Original file line numberDiff line numberDiff line change
@@ -592,9 +592,6 @@ declare_features! (
592592
/// Lessens the requirements for structs to implement `Unsize`.
593593
(active, relaxed_struct_unsize, "1.51.0", Some(81793), None),
594594

595-
/// Allows macro attributes to observe output of `#[derive]`.
596-
(active, macro_attributes_in_derive_output, "1.51.0", Some(81119), None),
597-
598595
/// Allows associated types in inherent impls.
599596
(incomplete, inherent_associated_types, "1.52.0", Some(8995), None),
600597

compiler/rustc_resolve/src/macros.rs

-32
Original file line numberDiff line numberDiff line change
@@ -311,38 +311,6 @@ impl<'a> ResolverExpand for Resolver<'a> {
311311
self.create_stable_hashing_context(),
312312
);
313313

314-
if let Res::Def(_, _) = res {
315-
// Gate macro attributes in `#[derive]` output.
316-
if !self.session.features_untracked().macro_attributes_in_derive_output
317-
&& kind == MacroKind::Attr
318-
&& ext.builtin_name != Some(sym::derive)
319-
{
320-
let mut expn_id = parent_scope.expansion;
321-
loop {
322-
// Helper attr table is a quick way to determine whether the attr is `derive`.
323-
if self.helper_attrs.contains_key(&expn_id) {
324-
feature_err(
325-
&self.session.parse_sess,
326-
sym::macro_attributes_in_derive_output,
327-
path.span,
328-
"macro attributes in `#[derive]` output are unstable",
329-
)
330-
.emit();
331-
break;
332-
} else {
333-
let expn_data = expn_id.expn_data();
334-
match expn_data.kind {
335-
ExpnKind::Root
336-
| ExpnKind::Macro(MacroKind::Bang | MacroKind::Derive, _) => {
337-
break;
338-
}
339-
_ => expn_id = expn_data.parent.expect_local(),
340-
}
341-
}
342-
}
343-
}
344-
}
345-
346314
Ok(ext)
347315
}
348316

src/test/ui/proc-macro/attribute-after-derive-feature-gate.rs

-37
This file was deleted.

src/test/ui/proc-macro/attribute-after-derive-feature-gate.stderr

-30
This file was deleted.

src/test/ui/proc-macro/attribute-after-derive.rs

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
// compile-flags: -Z span-debug
66
// aux-build: test-macros.rs
77

8-
#![feature(macro_attributes_in_derive_output)]
9-
108
#![no_std] // Don't load unnecessary hygiene information from std
119
extern crate std;
1210

0 commit comments

Comments
 (0)