pub enum ConstValue<'tcx> {
Scalar(Scalar),
ZeroSized,
Slice {
data: ConstAllocation<'tcx>,
meta: u64,
},
Indirect {
alloc_id: AllocId,
offset: Size,
},
}Expand description
Represents a constant value in Rust. Scalar and Slice are optimizations for
array length computations, enum discriminants and the pattern matching logic.
Variants§
Scalar(Scalar)
Used for types with layout::abi::Scalar ABI.
Not using the enum Value to encode that this must not be Uninit.
ZeroSized
Only for ZSTs.
Slice
Used for references to unsized types with slice tail.
This is worth an optimized representation since Rust has literals of type &str and
&[u8]. Not having to indirect those through an AllocId (or two, if we used Indirect)
has shown measurable performance improvements on stress tests. We then reuse this
optimization for slice-tail types more generally during valtree-to-constval conversion.
Fields
data: ConstAllocation<'tcx>The allocation storing the slice contents. This always points to the beginning of the allocation.
Indirect
A value not representable by the other variants; needs to be stored in-memory.
Must not be used for scalars or ZST, but having &str or other slices in this variant is fine.
Fields
alloc_id: AllocIdThe backing memory of the value. May contain more memory than needed for just the value if this points into some other larger ConstValue.
We use an AllocId here instead of a ConstAllocation<'tcx> to make sure that when a
raw constant (which is basically just an AllocId) is turned into a ConstValue and
back, we can preserve the original AllocId.
offset: SizeOffset into alloc
Auto Trait Implementations§
impl<'tcx> Freeze for ConstValue<'tcx>
impl<'tcx> RefUnwindSafe for ConstValue<'tcx>
impl<'tcx> Send for ConstValue<'tcx>
impl<'tcx> Sync for ConstValue<'tcx>
impl<'tcx> Unpin for ConstValue<'tcx>
impl<'tcx> UnwindSafe for ConstValue<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.