Skip to content

Commit d8426ea

Browse files
committed
Remove ModData from rustc_metadata
This avoids having to decode 2 `Lazy`s when decoding a modules exports.
1 parent fabede1 commit d8426ea

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

compiler/rustc_metadata/src/rmeta/decoder.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1198,8 +1198,8 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
11981198
}
11991199
}
12001200

1201-
if let EntryKind::Mod(data) = kind {
1202-
for exp in data.decode((self, sess)).reexports.decode((self, sess)) {
1201+
if let EntryKind::Mod(exports) = kind {
1202+
for exp in exports.decode((self, sess)) {
12031203
match exp.res {
12041204
Res::Def(DefKind::Macro(..), _) => {}
12051205
_ if macros_only => continue,

compiler/rustc_metadata/src/rmeta/encoder.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1086,9 +1086,7 @@ impl EncodeContext<'a, 'tcx> {
10861086
Lazy::empty()
10871087
};
10881088

1089-
let data = ModData { reexports };
1090-
1091-
record!(self.tables.kind[def_id] <- EntryKind::Mod(self.lazy(data)));
1089+
record!(self.tables.kind[def_id] <- EntryKind::Mod(reexports));
10921090
if self.is_proc_macro {
10931091
record!(self.tables.children[def_id] <- &[]);
10941092
// Encode this here because we don't do it in encode_def_ids.

compiler/rustc_metadata/src/rmeta/mod.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ enum EntryKind {
346346
Union(Lazy<VariantData>, ReprOptions),
347347
Fn(Lazy<FnData>),
348348
ForeignFn(Lazy<FnData>),
349-
Mod(Lazy<ModData>),
349+
Mod(Lazy<[Export]>),
350350
MacroDef(Lazy<MacroDef>),
351351
ProcMacro(MacroKind),
352352
Closure,
@@ -364,11 +364,6 @@ enum EntryKind {
364364
#[derive(Encodable, Decodable)]
365365
struct RenderedConst(String);
366366

367-
#[derive(MetadataEncodable, MetadataDecodable)]
368-
struct ModData {
369-
reexports: Lazy<[Export]>,
370-
}
371-
372367
#[derive(MetadataEncodable, MetadataDecodable)]
373368
struct FnData {
374369
asyncness: hir::IsAsync,

compiler/rustc_resolve/src/build_reduced_graph.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,11 @@ impl<'a> Resolver<'a> {
145145
} else {
146146
def_key.disambiguated_data.data.get_opt_name().expect("module without name")
147147
};
148-
let expn_id = self.cstore().module_expansion_untracked(def_id, &self.session);
149148

150149
Some(self.new_module(
151150
parent,
152151
ModuleKind::Def(def_kind, def_id, name),
153-
expn_id,
152+
self.cstore().module_expansion_untracked(def_id, &self.session),
154153
self.cstore().get_span_untracked(def_id, &self.session),
155154
// FIXME: Account for `#[no_implicit_prelude]` attributes.
156155
parent.map_or(false, |module| module.no_implicit_prelude),

0 commit comments

Comments
 (0)