Struct rustc_smir::rustc_smir::Tables
source · 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) constants: IndexMap<Const<'tcx>, ConstId>,
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>§constants: IndexMap<Const<'tcx>, ConstId>§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_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
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.
§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> HasDataLayout for Tables<'tcx>
impl<'tcx> HasDataLayout for Tables<'tcx>
fn data_layout(&self) -> &TargetDataLayout
source§impl<'tcx> LayoutOfHelpers<'tcx> for Tables<'tcx>
impl<'tcx> LayoutOfHelpers<'tcx> for Tables<'tcx>
§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> !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
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: 400 bytes