Enum rustc_middle::ty::consts::valtree::ValTree [−][src]
Expand description
This datastructure is used to represent the value of constants used in the type system.
We explicitly choose a different datastructure from the way values are processed within
CTFE, as in the type system equal values (according to their PartialEq
) must also have
equal representation (==
on the rustc data structure, e.g. ValTree
) and vice versa.
Since CTFE uses AllocId
to represent pointers, it often happens that two different
AllocId
s point to equal values. So we may end up with different representations for
two constants whose value is &42
. Furthermore any kind of struct that has padding will
have arbitrary values within that padding, even if the values of the struct are the same.
ValTree
does not have this problem with representation, as it only contains integers or
lists of (nested) ValTree
.
Variants
Leaf(ScalarInt)
ZSTs, integers, bool
, char
are represented as scalars.
See the ScalarInt
documentation for how ScalarInt
guarantees that equal values
of these types have the same representation.
Tuple Fields of Leaf
0: ScalarInt
The fields of any kind of aggregate. Structs, tuples and arrays are represented by listing their fields’ values in order. Enums are represented by storing their discriminant as a field, followed by all the fields of the variant.
Implementations
Trait Implementations
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
Auto Trait Implementations
impl<'tcx> RefUnwindSafe for ValTree<'tcx>
impl<'tcx> UnwindSafe for ValTree<'tcx>
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 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 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: 24 bytes
Size for each variant:
Leaf
: 17 bytesBranch
: 23 bytes