Struct rustc_middle::ty::ScalarInt

source ·
#[repr(packed(1))]
pub struct ScalarInt { data: u128, size: NonZero<u8>, }
Expand description

The raw bytes of a simple value.

This is a packed struct in order to allow this type to be optimally embedded in enums (like Scalar).

Fields§

§data: u128

The first size bytes of data are the value. Do not try to read less or more bytes than that. The remaining bytes must be 0.

§size: NonZero<u8>

Implementations§

source§

impl ScalarInt

source

pub const TRUE: ScalarInt = _

source

pub const FALSE: ScalarInt = _

source

fn raw(data: u128, size: Size) -> Self

source

pub fn size(self) -> Size

source

fn check_data(self)

Make sure the data fits in size. This is guaranteed by all constructors here, but having had this check saved us from bugs many times in the past, so keeping it around is definitely worth it.

source

pub fn null(size: Size) -> Self

source

pub fn is_null(self) -> bool

source

pub fn try_from_uint(i: impl Into<u128>, size: Size) -> Option<Self>

source

pub fn truncate_from_uint(i: impl Into<u128>, size: Size) -> (Self, bool)

Returns the truncated result, and whether truncation changed the value.

source

pub fn try_from_int(i: impl Into<i128>, size: Size) -> Option<Self>

source

pub fn truncate_from_int(i: impl Into<i128>, size: Size) -> (Self, bool)

Returns the truncated result, and whether truncation changed the value.

source

