pub struct Tables<'tcx> {
pub(crate) tcx: TyCtxt<'tcx>,
pub(crate) def_ids: IndexMap<DefId, DefId>,
pub(crate) alloc_ids: IndexMap<AllocId, AllocId>,
pub(crate) spans: IndexMap<Span, Span>,
pub(crate) types: IndexMap<Ty<'tcx>, Ty>,
pub(crate) instances: IndexMap<Instance<'tcx>, InstanceDef>,
pub(crate) ty_consts: IndexMap<Const<'tcx>, TyConstId>,
pub(crate) mir_consts: IndexMap<Const<'tcx>, MirConstId>,
pub(crate) layouts: IndexMap<Layout<'tcx>, Layout>,
}
Fields§
§tcx: TyCtxt<'tcx>
§def_ids: IndexMap<DefId, DefId>
§alloc_ids: IndexMap<AllocId, AllocId>
§spans: IndexMap<Span, Span>
§types: IndexMap<Ty<'tcx>, Ty>
§instances: IndexMap<Instance<'tcx>, InstanceDef>
§ty_consts: IndexMap<Const<'tcx>, TyConstId>
§mir_consts: IndexMap<Const<'tcx>, MirConstId>
§layouts: IndexMap<Layout<'tcx>, Layout>
Implementations§
Source§impl<'tcx> Tables<'tcx>
impl<'tcx> Tables<'tcx>
pub fn crate_item(&mut self, did: DefId) -> CrateItem
pub fn adt_def(&mut self, did: DefId) -> AdtDef
pub fn foreign_module_def(&mut self, did: DefId) -> ForeignModuleDef
pub fn foreign_def(&mut self, did: DefId) -> ForeignDef
pub fn fn_def(&mut self, did: DefId) -> FnDef
pub fn closure_def(&mut self, did: DefId) -> ClosureDef
pub fn coroutine_def(&mut self, did: DefId) -> CoroutineDef
pub fn alias_def(&mut self, did: DefId) -> AliasDef
pub fn param_def(&mut self, did: DefId) -> ParamDef
pub fn br_named_def(&mut self, did: DefId) -> BrNamedDef
pub fn trait_def(&mut self, did: DefId) -> TraitDef
pub fn generic_def(&mut self, did: DefId) -> GenericDef
pub fn const_def(&mut self, did: DefId) -> ConstDef
pub fn impl_def(&mut self, did: DefId) -> ImplDef
pub fn region_def(&mut self, did: DefId) -> RegionDef
pub fn coroutine_witness_def(&mut self, did: DefId) -> CoroutineWitnessDef
pub fn prov(&mut self, aid: AllocId) -> Prov
pub(crate) fn create_def_id(&mut self, did: DefId) -> DefId
pub(crate) fn create_alloc_id(&mut self, aid: AllocId) -> AllocId
pub(crate) fn create_span(&mut self, span: Span) -> Span
pub(crate) fn instance_def(&mut self, instance: Instance<'tcx>) -> InstanceDef
pub(crate) fn static_def(&mut self, did: DefId) -> StaticDef
pub(crate) fn layout_id(&mut self, layout: Layout<'tcx>) -> Layout
Source§impl<'tcx> Tables<'tcx>
impl<'tcx> Tables<'tcx>
pub(crate) fn intern_ty(&mut self, ty: Ty<'tcx>) -> Ty
pub(crate) fn intern_ty_const(&mut self, ct: Const<'tcx>) -> TyConstId
pub(crate) fn intern_mir_const(&mut self, constant: Const<'tcx>) -> MirConstId
Sourcepub(crate) fn instance_has_body(&self, instance: Instance<'tcx>) -> bool
pub(crate) fn instance_has_body(&self, instance: Instance<'tcx>) -> bool
Return whether the instance as a body available.
Items and intrinsics may have a body available from its definition. Shims body may be generated depending on their type.
Sourcepub(crate) fn item_has_body(&self, def_id: DefId) -> bool
pub(crate) fn item_has_body(&self, def_id: DefId) -> bool
Return whether the item has a body defined by the user.
Note that intrinsics may have a placeholder body that shouldn’t be used in practice. In StableMIR, we handle this case as if the body is not available.
Trait Implementations§
Source§impl<'tcx> FnAbiOfHelpers<'tcx> for Tables<'tcx>
impl<'tcx> FnAbiOfHelpers<'tcx> for Tables<'tcx>
Implement error handling for extracting function ABI information.
Source§type FnAbiOfResult = Result<&'tcx FnAbi<'tcx, Ty<'tcx>>, Error>
type FnAbiOfResult = Result<&'tcx FnAbi<'tcx, Ty<'tcx>>, Error>
The
&FnAbi
-wrapping type (or &FnAbi
itself), which will be
returned from fn_abi_of_*
(see also handle_fn_abi_err
).Source§fn handle_fn_abi_err(
&self,
err: FnAbiError<'tcx>,
_span: Span,
fn_abi_request: FnAbiRequest<'tcx>,
) -> Error
fn handle_fn_abi_err( &self, err: FnAbiError<'tcx>, _span: Span, fn_abi_request: FnAbiRequest<'tcx>, ) -> Error
Helper used for
fn_abi_of_*
, to adapt tcx.fn_abi_of_*(...)
into a
Self::FnAbiOfResult
(which does not need to be a Result<...>
). Read moreSource§impl<'tcx> LayoutOfHelpers<'tcx> for Tables<'tcx>
impl<'tcx> LayoutOfHelpers<'tcx> for Tables<'tcx>
Source§type LayoutOfResult = Result<TyAndLayout<'tcx, Ty<'tcx>>, Error>
type LayoutOfResult = Result<TyAndLayout<'tcx, Ty<'tcx>>, Error>
The
TyAndLayout
-wrapping type (or TyAndLayout
itself), which will be
returned from layout_of
(see also handle_layout_err
).Source§fn handle_layout_err(
&self,
err: LayoutError<'tcx>,
_span: Span,
ty: Ty<'tcx>,
) -> Error
fn handle_layout_err( &self, err: LayoutError<'tcx>, _span: Span, ty: Ty<'tcx>, ) -> Error
Helper used for
layout_of
, to adapt tcx.layout_of(...)
into a
Self::LayoutOfResult
(which does not need to be a Result<...>
). Read moreSource§fn layout_tcx_at_span(&self) -> Span
fn layout_tcx_at_span(&self) -> Span
Span
to use for tcx.at(span)
, from layout_of
.Auto Trait Implementations§
impl<'tcx> DynSend for Tables<'tcx>
impl<'tcx> DynSync for Tables<'tcx>
impl<'tcx> Freeze for Tables<'tcx>
impl<'tcx> !RefUnwindSafe for Tables<'tcx>
impl<'tcx> !Send for Tables<'tcx>
impl<'tcx> !Sync for Tables<'tcx>
impl<'tcx> Unpin for Tables<'tcx>
impl<'tcx> !UnwindSafe for Tables<'tcx>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
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<'tcx, C> FnAbiOf<'tcx> for Cwhere
C: FnAbiOfHelpers<'tcx>,
impl<'tcx, C> FnAbiOf<'tcx> for Cwhere
C: FnAbiOfHelpers<'tcx>,
Source§fn fn_abi_of_fn_ptr(
&self,
sig: Binder<TyCtxt<'tcx>, FnSig<TyCtxt<'tcx>>>,
extra_args: &'tcx RawList<(), Ty<'tcx>>,
) -> Self::FnAbiOfResult
fn fn_abi_of_fn_ptr( &self, sig: Binder<TyCtxt<'tcx>, FnSig<TyCtxt<'tcx>>>, extra_args: &'tcx RawList<(), Ty<'tcx>>, ) -> Self::FnAbiOfResult
Source§fn fn_abi_of_instance(
&self,
instance: Instance<'tcx>,
extra_args: &'tcx RawList<(), Ty<'tcx>>,
) -> Self::FnAbiOfResult
fn fn_abi_of_instance( &self, instance: Instance<'tcx>, extra_args: &'tcx RawList<(), Ty<'tcx>>, ) -> Self::FnAbiOfResult
Compute a
FnAbi
suitable for declaring/defining an fn
instance, and for
direct calls to an fn
. Read moreSource§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
Source§impl<'tcx, C> LayoutOf<'tcx> for Cwhere
C: LayoutOfHelpers<'tcx>,
impl<'tcx, C> LayoutOf<'tcx> for Cwhere
C: LayoutOfHelpers<'tcx>,
Source§fn layout_of(&self, ty: Ty<'tcx>) -> Self::LayoutOfResult
fn layout_of(&self, ty: Ty<'tcx>) -> Self::LayoutOfResult
Computes the layout of a type. Note that this implicitly
executes in “reveal all” mode, and will normalize the input type.
Source§fn spanned_layout_of(&self, ty: Ty<'tcx>, span: Span) -> Self::LayoutOfResult
fn spanned_layout_of(&self, ty: Ty<'tcx>, span: Span) -> Self::LayoutOfResult
Computes the layout of a type, at
span
. Note that this implicitly
executes in “reveal all” mode, and will normalize the input type.Source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PointerArithmetic for Twhere
T: HasDataLayout,
impl<T> PointerArithmetic for Twhere
T: HasDataLayout,
fn pointer_size(&self) -> Size
fn max_size_of_val(&self) -> Size
fn target_usize_max(&self) -> u64
fn target_isize_min(&self) -> i64
fn target_isize_max(&self) -> i64
fn truncate_to_target_usize(&self, val: u64) -> u64
fn sign_extend_to_target_isize(&self, val: u64) -> i64
§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> ErasedDestructor for Twhere
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: 456 bytes