Struct rustc_metadata::creader::CStore

source ·
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 fn set_used_recursively(&mut self, cnum: CrateNum)

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§

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 DynSend for CStore

§

impl DynSync for CStore

§

impl Freeze for CStore

§

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

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