Skip to content

Commit d7901f3

Browse files
committed
Auto merge of #86694 - cjgillot:pmmd, r=petrochenkov
Store macro parent module in ExpnData. As a consequence, its value is hashed as part of the ExpnId's stable hash. Closes #85999
2 parents 9a27044 + 3162c37 commit d7901f3

File tree

7 files changed

+32
-40
lines changed

7 files changed

+32
-40
lines changed

compiler/rustc_expand/src/base.rs

+2
Original file line numberDiff line numberDiff line change
@@ -809,6 +809,7 @@ impl SyntaxExtension {
809809
call_site: Span,
810810
descr: Symbol,
811811
macro_def_id: Option<DefId>,
812+
parent_module: Option<DefId>,
812813
) -> ExpnData {
813814
use SyntaxExtensionKind::*;
814815
let proc_macro = match self.kind {
@@ -828,6 +829,7 @@ impl SyntaxExtension {
828829
self.local_inner_macros,
829830
self.edition,
830831
macro_def_id,
832+
parent_module,
831833
)
832834
}
833835
}

compiler/rustc_hir/src/definitions.rs

+1-15
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
//! expressions) that are mostly just leftovers.
66
77
pub use crate::def_id::DefPathHash;
8-
use crate::def_id::{
9-
CrateNum, DefId, DefIndex, LocalDefId, StableCrateId, CRATE_DEF_INDEX, LOCAL_CRATE,
10-
};
8+
use crate::def_id::{CrateNum, DefIndex, LocalDefId, StableCrateId, CRATE_DEF_INDEX, LOCAL_CRATE};
119
use crate::hir;
1210

1311
use rustc_data_structures::fx::FxHashMap;
@@ -108,9 +106,6 @@ pub struct Definitions {
108106
/// The reverse mapping of `def_id_to_hir_id`.
109107
pub(super) hir_id_to_def_id: FxHashMap<hir::HirId, LocalDefId>,
110108

111-
/// If `ExpnId` is an ID of some macro expansion,
112-
/// then `DefId` is the normal module (`mod`) in which the expanded macro was defined.
113-
parent_modules_of_macro_defs: FxHashMap<ExpnId, DefId>,
114109
/// Item with a given `LocalDefId` was defined during macro expansion with ID `ExpnId`.
115110
expansions_that_defined: FxHashMap<LocalDefId, ExpnId>,
116111
}
@@ -353,7 +348,6 @@ impl Definitions {
353348
def_id_to_hir_id: Default::default(),
354349
hir_id_to_def_id: Default::default(),
355350
expansions_that_defined: Default::default(),
356-
parent_modules_of_macro_defs: Default::default(),
357351
}
358352
}
359353

@@ -420,14 +414,6 @@ impl Definitions {
420414
self.expansions_that_defined.get(&id).copied().unwrap_or_else(ExpnId::root)
421415
}
422416

423-
pub fn parent_module_of_macro_def(&self, expn_id: ExpnId) -> DefId {
424-
self.parent_modules_of_macro_defs[&expn_id]
425-
}
426-
427-
pub fn add_parent_module_of_macro_def(&mut self, expn_id: ExpnId, module: DefId) {
428-
self.parent_modules_of_macro_defs.insert(expn_id, module);
429-
}
430-
431417
pub fn iter_local_def_id(&self) -> impl Iterator<Item = LocalDefId> + '_ {
432418
self.def_id_to_hir_id.iter_enumerated().map(|(k, _)| k)
433419
}

compiler/rustc_middle/src/ty/mod.rs

+5-7
Original file line numberDiff line numberDiff line change
@@ -1902,13 +1902,11 @@ impl<'tcx> TyCtxt<'tcx> {
19021902
scope: DefId,
19031903
block: hir::HirId,
19041904
) -> (Ident, DefId) {
1905-
let scope =
1906-
match ident.span.normalize_to_macros_2_0_and_adjust(self.expn_that_defined(scope)) {
1907-
Some(actual_expansion) => {
1908-
self.hir().definitions().parent_module_of_macro_def(actual_expansion)
1909-
}
1910-
None => self.parent_module(block).to_def_id(),
1911-
};
1905+
let scope = ident
1906+
.span
1907+
.normalize_to_macros_2_0_and_adjust(self.expn_that_defined(scope))
1908+
.and_then(|actual_expansion| actual_expansion.expn_data().parent_module)
1909+
.unwrap_or_else(|| self.parent_module(block).to_def_id());
19121910
(ident, scope)
19131911
}
19141912

compiler/rustc_mir/src/transform/inline.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ impl<'a, 'tcx> MutVisitor<'tcx> for Integrator<'a, 'tcx> {
836836

