Struct rustc_metadata::rmeta::CrateRoot [−][src]
pub(crate) struct CrateRoot<'tcx> {Show 36 fields
name: Symbol,
triple: TargetTriple,
extra_filename: String,
hash: Svh,
stable_crate_id: StableCrateId,
panic_strategy: PanicStrategy,
panic_in_drop_strategy: PanicStrategy,
edition: Edition,
has_global_allocator: bool,
has_panic_handler: bool,
has_default_lib_allocator: bool,
crate_deps: Lazy<[CrateDep]>,
dylib_dependency_formats: Lazy<[Option<LinkagePreference>]>,
lib_features: Lazy<[(Symbol, Option<Symbol>)]>,
lang_items: Lazy<[(DefIndex, usize)]>,
lang_items_missing: Lazy<[LangItem]>,
diagnostic_items: Lazy<[(Symbol, DefIndex)]>,
native_libraries: Lazy<[NativeLib]>,
foreign_modules: Lazy<[ForeignModule]>,
impls: Lazy<[TraitImpls]>,
interpret_alloc_index: Lazy<[u32]>,
proc_macro_data: Option<ProcMacroData>,
tables: LazyTables<'tcx>,
exported_symbols: Lazy<[(ExportedSymbol<'tcx>, SymbolExportLevel)], usize>,
syntax_contexts: Lazy<Table<u32, Lazy<SyntaxContextData>>>,
expn_data: Lazy<Table<ExpnIndex, Lazy<ExpnData>>>,
expn_hashes: Lazy<Table<ExpnIndex, Lazy<ExpnHash>>>,
def_path_hash_map: Lazy<DefPathHashMapRef<'tcx>>,
source_map: Lazy<[SourceFile]>,
compiler_builtins: bool,
needs_allocator: bool,
needs_panic_runtime: bool,
no_builtins: bool,
panic_runtime: bool,
profiler_runtime: bool,
symbol_mangling_version: SymbolManglingVersion,
}Expand description
Serialized metadata for a crate.
When compiling a proc-macro crate, we encode many of
the Lazy<[T]> fields as Lazy::empty(). This serves two purposes:
- We avoid performing unnecessary work. Proc-macro crates can only export proc-macros functions, which are compiled into a shared library. As a result, a large amount of the information we normally store (e.g. optimized MIR) is unneeded by downstream crates.
- We avoid serializing invalid
CrateNums. When we deserialize a proc-macro crate, we don’t load any of its dependencies (since we just need to invoke a native function from the shared library). This means that any foreignCrateNums that we serialize cannot be deserialized, since we will not know how to map them into the current compilation session. If we were to serialize a proc-macro crate like a normal crate, much of what we serialized would be unusable in addition to being unused.
Fields
name: Symboltriple: TargetTripleextra_filename: Stringhash: Svhstable_crate_id: StableCrateIdpanic_strategy: PanicStrategypanic_in_drop_strategy: PanicStrategyedition: Editionhas_global_allocator: boolhas_panic_handler: boolhas_default_lib_allocator: boolcrate_deps: Lazy<[CrateDep]>dylib_dependency_formats: Lazy<[Option<LinkagePreference>]>lib_features: Lazy<[(Symbol, Option<Symbol>)]>lang_items: Lazy<[(DefIndex, usize)]>lang_items_missing: Lazy<[LangItem]>diagnostic_items: Lazy<[(Symbol, DefIndex)]>native_libraries: Lazy<[NativeLib]>foreign_modules: Lazy<[ForeignModule]>impls: Lazy<[TraitImpls]>interpret_alloc_index: Lazy<[u32]>proc_macro_data: Option<ProcMacroData>tables: LazyTables<'tcx>exported_symbols: Lazy<[(ExportedSymbol<'tcx>, SymbolExportLevel)], usize>syntax_contexts: Lazy<Table<u32, Lazy<SyntaxContextData>>>expn_data: Lazy<Table<ExpnIndex, Lazy<ExpnData>>>expn_hashes: Lazy<Table<ExpnIndex, Lazy<ExpnHash>>>def_path_hash_map: Lazy<DefPathHashMapRef<'tcx>>source_map: Lazy<[SourceFile]>compiler_builtins: boolneeds_allocator: boolneeds_panic_runtime: boolno_builtins: boolpanic_runtime: boolprofiler_runtime: boolsymbol_mangling_version: SymbolManglingVersionImplementations
pub(crate) fn decode_crate_deps<'a>(
&self,
metadata: &'a MetadataBlob
) -> impl ExactSizeIterator<Item = CrateDep> + Captures<'a>
Trait Implementations
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for CrateRoot<'tcx>
impl<'tcx> !UnwindSafe for CrateRoot<'tcx>
Blanket Implementations
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 864 bytes