Struct rustc_metadata::rmeta::CrateRoot

source ·
pub(crate) struct CrateRoot {
Show 40 fields header: CrateHeader, extra_filename: String, stable_crate_id: StableCrateId, required_panic_strategy: Option<PanicStrategy>, panic_in_drop_strategy: PanicStrategy, edition: Edition, has_global_allocator: bool, has_alloc_error_handler: bool, has_panic_handler: bool, has_default_lib_allocator: bool, crate_deps: LazyArray<CrateDep>, dylib_dependency_formats: LazyArray<Option<LinkagePreference>>, lib_features: LazyArray<(Symbol, FeatureStability)>, stability_implications: LazyArray<(Symbol, Symbol)>, lang_items: LazyArray<(DefIndex, LangItem)>, lang_items_missing: LazyArray<LangItem>, stripped_cfg_items: LazyArray<StrippedCfgItem<DefIndex>>, diagnostic_items: LazyArray<(Symbol, DefIndex)>, native_libraries: LazyArray<NativeLib>, foreign_modules: LazyArray<ForeignModule>, traits: LazyArray<DefIndex>, impls: LazyArray<TraitImpls>, incoherent_impls: LazyArray<IncoherentImpls>, interpret_alloc_index: LazyArray<u64>, proc_macro_data: Option<ProcMacroData>, tables: LazyTables, debugger_visualizers: LazyArray<DebuggerVisualizerFile>, exported_symbols: LazyArray<(ExportedSymbol<'static>, SymbolExportInfo)>, syntax_contexts: LazyTable<u32, Option<LazyValue<SyntaxContextData>>>, expn_data: LazyTable<ExpnIndex, Option<LazyValue<ExpnData>>>, expn_hashes: LazyTable<ExpnIndex, Option<LazyValue<ExpnHash>>>, def_path_hash_map: LazyValue<DefPathHashMapRef<'static>>, source_map: LazyTable<u32, Option<LazyValue<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 .rmeta data for a crate.

When compiling a proc-macro crate, we encode many of the LazyArray<T> fields as Lazy::empty(). This serves two purposes:

  1. 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.
  2. 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 foreign CrateNums 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§

§header: CrateHeader

A header used to detect if this is the right crate to load.

§extra_filename: String§stable_crate_id: StableCrateId§required_panic_strategy: Option<PanicStrategy>§panic_in_drop_strategy: PanicStrategy§edition: Edition§has_global_allocator: bool§has_alloc_error_handler: bool§has_panic_handler: bool§has_default_lib_allocator: bool§crate_deps: LazyArray<CrateDep>§dylib_dependency_formats: LazyArray<Option<LinkagePreference>>§lib_features: LazyArray<(Symbol, FeatureStability)>§stability_implications: LazyArray<(Symbol, Symbol)>§lang_items: LazyArray<(DefIndex, LangItem)>§lang_items_missing: LazyArray<LangItem>§stripped_cfg_items: LazyArray<StrippedCfgItem<DefIndex>>§diagnostic_items: LazyArray<(Symbol, DefIndex)>§native_libraries: LazyArray<NativeLib>§foreign_modules: LazyArray<ForeignModule>§traits: LazyArray<DefIndex>§impls: LazyArray<TraitImpls>§incoherent_impls: LazyArray<IncoherentImpls>§interpret_alloc_index: LazyArray<u64>§proc_macro_data: Option<ProcMacroData>§tables: LazyTables§debugger_visualizers: LazyArray<DebuggerVisualizerFile>§exported_symbols: LazyArray<(ExportedSymbol<'static>, SymbolExportInfo)>§syntax_contexts: LazyTable<u32, Option<LazyValue<SyntaxContextData>>>§expn_data: LazyTable<ExpnIndex, Option<LazyValue<ExpnData>>>§expn_hashes: LazyTable<ExpnIndex, Option<LazyValue<ExpnHash>>>§def_path_hash_map: LazyValue<DefPathHashMapRef<'static>>§source_map: LazyTable<u32, Option<LazyValue<SourceFile>>>§compiler_builtins: bool§needs_allocator: bool§needs_panic_runtime: bool§no_builtins: bool§panic_runtime: bool§profiler_runtime: bool§symbol_mangling_version: SymbolManglingVersion

Implementations§

source§

impl CrateRoot

source

pub(crate) fn is_proc_macro_crate(&self) -> bool

source

pub(crate) fn name(&self) -> Symbol

source

pub(crate) fn hash(&self) -> Svh

source

pub(crate) fn stable_crate_id(&self) -> StableCrateId

source

pub(crate) fn decode_crate_deps<'a>( &self, metadata: &'a MetadataBlob ) -> impl ExactSizeIterator<Item = CrateDep> + Captures<'a>

Trait Implementations§

source§

impl<'tcx, '__a> Decodable<DecodeContext<'__a, 'tcx>> for CrateRoot

source§

fn decode(__decoder: &mut DecodeContext<'__a, 'tcx>) -> Self

source§

impl<'tcx, '__a> Encodable<EncodeContext<'__a, 'tcx>> for CrateRoot

source§

fn encode(&self, __encoder: &mut EncodeContext<'__a, 'tcx>)

source§

impl ParameterizedOverTcx for CrateRoot

§

type Value<'tcx> = CrateRoot

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<P> IntoQueryParam<P> for P

source§

impl<T> MaybeResult<T> for T

§

type Error = !

source§

fn from(_: Result<T, <T as MaybeResult<T>>::Error>) -> T

source§

fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<'tcx, T> ToPredicate<'tcx, T> for T

source§

fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<Tcx, T> Value<Tcx> for T
where Tcx: DepContext,

source§

default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed ) -> T

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T
where T: Send + Sync,

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: 2224 bytes