837837
fn visit_span(&mut self, span: &mut Span) {
838838
let mut expn_data =
839-
ExpnData::default(ExpnKind::Inlined, *span, self.tcx.sess.edition(), None);
839+
ExpnData::default(ExpnKind::Inlined, *span, self.tcx.sess.edition(), None, None);
840840
expn_data.def_site = self.body_span;
841841
// Make sure that all spans track the fact that they were inlined.
842842
*span = self.callsite_span.fresh_expansion(expn_data);

compiler/rustc_resolve/src/build_reduced_graph.rs

+4
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,10 @@ impl<'a> Resolver<'a> {
159159
Some(def_id) => def_id,
160160
None => return self.ast_transform_scopes.get(&expn_id).unwrap_or(&self.graph_root),
161161
};
162+
self.macro_def_scope_from_def_id(def_id)
163+
}
164+
165+
crate fn macro_def_scope_from_def_id(&mut self, def_id: DefId) -> Module<'a> {
162166
if let Some(id) = def_id.as_local() {
163167
self.local_macro_def_scopes[&id]
164168
} else {

compiler/rustc_resolve/src/macros.rs

+9-15
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use rustc_expand::compile_declarative_macro;
2020
use rustc_expand::expand::{AstFragment, Invocation, InvocationKind, SupportsMacroExpansion};
2121
use rustc_feature::is_builtin_attr_name;
2222
use rustc_hir::def::{self, DefKind, NonMacroAttrKind};
23-
use rustc_hir::def_id::{self, CrateNum};
23+
use rustc_hir::def_id::{CrateNum, LocalDefId};
2424
use rustc_hir::PrimTy;
2525
use rustc_middle::middle::stability;
2626
use rustc_middle::ty;
@@ -217,26 +217,20 @@ impl<'a> ResolverExpand for Resolver<'a> {
217217
features: &[Symbol],
218218
parent_module_id: Option<NodeId>,
219219
) -> ExpnId {
220+
let parent_module = parent_module_id.map(|module_id| self.local_def_id(module_id));
220221
let expn_id = ExpnId::fresh(Some(ExpnData::allow_unstable(
221222
ExpnKind::AstPass(pass),
222223
call_site,
223224
self.session.edition(),
224225
features.into(),
225226
None,
227+
parent_module.map(LocalDefId::to_def_id),
226228
)));
227229

228-
let parent_scope = if let Some(module_id) = parent_module_id {
229-
let parent_def_id = self.local_def_id(module_id);
230-
self.definitions.add_parent_module_of_macro_def(expn_id, parent_def_id.to_def_id());
231-
self.module_map[&parent_def_id]
232-
} else {
233-
self.definitions.add_parent_module_of_macro_def(
234-
expn_id,
235-
def_id::DefId::local(def_id::CRATE_DEF_INDEX),
236-
);
237-
self.empty_module
238-
};
230+
let parent_scope = parent_module
231+
.map_or(self.empty_module, |parent_def_id| self.module_map[&parent_def_id]);
239232
self.ast_transform_scopes.insert(expn_id, parent_scope);
233+
240234
expn_id
241235
}
242236

@@ -298,12 +292,12 @@ impl<'a> ResolverExpand for Resolver<'a> {
298292
span,
299293
fast_print_path(path),
300294
res.opt_def_id(),
295+
res.opt_def_id().map(|macro_def_id| {
296+
self.macro_def_scope_from_def_id(macro_def_id).nearest_parent_mod
297+
}),
301298
));
302299

303300
if let Res::Def(_, _) = res {
304-
let normal_module_def_id = self.macro_def_scope(invoc_id).nearest_parent_mod;
305-
self.definitions.add_parent_module_of_macro_def(invoc_id, normal_module_def_id);
306-
307301
// Gate macro attributes in `#[derive]` output.
308302
if !self.session.features_untracked().macro_attributes_in_derive_output
309303
&& kind == MacroKind::Attr

compiler/rustc_span/src/hygiene.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ impl HygieneData {
181181
DUMMY_SP,
182182
edition,
183183
Some(DefId::local(CRATE_DEF_INDEX)),
184+
None,
184185
);
185186
root_data.orig_id = Some(0);
186187

@@ -687,7 +688,7 @@ impl Span {
687688
) -> Span {
688689
self.fresh_expansion(ExpnData {
689690
allow_internal_unstable,
690-
..ExpnData::default(ExpnKind::Desugaring(reason), self, edition, None)
691+
..ExpnData::default(ExpnKind::Desugaring(reason), self, edition, None, None)
691692
})
692693
}
693694
}
@@ -734,6 +735,8 @@ pub struct ExpnData {
734735
/// The `DefId` of the macro being invoked,
735736
/// if this `ExpnData` corresponds to a macro invocation
736737
pub macro_def_id: Option<DefId>,
738+
/// The normal module (`mod`) in which the expanded macro was defined.
739+
pub parent_module: Option<DefId>,
737740
/// The crate that originally created this `ExpnData`. During
738741
/// metadata serialization, we only encode `ExpnData`s that were
739742
/// created locally - when our serialized metadata is decoded,
@@ -777,6 +780,7 @@ impl ExpnData {
777780
local_inner_macros: bool,
778781
edition: Edition,
779782
macro_def_id: Option<DefId>,
783+
parent_module: Option<DefId>,
780784
) -> ExpnData {
781785
ExpnData {
782786
kind,
@@ -788,6 +792,7 @@ impl ExpnData {
788792
local_inner_macros,
789793
edition,
790794
macro_def_id,
795+
parent_module,
791796
krate: LOCAL_CRATE,
792797
orig_id: None,
793798
disambiguator: 0,
@@ -800,6 +805,7 @@ impl ExpnData {
800805
call_site: Span,
801806
edition: Edition,
802807
macro_def_id: Option<DefId>,
808+
parent_module: Option<DefId>,
803809
) -> ExpnData {
804810
ExpnData {
805811
kind,
@@ -811,6 +817,7 @@ impl ExpnData {
811817
local_inner_macros: false,
812818
edition,
813819
macro_def_id,
820+
parent_module,
814821
krate: LOCAL_CRATE,
815822
orig_id: None,
816823
disambiguator: 0,
@@ -823,10 +830,11 @@ impl ExpnData {
823830
edition: Edition,
824831
allow_internal_unstable: Lrc<[Symbol]>,
825832
macro_def_id: Option<DefId>,
833+
parent_module: Option<DefId>,
826834
) -> ExpnData {
827835
ExpnData {
828836
allow_internal_unstable: Some(allow_internal_unstable),
829-
..ExpnData::default(kind, call_site, edition, macro_def_id)
837+
..ExpnData::default(kind, call_site, edition, macro_def_id, parent_module)
830838
}
831839
}
832840

0 commit comments

Comments
 (0)