Struct rustc_middle::ty::WithOptConstParam [−][src]
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 potentionally 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: Tconst_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
Creates a new WithOptConstParam setting const_param_did to None.
Returns Some((did, param_did)) if def_id is a const argument,
None otherwise.
In case self is unknown but self.did is a const argument, this returns
a WithOptConstParam with the correct const_param_did.
Trait Implementations
impl<'tcx, T, __D: TyDecoder<'tcx>> Decodable<__D> for WithOptConstParam<T> where
T: Decodable<__D>,
impl<'tcx, T, __D: TyDecoder<'tcx>> Decodable<__D> for WithOptConstParam<T> where
T: Decodable<__D>,
impl<'tcx, T, __E: TyEncoder<'tcx>> Encodable<__E> for WithOptConstParam<T> where
T: Encodable<__E>,
impl<'tcx, T, __E: TyEncoder<'tcx>> Encodable<__E> for WithOptConstParam<T> where
T: Encodable<__E>,
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>>,
type Lifted = WithOptConstParam<T::Lifted>
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
fn super_visit_with<__F: TypeVisitor<'tcx>>(
&self,
__folder: &mut __F
) -> ControlFlow<__F::BreakTy>
Returns 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 more
Returns true if this self has any regions that escape binder (and
hence are not bound by it). Read more
“Free” regions in this context means that it has any region that is not (a) erased or (b) late-bound. Read more
True if there are any un-erased free regions.
Indicates whether this value definitely references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
Indicates whether this value references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
True if there are any late-bound regions
Indicates whether this value still has parameters/placeholders/inference variables
which could be replaced later, in a way that would change the results of impl
specialization. Read more
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
Mutably borrows from an owned value. Read more
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode,
something which is needed when forcing DepNodes 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 more
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.