]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_metadata/src/rmeta/mod.rs
Rollup merge of #76867 - poliorcetics:intra-doc-core-iter, r=jyn514
[rust.git] / compiler / rustc_metadata / src / rmeta / mod.rs
1 use decoder::Metadata;
2 use table::{Table, TableBuilder};
3
4 use rustc_ast::{self as ast, MacroDef};
5 use rustc_attr as attr;
6 use rustc_data_structures::svh::Svh;
7 use rustc_data_structures::sync::MetadataRef;
8 use rustc_hir as hir;
9 use rustc_hir::def::CtorKind;
10 use rustc_hir::def_id::{DefId, DefIndex, DefPathHash};
11 use rustc_hir::definitions::DefKey;
12 use rustc_hir::lang_items;
13 use rustc_index::{bit_set::FiniteBitSet, vec::IndexVec};
14 use rustc_middle::hir::exports::Export;
15 use rustc_middle::middle::cstore::{CrateDepKind, ForeignModule, LinkagePreference, NativeLib};
16 use rustc_middle::middle::exported_symbols::{ExportedSymbol, SymbolExportLevel};
17 use rustc_middle::mir;
18 use rustc_middle::ty::{self, ReprOptions, Ty};
19 use rustc_serialize::opaque::Encoder;
20 use rustc_session::config::SymbolManglingVersion;
21 use rustc_session::CrateDisambiguator;
22 use rustc_span::edition::Edition;
23 use rustc_span::symbol::{Ident, Symbol};
24 use rustc_span::{self, ExpnData, ExpnId, Span};
25 use rustc_target::spec::{PanicStrategy, TargetTriple};
26
27 use std::marker::PhantomData;
28 use std::num::NonZeroUsize;
29
30 use decoder::DecodeContext;
31 pub use decoder::{provide, provide_extern};
32 crate use decoder::{CrateMetadata, CrateNumMap, MetadataBlob};
33 use encoder::EncodeContext;
34 use rustc_span::hygiene::SyntaxContextData;
35
36 mod decoder;
37 mod encoder;
38 mod table;
39
40 crate fn rustc_version() -> String {
41     format!("rustc {}", option_env!("CFG_VERSION").unwrap_or("unknown version"))
42 }
43
44 /// Metadata encoding version.
45 /// N.B., increment this if you change the format of metadata such that
46 /// the rustc version can't be found to compare with `rustc_version()`.
47 const METADATA_VERSION: u8 = 5;
48
49 /// Metadata header which includes `METADATA_VERSION`.
50 ///
51 /// This header is followed by the position of the `CrateRoot`,
52 /// which is encoded as a 32-bit big-endian unsigned integer,
53 /// and further followed by the rustc version string.
54 crate const METADATA_HEADER: &[u8; 8] = &[b'r', b'u', b's', b't', 0, 0, 0, METADATA_VERSION];
55
56 /// Additional metadata for a `Lazy<T>` where `T` may not be `Sized`,
57 /// e.g. for `Lazy<[T]>`, this is the length (count of `T` values).
58 trait LazyMeta {
59     type Meta: Copy + 'static;
60
61     /// Returns the minimum encoded size.
62     // FIXME(eddyb) Give better estimates for certain types.
63     fn min_size(meta: Self::Meta) -> usize;
64 }
65
66 impl<T> LazyMeta for T {
67     type Meta = ();
68
69     fn min_size(_: ()) -> usize {
70         assert_ne!(std::mem::size_of::<T>(), 0);
71         1
72     }
73 }
74
75 impl<T> LazyMeta for [T] {
76     type Meta = usize;
77
78     fn min_size(len: usize) -> usize {
79         len * T::min_size(())
80     }
81 }
82
83 /// A value of type T referred to by its absolute position
84 /// in the metadata, and which can be decoded lazily.
85 ///
86 /// Metadata is effective a tree, encoded in post-order,
87 /// and with the root's position written next to the header.
88 /// That means every single `Lazy` points to some previous
89 /// location in the metadata and is part of a larger node.
90 ///
91 /// The first `Lazy` in a node is encoded as the backwards
92 /// distance from the position where the containing node
93 /// starts and where the `Lazy` points to, while the rest
94 /// use the forward distance from the previous `Lazy`.
95 /// Distances start at 1, as 0-byte nodes are invalid.
96 /// Also invalid are nodes being referred in a different
97 /// order than they were encoded in.
98 ///
99 /// # Sequences (`Lazy<[T]>`)
100 ///
101 /// Unlike `Lazy<Vec<T>>`, the length is encoded next to the
102 /// position, not at the position, which means that the length
103 /// doesn't need to be known before encoding all the elements.
104 ///
105 /// If the length is 0, no position is encoded, but otherwise,
106 /// the encoding is that of `Lazy`, with the distinction that
107 /// the minimal distance the length of the sequence, i.e.
108 /// it's assumed there's no 0-byte element in the sequence.
109 #[must_use]
110 // FIXME(#59875) the `Meta` parameter only exists to dodge
111 // invariance wrt `T` (coming from the `meta: T::Meta` field).
112 struct Lazy<T, Meta = <T as LazyMeta>::Meta>
113 where
114     T: ?Sized + LazyMeta<Meta = Meta>,
115     Meta: 'static + Copy,
116 {
117     position: NonZeroUsize,
118     meta: Meta,
119     _marker: PhantomData<T>,
120 }
121
122 impl<T: ?Sized + LazyMeta> Lazy<T> {
123     fn from_position_and_meta(position: NonZeroUsize, meta: T::Meta) -> Lazy<T> {
124         Lazy { position, meta, _marker: PhantomData }
125     }
126 }
127
128 impl<T> Lazy<T> {
129     fn from_position(position: NonZeroUsize) -> Lazy<T> {
130         Lazy::from_position_and_meta(position, ())
131     }
132 }
133
134 impl<T> Lazy<[T]> {
135     fn empty() -> Lazy<[T]> {
136         Lazy::from_position_and_meta(NonZeroUsize::new(1).unwrap(), 0)
137     }
138 }
139
140 impl<T: ?Sized + LazyMeta> Copy for Lazy<T> {}
141 impl<T: ?Sized + LazyMeta> Clone for Lazy<T> {
142     fn clone(&self) -> Self {
143         *self
144     }
145 }
146
147 /// Encoding / decoding state for `Lazy`.
148 #[derive(Copy, Clone, PartialEq, Eq, Debug)]
149 enum LazyState {
150     /// Outside of a metadata node.
151     NoNode,
152
153     /// Inside a metadata node, and before any `Lazy`.
154     /// The position is that of the node itself.
155     NodeStart(NonZeroUsize),
156
157     /// Inside a metadata node, with a previous `Lazy`.
158     /// The position is a conservative estimate of where that
159     /// previous `Lazy` would end (see their comments).
160     Previous(NonZeroUsize),
161 }
162
163 // FIXME(#59875) `Lazy!(T)` replaces `Lazy<T>`, passing the `Meta` parameter
164 // manually, instead of relying on the default, to get the correct variance.
165 // Only needed when `T` itself contains a parameter (e.g. `'tcx`).
166 macro_rules! Lazy {
167     (Table<$I:ty, $T:ty>) => {Lazy<Table<$I, $T>, usize>};
168     ([$T:ty]) => {Lazy<[$T], usize>};
169     ($T:ty) => {Lazy<$T, ()>};
170 }
171
172 type SyntaxContextTable = Lazy<Table<u32, Lazy<SyntaxContextData>>>;
173 type ExpnDataTable = Lazy<Table<u32, Lazy<ExpnData>>>;
174
175 #[derive(MetadataEncodable, MetadataDecodable)]
176 crate struct CrateRoot<'tcx> {
177     name: Symbol,
178     triple: TargetTriple,
179     extra_filename: String,
180     hash: Svh,
181     disambiguator: CrateDisambiguator,
182     panic_strategy: PanicStrategy,
183     edition: Edition,
184     has_global_allocator: bool,
185     has_panic_handler: bool,
186     has_default_lib_allocator: bool,
187     plugin_registrar_fn: Option<DefIndex>,
188     proc_macro_decls_static: Option<DefIndex>,
189     proc_macro_stability: Option<attr::Stability>,
190
191     crate_deps: Lazy<[CrateDep]>,
192     dylib_dependency_formats: Lazy<[Option<LinkagePreference>]>,
193     lib_features: Lazy<[(Symbol, Option<Symbol>)]>,
194     lang_items: Lazy<[(DefIndex, usize)]>,
195     lang_items_missing: Lazy<[lang_items::LangItem]>,
196     diagnostic_items: Lazy<[(Symbol, DefIndex)]>,
197     native_libraries: Lazy<[NativeLib]>,
198     foreign_modules: Lazy<[ForeignModule]>,
199     impls: Lazy<[TraitImpls]>,
200     interpret_alloc_index: Lazy<[u32]>,
201
202     tables: LazyTables<'tcx>,
203
204     /// The DefIndex's of any proc macros declared by this crate.
205     proc_macro_data: Option<Lazy<[DefIndex]>>,
206
207     exported_symbols: Lazy!([(ExportedSymbol<'tcx>, SymbolExportLevel)]),
208
209     syntax_contexts: SyntaxContextTable,
210     expn_data: ExpnDataTable,
211
212     source_map: Lazy<[rustc_span::SourceFile]>,
213
214     compiler_builtins: bool,
215     needs_allocator: bool,
216     needs_panic_runtime: bool,
217     no_builtins: bool,
218     panic_runtime: bool,
219     profiler_runtime: bool,
220     symbol_mangling_version: SymbolManglingVersion,
221 }
222
223 #[derive(Encodable, Decodable)]
224 crate struct CrateDep {
225     pub name: Symbol,
226     pub hash: Svh,
227     pub host_hash: Option<Svh>,
228     pub kind: CrateDepKind,
229     pub extra_filename: String,
230 }
231
232 #[derive(MetadataEncodable, MetadataDecodable)]
233 crate struct TraitImpls {
234     trait_id: (u32, DefIndex),
235     impls: Lazy<[(DefIndex, Option<ty::fast_reject::SimplifiedType>)]>,
236 }
237
238 /// Define `LazyTables` and `TableBuilders` at the same time.
239 macro_rules! define_tables {
240     ($($name:ident: Table<DefIndex, $T:ty>),+ $(,)?) => {
241         #[derive(MetadataEncodable, MetadataDecodable)]
242         crate struct LazyTables<'tcx> {
243             $($name: Lazy!(Table<DefIndex, $T>)),+
244         }
245
246         #[derive(Default)]
247         struct TableBuilders<'tcx> {
248             $($name: TableBuilder<DefIndex, $T>),+
249         }
250
251         impl TableBuilders<'tcx> {
252             fn encode(&self, buf: &mut Encoder) -> LazyTables<'tcx> {
253                 LazyTables {
254                     $($name: self.$name.encode(buf)),+
255                 }
256             }
257         }
258     }
259 }
260
261 define_tables! {
262     kind: Table<DefIndex, Lazy<EntryKind>>,
263     visibility: Table<DefIndex, Lazy<ty::Visibility>>,
264     span: Table<DefIndex, Lazy<Span>>,
265     ident_span: Table<DefIndex, Lazy<Span>>,
266     attributes: Table<DefIndex, Lazy<[ast::Attribute]>>,
267     children: Table<DefIndex, Lazy<[DefIndex]>>,
268     stability: Table<DefIndex, Lazy<attr::Stability>>,
269     const_stability: Table<DefIndex, Lazy<attr::ConstStability>>,
270     deprecation: Table<DefIndex, Lazy<attr::Deprecation>>,
271     ty: Table<DefIndex, Lazy!(Ty<'tcx>)>,
272     fn_sig: Table<DefIndex, Lazy!(ty::PolyFnSig<'tcx>)>,
273     impl_trait_ref: Table<DefIndex, Lazy!(ty::TraitRef<'tcx>)>,
274     inherent_impls: Table<DefIndex, Lazy<[DefIndex]>>,
275     variances: Table<DefIndex, Lazy<[ty::Variance]>>,
276     generics: Table<DefIndex, Lazy<ty::Generics>>,
277     explicit_predicates: Table<DefIndex, Lazy!(ty::GenericPredicates<'tcx>)>,
278     // FIXME(eddyb) this would ideally be `Lazy<[...]>` but `ty::Predicate`
279     // doesn't handle shorthands in its own (de)serialization impls,
280     // as it's an `enum` for which we want to derive (de)serialization,
281     // so the `ty::codec` APIs handle the whole `&'tcx [...]` at once.
282     // Also, as an optimization, a missing entry indicates an empty `&[]`.
283     inferred_outlives: Table<DefIndex, Lazy!(&'tcx [(ty::Predicate<'tcx>, Span)])>,
284     super_predicates: Table<DefIndex, Lazy!(ty::GenericPredicates<'tcx>)>,
285     mir: Table<DefIndex, Lazy!(mir::Body<'tcx>)>,
286     promoted_mir: Table<DefIndex, Lazy!(IndexVec<mir::Promoted, mir::Body<'tcx>>)>,
287     mir_abstract_consts: Table<DefIndex, Lazy!(&'tcx [mir::abstract_const::Node<'tcx>])>,
288     unused_generic_params: Table<DefIndex, Lazy<FiniteBitSet<u32>>>,
289     // `def_keys` and `def_path_hashes` represent a lazy version of a
290     // `DefPathTable`. This allows us to avoid deserializing an entire
291     // `DefPathTable` up front, since we may only ever use a few
292     // definitions from any given crate.
293     def_keys: Table<DefIndex, Lazy<DefKey>>,
294     def_path_hashes: Table<DefIndex, Lazy<DefPathHash>>
295 }
296
297 #[derive(Copy, Clone, MetadataEncodable, MetadataDecodable)]
298 enum EntryKind {
299     AnonConst(mir::ConstQualifs, Lazy<RenderedConst>),
300     Const(mir::ConstQualifs, Lazy<RenderedConst>),
301     ImmStatic,
302     MutStatic,
303     ForeignImmStatic,
304     ForeignMutStatic,
305     ForeignMod,
306     ForeignType,
307     GlobalAsm,
308     Type,
309     TypeParam,
310     ConstParam,
311     OpaqueTy,
312     Enum(ReprOptions),
313     Field,
314     Variant(Lazy<VariantData>),
315     Struct(Lazy<VariantData>, ReprOptions),
316     Union(Lazy<VariantData>, ReprOptions),
317     Fn(Lazy<FnData>),
318     ForeignFn(Lazy<FnData>),
319     Mod(Lazy<ModData>),
320     MacroDef(Lazy<MacroDef>),
321     Closure,
322     Generator(hir::GeneratorKind),
323     Trait(Lazy<TraitData>),
324     Impl(Lazy<ImplData>),
325     AssocFn(Lazy<AssocFnData>),
326     AssocType(AssocContainer),
327     AssocConst(AssocContainer, mir::ConstQualifs, Lazy<RenderedConst>),
328     TraitAlias,
329 }
330
331 /// Contains a constant which has been rendered to a String.
332 /// Used by rustdoc.
333 #[derive(Encodable, Decodable)]
334 struct RenderedConst(String);
335
336 #[derive(MetadataEncodable, MetadataDecodable)]
337 struct ModData {
338     reexports: Lazy<[Export<hir::HirId>]>,
339     expansion: ExpnId,
340 }
341
342 #[derive(MetadataEncodable, MetadataDecodable)]
343 struct FnData {
344     asyncness: hir::IsAsync,
345     constness: hir::Constness,
346     param_names: Lazy<[Ident]>,
347 }
348
349 #[derive(TyEncodable, TyDecodable)]
350 struct VariantData {
351     ctor_kind: CtorKind,
352     discr: ty::VariantDiscr,
353     /// If this is unit or tuple-variant/struct, then this is the index of the ctor id.
354     ctor: Option<DefIndex>,
355     is_non_exhaustive: bool,
356 }
357
358 #[derive(TyEncodable, TyDecodable)]
359 struct TraitData {
360     unsafety: hir::Unsafety,
361     paren_sugar: bool,
362     has_auto_impl: bool,
363     is_marker: bool,
364     specialization_kind: ty::trait_def::TraitSpecializationKind,
365 }
366
367 #[derive(TyEncodable, TyDecodable)]
368 struct ImplData {
369     polarity: ty::ImplPolarity,
370     defaultness: hir::Defaultness,
371     parent_impl: Option<DefId>,
372
373     /// This is `Some` only for impls of `CoerceUnsized`.
374     // FIXME(eddyb) perhaps compute this on the fly if cheap enough?
375     coerce_unsized_info: Option<ty::adjustment::CoerceUnsizedInfo>,
376 }
377
378 /// Describes whether the container of an associated item
379 /// is a trait or an impl and whether, in a trait, it has
380 /// a default, or an in impl, whether it's marked "default".
381 #[derive(Copy, Clone, TyEncodable, TyDecodable)]
382 enum AssocContainer {
383     TraitRequired,
384     TraitWithDefault,
385     ImplDefault,
386     ImplFinal,
387 }
388
389 impl AssocContainer {
390     fn with_def_id(&self, def_id: DefId) -> ty::AssocItemContainer {
391         match *self {
392             AssocContainer::TraitRequired | AssocContainer::TraitWithDefault => {
393                 ty::TraitContainer(def_id)
394             }
395
396             AssocContainer::ImplDefault | AssocContainer::ImplFinal => ty::ImplContainer(def_id),
397         }
398     }
399
400     fn defaultness(&self) -> hir::Defaultness {
401         match *self {
402             AssocContainer::TraitRequired => hir::Defaultness::Default { has_value: false },
403
404             AssocContainer::TraitWithDefault | AssocContainer::ImplDefault => {
405                 hir::Defaultness::Default { has_value: true }
406             }
407
408             AssocContainer::ImplFinal => hir::Defaultness::Final,
409         }
410     }
411 }
412
413 #[derive(MetadataEncodable, MetadataDecodable)]
414 struct AssocFnData {
415     fn_data: FnData,
416     container: AssocContainer,
417     has_self: bool,
418 }
419
420 #[derive(TyEncodable, TyDecodable)]
421 struct GeneratorData<'tcx> {
422     layout: mir::GeneratorLayout<'tcx>,
423 }
424
425 // Tags used for encoding Spans:
426 const TAG_VALID_SPAN_LOCAL: u8 = 0;
427 const TAG_VALID_SPAN_FOREIGN: u8 = 1;
428 const TAG_INVALID_SPAN: u8 = 2;