Skip to content

Commit bf5f306

Browse files
committed
Auto merge of #80648 - Aaron1011:expn-data-private, r=petrochenkov
Make `ExpnData` fields `krate` and `orig_id` private These fields are only used by hygiene serialized, and should not be accessed by anything outside of `rustc_span`.
2 parents dfdfaa1 + 21b8f2e commit bf5f306

File tree

5 files changed

+63
-27
lines changed

5 files changed

+63
-27
lines changed

compiler/rustc_ast_lowering/src/lib.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ use rustc_session::lint::{builtin::BARE_TRAIT_OBJECTS, BuiltinLintDiagnostics, L
5757
use rustc_session::parse::ParseSess;
5858
use rustc_session::Session;
5959
use rustc_span::hygiene::ExpnId;
60-
use rustc_span::source_map::{respan, DesugaringKind, ExpnData, ExpnKind};
60+
use rustc_span::source_map::{respan, DesugaringKind};
6161
use rustc_span::symbol::{kw, sym, Ident, Symbol};
6262
use rustc_span::Span;
6363

@@ -743,10 +743,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
743743
span: Span,
744744
allow_internal_unstable: Option<Lrc<[Symbol]>>,
745745
) -> Span {
746-
span.fresh_expansion(ExpnData {
747-
allow_internal_unstable,
748-
..ExpnData::default(ExpnKind::Desugaring(reason), span, self.sess.edition(), None)
749-
})
746+
span.mark_with_reason(allow_internal_unstable, reason, self.sess.edition())
750747
}
751748

752749
fn with_anonymous_lifetime_mode<R>(

compiler/rustc_expand/src/base.rs

+9-11
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use rustc_data_structures::sync::{self, Lrc};
1212
use rustc_errors::{DiagnosticBuilder, ErrorReported};
1313
use rustc_parse::{self, nt_to_tokenstream, parser, MACRO_ARGUMENTS};
1414
use rustc_session::{parse::ParseSess, Limit, Session};
15-
use rustc_span::def_id::{DefId, LOCAL_CRATE};
15+
use rustc_span::def_id::DefId;
1616
use rustc_span::edition::Edition;
1717
use rustc_span::hygiene::{AstPass, ExpnData, ExpnId, ExpnKind};
1818
use rustc_span::source_map::SourceMap;
@@ -842,19 +842,17 @@ impl SyntaxExtension {
842842
descr: Symbol,
843843
macro_def_id: Option<DefId>,
844844
) -> ExpnData {
845-
ExpnData {
846-
kind: ExpnKind::Macro(self.macro_kind(), descr),
845+
ExpnData::new(
846+
ExpnKind::Macro(self.macro_kind(), descr),
847847
parent,
848848
call_site,
849-
def_site: self.span,
850-
allow_internal_unstable: self.allow_internal_unstable.clone(),
851-
allow_internal_unsafe: self.allow_internal_unsafe,
852-
local_inner_macros: self.local_inner_macros,
853-
edition: self.edition,
849+
self.span,
850+
self.allow_internal_unstable.clone(),
851+
self.allow_internal_unsafe,
852+
self.local_inner_macros,
853+
self.edition,
854854
macro_def_id,
855-
krate: LOCAL_CRATE,
856-
orig_id: None,
857-
}
855+
)
858856
}
859857
}
860858

compiler/rustc_expand/src/expand.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -1020,15 +1020,16 @@ impl<'a, 'b> InvocationCollector<'a, 'b> {
10201020
// with exception of the derive container case which is not resolved and can get
10211021
// its expansion data immediately.
10221022
let expn_data = match &kind {
1023-
InvocationKind::DeriveContainer { item, .. } => Some(ExpnData {
1024-
parent: self.cx.current_expansion.id,
1025-
..ExpnData::default(
1023+
InvocationKind::DeriveContainer { item, .. } => {
1024+
let mut expn_data = ExpnData::default(
10261025
ExpnKind::Macro(MacroKind::Attr, sym::derive),
10271026
item.span(),
10281027
self.cx.sess.parse_sess.edition,
10291028
None,
1030-
)
1031-
}),
1029+
);
1030+
expn_data.parent = self.cx.current_expansion.id;
1031+
Some(expn_data)
1032+
}
10321033
_ => None,
10331034
};
10341035
let expn_id = ExpnId::fresh(expn_data);

compiler/rustc_mir/src/transform/inline.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -742,11 +742,11 @@ impl<'a, 'tcx> MutVisitor<'tcx> for Integrator<'a, 'tcx> {
742742
}
743743

