Struct rustc_middle::ty::GlobalCtxt
source · [−]pub struct GlobalCtxt<'tcx> {Show 27 fields
pub arena: &'tcx WorkerLocal<Arena<'tcx>>,
pub hir_arena: &'tcx WorkerLocal<Arena<'tcx>>,
interners: CtxtInterners<'tcx>,
pub sess: &'tcx Session,
pub lint_store: Lrc<dyn Any + Sync + Send>,
pub dep_graph: DepGraph,
pub prof: SelfProfilerRef,
pub types: CommonTypes<'tcx>,
pub lifetimes: CommonLifetimes<'tcx>,
pub consts: CommonConsts<'tcx>,
definitions: RwLock<Definitions>,
cstore: Box<CrateStoreDyn>,
pub(crate) untracked_resolutions: ResolverOutputs,
untracked_resolver_for_lowering: Steal<ResolverAstLowering>,
pub untracked_crate: Steal<Lrc<Crate>>,
pub on_disk_cache: Option<&'tcx dyn OnDiskCache<'tcx>>,
pub queries: &'tcx dyn QueryEngine<'tcx>,
pub query_caches: QueryCaches<'tcx>,
query_kinds: &'tcx [DepKindStruct<'tcx>],
pub ty_rcache: Lock<FxHashMap<CReaderCacheKey, Ty<'tcx>>>,
pub pred_rcache: Lock<FxHashMap<CReaderCacheKey, Predicate<'tcx>>>,
pub selection_cache: SelectionCache<'tcx>,
pub evaluation_cache: EvaluationCache<'tcx>,
crate_name: Symbol,
pub data_layout: TargetDataLayout,
pub(crate) alloc_map: Lock<AllocMap<'tcx>>,
output_filenames: Arc<OutputFilenames>,
}Fields
arena: &'tcx WorkerLocal<Arena<'tcx>>hir_arena: &'tcx WorkerLocal<Arena<'tcx>>interners: CtxtInterners<'tcx>sess: &'tcx Sessionlint_store: Lrc<dyn Any + Sync + Send>This only ever stores a LintStore but we don’t want a dependency on that type here.
FIXME(Centril): consider dyn LintStoreMarker once
we can upcast to Any for some additional type safety.
dep_graph: DepGraphprof: SelfProfilerReftypes: CommonTypes<'tcx>Common types, pre-interned for your convenience.
lifetimes: CommonLifetimes<'tcx>Common lifetimes, pre-interned for your convenience.
consts: CommonConsts<'tcx>Common consts, pre-interned for your convenience.
definitions: RwLock<Definitions>cstore: Box<CrateStoreDyn>untracked_resolutions: ResolverOutputsOutput of the resolver.
untracked_resolver_for_lowering: Steal<ResolverAstLowering>untracked_crate: Steal<Lrc<Crate>>The entire crate as AST. This field serves as the input for the hir_crate query, which lowers it from AST to HIR. It must not be read or used by anything else.
on_disk_cache: Option<&'tcx dyn OnDiskCache<'tcx>>This provides access to the incremental compilation on-disk cache for query results.
Do not access this directly. It is only meant to be used by
DepGraph::try_mark_green() and the query infrastructure.
This is None if we are not incremental compilation mode
queries: &'tcx dyn QueryEngine<'tcx>query_caches: QueryCaches<'tcx>query_kinds: &'tcx [DepKindStruct<'tcx>]ty_rcache: Lock<FxHashMap<CReaderCacheKey, Ty<'tcx>>>pred_rcache: Lock<FxHashMap<CReaderCacheKey, Predicate<'tcx>>>selection_cache: SelectionCache<'tcx>Caches the results of trait selection. This cache is used for things that do not have to do with the parameters in scope.
evaluation_cache: EvaluationCache<'tcx>Caches the results of trait evaluation. This cache is used
for things that do not have to do with the parameters in scope.
Merge this with selection_cache?
crate_name: SymbolThe definite name of the current crate after taking into account attributes, commandline parameters, etc.
data_layout: TargetDataLayoutData layout specification for the current target.
alloc_map: Lock<AllocMap<'tcx>>Stores memory for globals (statics/consts).
output_filenames: Arc<OutputFilenames>Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for GlobalCtxt<'tcx>
impl<'tcx> !Send for GlobalCtxt<'tcx>
impl<'tcx> !Sync for GlobalCtxt<'tcx>
impl<'tcx> Unpin for GlobalCtxt<'tcx>
impl<'tcx> !UnwindSafe for GlobalCtxt<'tcx>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<T, R> InternIteratorElement<T, R> for T
impl<T, R> InternIteratorElement<T, R> for T
type Output = R
fn intern_with<I, F>(iter: I, f: F) -> <T as InternIteratorElement<T, R>>::Outputwhere
I: Iterator<Item = T>,
F: FnOnce(&[T]) -> R,
sourceimpl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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: 15904 bytes