Struct rustc_middle::ty::WithOptConstParam
source · Expand description
A DefId
which, in case it is a const argument, is potentially bundled with
the DefId
of the generic parameter it instantiates.
This is used to avoid calls to type_of
for const arguments during typeck
which cause cycle errors.
struct A;
impl A {
fn foo<const N: usize>(&self) -> [u8; N] { [0; N] }
// ^ const parameter
}
struct B;
impl B {
fn foo<const M: u8>(&self) -> usize { 42 }
// ^ const parameter
}
fn main() {
let a = A;
let _b = a.foo::<{ 3 + 7 }>();
// ^^^^^^^^^ const argument
}
Let’s look at the call a.foo::<{ 3 + 7 }>()
here. We do not know
which foo
is used until we know the type of a
.
We only know the type of a
once we are inside of typeck(main)
.
We also end up normalizing the type of _b
during typeck(main)
which
requires us to evaluate the const argument.
To evaluate that const argument we need to know its type,
which we would get using type_of(const_arg)
. This requires us to
resolve foo
as it can be either usize
or u8
in this example.
However, resolving foo
once again requires typeck(main)
to get the type of a
,
which results in a cycle.
In short we must not call type_of(const_arg)
during typeck(main)
.
When first creating the ty::Const
of the const argument inside of typeck
we have
already resolved foo
so we know which const parameter this argument instantiates.
This means that we also know the expected result of type_of(const_arg)
even if we
aren’t allowed to call that query: it is equal to type_of(const_param)
which is
trivial to compute.
If we now want to use that constant in a place which potentially needs its type
we also pass the type of its const_param
. This is the point of WithOptConstParam
,
except that instead of a Ty
we bundle the DefId
of the const parameter.
Meaning that we need to use type_of(const_param_did)
if const_param_did
is Some
to get the type of did
.
Fields§
§did: T
§const_param_did: Option<DefId>
The DefId
of the corresponding generic parameter in case did
is
a const argument.
Note that even if did
is a const argument, this may still be None
.
All queries taking WithOptConstParam
start by calling tcx.opt_const_param_of(def.did)
to potentially update param_did
in the case it is None
.
Implementations§
source§impl<T> WithOptConstParam<T>
impl<T> WithOptConstParam<T>
sourcepub fn unknown(did: T) -> WithOptConstParam<T>
pub fn unknown(did: T) -> WithOptConstParam<T>
Creates a new WithOptConstParam
setting const_param_did
to None
.
source§impl WithOptConstParam<LocalDefId>
impl WithOptConstParam<LocalDefId>
sourcepub fn try_lookup(
did: LocalDefId,
tcx: TyCtxt<'_>
) -> Option<(LocalDefId, DefId)>
pub fn try_lookup(
did: LocalDefId,
tcx: TyCtxt<'_>
) -> Option<(LocalDefId, DefId)>
Returns Some((did, param_did))
if def_id
is a const argument,
None
otherwise.
sourcepub fn try_upgrade(
self,
tcx: TyCtxt<'_>
) -> Option<WithOptConstParam<LocalDefId>>
pub fn try_upgrade(
self,
tcx: TyCtxt<'_>
) -> Option<WithOptConstParam<LocalDefId>>
In case self
is unknown but self.did
is a const argument, this returns
a WithOptConstParam
with the correct const_param_did
.
pub fn to_global(self) -> WithOptConstParam<DefId>
pub fn def_id_for_type_of(self) -> DefId
source§impl WithOptConstParam<DefId>
impl WithOptConstParam<DefId>
pub fn as_local(self) -> Option<WithOptConstParam<LocalDefId>>
pub fn as_const_arg(self) -> Option<(LocalDefId, DefId)>
pub fn is_local(self) -> bool
pub fn def_id_for_type_of(self) -> DefId
Trait Implementations§
source§impl<T: Clone> Clone for WithOptConstParam<T>
impl<T: Clone> Clone for WithOptConstParam<T>
source§fn clone(&self) -> WithOptConstParam<T>
fn clone(&self) -> WithOptConstParam<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<T: Debug> Debug for WithOptConstParam<T>
impl<T: Debug> Debug for WithOptConstParam<T>
source§impl<'tcx, T, __D: TyDecoder<I = TyCtxt<'tcx>>> Decodable<__D> for WithOptConstParam<T>where
T: Decodable<__D>,
impl<'tcx, T, __D: TyDecoder<I = TyCtxt<'tcx>>> Decodable<__D> for WithOptConstParam<T>where
T: Decodable<__D>,
source§impl<'tcx, T, __E: TyEncoder<I = TyCtxt<'tcx>>> Encodable<__E> for WithOptConstParam<T>where
T: Encodable<__E>,
impl<'tcx, T, __E: TyEncoder<I = TyCtxt<'tcx>>> Encodable<__E> for WithOptConstParam<T>where
T: Encodable<__E>,
source§impl<T: Hash> Hash for WithOptConstParam<T>
impl<T: Hash> Hash for WithOptConstParam<T>
source§impl<'__ctx, T> HashStable<StableHashingContext<'__ctx>> for WithOptConstParam<T>where
T: HashStable<StableHashingContext<'__ctx>>,
impl<'__ctx, T> HashStable<StableHashingContext<'__ctx>> for WithOptConstParam<T>where
T: HashStable<StableHashingContext<'__ctx>>,
fn hash_stable(
&self,
__hcx: &mut StableHashingContext<'__ctx>,
__hasher: &mut StableHasher
)
source§impl Key for WithOptConstParam<LocalDefId>
impl Key for WithOptConstParam<LocalDefId>
source§fn query_crate_is_local(&self) -> bool
fn query_crate_is_local(&self) -> bool
source§fn default_span(&self, tcx: TyCtxt<'_>) -> Span
fn default_span(&self, tcx: TyCtxt<'_>) -> Span
self
, what span should we use? Read moretype CacheSelector = DefaultCacheSelector<Self>
source§fn key_as_def_id(&self) -> Option<DefId>
fn key_as_def_id(&self) -> Option<DefId>
fn ty_adt_id(&self) -> Option<DefId>
source§impl<'__lifted, T> Lift<'__lifted> for WithOptConstParam<T>where
T: Lift<'__lifted>,
impl<'__lifted, T> Lift<'__lifted> for WithOptConstParam<T>where
T: Lift<'__lifted>,
type Lifted = WithOptConstParam<<T as Lift<'__lifted>>::Lifted>
fn lift_to_tcx(
self,
__tcx: TyCtxt<'__lifted>
) -> Option<WithOptConstParam<T::Lifted>>
source§impl<T: Ord> Ord for WithOptConstParam<T>
impl<T: Ord> Ord for WithOptConstParam<T>
source§fn cmp(&self, other: &WithOptConstParam<T>) -> Ordering
fn cmp(&self, other: &WithOptConstParam<T>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl<T: PartialEq> PartialEq<WithOptConstParam<T>> for WithOptConstParam<T>
impl<T: PartialEq> PartialEq<WithOptConstParam<T>> for WithOptConstParam<T>
source§fn eq(&self, other: &WithOptConstParam<T>) -> bool
fn eq(&self, other: &WithOptConstParam<T>) -> bool
source§impl<T: PartialOrd> PartialOrd<WithOptConstParam<T>> for WithOptConstParam<T>
impl<T: PartialOrd> PartialOrd<WithOptConstParam<T>> for WithOptConstParam<T>
source§fn partial_cmp(&self, other: &WithOptConstParam<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &WithOptConstParam<T>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl<'tcx, T> TypeFoldable<'tcx> for WithOptConstParam<T>where
T: TypeFoldable<'tcx>,
impl<'tcx, T> TypeFoldable<'tcx> for WithOptConstParam<T>where
T: TypeFoldable<'tcx>,
source§fn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __F::Error>
fn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __F::Error>
source§impl<'tcx, T> TypeVisitable<'tcx> for WithOptConstParam<T>where
T: TypeVisitable<'tcx>,
impl<'tcx, T> TypeVisitable<'tcx> for WithOptConstParam<T>where
T: TypeVisitable<'tcx>,
source§fn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::BreakTy>
fn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::BreakTy>
source§fn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
true
if self
has any late-bound regions that are either
bound by binder
or bound by some binder outside of binder
.
If binder
is ty::INNERMOST
, this indicates whether
there are any late-bound regions that appear free. Read moresource§fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
true
if this type has any regions that escape binder
(and
hence are not bound by it). Read moresource§fn has_escaping_bound_vars(&self) -> bool
fn has_escaping_bound_vars(&self) -> bool
true
if this type has regions that are not a part of the type.
For example, for<'a> fn(&'a i32)
return false
, while fn(&'a i32)
would return true
. The latter can occur when traversing through the
former. Read morefn has_type_flags(&self, flags: TypeFlags) -> bool
fn has_projections(&self) -> bool
fn has_opaque_types(&self) -> bool
fn references_error(&self) -> bool
fn error_reported(&self) -> Result<(), ErrorGuaranteed>
fn has_non_region_param(&self) -> bool
fn has_infer_regions(&self) -> bool
fn has_infer_types(&self) -> bool
fn has_non_region_infer(&self) -> bool
fn needs_infer(&self) -> bool
fn has_placeholders(&self) -> bool
fn needs_subst(&self) -> bool
source§fn has_free_regions(&self) -> bool
fn has_free_regions(&self) -> bool
fn has_erased_regions(&self) -> bool
source§fn has_erasable_regions(&self) -> bool
fn has_erasable_regions(&self) -> bool
source§fn is_global(&self) -> bool
fn is_global(&self) -> bool
source§fn has_late_bound_regions(&self) -> bool
fn has_late_bound_regions(&self) -> bool
source§fn still_further_specializable(&self) -> bool
fn still_further_specializable(&self) -> bool
impl
specialization. Read moreimpl<T: Copy> Copy for WithOptConstParam<T>
impl<T: Eq> Eq for WithOptConstParam<T>
impl<T> StructuralEq for WithOptConstParam<T>
impl<T> StructuralPartialEq for WithOptConstParam<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for WithOptConstParam<T>where
T: RefUnwindSafe,
impl<T> Send for WithOptConstParam<T>where
T: Send,
impl<T> Sync for WithOptConstParam<T>where
T: Sync,
impl<T> Unpin for WithOptConstParam<T>where
T: Unpin,
impl<T> UnwindSafe for WithOptConstParam<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter<'a>(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T] ⓘ
source§impl<Tcx, T> DepNodeParams<Tcx> for Twhere
Tcx: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Tcx, T> DepNodeParams<Tcx> for Twhere
Tcx: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
default fn fingerprint_style() -> FingerprintStyle
source§default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
default fn to_debug_str(&self, _: Tcx) -> String
source§default fn recover(
_: Tcx,
_: &DepNode<<Tcx as DepContext>::DepKind>
) -> Option<T>
default fn recover(
_: Tcx,
_: &DepNode<<Tcx as DepContext>::DepKind>
) -> Option<T>
DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it. Read moresource§impl<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,
source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
source§impl<'tcx, T> ToPredicate<'tcx, T> for T
impl<'tcx, T> ToPredicate<'tcx, T> for T
fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T
source§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, _: &[QueryInfo]) -> T
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.