pub fn try_from_target_usize( i: impl Into<u128>, tcx: TyCtxt<'_> ) -> Option<Self>

source

pub fn try_to_bits(self, target_size: Size) -> Result<u128, Size>

source

pub fn assert_bits(self, target_size: Size) -> u128

source

pub fn try_to_uint(self, size: Size) -> Result<u128, Size>

Tries to convert the ScalarInt to an unsigned integer of the given size. Fails if the size of the ScalarInt is not equal to size and returns the ScalarInts size in that case.

source

pub fn assert_uint(self, size: Size) -> u128

source

pub fn try_to_u8(self) -> Result<u8, Size>

source

pub fn try_to_u16(self) -> Result<u16, Size>

Tries to convert the ScalarInt to u16. Fails if the size of the ScalarInt in not equal to 2 bytes and returns the size value of the ScalarInt in that case.

source

pub fn try_to_u32(self) -> Result<u32, Size>

Tries to convert the ScalarInt to u32. Fails if the size of the ScalarInt in not equal to 4 bytes and returns the size value of the ScalarInt in that case.

source

pub fn try_to_u64(self) -> Result<u64, Size>

Tries to convert the ScalarInt to u64. Fails if the size of the ScalarInt in not equal to 8 bytes and returns the size value of the ScalarInt in that case.

source

pub fn try_to_u128(self) -> Result<u128, Size>

Tries to convert the ScalarInt to u128. Fails if the size of the ScalarInt in not equal to 16 bytes and returns the size value of the ScalarInt in that case.

source

pub fn try_to_target_usize(&self, tcx: TyCtxt<'_>) -> Result<u64, Size>

source

pub fn try_to_bool(self) -> Result<bool, Size>

source

pub fn try_to_int(self, size: Size) -> Result<i128, Size>

Tries to convert the ScalarInt to a signed integer of the given size. Fails if the size of the ScalarInt is not equal to size and returns the ScalarInts size in that case.

source

pub fn assert_int(self, size: Size) -> i128

source

pub fn try_to_i8(self) -> Result<i8, Size>

Tries to convert the ScalarInt to i8. Fails if the size of the ScalarInt is not equal to 1 byte and returns the ScalarInts size in that case.

source

pub fn try_to_i16(self) -> Result<i16, Size>

Tries to convert the ScalarInt to i16. Fails if the size of the ScalarInt is not equal to 2 bytes and returns the ScalarInts size in that case.

source

pub fn try_to_i32(self) -> Result<i32, Size>

Tries to convert the ScalarInt to i32. Fails if the size of the ScalarInt is not equal to 4 bytes and returns the ScalarInts size in that case.

source

pub fn try_to_i64(self) -> Result<i64, Size>

Tries to convert the ScalarInt to i64. Fails if the size of the ScalarInt is not equal to 8 bytes and returns the ScalarInts size in that case.

source

pub fn try_to_i128(self) -> Result<i128, Size>

Tries to convert the ScalarInt to i128. Fails if the size of the ScalarInt is not equal to 16 bytes and returns the ScalarInts size in that case.

source

pub fn try_to_target_isize(&self, tcx: TyCtxt<'_>) -> Result<i64, Size>

source

pub fn try_to_float<F: Float>(self) -> Result<F, Size>

source

pub fn try_to_f16(self) -> Result<Half, Size>

source

pub fn try_to_f32(self) -> Result<Single, Size>

source

pub fn try_to_f64(self) -> Result<Double, Size>

source

pub fn try_to_f128(self) -> Result<Quad, Size>

Trait Implementations§

source§

impl Clone for ScalarInt

source§

fn clone(&self) -> ScalarInt

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ScalarInt

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<D: Decoder> Decodable<D> for ScalarInt

source§

impl Display for ScalarInt

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S: Encoder> Encodable<S> for ScalarInt

source§

fn encode(&self, s: &mut S)

source§

impl From<IeeeFloat<DoubleS>> for ScalarInt

source§

fn from(f: Double) -> Self

Converts to this type from the input type.
source§

impl From<IeeeFloat<HalfS>> for ScalarInt

source§

fn from(f: Half) -> Self

Converts to this type from the input type.
source§

impl From<IeeeFloat<QuadS>> for ScalarInt

source§

fn from(f: Quad) -> Self

Converts to this type from the input type.
source§

impl From<IeeeFloat<SingleS>> for ScalarInt

source§

fn from(f: Single) -> Self

Converts to this type from the input type.
source§

impl<Prov> From<ScalarInt> for Scalar<Prov>

source§

fn from(ptr: ScalarInt) -> Self

Converts to this type from the input type.
source§

impl From<bool> for ScalarInt

source§

fn from(u: bool) -> Self

Converts to this type from the input type.
source§

impl From<char> for ScalarInt

source§

fn from(c: char) -> Self

Converts to this type from the input type.
source§

impl From<u128> for ScalarInt

source§

fn from(u: u128) -> Self

Converts to this type from the input type.
source§

impl From<u16> for ScalarInt

source§

fn from(u: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for ScalarInt

source§

fn from(u: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for ScalarInt

source§

fn from(u: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for ScalarInt

source§

fn from(u: u8) -> Self

Converts to this type from the input type.
source§

impl Hash for ScalarInt

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<CTX> HashStable<CTX> for ScalarInt

source§

fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher)

source§

impl LowerHex for ScalarInt

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl PartialEq for ScalarInt

source§

fn eq(&self, other: &ScalarInt) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<ScalarInt> for Double

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for Half

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for Quad

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for Single

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for bool

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for char

§

type Error = CharTryFromScalarInt

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for u128

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for u16

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for u32

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for u64

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl TryFrom<ScalarInt> for u8

§

type Error = Size

The type returned in the event of a conversion error.
source§

fn try_from(int: ScalarInt) -> Result<Self, Size>

Performs the conversion.
source§

impl UpperHex for ScalarInt

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl Copy for ScalarInt

source§

impl Eq for ScalarInt

source§

impl StructuralPartialEq for ScalarInt

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AnyEq for T
where T: Any + PartialEq,

source§

fn equals(&self, other: &(dyn Any + 'static)) -> bool

source§

fn as_any(&self) -> &(dyn Any + 'static)

source§

impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for T
where T: Copy,

source§

fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T

source§

fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T> ) -> &'a mut [T]

source§

impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for T
where T: Copy,

source§

fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T

source§

fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T> ) -> &'a mut [T]

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

source§

impl<Tcx, T> DepNodeParams<Tcx> for T
where Tcx: DepContext, T: for<'a> HashStable<StableHashingContext<'a>> + Debug,

source§

default fn fingerprint_style() -> FingerprintStyle

source§

default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint

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).
source§

default fn to_debug_str(&self, _: Tcx) -> String

source§

default fn recover(_: Tcx, _: &DepNode) -> Option<T>

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.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<P> IntoQueryParam<P> for P

source§

impl<T> MaybeResult<T> for T

§

type Error = !

source§

fn from(_: Result<T, <T as MaybeResult<T>>::Error>) -> T

source§

fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<'tcx, T> ToPredicate<'tcx, T> for T

source§

fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<Tcx, T> Value<Tcx> for T
where Tcx: DepContext,

source§

default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed ) -> T

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T
where T: Send + Sync,

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: 17 bytes