pub struct CStore {
    metadata_loader: Box<MetadataLoaderDyn>,
    metas: IndexVec<CrateNum, Option<Box<CrateMetadata>>>,
    injected_panic_runtime: Option<CrateNum>,
    allocator_kind: Option<AllocatorKind>,
    alloc_error_handler_kind: Option<AllocatorKind>,
    has_global_allocator: bool,
    has_alloc_error_handler: bool,
    pub(crate) stable_crate_ids: StableCrateIdMap,
    unused_externs: Vec<Symbol>,
}

Fields§

§metadata_loader: Box<MetadataLoaderDyn>§metas: IndexVec<CrateNum, Option<Box<CrateMetadata>>>§injected_panic_runtime: Option<CrateNum>§allocator_kind: Option<AllocatorKind>

This crate needs an allocator and either provides it itself, or finds it in a dependency. If the above is true, then this field denotes the kind of the found allocator.

§alloc_error_handler_kind: Option<AllocatorKind>

This crate needs an allocation error handler and either provides it itself, or finds it in a dependency. If the above is true, then this field denotes the kind of the found allocator.

§has_global_allocator: bool

This crate has a #[global_allocator] item.

§has_alloc_error_handler: bool

This crate has a #[alloc_error_handler] item.

§stable_crate_ids: StableCrateIdMap

The interned StableCrateIds.

§unused_externs: Vec<Symbol>

Unused externs of the crate

Implementations§

source§

impl CStore

source

pub fn ctor_untracked(&self, def: DefId) -> Option<(CtorKind, DefId)>

source

pub fn load_macro_untracked(&self, id: DefId, tcx: TyCtxt<'_>) -> LoadedMacro

source

pub fn def_span_untracked(&self, def_id: DefId, sess: &Session) -> Span

source

pub fn def_kind_untracked(&self, def: DefId) -> DefKind

source

pub fn expn_that_defined_untracked( &self, def_id: DefId, sess: &Session ) -> ExpnId

source

pub fn num_def_ids_untracked(&self, cnum: CrateNum) -> usize

Only public-facing way to traverse all the definitions in a non-local crate. Critically useful for this third-party project: https://github.com/hacspec/hacspec. See https://github.com/rust-lang/rust/pull/85889 for context.

source

pub fn get_proc_macro_quoted_span_untracked( &self, cnum: CrateNum, id: usize, sess: &Session ) -> Span

source

pub(crate) fn update_extern_crate( &mut self, cnum: CrateNum, extern_crate: ExternCrate )

source§

impl CStore

source

pub fn from_tcx(tcx: TyCtxt<'_>) -> FreezeReadGuard<'_, CStore>

source

pub fn from_tcx_mut(tcx: TyCtxt<'_>) -> FreezeWriteGuard<'_, CStore>

source

fn intern_stable_crate_id( &mut self, root: &CrateRoot ) -> Result<CrateNum, CrateError>

source

pub fn has_crate_data(&self, cnum: CrateNum) -> bool

source

pub(crate) fn get_crate_data(&self, cnum: CrateNum) -> CrateMetadataRef<'_>

source

pub(crate) fn get_crate_data_mut( &mut self, cnum: CrateNum ) -> &mut CrateMetadata

source

fn set_crate_data(&mut self, cnum: CrateNum, data: CrateMetadata)

source

pub(crate) fn iter_crate_data( &self ) -> impl Iterator<Item = (CrateNum, &CrateMetadata)>

source

fn iter_crate_data_mut( &mut self ) -> impl Iterator<Item = (CrateNum, &mut CrateMetadata)>

source

fn push_dependencies_in_postorder( &self, deps: &mut Vec<CrateNum>, cnum: CrateNum )

source

pub(crate) fn crate_dependencies_in_postorder( &self, cnum: CrateNum ) -> Vec<CrateNum>

source

fn crate_dependencies_in_reverse_postorder( &self, cnum: CrateNum ) -> Vec<CrateNum>

source

pub(crate) fn injected_panic_runtime(&self) -> Option<CrateNum>

source

pub(crate) fn allocator_kind(&self) -> Option<AllocatorKind>

source

pub(crate) fn alloc_error_handler_kind(&self) -> Option<AllocatorKind>

source

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

source

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

source

pub fn report_unused_deps(&self, tcx: TyCtxt<'_>)

source

pub fn new( metadata_loader: Box<MetadataLoaderDyn>, local_stable_crate_id: StableCrateId ) -> CStore

Trait Implementations§

source§

impl CrateStore for CStore

source§

fn def_key(&self, def: DefId) -> DefKey

Returns the DefKey for a given DefId. This indicates the parent DefId as well as some idea of what kind of data the DefId refers to.

source§

fn as_any(&self) -> &dyn Any

source§

fn untracked_as_any(&mut self) -> &mut dyn Any

source§

fn crate_name(&self, cnum: CrateNum) -> Symbol

source§

fn stable_crate_id(&self, cnum: CrateNum) -> StableCrateId

source§

fn stable_crate_id_to_crate_num( &self, stable_crate_id: StableCrateId ) -> CrateNum

source§

fn def_path(&self, def: DefId) -> DefPath

source§

fn def_path_hash(&self, def: DefId) -> DefPathHash

source§

fn def_path_hash_to_def_id(&self, cnum: CrateNum, hash: DefPathHash) -> DefId

Fetch a DefId from a DefPathHash for a foreign crate.
source§

fn expn_hash_to_expn_id( &self, sess: &Session, cnum: CrateNum, index_guess: u32, hash: ExpnHash ) -> ExpnId

source§

fn import_source_files(&self, sess: &Session, cnum: CrateNum)

Imports all SourceFiles from the given crate into the current session. This normally happens automatically when we decode a Span from that crate’s metadata - however, the incr comp cache needs to trigger this manually when decoding a foreign Span
source§

impl Debug for CStore

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for CStore

§

impl !Send for CStore

§

impl !Sync for CStore

§

impl Unpin for CStore

§

impl !UnwindSafe for CStore

Blanket Implementations§

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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<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.

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