744744
fn visit_span(&mut self, span: &mut Span) {
745+
let mut expn_data =
746+
ExpnData::default(ExpnKind::Inlined, *span, self.tcx.sess.edition(), None);
747+
expn_data.def_site = self.body_span;
745748
// Make sure that all spans track the fact that they were inlined.
746-
*span = self.callsite_span.fresh_expansion(ExpnData {
747-
def_site: self.body_span,
748-
..ExpnData::default(ExpnKind::Inlined, *span, self.tcx.sess.edition(), None)
749-
});
749+
*span = self.callsite_span.fresh_expansion(expn_data);
750750
}
751751

752752
fn visit_place(&mut self, place: &mut Place<'tcx>, context: PlaceContext, location: Location) {

compiler/rustc_span/src/hygiene.rs

+42-2
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,20 @@ impl Span {
650650
self.with_ctxt(data.apply_mark(SyntaxContext::root(), expn_id, transparency))
651651
})
652652
}
653+
654+
/// Reuses the span but adds information like the kind of the desugaring and features that are
655+
/// allowed inside this span.
656+
pub fn mark_with_reason(
657+
self,
658+
allow_internal_unstable: Option<Lrc<[Symbol]>>,
659+
reason: DesugaringKind,
660+
edition: Edition,
661+
) -> Span {
662+
self.fresh_expansion(ExpnData {
663+
allow_internal_unstable,
664+
..ExpnData::default(ExpnKind::Desugaring(reason), self, edition, None)
665+
})
666+
}
653667
}
654668

655669
/// A subset of properties from both macro definition and macro call available through global data.
@@ -699,21 +713,47 @@ pub struct ExpnData {
699713
/// created locally - when our serialized metadata is decoded,
700714
/// foreign `ExpnId`s will have their `ExpnData` looked up
701715
/// from the crate specified by `Crate
702-
pub krate: CrateNum,
716+
krate: CrateNum,
703717
/// The raw that this `ExpnData` had in its original crate.
704718
/// An `ExpnData` can be created before being assigned an `ExpnId`,
705719
/// so this might be `None` until `set_expn_data` is called
706720
// This is used only for serialization/deserialization purposes:
707721
// two `ExpnData`s that differ only in their `orig_id` should
708722
// be considered equivalent.
709723
#[stable_hasher(ignore)]
710-
pub orig_id: Option<u32>,
724+
orig_id: Option<u32>,
711725
}
712726

713727
// This would require special handling of `orig_id` and `parent`
714728
impl !PartialEq for ExpnData {}
715729

716730
impl ExpnData {
731+
pub fn new(
732+
kind: ExpnKind,
733+
parent: ExpnId,
734+
call_site: Span,
735+
def_site: Span,
736+
allow_internal_unstable: Option<Lrc<[Symbol]>>,
737+
allow_internal_unsafe: bool,
738+
local_inner_macros: bool,
739+
edition: Edition,
740+
macro_def_id: Option<DefId>,
741+
) -> ExpnData {
742+
ExpnData {
743+
kind,
744+
parent,
745+
call_site,
746+
def_site,
747+
allow_internal_unstable,
748+
allow_internal_unsafe,
749+
local_inner_macros,
750+
edition,
751+
macro_def_id,
752+
krate: LOCAL_CRATE,
753+
orig_id: None,
754+
}
755+
}
756+
717757
/// Constructs expansion data with default properties.
718758
pub fn default(
719759
kind: ExpnKind,

0 commit comments

Comments
 (0)