1#![cfg_attr(feature = "nightly", allow(internal_features))]
3#![cfg_attr(feature = "nightly", feature(rustc_attrs))]
4#![cfg_attr(feature = "nightly", feature(step_trait))]
5use std::cmp::min;
40use std::fmt;
41#[cfg(feature = "nightly")]
42use std::iter::Step;
43use std::num::{NonZero, ParseIntError};
44use std::ops::{Add, AddAssign, Deref, Mul, Sub};
45use std::range::RangeInclusive;
46use std::str::FromStr;
47
48use bitflags::bitflags;
49#[cfg(feature = "nightly")]
50use rustc_data_structures::stable_hash::StableOrd;
51#[cfg(feature = "nightly")]
52use rustc_error_messages::{DiagArgValue, IntoDiagArg};
53#[cfg(feature = "nightly")]
54use rustc_errors::{Diag, DiagCtxtHandle, Diagnostic, Level, msg};
55use rustc_hashes::Hash64;
56use rustc_index::{Idx, IndexSlice, IndexVec};
57#[cfg(feature = "nightly")]
58use rustc_macros::{Decodable_NoContext, Encodable_NoContext, StableHash};
59#[cfg(feature = "nightly")]
60use rustc_span::{Symbol, sym};
61
62mod callconv;
63mod canon_abi;
64mod extern_abi;
65mod layout;
66#[cfg(test)]
67mod tests;
68mod wrapping_range;
69
70pub use callconv::{Heterogeneous, HomogeneousAggregate, Reg, RegKind};
71pub use canon_abi::{ArmCall, CanonAbi, InterruptKind, X86Call};
72#[cfg(feature = "nightly")]
73pub use extern_abi::CVariadicStatus;
74pub use extern_abi::{ExternAbi, all_names};
75pub use layout::{FIRST_VARIANT, FieldIdx, LayoutCalculator, LayoutCalculatorError, VariantIdx};
76#[cfg(feature = "nightly")]
77pub use layout::{Layout, TyAbiInterface, TyAndLayout};
78pub use wrapping_range::WrappingRange;
79
80#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for ReprFlags { }
#[automatically_derived]
impl ::core::clone::Clone for ReprFlags {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<u8>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for ReprFlags { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for ReprFlags { }
#[automatically_derived]
impl ::core::cmp::PartialEq for ReprFlags {
#[inline]
fn eq(&self, other: &Self) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ReprFlags {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<u8>;
}
}Eq, #[automatically_derived]
impl ::core::default::Default for ReprFlags {
#[inline]
fn default() -> Self { Self(::core::default::Default::default()) }
}Default)]
81#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<__E: ::rustc_serialize::Encoder>
::rustc_serialize::Encodable<__E> for ReprFlags {
fn encode(&self, __encoder: &mut __E) {
let ReprFlags(ref __binding_0) = *self;
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
}
};Encodable_NoContext, const _: () =
{
impl<__D: ::rustc_serialize::Decoder>
::rustc_serialize::Decodable<__D> for ReprFlags {
fn decode(__decoder: &mut __D) -> Self {
ReprFlags(::rustc_serialize::Decodable::decode(__decoder))
}
}
};Decodable_NoContext, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for ReprFlags {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
ReprFlags(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
82pub struct ReprFlags(u8);
83
84impl ReprFlags {
#[allow(deprecated, non_upper_case_globals,)]
pub const IS_C: Self = Self::from_bits_retain(1 << 0);
#[allow(deprecated, non_upper_case_globals,)]
pub const IS_SIMD: Self = Self::from_bits_retain(1 << 1);
#[allow(deprecated, non_upper_case_globals,)]
pub const IS_TRANSPARENT: Self = Self::from_bits_retain(1 << 2);
#[doc = r" Internal only for now. If true, don't reorder fields."]
#[doc = r" On its own it does not prevent ABI optimizations."]
#[allow(deprecated, non_upper_case_globals,)]
pub const IS_LINEAR: Self = Self::from_bits_retain(1 << 3);
#[doc =
r" If true, the type's crate has opted into layout randomization."]
#[doc =
r" Other flags can still inhibit reordering and thus randomization."]
#[doc = r" The seed stored in `ReprOptions.field_shuffle_seed`."]
#[doc = r""]
#[doc =
r" `repr(Rust)` structs with only zero-sized fields, single-variant `repr(Rust)` enums with only"]
#[doc =
r" zero-sized fields, and zero-variant `repr(Rust)` enums must remain zero-sized as per"]
#[doc =
r" T-lang decisions in https://github.com/rust-lang/reference/pull/2262 and https://github.com/rust-lang/reference/pull/2293"]
#[allow(deprecated, non_upper_case_globals,)]
pub const RANDOMIZE_LAYOUT: Self = Self::from_bits_retain(1 << 4);
#[doc =
r" If true, the type is always passed indirectly by non-Rustic ABIs."]
#[doc =
r" See [`TyAndLayout::pass_indirectly_in_non_rustic_abis`] for details."]
#[allow(deprecated, non_upper_case_globals,)]
pub const PASS_INDIRECTLY_IN_NON_RUSTIC_ABIS: Self =
Self::from_bits_retain(1 << 5);
#[allow(deprecated, non_upper_case_globals,)]
pub const IS_SCALABLE: Self = Self::from_bits_retain(1 << 6);
#[allow(deprecated, non_upper_case_globals,)]
pub const FIELD_ORDER_UNOPTIMIZABLE: Self =
Self::from_bits_retain(ReprFlags::IS_C.bits() |
ReprFlags::IS_SIMD.bits() | ReprFlags::IS_SCALABLE.bits() |
ReprFlags::IS_LINEAR.bits());
#[allow(deprecated, non_upper_case_globals,)]
pub const ABI_UNOPTIMIZABLE: Self =
Self::from_bits_retain(ReprFlags::IS_C.bits() |
ReprFlags::IS_SIMD.bits());
}
impl ::bitflags::Flags for ReprFlags {
const FLAGS: &'static [::bitflags::Flag<ReprFlags>] =
&[{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("IS_C", ReprFlags::IS_C)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("IS_SIMD", ReprFlags::IS_SIMD)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("IS_TRANSPARENT",
ReprFlags::IS_TRANSPARENT)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("IS_LINEAR", ReprFlags::IS_LINEAR)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("RANDOMIZE_LAYOUT",
ReprFlags::RANDOMIZE_LAYOUT)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("PASS_INDIRECTLY_IN_NON_RUSTIC_ABIS",
ReprFlags::PASS_INDIRECTLY_IN_NON_RUSTIC_ABIS)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("IS_SCALABLE", ReprFlags::IS_SCALABLE)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("FIELD_ORDER_UNOPTIMIZABLE",
ReprFlags::FIELD_ORDER_UNOPTIMIZABLE)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("ABI_UNOPTIMIZABLE",
ReprFlags::ABI_UNOPTIMIZABLE)
}];
type Bits = u8;
fn bits(&self) -> u8 { ReprFlags::bits(self) }
fn from_bits_retain(bits: u8) -> ReprFlags {
ReprFlags::from_bits_retain(bits)
}
}
#[allow(dead_code, deprecated, unused_doc_comments, unused_attributes,
unused_mut, unused_imports, non_upper_case_globals, clippy ::
assign_op_pattern, clippy :: iter_without_into_iter,)]
const _: () =
{
#[allow(dead_code, deprecated, unused_attributes)]
impl ReprFlags {
#[inline]
pub const fn empty() -> Self {
Self(<u8 as ::bitflags::Bits>::EMPTY)
}
#[inline]
pub const fn all() -> Self {
let mut truncated = <u8 as ::bitflags::Bits>::EMPTY;
let mut i = 0;
{
{
let flag =
<ReprFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<ReprFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<ReprFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<ReprFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<ReprFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<ReprFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<ReprFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<ReprFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<ReprFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
let _ = i;
Self(truncated)
}
#[inline]
pub const fn bits(&self) -> u8 { self.0 }
#[inline]
pub const fn from_bits(bits: u8)
-> ::bitflags::__private::core::option::Option<Self> {
let truncated = Self::from_bits_truncate(bits).0;
if truncated == bits {
::bitflags::__private::core::option::Option::Some(Self(bits))
} else { ::bitflags::__private::core::option::Option::None }
}
#[inline]
pub const fn from_bits_truncate(bits: u8) -> Self {
Self(bits & Self::all().0)
}
#[inline]
pub const fn from_bits_retain(bits: u8) -> Self { Self(bits) }
#[inline]
pub fn from_name(name: &str)
-> ::bitflags::__private::core::option::Option<Self> {
{
if name == "IS_C" {
return ::bitflags::__private::core::option::Option::Some(Self(ReprFlags::IS_C.bits()));
}
};
;
{
if name == "IS_SIMD" {
return ::bitflags::__private::core::option::Option::Some(Self(ReprFlags::IS_SIMD.bits()));
}
};
;
{
if name == "IS_TRANSPARENT" {
return ::bitflags::__private::core::option::Option::Some(Self(ReprFlags::IS_TRANSPARENT.bits()));
}
};
;
{
if name == "IS_LINEAR" {
return ::bitflags::__private::core::option::Option::Some(Self(ReprFlags::IS_LINEAR.bits()));
}
};
;
{
if name == "RANDOMIZE_LAYOUT" {
return ::bitflags::__private::core::option::Option::Some(Self(ReprFlags::RANDOMIZE_LAYOUT.bits()));
}
};
;
{
if name == "PASS_INDIRECTLY_IN_NON_RUSTIC_ABIS" {
return ::bitflags::__private::core::option::Option::Some(Self(ReprFlags::PASS_INDIRECTLY_IN_NON_RUSTIC_ABIS.bits()));
}
};
;
{
if name == "IS_SCALABLE" {
return ::bitflags::__private::core::option::Option::Some(Self(ReprFlags::IS_SCALABLE.bits()));
}
};
;
{
if name == "FIELD_ORDER_UNOPTIMIZABLE" {
return ::bitflags::__private::core::option::Option::Some(Self(ReprFlags::FIELD_ORDER_UNOPTIMIZABLE.bits()));
}
};
;
{
if name == "ABI_UNOPTIMIZABLE" {
return ::bitflags::__private::core::option::Option::Some(Self(ReprFlags::ABI_UNOPTIMIZABLE.bits()));
}
};
;
let _ = name;
::bitflags::__private::core::option::Option::None
}
#[inline]
pub const fn is_empty(&self) -> bool {
self.0 == <u8 as ::bitflags::Bits>::EMPTY
}
#[inline]
pub const fn is_all(&self) -> bool {
Self::all().0 | self.0 == self.0
}
#[inline]
pub const fn intersects(&self, other: Self) -> bool {
self.0 & other.0 != <u8 as ::bitflags::Bits>::EMPTY
}
#[inline]
pub const fn contains(&self, other: Self) -> bool {
self.0 & other.0 == other.0
}
#[inline]
pub fn insert(&mut self, other: Self) {
*self = Self(self.0).union(other);
}
#[inline]
pub fn remove(&mut self, other: Self) {
*self = Self(self.0).difference(other);
}
#[inline]
pub fn toggle(&mut self, other: Self) {
*self = Self(self.0).symmetric_difference(other);
}
#[inline]
pub fn set(&mut self, other: Self, value: bool) {
if value { self.insert(other); } else { self.remove(other); }
}
#[inline]
#[must_use]
pub const fn intersection(self, other: Self) -> Self {
Self(self.0 & other.0)
}
#[inline]
#[must_use]
pub const fn union(self, other: Self) -> Self {
Self(self.0 | other.0)
}
#[inline]
#[must_use]
pub const fn difference(self, other: Self) -> Self {
Self(self.0 & !other.0)
}
#[inline]
#[must_use]
pub const fn symmetric_difference(self, other: Self) -> Self {
Self(self.0 ^ other.0)
}
#[inline]
#[must_use]
pub const fn complement(self) -> Self {
Self::from_bits_truncate(!self.0)
}
}
impl ::bitflags::__private::core::fmt::Binary for ReprFlags {
fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
-> ::bitflags::__private::core::fmt::Result {
let inner = self.0;
::bitflags::__private::core::fmt::Binary::fmt(&inner, f)
}
}
impl ::bitflags::__private::core::fmt::Octal for ReprFlags {
fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
-> ::bitflags::__private::core::fmt::Result {
let inner = self.0;
::bitflags::__private::core::fmt::Octal::fmt(&inner, f)
}
}
impl ::bitflags::__private::core::fmt::LowerHex for ReprFlags {
fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
-> ::bitflags::__private::core::fmt::Result {
let inner = self.0;
::bitflags::__private::core::fmt::LowerHex::fmt(&inner, f)
}
}
impl ::bitflags::__private::core::fmt::UpperHex for ReprFlags {
fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
-> ::bitflags::__private::core::fmt::Result {
let inner = self.0;
::bitflags::__private::core::fmt::UpperHex::fmt(&inner, f)
}
}
impl ::bitflags::__private::core::ops::BitOr for ReprFlags {
type Output = Self;
#[inline]
fn bitor(self, other: ReprFlags) -> Self { self.union(other) }
}
impl ::bitflags::__private::core::ops::BitOrAssign for ReprFlags {
#[inline]
fn bitor_assign(&mut self, other: Self) { self.insert(other); }
}
impl ::bitflags::__private::core::ops::BitXor for ReprFlags {
type Output = Self;
#[inline]
fn bitxor(self, other: Self) -> Self {
self.symmetric_difference(other)
}
}
impl ::bitflags::__private::core::ops::BitXorAssign for ReprFlags {
#[inline]
fn bitxor_assign(&mut self, other: Self) { self.toggle(other); }
}
impl ::bitflags::__private::core::ops::BitAnd for ReprFlags {
type Output = Self;
#[inline]
fn bitand(self, other: Self) -> Self { self.intersection(other) }
}
impl ::bitflags::__private::core::ops::BitAndAssign for ReprFlags {
#[inline]
fn bitand_assign(&mut self, other: Self) {
*self =
Self::from_bits_retain(self.bits()).intersection(other);
}
}
impl ::bitflags::__private::core::ops::Sub for ReprFlags {
type Output = Self;
#[inline]
fn sub(self, other: Self) -> Self { self.difference(other) }
}
impl ::bitflags::__private::core::ops::SubAssign for ReprFlags {
#[inline]
fn sub_assign(&mut self, other: Self) { self.remove(other); }
}
impl ::bitflags::__private::core::ops::Not for ReprFlags {
type Output = Self;
#[inline]
fn not(self) -> Self { self.complement() }
}
impl ::bitflags::__private::core::iter::Extend<ReprFlags> for
ReprFlags {
fn extend<T: ::bitflags::__private::core::iter::IntoIterator<Item
= Self>>(&mut self, iterator: T) {
for item in iterator { self.insert(item) }
}
}
impl ::bitflags::__private::core::iter::FromIterator<ReprFlags> for
ReprFlags {
fn from_iter<T: ::bitflags::__private::core::iter::IntoIterator<Item
= Self>>(iterator: T) -> Self {
use ::bitflags::__private::core::iter::Extend;
let mut result = Self::empty();
result.extend(iterator);
result
}
}
impl ReprFlags {
#[inline]
pub const fn iter(&self) -> ::bitflags::iter::Iter<ReprFlags> {
::bitflags::iter::Iter::__private_const_new(<ReprFlags as
::bitflags::Flags>::FLAGS,
ReprFlags::from_bits_retain(self.bits()),
ReprFlags::from_bits_retain(self.bits()))
}
#[inline]
pub const fn iter_names(&self)
-> ::bitflags::iter::IterNames<ReprFlags> {
::bitflags::iter::IterNames::__private_const_new(<ReprFlags as
::bitflags::Flags>::FLAGS,
ReprFlags::from_bits_retain(self.bits()),
ReprFlags::from_bits_retain(self.bits()))
}
}
impl ::bitflags::__private::core::iter::IntoIterator for ReprFlags {
type Item = ReprFlags;
type IntoIter = ::bitflags::iter::Iter<ReprFlags>;
fn into_iter(self) -> Self::IntoIter { self.iter() }
}
};bitflags! {
85 impl ReprFlags: u8 {
86 const IS_C = 1 << 0;
87 const IS_SIMD = 1 << 1;
88 const IS_TRANSPARENT = 1 << 2;
89 const IS_LINEAR = 1 << 3;
92 const RANDOMIZE_LAYOUT = 1 << 4;
100 const PASS_INDIRECTLY_IN_NON_RUSTIC_ABIS = 1 << 5;
103 const IS_SCALABLE = 1 << 6;
104 const FIELD_ORDER_UNOPTIMIZABLE = ReprFlags::IS_C.bits()
106 | ReprFlags::IS_SIMD.bits()
107 | ReprFlags::IS_SCALABLE.bits()
108 | ReprFlags::IS_LINEAR.bits();
109 const ABI_UNOPTIMIZABLE = ReprFlags::IS_C.bits() | ReprFlags::IS_SIMD.bits();
110 }
111}
112
113impl std::fmt::Debug for ReprFlags {
116 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
117 bitflags::parser::to_writer(self, f)
118 }
119}
120
121#[derive(#[automatically_derived]
impl ::core::marker::Copy for IntegerType { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for IntegerType { }
#[automatically_derived]
impl ::core::clone::Clone for IntegerType {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<bool>;
let _: ::core::clone::AssertParamIsClone<Integer>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for IntegerType {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Self::Pointer(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"Pointer", &__self_0),
Self::Fixed(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f, "Fixed",
__self_0, &__self_1),
}
}
}Debug, #[automatically_derived]
impl ::core::cmp::Eq for IntegerType {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<bool>;
let _: ::core::cmp::AssertParamIsEq<Integer>;
}
}Eq, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for IntegerType { }
#[automatically_derived]
impl ::core::cmp::PartialEq for IntegerType {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::Pointer(__self_0), Self::Pointer(__arg1_0)) =>
__self_0 == __arg1_0,
(Self::Fixed(__self_0, __self_1),
Self::Fixed(__arg1_0, __arg1_1)) =>
__self_1 == __arg1_1 && __self_0 == __arg1_0,
_ => unsafe { ::core::intrinsics::unreachable() }
}
}
}PartialEq)]
122#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<__E: ::rustc_serialize::Encoder>
::rustc_serialize::Encodable<__E> for IntegerType {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
IntegerType::Pointer(ref __binding_0) => { 0usize }
IntegerType::Fixed(ref __binding_0, ref __binding_1) => {
1usize
}
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
match *self {
IntegerType::Pointer(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
IntegerType::Fixed(ref __binding_0, ref __binding_1) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_1,
__encoder);
}
}
}
}
};Encodable_NoContext, const _: () =
{
impl<__D: ::rustc_serialize::Decoder>
::rustc_serialize::Decodable<__D> for IntegerType {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => {
IntegerType::Pointer(::rustc_serialize::Decodable::decode(__decoder))
}
1usize => {
IntegerType::Fixed(::rustc_serialize::Decodable::decode(__decoder),
::rustc_serialize::Decodable::decode(__decoder))
}
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `IntegerType`, expected 0..2, actual {0}",
n));
}
}
}
}
};Decodable_NoContext, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for IntegerType
{
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
IntegerType::Pointer(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
IntegerType::Fixed(ref __binding_0, ref __binding_1) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
123pub enum IntegerType {
124 Pointer(bool),
127 Fixed(Integer, bool),
130}
131
132impl IntegerType {
133 pub fn is_signed(&self) -> bool {
134 match self {
135 IntegerType::Pointer(b) => *b,
136 IntegerType::Fixed(_, b) => *b,
137 }
138 }
139}
140
141#[derive(#[automatically_derived]
impl ::core::marker::Copy for ScalableElt { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for ScalableElt { }
#[automatically_derived]
impl ::core::clone::Clone for ScalableElt {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<u16>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ScalableElt {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Self::ElementCount(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"ElementCount", &__self_0),
Self::Container =>
::core::fmt::Formatter::write_str(f, "Container"),
}
}
}Debug, #[automatically_derived]
impl ::core::cmp::Eq for ScalableElt {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<u16>;
}
}Eq, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for ScalableElt { }
#[automatically_derived]
impl ::core::cmp::PartialEq for ScalableElt {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::ElementCount(__self_0), Self::ElementCount(__arg1_0))
=> __self_0 == __arg1_0,
_ => true,
}
}
}PartialEq)]
142#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<__E: ::rustc_serialize::Encoder>
::rustc_serialize::Encodable<__E> for ScalableElt {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
ScalableElt::ElementCount(ref __binding_0) => { 0usize }
ScalableElt::Container => { 1usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
match *self {
ScalableElt::ElementCount(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
ScalableElt::Container => {}
}
}
}
};Encodable_NoContext, const _: () =
{
impl<__D: ::rustc_serialize::Decoder>
::rustc_serialize::Decodable<__D> for ScalableElt {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => {
ScalableElt::ElementCount(::rustc_serialize::Decodable::decode(__decoder))
}
1usize => { ScalableElt::Container }
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `ScalableElt`, expected 0..2, actual {0}",
n));
}
}
}
}
};Decodable_NoContext, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for ScalableElt
{
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
ScalableElt::ElementCount(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
ScalableElt::Container => {}
}
}
}
};StableHash))]
143pub enum ScalableElt {
144 ElementCount(u16),
146 Container,
149}
150
151#[derive(#[automatically_derived]
impl ::core::marker::Copy for ReprOptions { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for ReprOptions { }
#[automatically_derived]
impl ::core::clone::Clone for ReprOptions {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Option<IntegerType>>;
let _: ::core::clone::AssertParamIsClone<Option<Align>>;
let _: ::core::clone::AssertParamIsClone<Option<Align>>;
let _: ::core::clone::AssertParamIsClone<ReprFlags>;
let _: ::core::clone::AssertParamIsClone<Option<ScalableElt>>;
let _: ::core::clone::AssertParamIsClone<Hash64>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ReprOptions {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ =
&["int", "align", "pack", "flags", "scalable",
"field_shuffle_seed"];
let values: &[&dyn ::core::fmt::Debug] =
&[&self.int, &self.align, &self.pack, &self.flags, &self.scalable,
&&self.field_shuffle_seed];
::core::fmt::Formatter::debug_struct_fields_finish(f, "ReprOptions",
names, values)
}
}Debug, #[automatically_derived]
impl ::core::cmp::Eq for ReprOptions {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Option<IntegerType>>;
let _: ::core::cmp::AssertParamIsEq<Option<Align>>;
let _: ::core::cmp::AssertParamIsEq<Option<Align>>;
let _: ::core::cmp::AssertParamIsEq<ReprFlags>;
let _: ::core::cmp::AssertParamIsEq<Option<ScalableElt>>;
let _: ::core::cmp::AssertParamIsEq<Hash64>;
}
}Eq, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for ReprOptions { }
#[automatically_derived]
impl ::core::cmp::PartialEq for ReprOptions {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.int == other.int && self.align == other.align &&
self.pack == other.pack && self.flags == other.flags &&
self.scalable == other.scalable &&
self.field_shuffle_seed == other.field_shuffle_seed
}
}PartialEq, #[automatically_derived]
impl ::core::default::Default for ReprOptions {
#[inline]
fn default() -> Self {
Self {
int: ::core::default::Default::default(),
align: ::core::default::Default::default(),
pack: ::core::default::Default::default(),
flags: ::core::default::Default::default(),
scalable: ::core::default::Default::default(),
field_shuffle_seed: ::core::default::Default::default(),
}
}
}Default)]
153#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<__E: ::rustc_serialize::Encoder>
::rustc_serialize::Encodable<__E> for ReprOptions {
fn encode(&self, __encoder: &mut __E) {
let ReprOptions {
int: ref __binding_0,
align: ref __binding_1,
pack: ref __binding_2,
flags: ref __binding_3,
scalable: ref __binding_4,
field_shuffle_seed: ref __binding_5 } = *self;
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_1,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_2,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_3,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_4,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_5,
__encoder);
}
}
};Encodable_NoContext, const _: () =
{
impl<__D: ::rustc_serialize::Decoder>
::rustc_serialize::Decodable<__D> for ReprOptions {
fn decode(__decoder: &mut __D) -> Self {
ReprOptions {
int: ::rustc_serialize::Decodable::decode(__decoder),
align: ::rustc_serialize::Decodable::decode(__decoder),
pack: ::rustc_serialize::Decodable::decode(__decoder),
flags: ::rustc_serialize::Decodable::decode(__decoder),
scalable: ::rustc_serialize::Decodable::decode(__decoder),
field_shuffle_seed: ::rustc_serialize::Decodable::decode(__decoder),
}
}
}
};Decodable_NoContext, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for ReprOptions
{
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
ReprOptions {
int: ref __binding_0,
align: ref __binding_1,
pack: ref __binding_2,
flags: ref __binding_3,
scalable: ref __binding_4,
field_shuffle_seed: ref __binding_5 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
{ __binding_3.stable_hash(__hcx, __hasher); }
{ __binding_4.stable_hash(__hcx, __hasher); }
{ __binding_5.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
154pub struct ReprOptions {
155 pub int: Option<IntegerType>,
156 pub align: Option<Align>,
157 pub pack: Option<Align>,
158 pub flags: ReprFlags,
159 pub scalable: Option<ScalableElt>,
161 pub field_shuffle_seed: Hash64,
169}
170
171impl ReprOptions {
172 #[inline]
173 pub fn simd(&self) -> bool {
174 self.flags.contains(ReprFlags::IS_SIMD)
175 }
176
177 #[inline]
178 pub fn scalable(&self) -> bool {
179 self.flags.contains(ReprFlags::IS_SCALABLE)
180 }
181
182 #[inline]
183 pub fn c(&self) -> bool {
184 self.flags.contains(ReprFlags::IS_C)
185 }
186
187 #[inline]
190 pub fn rust(&self) -> bool {
191 !self.c() & !self.simd() & !self.scalable() & !self.transparent()
193 }
194
195 #[inline]
196 pub fn packed(&self) -> bool {
197 self.pack.is_some()
198 }
199
200 #[inline]
201 pub fn transparent(&self) -> bool {
202 self.flags.contains(ReprFlags::IS_TRANSPARENT)
203 }
204
205 #[inline]
206 pub fn linear(&self) -> bool {
207 self.flags.contains(ReprFlags::IS_LINEAR)
208 }
209
210 pub fn discr_type(&self) -> IntegerType {
218 self.int.unwrap_or(IntegerType::Pointer(true))
219 }
220
221 pub fn inhibit_enum_layout_opt(&self) -> bool {
225 self.c() || self.int.is_some()
226 }
227
228 pub fn inhibit_newtype_abi_optimization(&self) -> bool {
229 self.flags.intersects(ReprFlags::ABI_UNOPTIMIZABLE)
230 }
231
232 pub fn inhibit_struct_field_reordering(&self) -> bool {
235 self.flags.intersects(ReprFlags::FIELD_ORDER_UNOPTIMIZABLE) || self.int.is_some()
236 }
237
238 pub fn can_randomize_type_layout(&self) -> bool {
241 !self.inhibit_struct_field_reordering() && self.flags.contains(ReprFlags::RANDOMIZE_LAYOUT)
242 }
243
244 pub fn inhibits_union_abi_opt(&self) -> bool {
246 self.c()
247 }
248
249 pub fn equal_up_to_seed(&self, other: &Self) -> bool {
251 let ReprOptions { int, align, pack, flags, scalable, field_shuffle_seed: _ } = *self;
252 int == other.int
253 && align == other.align
254 && pack == other.pack
255 && flags == other.flags
256 && scalable == other.scalable
257 }
258}
259
260pub const MAX_SIMD_LANES: u16 = 1 << 0xF;
266
267#[derive(#[automatically_derived]
impl ::core::fmt::Debug for BackendLaneCount {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"BackendLaneCount", &&self.0)
}
}Debug, #[automatically_derived]
impl ::core::marker::Copy for BackendLaneCount { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for BackendLaneCount { }
#[automatically_derived]
impl ::core::clone::Clone for BackendLaneCount {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<NonZero<u16>>;
*self
}
}Clone, #[automatically_derived]
impl ::core::hash::Hash for BackendLaneCount {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.0, state)
}
}Hash, #[automatically_derived]
impl ::core::cmp::Eq for BackendLaneCount {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<NonZero<u16>>;
}
}Eq, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for BackendLaneCount { }
#[automatically_derived]
impl ::core::cmp::PartialEq for BackendLaneCount {
#[inline]
fn eq(&self, other: &Self) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Ord for BackendLaneCount {
#[inline]
fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
::core::cmp::Ord::cmp(&self.0, &other.0)
}
}Ord, #[automatically_derived]
impl ::core::cmp::PartialOrd for BackendLaneCount {
#[inline]
fn partial_cmp(&self, other: &Self)
-> ::core::option::Option<::core::cmp::Ordering> {
::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
}
}PartialOrd)]
269#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<__E: ::rustc_serialize::Encoder>
::rustc_serialize::Encodable<__E> for BackendLaneCount {
fn encode(&self, __encoder: &mut __E) {
let BackendLaneCount(ref __binding_0) = *self;
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
}
};Encodable_NoContext, const _: () =
{
impl<__D: ::rustc_serialize::Decoder>
::rustc_serialize::Decodable<__D> for BackendLaneCount {
fn decode(__decoder: &mut __D) -> Self {
BackendLaneCount(::rustc_serialize::Decodable::decode(__decoder))
}
}
};Decodable_NoContext, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for
BackendLaneCount {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
BackendLaneCount(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
270pub struct BackendLaneCount(NonZero<u16>);
271
272impl BackendLaneCount {
273 pub fn new<N>(count: u64) -> Result<Self, LayoutCalculatorError<N>> {
274 let Ok(count @ ..=MAX_SIMD_LANES) = u16::try_from(count) else {
275 return Err(LayoutCalculatorError::OversizedSimdType {
276 max_lanes: crate::MAX_SIMD_LANES.into(),
277 });
278 };
279 if let Some(count) = NonZero::new(count) {
280 Ok(BackendLaneCount(count))
281 } else {
282 Err(LayoutCalculatorError::ZeroLengthSimdType)
283 }
284 }
285
286 #[inline]
287 pub fn is_power_of_two(self) -> bool {
288 self.0.is_power_of_two()
289 }
290
291 #[inline]
292 pub fn as_u64(self) -> u64 {
293 self.0.get().into()
294 }
295
296 #[inline]
297 pub fn as_u32(self) -> u32 {
298 self.0.get().into()
299 }
300}
301
302#[derive(#[automatically_derived]
impl ::core::marker::Copy for PointerSpec { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PointerSpec { }
#[automatically_derived]
impl ::core::clone::Clone for PointerSpec {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Size>;
let _: ::core::clone::AssertParamIsClone<Align>;
let _: ::core::clone::AssertParamIsClone<bool>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for PointerSpec {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field4_finish(f, "PointerSpec",
"pointer_size", &self.pointer_size, "pointer_align",
&self.pointer_align, "pointer_offset", &self.pointer_offset,
"_is_fat", &&self._is_fat)
}
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for PointerSpec { }
#[automatically_derived]
impl ::core::cmp::PartialEq for PointerSpec {
#[inline]
fn eq(&self, other: &Self) -> bool {
self._is_fat == other._is_fat &&
self.pointer_size == other.pointer_size &&
self.pointer_align == other.pointer_align &&
self.pointer_offset == other.pointer_offset
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for PointerSpec {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Size>;
let _: ::core::cmp::AssertParamIsEq<Align>;
let _: ::core::cmp::AssertParamIsEq<bool>;
}
}Eq)]
304pub struct PointerSpec {
305 pointer_size: Size,
307 pointer_align: Align,
309 pointer_offset: Size,
311 _is_fat: bool,
314}
315
316#[derive(#[automatically_derived]
impl ::core::fmt::Debug for TargetDataLayout {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ =
&["endian", "i1_align", "i8_align", "i16_align", "i32_align",
"i64_align", "i128_align", "f16_align", "f32_align",
"f64_align", "f128_align", "aggregate_align",
"vector_align", "default_address_space",
"default_address_space_pointer_spec", "address_space_info",
"instruction_address_space", "c_enum_min_size"];
let values: &[&dyn ::core::fmt::Debug] =
&[&self.endian, &self.i1_align, &self.i8_align, &self.i16_align,
&self.i32_align, &self.i64_align, &self.i128_align,
&self.f16_align, &self.f32_align, &self.f64_align,
&self.f128_align, &self.aggregate_align, &self.vector_align,
&self.default_address_space,
&self.default_address_space_pointer_spec,
&self.address_space_info, &self.instruction_address_space,
&&self.c_enum_min_size];
::core::fmt::Formatter::debug_struct_fields_finish(f,
"TargetDataLayout", names, values)
}
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for TargetDataLayout { }
#[automatically_derived]
impl ::core::cmp::PartialEq for TargetDataLayout {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.endian == other.endian && self.i1_align == other.i1_align &&
self.i8_align == other.i8_align &&
self.i16_align == other.i16_align &&
self.i32_align == other.i32_align &&
self.i64_align == other.i64_align &&
self.i128_align == other.i128_align &&
self.f16_align == other.f16_align &&
self.f32_align == other.f32_align &&
self.f64_align == other.f64_align &&
self.f128_align == other.f128_align &&
self.aggregate_align == other.aggregate_align &&
self.vector_align == other.vector_align &&
self.default_address_space == other.default_address_space &&
self.default_address_space_pointer_spec ==
other.default_address_space_pointer_spec &&
self.address_space_info == other.address_space_info &&
self.instruction_address_space ==
other.instruction_address_space &&
self.c_enum_min_size == other.c_enum_min_size
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for TargetDataLayout {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Endian>;
let _: ::core::cmp::AssertParamIsEq<Align>;
let _: ::core::cmp::AssertParamIsEq<Vec<(Size, Align)>>;
let _: ::core::cmp::AssertParamIsEq<AddressSpace>;
let _: ::core::cmp::AssertParamIsEq<PointerSpec>;
let _: ::core::cmp::AssertParamIsEq<Vec<(AddressSpace, PointerSpec)>>;
let _: ::core::cmp::AssertParamIsEq<Integer>;
}
}Eq)]
319pub struct TargetDataLayout {
320 pub endian: Endian,
321 pub i1_align: Align,
322 pub i8_align: Align,
323 pub i16_align: Align,
324 pub i32_align: Align,
325 pub i64_align: Align,
326 pub i128_align: Align,
327 pub f16_align: Align,
328 pub f32_align: Align,
329 pub f64_align: Align,
330 pub f128_align: Align,
331 pub aggregate_align: Align,
332
333 pub vector_align: Vec<(Size, Align)>,
335
336 pub default_address_space: AddressSpace,
337 pub default_address_space_pointer_spec: PointerSpec,
338
339 address_space_info: Vec<(AddressSpace, PointerSpec)>,
346
347 pub instruction_address_space: AddressSpace,
348
349 pub c_enum_min_size: Integer,
353}
354
355impl Default for TargetDataLayout {
356 fn default() -> TargetDataLayout {
358 let align = |bits| Align::from_bits(bits).unwrap();
359 TargetDataLayout {
360 endian: Endian::Big,
361 i1_align: align(8),
362 i8_align: align(8),
363 i16_align: align(16),
364 i32_align: align(32),
365 i64_align: align(32),
366 i128_align: align(32),
367 f16_align: align(16),
368 f32_align: align(32),
369 f64_align: align(64),
370 f128_align: align(128),
371 aggregate_align: align(8),
372 vector_align: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[(Size::from_bits(64), align(64)),
(Size::from_bits(128), align(128))]))vec![
373 (Size::from_bits(64), align(64)),
374 (Size::from_bits(128), align(128)),
375 ],
376 default_address_space: AddressSpace::ZERO,
377 default_address_space_pointer_spec: PointerSpec {
378 pointer_size: Size::from_bits(64),
379 pointer_align: align(64),
380 pointer_offset: Size::from_bits(64),
381 _is_fat: false,
382 },
383 address_space_info: ::alloc::vec::Vec::new()vec![],
384 instruction_address_space: AddressSpace::ZERO,
385 c_enum_min_size: Integer::I32,
386 }
387 }
388}
389
390pub enum TargetDataLayoutError<'a> {
391 InvalidAddressSpace { addr_space: &'a str, cause: &'a str, err: ParseIntError },
392 InvalidBits { kind: &'a str, bit: &'a str, cause: &'a str, err: ParseIntError },
393 MissingAlignment { cause: &'a str },
394 InvalidAlignment { cause: &'a str, err: AlignFromBytesError },
395 InconsistentTargetArchitecture { dl: &'a str, target: &'a str },
396 InconsistentTargetPointerWidth { pointer_size: u64, target: u16 },
397 InvalidBitsSize { err: String },
398 UnknownPointerSpecification { err: String },
399}
400
401#[cfg(feature = "nightly")]
402impl Diagnostic<'_> for TargetDataLayoutError<'_> {
403 fn into_diag(self, dcx: DiagCtxtHandle<'_>, level: Level) -> Diag<'_> {
404 match self {
405 TargetDataLayoutError::InvalidAddressSpace { addr_space, err, cause } => {
406 Diag::new(dcx, level, rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid address space `{$addr_space}` for `{$cause}` in \"data-layout\": {$err}"))msg!("invalid address space `{$addr_space}` for `{$cause}` in \"data-layout\": {$err}"))
407 .with_arg("addr_space", addr_space)
408 .with_arg("cause", cause)
409 .with_arg("err", err)
410 }
411 TargetDataLayoutError::InvalidBits { kind, bit, cause, err } => {
412 Diag::new(dcx, level, rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid {$kind} `{$bit}` for `{$cause}` in \"data-layout\": {$err}"))msg!("invalid {$kind} `{$bit}` for `{$cause}` in \"data-layout\": {$err}"))
413 .with_arg("kind", kind)
414 .with_arg("bit", bit)
415 .with_arg("cause", cause)
416 .with_arg("err", err)
417 }
418 TargetDataLayoutError::MissingAlignment { cause } => {
419 Diag::new(dcx, level, rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("missing alignment for `{$cause}` in \"data-layout\""))msg!("missing alignment for `{$cause}` in \"data-layout\""))
420 .with_arg("cause", cause)
421 }
422 TargetDataLayoutError::InvalidAlignment { cause, err } => {
423 Diag::new(dcx, level, rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("invalid alignment for `{$cause}` in \"data-layout\": {$err}"))msg!("invalid alignment for `{$cause}` in \"data-layout\": {$err}"))
424 .with_arg("cause", cause)
425 .with_arg("err", err.to_string())
426 }
427 TargetDataLayoutError::InconsistentTargetArchitecture { dl, target } => {
428 Diag::new(dcx, level, rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("inconsistent target specification: \"data-layout\" claims architecture is {$dl}-endian, while \"target-endian\" is `{$target}`"))msg!("inconsistent target specification: \"data-layout\" claims architecture is {$dl}-endian, while \"target-endian\" is `{$target}`"))
429 .with_arg("dl", dl).with_arg("target", target)
430 }
431 TargetDataLayoutError::InconsistentTargetPointerWidth { pointer_size, target } => {
432 Diag::new(dcx, level, rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("inconsistent target specification: \"data-layout\" claims pointers are {$pointer_size}-bit, while \"target-pointer-width\" is `{$target}`"))msg!("inconsistent target specification: \"data-layout\" claims pointers are {$pointer_size}-bit, while \"target-pointer-width\" is `{$target}`"))
433 .with_arg("pointer_size", pointer_size).with_arg("target", target)
434 }
435 TargetDataLayoutError::InvalidBitsSize { err } => {
436 Diag::new(dcx, level, rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("{$err}"))msg!("{$err}")).with_arg("err", err)
437 }
438 TargetDataLayoutError::UnknownPointerSpecification { err } => {
439 Diag::new(dcx, level, rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("unknown pointer specification `{$err}` in datalayout string"))msg!("unknown pointer specification `{$err}` in datalayout string"))
440 .with_arg("err", err)
441 }
442 }
443 }
444}
445
446impl TargetDataLayout {
447 pub fn parse_from_llvm_datalayout_string<'a>(
453 input: &'a str,
454 default_address_space: AddressSpace,
455 ) -> Result<TargetDataLayout, TargetDataLayoutError<'a>> {
456 let parse_address_space = |s: &'a str, cause: &'a str| {
458 s.parse::<u32>().map(AddressSpace).map_err(|err| {
459 TargetDataLayoutError::InvalidAddressSpace { addr_space: s, cause, err }
460 })
461 };
462
463 let parse_bits = |s: &'a str, kind: &'a str, cause: &'a str| {
465 s.parse::<u64>().map_err(|err| TargetDataLayoutError::InvalidBits {
466 kind,
467 bit: s,
468 cause,
469 err,
470 })
471 };
472
473 let parse_size =
475 |s: &'a str, cause: &'a str| parse_bits(s, "size", cause).map(Size::from_bits);
476
477 let parse_align_str = |s: &'a str, cause: &'a str| {
479 let align_from_bits = |bits| {
480 Align::from_bits(bits)
481 .map_err(|err| TargetDataLayoutError::InvalidAlignment { cause, err })
482 };
483 let abi = parse_bits(s, "alignment", cause)?;
484 Ok(align_from_bits(abi)?)
485 };
486
487 let parse_align_seq = |s: &[&'a str], cause: &'a str| {
490 if s.is_empty() {
491 return Err(TargetDataLayoutError::MissingAlignment { cause });
492 }
493 parse_align_str(s[0], cause)
494 };
495
496 let mut dl = TargetDataLayout::default();
497 dl.default_address_space = default_address_space;
498
499 let mut i128_align_src = 64;
500 for spec in input.split('-') {
501 let spec_parts = spec.split(':').collect::<Vec<_>>();
502
503 match &*spec_parts {
504 ["e"] => dl.endian = Endian::Little,
505 ["E"] => dl.endian = Endian::Big,
506 [p] if p.starts_with('P') => {
507 dl.instruction_address_space = parse_address_space(&p[1..], "P")?
508 }
509 ["a", a @ ..] => dl.aggregate_align = parse_align_seq(a, "a")?,
510 ["f16", a @ ..] => dl.f16_align = parse_align_seq(a, "f16")?,
511 ["f32", a @ ..] => dl.f32_align = parse_align_seq(a, "f32")?,
512 ["f64", a @ ..] => dl.f64_align = parse_align_seq(a, "f64")?,
513 ["f128", a @ ..] => dl.f128_align = parse_align_seq(a, "f128")?,
514 [p, s, a @ ..] if p.starts_with("p") => {
515 let mut p = p.strip_prefix('p').unwrap();
516 let mut _is_fat = false;
517
518 if p.starts_with('f') {
522 p = p.strip_prefix('f').unwrap();
523 _is_fat = true;
524 }
525
526 if p.starts_with(char::is_alphabetic) {
529 return Err(TargetDataLayoutError::UnknownPointerSpecification {
530 err: p.to_string(),
531 });
532 }
533
534 let addr_space = if !p.is_empty() {
535 parse_address_space(p, "p-")?
536 } else {
537 AddressSpace::ZERO
538 };
539
540 let pointer_size = parse_size(s, "p-")?;
541 let pointer_align = parse_align_seq(a, "p-")?;
542 let info = PointerSpec {
543 pointer_offset: pointer_size,
544 pointer_size,
545 pointer_align,
546 _is_fat,
547 };
548 if addr_space == default_address_space {
549 dl.default_address_space_pointer_spec = info;
550 } else {
551 match dl.address_space_info.iter_mut().find(|(a, _)| *a == addr_space) {
552 Some(e) => e.1 = info,
553 None => {
554 dl.address_space_info.push((addr_space, info));
555 }
556 }
557 }
558 }
559 [p, s, a, _pr, i] if p.starts_with("p") => {
560 let mut p = p.strip_prefix('p').unwrap();
561 let mut _is_fat = false;
562
563 if p.starts_with('f') {
567 p = p.strip_prefix('f').unwrap();
568 _is_fat = true;
569 }
570
571 if p.starts_with(char::is_alphabetic) {
574 return Err(TargetDataLayoutError::UnknownPointerSpecification {
575 err: p.to_string(),
576 });
577 }
578
579 let addr_space = if !p.is_empty() {
580 parse_address_space(p, "p")?
581 } else {
582 AddressSpace::ZERO
583 };
584
585 let info = PointerSpec {
586 pointer_size: parse_size(s, "p-")?,
587 pointer_align: parse_align_str(a, "p-")?,
588 pointer_offset: parse_size(i, "p-")?,
589 _is_fat,
590 };
591
592 if addr_space == default_address_space {
593 dl.default_address_space_pointer_spec = info;
594 } else {
595 match dl.address_space_info.iter_mut().find(|(a, _)| *a == addr_space) {
596 Some(e) => e.1 = info,
597 None => {
598 dl.address_space_info.push((addr_space, info));
599 }
600 }
601 }
602 }
603
604 [s, a @ ..] if s.starts_with('i') => {
605 let Ok(bits) = s[1..].parse::<u64>() else {
606 parse_size(&s[1..], "i")?; continue;
608 };
609 let a = parse_align_seq(a, s)?;
610 match bits {
611 1 => dl.i1_align = a,
612 8 => dl.i8_align = a,
613 16 => dl.i16_align = a,
614 32 => dl.i32_align = a,
615 64 => dl.i64_align = a,
616 _ => {}
617 }
618 if bits >= i128_align_src && bits <= 128 {
619 i128_align_src = bits;
622 dl.i128_align = a;
623 }
624 }
625 [s, a @ ..] if s.starts_with('v') => {
626 let v_size = parse_size(&s[1..], "v")?;
627 let a = parse_align_seq(a, s)?;
628 if let Some(v) = dl.vector_align.iter_mut().find(|v| v.0 == v_size) {
629 v.1 = a;
630 continue;
631 }
632 dl.vector_align.push((v_size, a));
634 }
635 _ => {} }
637 }
638
639 if (dl.instruction_address_space != dl.default_address_space)
642 && dl
643 .address_space_info
644 .iter()
645 .find(|(a, _)| *a == dl.instruction_address_space)
646 .is_none()
647 {
648 dl.address_space_info.push((
649 dl.instruction_address_space,
650 dl.default_address_space_pointer_spec.clone(),
651 ));
652 }
653
654 Ok(dl)
655 }
656
657 #[inline]
668 pub fn obj_size_bound(&self) -> u64 {
669 match self.pointer_size().bits() {
670 16 => 1 << 15,
671 32 => 1 << 31,
672 64 => 1 << 61,
673 bits => {
::core::panicking::panic_fmt(format_args!("obj_size_bound: unknown pointer bit size {0}",
bits));
}panic!("obj_size_bound: unknown pointer bit size {bits}"),
674 }
675 }
676
677 #[inline]
687 pub fn obj_size_bound_in(&self, address_space: AddressSpace) -> u64 {
688 match self.pointer_size_in(address_space).bits() {
689 16 => 1 << 15,
690 32 => 1 << 31,
691 64 => 1 << 61,
692 bits => {
::core::panicking::panic_fmt(format_args!("obj_size_bound: unknown pointer bit size {0}",
bits));
}panic!("obj_size_bound: unknown pointer bit size {bits}"),
693 }
694 }
695
696 #[inline]
697 pub fn ptr_sized_integer(&self) -> Integer {
698 use Integer::*;
699 match self.pointer_offset().bits() {
700 16 => I16,
701 32 => I32,
702 64 => I64,
703 bits => {
::core::panicking::panic_fmt(format_args!("ptr_sized_integer: unknown pointer bit size {0}",
bits));
}panic!("ptr_sized_integer: unknown pointer bit size {bits}"),
704 }
705 }
706
707 #[inline]
708 pub fn ptr_sized_integer_in(&self, address_space: AddressSpace) -> Integer {
709 use Integer::*;
710 match self.pointer_offset_in(address_space).bits() {
711 16 => I16,
712 32 => I32,
713 64 => I64,
714 bits => {
::core::panicking::panic_fmt(format_args!("ptr_sized_integer: unknown pointer bit size {0}",
bits));
}panic!("ptr_sized_integer: unknown pointer bit size {bits}"),
715 }
716 }
717
718 #[inline]
720 fn c_vector_align(&self, vec_size: Size) -> Option<Align> {
721 self.vector_align
722 .iter()
723 .find(|(size, _align)| *size == vec_size)
724 .map(|(_size, align)| *align)
725 }
726
727 #[inline]
737 pub fn rust_vector_align(&self, vec_size: Size) -> Align {
738 self.c_vector_align(vec_size)
739 .unwrap_or(Align::from_bytes(vec_size.bytes().next_power_of_two()).unwrap())
740 }
741
742 #[inline]
744 pub fn pointer_size(&self) -> Size {
745 self.default_address_space_pointer_spec.pointer_size
746 }
747
748 #[inline]
750 pub fn pointer_size_in(&self, c: AddressSpace) -> Size {
751 if c == self.default_address_space {
752 return self.default_address_space_pointer_spec.pointer_size;
753 }
754
755 if let Some(e) = self.address_space_info.iter().find(|(a, _)| a == &c) {
756 e.1.pointer_size
757 } else {
758 {
::core::panicking::panic_fmt(format_args!("Use of unknown address space {0:?}",
c));
};panic!("Use of unknown address space {c:?}");
759 }
760 }
761
762 #[inline]
764 pub fn pointer_offset(&self) -> Size {
765 self.default_address_space_pointer_spec.pointer_offset
766 }
767
768 #[inline]
770 pub fn pointer_offset_in(&self, c: AddressSpace) -> Size {
771 if c == self.default_address_space {
772 return self.default_address_space_pointer_spec.pointer_offset;
773 }
774
775 if let Some(e) = self.address_space_info.iter().find(|(a, _)| a == &c) {
776 e.1.pointer_offset
777 } else {
778 {
::core::panicking::panic_fmt(format_args!("Use of unknown address space {0:?}",
c));
};panic!("Use of unknown address space {c:?}");
779 }
780 }
781
782 #[inline]
784 pub fn pointer_align(&self) -> AbiAlign {
785 AbiAlign::new(self.default_address_space_pointer_spec.pointer_align)
786 }
787
788 #[inline]
790 pub fn pointer_align_in(&self, c: AddressSpace) -> AbiAlign {
791 AbiAlign::new(if c == self.default_address_space {
792 self.default_address_space_pointer_spec.pointer_align
793 } else if let Some(e) = self.address_space_info.iter().find(|(a, _)| a == &c) {
794 e.1.pointer_align
795 } else {
796 {
::core::panicking::panic_fmt(format_args!("Use of unknown address space {0:?}",
c));
};panic!("Use of unknown address space {c:?}");
797 })
798 }
799}
800
801pub trait HasDataLayout {
802 fn data_layout(&self) -> &TargetDataLayout;
803}
804
805impl HasDataLayout for TargetDataLayout {
806 #[inline]
807 fn data_layout(&self) -> &TargetDataLayout {
808 self
809 }
810}
811
812impl HasDataLayout for &TargetDataLayout {
814 #[inline]
815 fn data_layout(&self) -> &TargetDataLayout {
816 (**self).data_layout()
817 }
818}
819
820#[derive(#[automatically_derived]
impl ::core::marker::Copy for Endian { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Endian { }
#[automatically_derived]
impl ::core::clone::Clone for Endian {
#[inline]
fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Endian { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Endian {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other)
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Endian { }Eq)]
822pub enum Endian {
823 Little,
824 Big,
825}
826
827impl Endian {
828 pub fn as_str(&self) -> &'static str {
829 match self {
830 Self::Little => "little",
831 Self::Big => "big",
832 }
833 }
834
835 #[cfg(feature = "nightly")]
836 pub fn desc_symbol(&self) -> Symbol {
837 match self {
838 Self::Little => sym::little,
839 Self::Big => sym::big,
840 }
841 }
842}
843
844impl fmt::Debug for Endian {
845 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
846 f.write_str(self.as_str())
847 }
848}
849
850impl FromStr for Endian {
851 type Err = String;
852
853 fn from_str(s: &str) -> Result<Self, Self::Err> {
854 match s {
855 "little" => Ok(Self::Little),
856 "big" => Ok(Self::Big),
857 _ => Err(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("unknown endian: \"{0}\"", s))
})format!(r#"unknown endian: "{s}""#)),
858 }
859 }
860}
861
862#[derive(#[automatically_derived]
impl ::core::marker::Copy for Size { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Size { }
#[automatically_derived]
impl ::core::clone::Clone for Size {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<u64>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Size { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Size {
#[inline]
fn eq(&self, other: &Self) -> bool { self.raw == other.raw }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Size {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<u64>;
}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for Size {
#[inline]
fn partial_cmp(&self, other: &Self)
-> ::core::option::Option<::core::cmp::Ordering> {
::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
}
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for Size {
#[inline]
fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
::core::cmp::Ord::cmp(&self.raw, &other.raw)
}
}Ord, #[automatically_derived]
impl ::core::hash::Hash for Size {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.raw, state)
}
}Hash, #[automatically_derived]
impl ::core::default::Default for Size {
#[inline]
fn default() -> Self { Self { raw: ::core::default::Default::default() } }
}Default)]
864#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<__E: ::rustc_serialize::Encoder>
::rustc_serialize::Encodable<__E> for Size {
fn encode(&self, __encoder: &mut __E) {
let Size { raw: ref __binding_0 } = *self;
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
}
};Encodable_NoContext, const _: () =
{
impl<__D: ::rustc_serialize::Decoder>
::rustc_serialize::Decodable<__D> for Size {
fn decode(__decoder: &mut __D) -> Self {
Size { raw: ::rustc_serialize::Decodable::decode(__decoder) }
}
}
};Decodable_NoContext, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for Size {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
Size { raw: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
865pub struct Size {
866 raw: u64,
867}
868
869#[cfg(feature = "nightly")]
870impl StableOrd for Size {
871 const CAN_USE_UNSTABLE_SORT: bool = true;
872
873 const THIS_IMPLEMENTATION_HAS_BEEN_TRIPLE_CHECKED: () = ();
876}
877
878impl fmt::Debug for Size {
880 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
881 f.write_fmt(format_args!("Size({0} bytes)", self.bytes()))write!(f, "Size({} bytes)", self.bytes())
882 }
883}
884
885impl Size {
886 pub const ZERO: Size = Size { raw: 0 };
887
888 pub fn from_bits(bits: impl TryInto<u64>) -> Size {
891 let bits = bits.try_into().ok().unwrap();
892 Size { raw: bits.div_ceil(8) }
893 }
894
895 #[inline]
896 pub fn from_bytes(bytes: impl TryInto<u64>) -> Size {
897 let bytes: u64 = bytes.try_into().ok().unwrap();
898 Size { raw: bytes }
899 }
900
901 #[inline]
902 pub fn bytes(self) -> u64 {
903 self.raw
904 }
905
906 #[inline]
907 pub fn bytes_usize(self) -> usize {
908 self.bytes().try_into().unwrap()
909 }
910
911 #[inline]
912 pub fn bits(self) -> u64 {
913 #[cold]
914 fn overflow(bytes: u64) -> ! {
915 {
::core::panicking::panic_fmt(format_args!("Size::bits: {0} bytes in bits doesn\'t fit in u64",
bytes));
}panic!("Size::bits: {bytes} bytes in bits doesn't fit in u64")
916 }
917
918 self.bytes().checked_mul(8).unwrap_or_else(|| overflow(self.bytes()))
919 }
920
921 #[inline]
922 pub fn bits_usize(self) -> usize {
923 self.bits().try_into().unwrap()
924 }
925
926 #[inline]
927 pub fn align_to(self, align: Align) -> Size {
928 let mask = align.bytes() - 1;
929 Size::from_bytes((self.bytes() + mask) & !mask)
930 }
931
932 #[inline]
933 pub fn is_aligned(self, align: Align) -> bool {
934 let mask = align.bytes() - 1;
935 self.bytes() & mask == 0
936 }
937
938 #[inline]
939 pub fn checked_add<C: HasDataLayout>(self, offset: Size, cx: &C) -> Option<Size> {
940 let dl = cx.data_layout();
941
942 let bytes = self.bytes().checked_add(offset.bytes())?;
943
944 if bytes < dl.obj_size_bound() { Some(Size::from_bytes(bytes)) } else { None }
945 }
946
947 #[inline]
948 pub fn checked_mul<C: HasDataLayout>(self, count: u64, cx: &C) -> Option<Size> {
949 let dl = cx.data_layout();
950
951 let bytes = self.bytes().checked_mul(count)?;
952 if bytes < dl.obj_size_bound() { Some(Size::from_bytes(bytes)) } else { None }
953 }
954
955 #[inline]
958 pub fn sign_extend(self, value: u128) -> i128 {
959 let size = self.bits();
960 if size == 0 {
961 return 0;
963 }
964 let shift = 128 - size;
966 ((value << shift) as i128) >> shift
969 }
970
971 #[inline]
973 pub fn truncate(self, value: u128) -> u128 {
974 let size = self.bits();
975 if size == 0 {
976 return 0;
978 }
979 let shift = 128 - size;
980 (value << shift) >> shift
982 }
983
984 #[inline]
985 pub fn signed_int_min(&self) -> i128 {
986 self.sign_extend(1_u128 << (self.bits() - 1))
987 }
988
989 #[inline]
990 pub fn signed_int_max(&self) -> i128 {
991 i128::MAX >> (128 - self.bits())
992 }
993
994 #[inline]
995 pub fn unsigned_int_max(&self) -> u128 {
996 u128::MAX >> (128 - self.bits())
997 }
998}
999
1000impl Add for Size {
1004 type Output = Size;
1005 #[inline]
1006 fn add(self, other: Size) -> Size {
1007 Size::from_bytes(self.bytes().checked_add(other.bytes()).unwrap_or_else(|| {
1008 {
::core::panicking::panic_fmt(format_args!("Size::add: {0} + {1} doesn\'t fit in u64",
self.bytes(), other.bytes()));
}panic!("Size::add: {} + {} doesn't fit in u64", self.bytes(), other.bytes())
1009 }))
1010 }
1011}
1012
1013impl Sub for Size {
1014 type Output = Size;
1015 #[inline]
1016 fn sub(self, other: Size) -> Size {
1017 Size::from_bytes(self.bytes().checked_sub(other.bytes()).unwrap_or_else(|| {
1018 {
::core::panicking::panic_fmt(format_args!("Size::sub: {0} - {1} would result in negative size",
self.bytes(), other.bytes()));
}panic!("Size::sub: {} - {} would result in negative size", self.bytes(), other.bytes())
1019 }))
1020 }
1021}
1022
1023impl Mul<Size> for u64 {
1024 type Output = Size;
1025 #[inline]
1026 fn mul(self, size: Size) -> Size {
1027 size * self
1028 }
1029}
1030
1031impl Mul<u64> for Size {
1032 type Output = Size;
1033 #[inline]
1034 fn mul(self, count: u64) -> Size {
1035 match self.bytes().checked_mul(count) {
1036 Some(bytes) => Size::from_bytes(bytes),
1037 None => {
::core::panicking::panic_fmt(format_args!("Size::mul: {0} * {1} doesn\'t fit in u64",
self.bytes(), count));
}panic!("Size::mul: {} * {} doesn't fit in u64", self.bytes(), count),
1038 }
1039 }
1040}
1041
1042impl AddAssign for Size {
1043 #[inline]
1044 fn add_assign(&mut self, other: Size) {
1045 *self = *self + other;
1046 }
1047}
1048
1049#[cfg(feature = "nightly")]
1050impl Step for Size {
1051 #[inline]
1052 fn steps_between(start: &Self, end: &Self) -> (usize, Option<usize>) {
1053 u64::steps_between(&start.bytes(), &end.bytes())
1054 }
1055
1056 #[inline]
1057 fn forward_checked(start: Self, count: usize) -> Option<Self> {
1058 u64::forward_checked(start.bytes(), count).map(Self::from_bytes)
1059 }
1060
1061 #[inline]
1062 fn forward_overflowing(start: Self, count: usize) -> (Self, bool) {
1063 let (s, o) = u64::forward_overflowing(start.bytes(), count);
1064 (Self::from_bytes(s), o)
1065 }
1066
1067 #[inline]
1068 fn forward(start: Self, count: usize) -> Self {
1069 Self::from_bytes(u64::forward(start.bytes(), count))
1070 }
1071
1072 #[inline]
1073 unsafe fn forward_unchecked(start: Self, count: usize) -> Self {
1074 Self::from_bytes(unsafe { u64::forward_unchecked(start.bytes(), count) })
1075 }
1076
1077 #[inline]
1078 fn backward_checked(start: Self, count: usize) -> Option<Self> {
1079 u64::backward_checked(start.bytes(), count).map(Self::from_bytes)
1080 }
1081
1082 #[inline]
1083 fn backward_overflowing(start: Self, count: usize) -> (Self, bool) {
1084 let (s, o) = u64::backward_overflowing(start.bytes(), count);
1085 (Self::from_bytes(s), o)
1086 }
1087
1088 #[inline]
1089 fn backward(start: Self, count: usize) -> Self {
1090 Self::from_bytes(u64::backward(start.bytes(), count))
1091 }
1092
1093 #[inline]
1094 unsafe fn backward_unchecked(start: Self, count: usize) -> Self {
1095 Self::from_bytes(unsafe { u64::backward_unchecked(start.bytes(), count) })
1096 }
1097}
1098
1099#[derive(#[automatically_derived]
impl ::core::marker::Copy for Align { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Align { }
#[automatically_derived]
impl ::core::clone::Clone for Align {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<u8>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Align { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Align {
#[inline]
fn eq(&self, other: &Self) -> bool { self.pow2 == other.pow2 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Align {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<u8>;
}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for Align {
#[inline]
fn partial_cmp(&self, other: &Self)
-> ::core::option::Option<::core::cmp::Ordering> {
::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
}
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for Align {
#[inline]
fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
::core::cmp::Ord::cmp(&self.pow2, &other.pow2)
}
}Ord, #[automatically_derived]
impl ::core::hash::Hash for Align {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.pow2, state)
}
}Hash)]
1101#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<__E: ::rustc_serialize::Encoder>
::rustc_serialize::Encodable<__E> for Align {
fn encode(&self, __encoder: &mut __E) {
let Align { pow2: ref __binding_0 } = *self;
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
}
};Encodable_NoContext, const _: () =
{
impl<__D: ::rustc_serialize::Decoder>
::rustc_serialize::Decodable<__D> for Align {
fn decode(__decoder: &mut __D) -> Self {
Align {
pow2: ::rustc_serialize::Decodable::decode(__decoder),
}
}
}
};Decodable_NoContext, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for Align {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
Align { pow2: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
1102pub struct Align {
1103 pow2: u8,
1104}
1105
1106impl fmt::Debug for Align {
1108 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1109 f.write_fmt(format_args!("Align({0} bytes)", self.bytes()))write!(f, "Align({} bytes)", self.bytes())
1110 }
1111}
1112
1113#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AlignFromBytesError { }
#[automatically_derived]
impl ::core::clone::Clone for AlignFromBytesError {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<u64>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for AlignFromBytesError { }Copy)]
1114pub enum AlignFromBytesError {
1115 NotPowerOfTwo(u64),
1116 TooLarge(u64),
1117}
1118
1119impl fmt::Debug for AlignFromBytesError {
1120 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1121 fmt::Display::fmt(self, f)
1122 }
1123}
1124
1125impl fmt::Display for AlignFromBytesError {
1126 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1127 match self {
1128 AlignFromBytesError::NotPowerOfTwo(align) => f.write_fmt(format_args!("{0} is not a power of 2", align))write!(f, "{align} is not a power of 2"),
1129 AlignFromBytesError::TooLarge(align) => f.write_fmt(format_args!("{0} is too large", align))write!(f, "{align} is too large"),
1130 }
1131 }
1132}
1133
1134impl Align {
1135 pub const ONE: Align = Align { pow2: 0 };
1136 pub const EIGHT: Align = Align { pow2: 3 };
1137 pub const MAX: Align = Align { pow2: 29 };
1139
1140 #[inline]
1142 pub fn max_for_target(tdl: &TargetDataLayout) -> Align {
1143 let pointer_bits = u8::try_from(tdl.pointer_size().bits()).unwrap();
1144 min(Align { pow2: pointer_bits - 1 }, Align::MAX)
1145 }
1146
1147 #[inline]
1148 pub fn from_bits(bits: u64) -> Result<Align, AlignFromBytesError> {
1149 Align::from_bytes(Size::from_bits(bits).bytes())
1150 }
1151
1152 #[inline]
1153 pub const fn from_bytes(align: u64) -> Result<Align, AlignFromBytesError> {
1154 if align == 0 {
1156 return Ok(Align::ONE);
1157 }
1158
1159 #[cold]
1160 const fn not_power_of_2(align: u64) -> AlignFromBytesError {
1161 AlignFromBytesError::NotPowerOfTwo(align)
1162 }
1163
1164 #[cold]
1165 const fn too_large(align: u64) -> AlignFromBytesError {
1166 AlignFromBytesError::TooLarge(align)
1167 }
1168
1169 let tz = align.trailing_zeros();
1170 if align != (1 << tz) {
1171 return Err(not_power_of_2(align));
1172 }
1173
1174 let pow2 = tz as u8;
1175 if pow2 > Self::MAX.pow2 {
1176 return Err(too_large(align));
1177 }
1178
1179 Ok(Align { pow2 })
1180 }
1181
1182 #[inline]
1183 pub const fn bytes(self) -> u64 {
1184 1 << self.pow2
1185 }
1186
1187 #[inline]
1188 pub fn bytes_usize(self) -> usize {
1189 self.bytes().try_into().unwrap()
1190 }
1191
1192 #[inline]
1193 pub const fn bits(self) -> u64 {
1194 self.bytes() * 8
1195 }
1196
1197 #[inline]
1198 pub fn bits_usize(self) -> usize {
1199 self.bits().try_into().unwrap()
1200 }
1201
1202 #[inline]
1207 pub fn max_aligned_factor(size: Size) -> Align {
1208 Align { pow2: size.bytes().trailing_zeros() as u8 }
1209 }
1210
1211 #[inline]
1213 pub fn restrict_for_offset(self, size: Size) -> Align {
1214 self.min(Align::max_aligned_factor(size))
1215 }
1216}
1217
1218#[derive(#[automatically_derived]
impl ::core::marker::Copy for AbiAlign { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AbiAlign { }
#[automatically_derived]
impl ::core::clone::Clone for AbiAlign {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Align>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for AbiAlign { }
#[automatically_derived]
impl ::core::cmp::PartialEq for AbiAlign {
#[inline]
fn eq(&self, other: &Self) -> bool { self.abi == other.abi }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for AbiAlign {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Align>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for AbiAlign {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.abi, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for AbiAlign {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field1_finish(f, "AbiAlign",
"abi", &&self.abi)
}
}Debug)]
1228#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for AbiAlign {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
AbiAlign { abi: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
1229pub struct AbiAlign {
1230 pub abi: Align,
1231}
1232
1233impl AbiAlign {
1234 #[inline]
1235 pub fn new(align: Align) -> AbiAlign {
1236 AbiAlign { abi: align }
1237 }
1238
1239 #[inline]
1240 pub fn min(self, other: AbiAlign) -> AbiAlign {
1241 AbiAlign { abi: self.abi.min(other.abi) }
1242 }
1243
1244 #[inline]
1245 pub fn max(self, other: AbiAlign) -> AbiAlign {
1246 AbiAlign { abi: self.abi.max(other.abi) }
1247 }
1248}
1249
1250impl Deref for AbiAlign {
1251 type Target = Align;
1252
1253 fn deref(&self) -> &Self::Target {
1254 &self.abi
1255 }
1256}
1257
1258#[derive(#[automatically_derived]
impl ::core::marker::Copy for Integer { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Integer { }
#[automatically_derived]
impl ::core::clone::Clone for Integer {
#[inline]
fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Integer { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Integer {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other)
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Integer { }Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for Integer {
#[inline]
fn partial_cmp(&self, other: &Self)
-> ::core::option::Option<::core::cmp::Ordering> {
::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
}
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for Integer {
#[inline]
fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
::core::cmp::Ord::cmp(&::core::intrinsics::discriminant_value(self),
&::core::intrinsics::discriminant_value(other))
}
}Ord, #[automatically_derived]
impl ::core::hash::Hash for Integer {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for Integer {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
Integer::I8 => "I8",
Integer::I16 => "I16",
Integer::I32 => "I32",
Integer::I64 => "I64",
Integer::I128 => "I128",
})
}
}Debug)]
1260#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<__E: ::rustc_serialize::Encoder>
::rustc_serialize::Encodable<__E> for Integer {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
Integer::I8 => { 0usize }
Integer::I16 => { 1usize }
Integer::I32 => { 2usize }
Integer::I64 => { 3usize }
Integer::I128 => { 4usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
}
}
};Encodable_NoContext, const _: () =
{
impl<__D: ::rustc_serialize::Decoder>
::rustc_serialize::Decodable<__D> for Integer {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => { Integer::I8 }
1usize => { Integer::I16 }
2usize => { Integer::I32 }
3usize => { Integer::I64 }
4usize => { Integer::I128 }
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Integer`, expected 0..5, actual {0}",
n));
}
}
}
}
};Decodable_NoContext, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for Integer {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
Integer::I8 => {}
Integer::I16 => {}
Integer::I32 => {}
Integer::I64 => {}
Integer::I128 => {}
}
}
}
};StableHash))]
1261pub enum Integer {
1262 I8,
1263 I16,
1264 I32,
1265 I64,
1266 I128,
1267}
1268
1269impl Integer {
1270 pub fn int_ty_str(self) -> &'static str {
1271 use Integer::*;
1272 match self {
1273 I8 => "i8",
1274 I16 => "i16",
1275 I32 => "i32",
1276 I64 => "i64",
1277 I128 => "i128",
1278 }
1279 }
1280
1281 pub fn uint_ty_str(self) -> &'static str {
1282 use Integer::*;
1283 match self {
1284 I8 => "u8",
1285 I16 => "u16",
1286 I32 => "u32",
1287 I64 => "u64",
1288 I128 => "u128",
1289 }
1290 }
1291
1292 #[inline]
1293 pub fn size(self) -> Size {
1294 use Integer::*;
1295 match self {
1296 I8 => Size::from_bytes(1),
1297 I16 => Size::from_bytes(2),
1298 I32 => Size::from_bytes(4),
1299 I64 => Size::from_bytes(8),
1300 I128 => Size::from_bytes(16),
1301 }
1302 }
1303
1304 pub fn from_attr<C: HasDataLayout>(cx: &C, ity: IntegerType) -> Integer {
1306 let dl = cx.data_layout();
1307
1308 match ity {
1309 IntegerType::Pointer(_) => dl.ptr_sized_integer(),
1310 IntegerType::Fixed(x, _) => x,
1311 }
1312 }
1313
1314 pub fn align<C: HasDataLayout>(self, cx: &C) -> AbiAlign {
1315 use Integer::*;
1316 let dl = cx.data_layout();
1317
1318 AbiAlign::new(match self {
1319 I8 => dl.i8_align,
1320 I16 => dl.i16_align,
1321 I32 => dl.i32_align,
1322 I64 => dl.i64_align,
1323 I128 => dl.i128_align,
1324 })
1325 }
1326
1327 #[inline]
1329 pub fn signed_max(self) -> i128 {
1330 use Integer::*;
1331 match self {
1332 I8 => i8::MAX as i128,
1333 I16 => i16::MAX as i128,
1334 I32 => i32::MAX as i128,
1335 I64 => i64::MAX as i128,
1336 I128 => i128::MAX,
1337 }
1338 }
1339
1340 #[inline]
1342 pub fn signed_min(self) -> i128 {
1343 use Integer::*;
1344 match self {
1345 I8 => i8::MIN as i128,
1346 I16 => i16::MIN as i128,
1347 I32 => i32::MIN as i128,
1348 I64 => i64::MIN as i128,
1349 I128 => i128::MIN,
1350 }
1351 }
1352
1353 #[inline]
1355 pub fn fit_signed(x: i128) -> Integer {
1356 use Integer::*;
1357 match x {
1358 -0x0000_0000_0000_0080..=0x0000_0000_0000_007f => I8,
1359 -0x0000_0000_0000_8000..=0x0000_0000_0000_7fff => I16,
1360 -0x0000_0000_8000_0000..=0x0000_0000_7fff_ffff => I32,
1361 -0x8000_0000_0000_0000..=0x7fff_ffff_ffff_ffff => I64,
1362 _ => I128,
1363 }
1364 }
1365
1366 #[inline]
1368 pub fn fit_unsigned(x: u128) -> Integer {
1369 use Integer::*;
1370 match x {
1371 0..=0x0000_0000_0000_00ff => I8,
1372 0..=0x0000_0000_0000_ffff => I16,
1373 0..=0x0000_0000_ffff_ffff => I32,
1374 0..=0xffff_ffff_ffff_ffff => I64,
1375 _ => I128,
1376 }
1377 }
1378
1379 pub fn for_align<C: HasDataLayout>(cx: &C, wanted: Align) -> Option<Integer> {
1381 use Integer::*;
1382 let dl = cx.data_layout();
1383
1384 [I8, I16, I32, I64, I128].into_iter().find(|&candidate| {
1385 wanted == candidate.align(dl).abi && wanted.bytes() == candidate.size().bytes()
1386 })
1387 }
1388
1389 pub fn approximate_align<C: HasDataLayout>(cx: &C, wanted: Align) -> Integer {
1391 use Integer::*;
1392 let dl = cx.data_layout();
1393
1394 for candidate in [I64, I32, I16] {
1396 if wanted >= candidate.align(dl).abi && wanted.bytes() >= candidate.size().bytes() {
1397 return candidate;
1398 }
1399 }
1400 I8
1401 }
1402
1403 #[inline]
1406 pub fn from_size(size: Size) -> Result<Self, String> {
1407 match size.bits() {
1408 8 => Ok(Integer::I8),
1409 16 => Ok(Integer::I16),
1410 32 => Ok(Integer::I32),
1411 64 => Ok(Integer::I64),
1412 128 => Ok(Integer::I128),
1413 _ => Err(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("rust does not support integers with {0} bits",
size.bits()))
})format!("rust does not support integers with {} bits", size.bits())),
1414 }
1415 }
1416}
1417
1418#[derive(#[automatically_derived]
impl ::core::marker::Copy for Float { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Float { }
#[automatically_derived]
impl ::core::clone::Clone for Float {
#[inline]
fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Float { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Float {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other)
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Float { }Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for Float {
#[inline]
fn partial_cmp(&self, other: &Self)
-> ::core::option::Option<::core::cmp::Ordering> {
::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
}
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for Float {
#[inline]
fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
::core::cmp::Ord::cmp(&::core::intrinsics::discriminant_value(self),
&::core::intrinsics::discriminant_value(other))
}
}Ord, #[automatically_derived]
impl ::core::hash::Hash for Float {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for Float {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
Float::F16 => "F16",
Float::F16B => "F16B",
Float::F32 => "F32",
Float::F64 => "F64",
Float::F128 => "F128",
})
}
}Debug)]
1420#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for Float {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
Float::F16 => {}
Float::F16B => {}
Float::F32 => {}
Float::F64 => {}
Float::F128 => {}
}
}
}
};StableHash))]
1421pub enum Float {
1422 F16,
1423 F16B,
1427 F32,
1428 F64,
1429 F128,
1430}
1431
1432impl Float {
1433 pub fn size(self) -> Size {
1434 use Float::*;
1435
1436 match self {
1437 F16 => Size::from_bits(16),
1438 F16B => Size::from_bits(16),
1439 F32 => Size::from_bits(32),
1440 F64 => Size::from_bits(64),
1441 F128 => Size::from_bits(128),
1442 }
1443 }
1444
1445 pub fn align<C: HasDataLayout>(self, cx: &C) -> AbiAlign {
1446 use Float::*;
1447 let dl = cx.data_layout();
1448
1449 AbiAlign::new(match self {
1450 F16 | F16B => dl.f16_align,
1451 F32 => dl.f32_align,
1452 F64 => dl.f64_align,
1453 F128 => dl.f128_align,
1454 })
1455 }
1456
1457 pub fn ty_str(self) -> &'static str {
1458 use Float::*;
1459
1460 match self {
1461 F16 => "f16",
1462 F16B => "f16b",
1463 F32 => "f32",
1464 F64 => "f64",
1465 F128 => "f128",
1466 }
1467 }
1468}
1469
1470#[derive(#[automatically_derived]
impl ::core::marker::Copy for Numeric { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Numeric { }
#[automatically_derived]
impl ::core::clone::Clone for Numeric {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Integer>;
let _: ::core::clone::AssertParamIsClone<bool>;
let _: ::core::clone::AssertParamIsClone<Float>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Numeric { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Numeric {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::Int(__self_0, __self_1), Self::Int(__arg1_0, __arg1_1))
=> __self_1 == __arg1_1 && __self_0 == __arg1_0,
(Self::Float(__self_0), Self::Float(__arg1_0)) =>
__self_0 == __arg1_0,
_ => unsafe { ::core::intrinsics::unreachable() }
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Numeric {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Integer>;
let _: ::core::cmp::AssertParamIsEq<bool>;
let _: ::core::cmp::AssertParamIsEq<Float>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for Numeric {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
state);
match self {
Self::Int(__self_0, __self_1) => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
Self::Float(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
}
}
}Hash)]
1472#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for Numeric {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
Numeric::Int(ref __binding_0, ref __binding_1) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
Numeric::Float(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
1473pub enum Numeric {
1474 Int(Integer, bool),
1476 Float(Float),
1477}
1478
1479impl Numeric {
1480 pub fn size(self) -> Size {
1481 match self {
1482 Numeric::Int(integer, _) => integer.size(),
1483 Numeric::Float(float) => float.size(),
1484 }
1485 }
1486
1487 pub fn reg_kind(self) -> RegKind {
1488 match self {
1489 Numeric::Int(_, _) => RegKind::Integer,
1490 Numeric::Float(_) => RegKind::Float,
1491 }
1492 }
1493}
1494
1495#[derive(#[automatically_derived]
impl ::core::marker::Copy for Primitive { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Primitive { }
#[automatically_derived]
impl ::core::clone::Clone for Primitive {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Integer>;
let _: ::core::clone::AssertParamIsClone<bool>;
let _: ::core::clone::AssertParamIsClone<Float>;
let _: ::core::clone::AssertParamIsClone<AddressSpace>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Primitive { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Primitive {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::Int(__self_0, __self_1), Self::Int(__arg1_0, __arg1_1))
=> __self_1 == __arg1_1 && __self_0 == __arg1_0,
(Self::Float(__self_0), Self::Float(__arg1_0)) =>
__self_0 == __arg1_0,
(Self::Pointer(__self_0), Self::Pointer(__arg1_0)) =>
__self_0 == __arg1_0,
_ => unsafe { ::core::intrinsics::unreachable() }
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Primitive {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Integer>;
let _: ::core::cmp::AssertParamIsEq<bool>;
let _: ::core::cmp::AssertParamIsEq<Float>;
let _: ::core::cmp::AssertParamIsEq<AddressSpace>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for Primitive {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
state);
match self {
Self::Int(__self_0, __self_1) => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
Self::Float(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
Self::Pointer(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
}
}
}Hash)]
1497#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for Primitive {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
Primitive::Int(ref __binding_0, ref __binding_1) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
Primitive::Float(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
Primitive::Pointer(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
1498pub enum Primitive {
1499 Int(Integer, bool),
1507 Float(Float),
1508 Pointer(AddressSpace),
1509}
1510
1511impl fmt::Debug for Primitive {
1512 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1513 let name = match *self {
1514 Primitive::Int(integer, is_signed) => {
1515 if is_signed {
1516 integer.int_ty_str()
1517 } else {
1518 integer.uint_ty_str()
1519 }
1520 }
1521 Primitive::Float(float) => float.ty_str(),
1522 Primitive::Pointer(addr_space) => {
1523 if addr_space == AddressSpace::ZERO {
1524 "pointer"
1525 } else {
1526 return f.write_fmt(format_args!("pointer({0:?})", addr_space))write!(f, "pointer({addr_space:?})");
1527 }
1528 }
1529 };
1530 f.write_str(name)
1531 }
1532}
1533
1534impl Primitive {
1535 pub fn size<C: HasDataLayout>(self, cx: &C) -> Size {
1536 use Primitive::*;
1537 let dl = cx.data_layout();
1538
1539 match self {
1540 Int(i, _) => i.size(),
1541 Float(f) => f.size(),
1542 Pointer(a) => dl.pointer_size_in(a),
1543 }
1544 }
1545
1546 pub fn default_align<C: HasDataLayout>(self, cx: &C) -> AbiAlign {
1551 use Primitive::*;
1552 let dl = cx.data_layout();
1553
1554 match self {
1555 Int(i, _) => i.align(dl),
1556 Float(f) => f.align(dl),
1557 Pointer(a) => dl.pointer_align_in(a),
1558 }
1559 }
1560}
1561
1562#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Scalar { }
#[automatically_derived]
impl ::core::clone::Clone for Scalar {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Primitive>;
let _: ::core::clone::AssertParamIsClone<WrappingRange>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for Scalar { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Scalar { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Scalar {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::Initialized { value: __self_0, valid_range: __self_1 },
Self::Initialized { value: __arg1_0, valid_range: __arg1_1
}) => __self_0 == __arg1_0 && __self_1 == __arg1_1,
(Self::Union { value: __self_0 }, Self::Union {
value: __arg1_0 }) => __self_0 == __arg1_0,
_ => unsafe { ::core::intrinsics::unreachable() }
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Scalar {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Primitive>;
let _: ::core::cmp::AssertParamIsEq<WrappingRange>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for Scalar {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
state);
match self {
Self::Initialized { value: __self_0, valid_range: __self_1 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
Self::Union { value: __self_0 } =>
::core::hash::Hash::hash(__self_0, state),
}
}
}Hash)]
1564#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for Scalar {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
Scalar::Initialized {
value: ref __binding_0, valid_range: ref __binding_1 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
Scalar::Union { value: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
1565pub enum Scalar {
1566 Initialized {
1567 value: Primitive,
1568
1569 valid_range: WrappingRange,
1573 },
1574 Union {
1575 value: Primitive,
1581 },
1582}
1583
1584impl fmt::Debug for Scalar {
1585 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1586 match self {
1587 Scalar::Initialized { value, valid_range } => {
1588 let (size, is_signed) = match *value {
1589 Primitive::Int(integer, is_signed) => (integer.size(), is_signed),
1590 Primitive::Float(float) => (float.size(), false),
1591 Primitive::Pointer(_) => (Size::from_bits(128), false),
1592 };
1593 f.write_fmt(format_args!("{1:?} is {0:?}",
valid_range.debug_as(size, is_signed), value))write!(f, "{value:?} is {:?}", valid_range.debug_as(size, is_signed))
1594 }
1595 Scalar::Union { value } => {
1596 f.write_fmt(format_args!("union {0:?}", value))write!(f, "union {value:?}")
1597 }
1598 }
1599 }
1600}
1601
1602impl Scalar {
1603 #[inline]
1604 pub fn is_bool(&self) -> bool {
1605 use Integer::*;
1606 #[allow(non_exhaustive_omitted_patterns)] match self {
Scalar::Initialized {
value: Primitive::Int(I8, false),
valid_range: WrappingRange { start: 0, end: 1 } } => true,
_ => false,
}matches!(
1607 self,
1608 Scalar::Initialized {
1609 value: Primitive::Int(I8, false),
1610 valid_range: WrappingRange { start: 0, end: 1 }
1611 }
1612 )
1613 }
1614
1615 pub fn primitive(&self) -> Primitive {
1618 match *self {
1619 Scalar::Initialized { value, .. } | Scalar::Union { value } => value,
1620 }
1621 }
1622
1623 pub fn default_align(self, cx: &impl HasDataLayout) -> AbiAlign {
1628 self.primitive().default_align(cx)
1629 }
1630
1631 pub fn size(self, cx: &impl HasDataLayout) -> Size {
1632 self.primitive().size(cx)
1633 }
1634
1635 #[inline]
1636 pub fn to_union(&self) -> Self {
1637 Self::Union { value: self.primitive() }
1638 }
1639
1640 #[inline]
1641 pub fn valid_range(&self, cx: &impl HasDataLayout) -> WrappingRange {
1642 match *self {
1643 Scalar::Initialized { valid_range, .. } => valid_range,
1644 Scalar::Union { value } => WrappingRange::full(value.size(cx)),
1645 }
1646 }
1647
1648 #[inline]
1649 pub fn valid_range_mut(&mut self) -> &mut WrappingRange {
1652 match self {
1653 Scalar::Initialized { valid_range, .. } => valid_range,
1654 Scalar::Union { .. } => {
::core::panicking::panic_fmt(format_args!("cannot change the valid range of a union"));
}panic!("cannot change the valid range of a union"),
1655 }
1656 }
1657
1658 #[inline]
1661 pub fn is_always_valid<C: HasDataLayout>(&self, cx: &C) -> bool {
1662 match *self {
1663 Scalar::Initialized { valid_range, .. } => valid_range.is_full_for(self.size(cx)),
1664 Scalar::Union { .. } => true,
1665 }
1666 }
1667
1668 #[inline]
1670 pub fn is_uninit_valid(&self) -> bool {
1671 match *self {
1672 Scalar::Initialized { .. } => false,
1673 Scalar::Union { .. } => true,
1674 }
1675 }
1676
1677 #[inline]
1679 pub fn is_signed(&self) -> bool {
1680 match self.primitive() {
1681 Primitive::Int(_, signed) => signed,
1682 _ => false,
1683 }
1684 }
1685}
1686
1687#[derive(#[automatically_derived]
impl<FieldIdx: ::core::cmp::PartialEq + Idx>
::core::marker::StructuralPartialEq for FieldsShape<FieldIdx> {
}
#[automatically_derived]
impl<FieldIdx: ::core::cmp::PartialEq + Idx> ::core::cmp::PartialEq for
FieldsShape<FieldIdx> {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::Union(__self_0), Self::Union(__arg1_0)) =>
__self_0 == __arg1_0,
(Self::Array { stride: __self_0, count: __self_1 },
Self::Array { stride: __arg1_0, count: __arg1_1 }) =>
__self_1 == __arg1_1 && __self_0 == __arg1_0,
(Self::Arbitrary {
offsets: __self_0, in_memory_order: __self_1 },
Self::Arbitrary {
offsets: __arg1_0, in_memory_order: __arg1_1 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl<FieldIdx: ::core::cmp::Eq + Idx> ::core::cmp::Eq for
FieldsShape<FieldIdx> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<NonZero<usize>>;
let _: ::core::cmp::AssertParamIsEq<Size>;
let _: ::core::cmp::AssertParamIsEq<u64>;
let _: ::core::cmp::AssertParamIsEq<IndexVec<FieldIdx, Size>>;
let _: ::core::cmp::AssertParamIsEq<IndexVec<u32, FieldIdx>>;
}
}Eq, #[automatically_derived]
impl<FieldIdx: ::core::hash::Hash + Idx> ::core::hash::Hash for
FieldsShape<FieldIdx> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
state);
match self {
Self::Union(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
Self::Array { stride: __self_0, count: __self_1 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
Self::Arbitrary { offsets: __self_0, in_memory_order: __self_1 }
=> {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
_ => {}
}
}
}Hash, #[automatically_derived]
impl<FieldIdx: ::core::clone::Clone + Idx> ::core::clone::Clone for
FieldsShape<FieldIdx> {
#[inline]
fn clone(&self) -> Self {
match self {
Self::Primitive => Self::Primitive,
Self::Union(__self_0) =>
Self::Union(::core::clone::Clone::clone(__self_0)),
Self::Array { stride: __self_0, count: __self_1 } =>
Self::Array {
stride: ::core::clone::Clone::clone(__self_0),
count: ::core::clone::Clone::clone(__self_1),
},
Self::Arbitrary { offsets: __self_0, in_memory_order: __self_1 }
=>
Self::Arbitrary {
offsets: ::core::clone::Clone::clone(__self_0),
in_memory_order: ::core::clone::Clone::clone(__self_1),
},
}
}
}Clone, #[automatically_derived]
impl<FieldIdx: ::core::fmt::Debug + Idx> ::core::fmt::Debug for
FieldsShape<FieldIdx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Self::Primitive =>
::core::fmt::Formatter::write_str(f, "Primitive"),
Self::Union(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Union",
&__self_0),
Self::Array { stride: __self_0, count: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f, "Array",
"stride", __self_0, "count", &__self_1),
Self::Arbitrary { offsets: __self_0, in_memory_order: __self_1 }
=>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"Arbitrary", "offsets", __self_0, "in_memory_order",
&__self_1),
}
}
}Debug)]
1690#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<FieldIdx: Idx> ::rustc_data_structures::stable_hash::StableHash
for FieldsShape<FieldIdx> where
FieldIdx: ::rustc_data_structures::stable_hash::StableHash {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
FieldsShape::Primitive => {}
FieldsShape::Union(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
FieldsShape::Array {
stride: ref __binding_0, count: ref __binding_1 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
FieldsShape::Arbitrary {
offsets: ref __binding_0, in_memory_order: ref __binding_1 }
=> {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
1691pub enum FieldsShape<FieldIdx: Idx> {
1692 Primitive,
1694
1695 Union(NonZero<usize>),
1697
1698 Array { stride: Size, count: u64 },
1700
1701 Arbitrary {
1709 offsets: IndexVec<FieldIdx, Size>,
1714
1715 in_memory_order: IndexVec<u32, FieldIdx>,
1723 },
1724}
1725
1726impl<FieldIdx: Idx> FieldsShape<FieldIdx> {
1727 #[inline]
1728 pub fn count(&self) -> usize {
1729 match *self {
1730 FieldsShape::Primitive => 0,
1731 FieldsShape::Union(count) => count.get(),
1732 FieldsShape::Array { count, .. } => count.try_into().unwrap(),
1733 FieldsShape::Arbitrary { ref offsets, .. } => offsets.len(),
1734 }
1735 }
1736
1737 #[inline]
1738 pub fn offset(&self, i: usize) -> Size {
1739 match *self {
1740 FieldsShape::Primitive => {
1741 {
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("FieldsShape::offset: `Primitive`s have no fields")));
}unreachable!("FieldsShape::offset: `Primitive`s have no fields")
1742 }
1743 FieldsShape::Union(count) => {
1744 if !(i < count.get()) {
{
::core::panicking::panic_fmt(format_args!("tried to access field {0} of union with {1} fields",
i, count));
}
};assert!(i < count.get(), "tried to access field {i} of union with {count} fields");
1745 Size::ZERO
1746 }
1747 FieldsShape::Array { stride, count } => {
1748 let i = u64::try_from(i).unwrap();
1749 if !(i < count) {
{
::core::panicking::panic_fmt(format_args!("tried to access field {0} of array with {1} fields",
i, count));
}
};assert!(i < count, "tried to access field {i} of array with {count} fields");
1750 stride * i
1751 }
1752 FieldsShape::Arbitrary { ref offsets, .. } => offsets[FieldIdx::new(i)],
1753 }
1754 }
1755
1756 #[inline]
1758 pub fn index_by_increasing_offset(&self) -> impl ExactSizeIterator<Item = usize> {
1759 let pseudofield_count = if let FieldsShape::Primitive = self { 1 } else { self.count() };
1763
1764 (0..pseudofield_count).map(move |i| match self {
1765 FieldsShape::Primitive | FieldsShape::Union(_) | FieldsShape::Array { .. } => i,
1766 FieldsShape::Arbitrary { in_memory_order, .. } => in_memory_order[i as u32].index(),
1767 })
1768 }
1769}
1770
1771#[derive(#[automatically_derived]
impl ::core::marker::Copy for AddressSpace { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AddressSpace { }
#[automatically_derived]
impl ::core::clone::Clone for AddressSpace {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<u32>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AddressSpace {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_tuple_field1_finish(f, "AddressSpace",
&&self.0)
}
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for AddressSpace { }
#[automatically_derived]
impl ::core::cmp::PartialEq for AddressSpace {
#[inline]
fn eq(&self, other: &Self) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for AddressSpace {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<u32>;
}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for AddressSpace {
#[inline]
fn partial_cmp(&self, other: &Self)
-> ::core::option::Option<::core::cmp::Ordering> {
::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
}
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for AddressSpace {
#[inline]
fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
::core::cmp::Ord::cmp(&self.0, &other.0)
}
}Ord, #[automatically_derived]
impl ::core::hash::Hash for AddressSpace {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.0, state)
}
}Hash)]
1775#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for AddressSpace
{
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
AddressSpace(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
1776pub struct AddressSpace(pub u32);
1777
1778impl AddressSpace {
1779 pub const ZERO: Self = AddressSpace(0);
1781 pub const GPU_CONSTANT: Self = AddressSpace(4);
1785 pub const GPU_WORKGROUP: Self = AddressSpace(3);
1788}
1789
1790#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for NumScalableVectors { }
#[automatically_derived]
impl ::core::clone::Clone for NumScalableVectors {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<u8>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for NumScalableVectors { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for NumScalableVectors { }
#[automatically_derived]
impl ::core::cmp::PartialEq for NumScalableVectors {
#[inline]
fn eq(&self, other: &Self) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for NumScalableVectors {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<u8>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for NumScalableVectors {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.0, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for NumScalableVectors {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"NumScalableVectors", &&self.0)
}
}Debug)]
1792#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for
NumScalableVectors {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
NumScalableVectors(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
1793pub struct NumScalableVectors(pub u8);
1794
1795impl NumScalableVectors {
1796 pub fn for_non_tuple() -> Self {
1798 NumScalableVectors(1)
1799 }
1800
1801 pub fn from_field_count(count: usize) -> Option<Self> {
1805 match count {
1806 2..8 => Some(NumScalableVectors(count as u8)),
1807 _ => None,
1808 }
1809 }
1810}
1811
1812#[cfg(feature = "nightly")]
1813impl IntoDiagArg for NumScalableVectors {
1814 fn into_diag_arg(self, _: &mut Option<std::path::PathBuf>) -> DiagArgValue {
1815 DiagArgValue::Str(std::borrow::Cow::Borrowed(match self.0 {
1816 0 => {
::core::panicking::panic_fmt(format_args!("`NumScalableVectors(0)` is illformed"));
}panic!("`NumScalableVectors(0)` is illformed"),
1817 1 => "one",
1818 2 => "two",
1819 3 => "three",
1820 4 => "four",
1821 5 => "five",
1822 6 => "six",
1823 7 => "seven",
1824 8 => "eight",
1825 _ => {
::core::panicking::panic_fmt(format_args!("`NumScalableVectors(N)` for N>8 is illformed"));
}panic!("`NumScalableVectors(N)` for N>8 is illformed"),
1826 }))
1827 }
1828}
1829
1830#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for BackendRepr { }
#[automatically_derived]
impl ::core::clone::Clone for BackendRepr {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Scalar>;
let _: ::core::clone::AssertParamIsClone<Size>;
let _: ::core::clone::AssertParamIsClone<BackendLaneCount>;
let _: ::core::clone::AssertParamIsClone<NumScalableVectors>;
let _: ::core::clone::AssertParamIsClone<bool>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for BackendRepr { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for BackendRepr { }
#[automatically_derived]
impl ::core::cmp::PartialEq for BackendRepr {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::Scalar(__self_0), Self::Scalar(__arg1_0)) =>
__self_0 == __arg1_0,
(Self::ScalarPair {
a: __self_0, b: __self_1, b_offset: __self_2 },
Self::ScalarPair {
a: __arg1_0, b: __arg1_1, b_offset: __arg1_2 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1 &&
__self_2 == __arg1_2,
(Self::SimdScalableVector {
element: __self_0,
count: __self_1,
number_of_vectors: __self_2 }, Self::SimdScalableVector {
element: __arg1_0,
count: __arg1_1,
number_of_vectors: __arg1_2 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1 &&
__self_2 == __arg1_2,
(Self::SimdVector { element: __self_0, count: __self_1 },
Self::SimdVector { element: __arg1_0, count: __arg1_1 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1,
(Self::Memory { sized: __self_0 }, Self::Memory {
sized: __arg1_0 }) => __self_0 == __arg1_0,
_ => unsafe { ::core::intrinsics::unreachable() }
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for BackendRepr {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Scalar>;
let _: ::core::cmp::AssertParamIsEq<Size>;
let _: ::core::cmp::AssertParamIsEq<BackendLaneCount>;
let _: ::core::cmp::AssertParamIsEq<NumScalableVectors>;
let _: ::core::cmp::AssertParamIsEq<bool>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for BackendRepr {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
state);
match self {
Self::Scalar(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
Self::ScalarPair { a: __self_0, b: __self_1, b_offset: __self_2 }
=> {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state);
::core::hash::Hash::hash(__self_2, state)
}
Self::SimdScalableVector {
element: __self_0,
count: __self_1,
number_of_vectors: __self_2 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state);
::core::hash::Hash::hash(__self_2, state)
}
Self::SimdVector { element: __self_0, count: __self_1 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
Self::Memory { sized: __self_0 } =>
::core::hash::Hash::hash(__self_0, state),
}
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for BackendRepr {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Self::Scalar(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Scalar",
&__self_0),
Self::ScalarPair { a: __self_0, b: __self_1, b_offset: __self_2 }
=>
::core::fmt::Formatter::debug_struct_field3_finish(f,
"ScalarPair", "a", __self_0, "b", __self_1, "b_offset",
&__self_2),
Self::SimdScalableVector {
element: __self_0,
count: __self_1,
number_of_vectors: __self_2 } =>
::core::fmt::Formatter::debug_struct_field3_finish(f,
"SimdScalableVector", "element", __self_0, "count",
__self_1, "number_of_vectors", &__self_2),
Self::SimdVector { element: __self_0, count: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"SimdVector", "element", __self_0, "count", &__self_1),
Self::Memory { sized: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"Memory", "sized", &__self_0),
}
}
}Debug)]
1841#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for BackendRepr
{
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
BackendRepr::Scalar(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
BackendRepr::ScalarPair {
a: ref __binding_0,
b: ref __binding_1,
b_offset: ref __binding_2 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
}
BackendRepr::SimdScalableVector {
element: ref __binding_0,
count: ref __binding_1,
number_of_vectors: ref __binding_2 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
}
BackendRepr::SimdVector {
element: ref __binding_0, count: ref __binding_1 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
BackendRepr::Memory { sized: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
1842pub enum BackendRepr {
1843 Scalar(Scalar),
1844 ScalarPair {
1853 a: Scalar,
1854 b: Scalar,
1855 b_offset: Size,
1856 },
1857 SimdScalableVector {
1858 element: Scalar,
1859 count: BackendLaneCount,
1860 number_of_vectors: NumScalableVectors,
1861 },
1862 SimdVector {
1863 element: Scalar,
1864 count: BackendLaneCount,
1865 },
1866 Memory {
1868 sized: bool,
1870 },
1871}
1872
1873impl BackendRepr {
1874 #[inline]
1876 pub fn is_unsized(&self) -> bool {
1877 match *self {
1878 BackendRepr::Scalar(_)
1879 | BackendRepr::ScalarPair { .. }
1880 | BackendRepr::SimdScalableVector { .. }
1886 | BackendRepr::SimdVector { .. } => false,
1887 BackendRepr::Memory { sized } => !sized,
1888 }
1889 }
1890
1891 #[inline]
1892 pub fn is_sized(&self) -> bool {
1893 !self.is_unsized()
1894 }
1895
1896 #[inline]
1899 pub fn is_signed(&self) -> bool {
1900 match self {
1901 BackendRepr::Scalar(scal) => scal.is_signed(),
1902 _ => {
::core::panicking::panic_fmt(format_args!("`is_signed` on non-scalar ABI {0:?}",
self));
}panic!("`is_signed` on non-scalar ABI {self:?}"),
1903 }
1904 }
1905
1906 #[inline]
1910 pub fn is_scalar(&self) -> bool {
1911 #[allow(non_exhaustive_omitted_patterns)] match *self {
BackendRepr::Scalar(_) => true,
_ => false,
}matches!(*self, BackendRepr::Scalar(_))
1912 }
1913
1914 #[inline]
1916 pub fn is_scalar_or_simd(&self) -> bool {
1917 #[allow(non_exhaustive_omitted_patterns)] match *self {
BackendRepr::Scalar(_) | BackendRepr::SimdVector { .. } |
BackendRepr::SimdScalableVector { .. } => true,
_ => false,
}matches!(
1918 *self,
1919 BackendRepr::Scalar(_)
1920 | BackendRepr::SimdVector { .. }
1921 | BackendRepr::SimdScalableVector { .. }
1922 )
1923 }
1924
1925 #[inline]
1927 pub fn is_bool(&self) -> bool {
1928 #[allow(non_exhaustive_omitted_patterns)] match *self {
BackendRepr::Scalar(s) if s.is_bool() => true,
_ => false,
}matches!(*self, BackendRepr::Scalar(s) if s.is_bool())
1929 }
1930
1931 pub fn scalar_platform_align<C: HasDataLayout>(&self, cx: &C) -> Option<Align> {
1939 match *self {
1940 BackendRepr::Scalar(s) => Some(s.default_align(cx).abi),
1941 BackendRepr::ScalarPair { a: s1, b: s2, b_offset: _ } => {
1942 Some(s1.default_align(cx).max(s2.default_align(cx)).abi)
1943 }
1944 BackendRepr::SimdVector { .. }
1946 | BackendRepr::Memory { .. }
1947 | BackendRepr::SimdScalableVector { .. } => None,
1948 }
1949 }
1950
1951 pub fn scalar_size<C: HasDataLayout>(&self, cx: &C) -> Option<Size> {
1955 match *self {
1956 BackendRepr::Scalar(s) => Some(s.size(cx)),
1958 BackendRepr::ScalarPair { a: _, b: s2, b_offset: field2_offset } => {
1960 let size = (field2_offset + s2.size(cx)).align_to(
1961 self.scalar_platform_align(cx)
1962 .unwrap(),
1964 );
1965 Some(size)
1966 }
1967 BackendRepr::SimdVector { .. }
1969 | BackendRepr::Memory { .. }
1970 | BackendRepr::SimdScalableVector { .. } => None,
1971 }
1972 }
1973
1974 pub fn to_union(&self) -> Self {
1976 match *self {
1977 BackendRepr::Scalar(s) => BackendRepr::Scalar(s.to_union()),
1978 BackendRepr::ScalarPair { a: s1, b: s2, b_offset } => {
1979 BackendRepr::ScalarPair { a: s1.to_union(), b: s2.to_union(), b_offset }
1980 }
1981 BackendRepr::SimdVector { element, count } => {
1982 BackendRepr::SimdVector { element: element.to_union(), count }
1983 }
1984 BackendRepr::Memory { .. } => BackendRepr::Memory { sized: true },
1985 BackendRepr::SimdScalableVector { element, count, number_of_vectors } => {
1986 BackendRepr::SimdScalableVector {
1987 element: element.to_union(),
1988 count,
1989 number_of_vectors,
1990 }
1991 }
1992 }
1993 }
1994
1995 pub fn eq_up_to_validity(&self, other: &Self) -> bool {
1996 match (self, other) {
1997 (BackendRepr::Scalar(l), BackendRepr::Scalar(r)) => l.primitive() == r.primitive(),
2000 (
2001 BackendRepr::SimdVector { element: element_l, count: count_l },
2002 BackendRepr::SimdVector { element: element_r, count: count_r },
2003 ) => element_l.primitive() == element_r.primitive() && count_l == count_r,
2004 (
2005 BackendRepr::ScalarPair { a: l1, b: l2, b_offset: l_offset },
2006 BackendRepr::ScalarPair { a: r1, b: r2, b_offset: r_offset },
2007 ) => {
2008 l1.primitive() == r1.primitive()
2009 && l2.primitive() == r2.primitive()
2010 && l_offset == r_offset
2011 }
2012 _ => self == other,
2014 }
2015 }
2016}
2017
2018#[derive(#[automatically_derived]
impl<FieldIdx: ::core::cmp::PartialEq + Idx,
VariantIdx: ::core::cmp::PartialEq + Idx>
::core::marker::StructuralPartialEq for Variants<FieldIdx, VariantIdx> {
}
#[automatically_derived]
impl<FieldIdx: ::core::cmp::PartialEq + Idx,
VariantIdx: ::core::cmp::PartialEq + Idx> ::core::cmp::PartialEq for
Variants<FieldIdx, VariantIdx> {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::Single { index: __self_0 }, Self::Single {
index: __arg1_0 }) => __self_0 == __arg1_0,
(Self::Multiple {
tag: __self_0,
tag_encoding: __self_1,
tag_field: __self_2,
variants: __self_3 }, Self::Multiple {
tag: __arg1_0,
tag_encoding: __arg1_1,
tag_field: __arg1_2,
variants: __arg1_3 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1 &&
__self_2 == __arg1_2 && __self_3 == __arg1_3,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl<FieldIdx: ::core::cmp::Eq + Idx, VariantIdx: ::core::cmp::Eq + Idx>
::core::cmp::Eq for Variants<FieldIdx, VariantIdx> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<VariantIdx>;
let _: ::core::cmp::AssertParamIsEq<Scalar>;
let _: ::core::cmp::AssertParamIsEq<TagEncoding<VariantIdx>>;
let _: ::core::cmp::AssertParamIsEq<FieldIdx>;
let _:
::core::cmp::AssertParamIsEq<IndexVec<VariantIdx,
VariantLayout<FieldIdx>>>;
}
}Eq, #[automatically_derived]
impl<FieldIdx: ::core::hash::Hash + Idx, VariantIdx: ::core::hash::Hash + Idx>
::core::hash::Hash for Variants<FieldIdx, VariantIdx> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
state);
match self {
Self::Single { index: __self_0 } =>
::core::hash::Hash::hash(__self_0, state),
Self::Multiple {
tag: __self_0,
tag_encoding: __self_1,
tag_field: __self_2,
variants: __self_3 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state);
::core::hash::Hash::hash(__self_2, state);
::core::hash::Hash::hash(__self_3, state)
}
_ => {}
}
}
}Hash, #[automatically_derived]
impl<FieldIdx: ::core::clone::Clone + Idx, VariantIdx: ::core::clone::Clone +
Idx> ::core::clone::Clone for Variants<FieldIdx, VariantIdx> {
#[inline]
fn clone(&self) -> Self {
match self {
Self::Empty => Self::Empty,
Self::Single { index: __self_0 } =>
Self::Single { index: ::core::clone::Clone::clone(__self_0) },
Self::Multiple {
tag: __self_0,
tag_encoding: __self_1,
tag_field: __self_2,
variants: __self_3 } =>
Self::Multiple {
tag: ::core::clone::Clone::clone(__self_0),
tag_encoding: ::core::clone::Clone::clone(__self_1),
tag_field: ::core::clone::Clone::clone(__self_2),
variants: ::core::clone::Clone::clone(__self_3),
},
}
}
}Clone, #[automatically_derived]
impl<FieldIdx: ::core::fmt::Debug + Idx, VariantIdx: ::core::fmt::Debug + Idx>
::core::fmt::Debug for Variants<FieldIdx, VariantIdx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Self::Empty => ::core::fmt::Formatter::write_str(f, "Empty"),
Self::Single { index: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"Single", "index", &__self_0),
Self::Multiple {
tag: __self_0,
tag_encoding: __self_1,
tag_field: __self_2,
variants: __self_3 } =>
::core::fmt::Formatter::debug_struct_field4_finish(f,
"Multiple", "tag", __self_0, "tag_encoding", __self_1,
"tag_field", __self_2, "variants", &__self_3),
}
}
}Debug)]
2021#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<FieldIdx: Idx, VariantIdx: Idx>
::rustc_data_structures::stable_hash::StableHash for
Variants<FieldIdx, VariantIdx> where
VariantIdx: ::rustc_data_structures::stable_hash::StableHash,
FieldIdx: ::rustc_data_structures::stable_hash::StableHash {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
Variants::Empty => {}
Variants::Single { index: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
Variants::Multiple {
tag: ref __binding_0,
tag_encoding: ref __binding_1,
tag_field: ref __binding_2,
variants: ref __binding_3 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
{ __binding_3.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
2022pub enum Variants<FieldIdx: Idx, VariantIdx: Idx> {
2023 Empty,
2029
2030 Single {
2037 index: VariantIdx,
2040 },
2041
2042 Multiple {
2054 tag: Scalar,
2055 tag_encoding: TagEncoding<VariantIdx>,
2056 tag_field: FieldIdx,
2057 variants: IndexVec<VariantIdx, VariantLayout<FieldIdx>>,
2058 },
2059}
2060
2061#[derive(#[automatically_derived]
impl<VariantIdx: ::core::cmp::PartialEq + Idx>
::core::marker::StructuralPartialEq for TagEncoding<VariantIdx> {
}
#[automatically_derived]
impl<VariantIdx: ::core::cmp::PartialEq + Idx> ::core::cmp::PartialEq for
TagEncoding<VariantIdx> {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::Niche {
untagged_variant: __self_0,
niche_variants: __self_1,
niche_start: __self_2 }, Self::Niche {
untagged_variant: __arg1_0,
niche_variants: __arg1_1,
niche_start: __arg1_2 }) =>
__self_2 == __arg1_2 && __self_0 == __arg1_0 &&
__self_1 == __arg1_1,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl<VariantIdx: ::core::cmp::Eq + Idx> ::core::cmp::Eq for
TagEncoding<VariantIdx> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<VariantIdx>;
let _: ::core::cmp::AssertParamIsEq<RangeInclusive<VariantIdx>>;
let _: ::core::cmp::AssertParamIsEq<u128>;
}
}Eq, #[automatically_derived]
impl<VariantIdx: ::core::hash::Hash + Idx> ::core::hash::Hash for
TagEncoding<VariantIdx> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&::core::intrinsics::discriminant_value(self),
state);
match self {
Self::Niche {
untagged_variant: __self_0,
niche_variants: __self_1,
niche_start: __self_2 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state);
::core::hash::Hash::hash(__self_2, state)
}
_ => {}
}
}
}Hash, #[automatically_derived]
impl<VariantIdx: ::core::marker::Copy + Idx> ::core::marker::Copy for
TagEncoding<VariantIdx> {
}Copy, #[automatically_derived]
impl<VariantIdx: ::core::clone::Clone + Idx> ::core::clone::Clone for
TagEncoding<VariantIdx> {
#[inline]
fn clone(&self) -> Self {
match self {
Self::Direct => Self::Direct,
Self::Niche {
untagged_variant: __self_0,
niche_variants: __self_1,
niche_start: __self_2 } =>
Self::Niche {
untagged_variant: ::core::clone::Clone::clone(__self_0),
niche_variants: ::core::clone::Clone::clone(__self_1),
niche_start: ::core::clone::Clone::clone(__self_2),
},
}
}
}Clone, #[automatically_derived]
impl<VariantIdx: ::core::fmt::Debug + Idx> ::core::fmt::Debug for
TagEncoding<VariantIdx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Self::Direct => ::core::fmt::Formatter::write_str(f, "Direct"),
Self::Niche {
untagged_variant: __self_0,
niche_variants: __self_1,
niche_start: __self_2 } =>
::core::fmt::Formatter::debug_struct_field3_finish(f, "Niche",
"untagged_variant", __self_0, "niche_variants", __self_1,
"niche_start", &__self_2),
}
}
}Debug)]
2063#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<VariantIdx: Idx> ::rustc_data_structures::stable_hash::StableHash
for TagEncoding<VariantIdx> where
VariantIdx: ::rustc_data_structures::stable_hash::StableHash {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
TagEncoding::Direct => {}
TagEncoding::Niche {
untagged_variant: ref __binding_0,
niche_variants: ref __binding_1,
niche_start: ref __binding_2 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
2064pub enum TagEncoding<VariantIdx: Idx> {
2065 Direct,
2068
2069 Niche {
2093 untagged_variant: VariantIdx,
2094 niche_variants: RangeInclusive<VariantIdx>,
2097 niche_start: u128,
2100 },
2101}
2102
2103#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Niche { }
#[automatically_derived]
impl ::core::clone::Clone for Niche {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Size>;
let _: ::core::clone::AssertParamIsClone<Primitive>;
let _: ::core::clone::AssertParamIsClone<WrappingRange>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for Niche { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Niche { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Niche {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.offset == other.offset && self.value == other.value &&
self.valid_range == other.valid_range
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Niche {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Size>;
let _: ::core::cmp::AssertParamIsEq<Primitive>;
let _: ::core::cmp::AssertParamIsEq<WrappingRange>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for Niche {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.offset, state);
::core::hash::Hash::hash(&self.value, state);
::core::hash::Hash::hash(&self.valid_range, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for Niche {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field3_finish(f, "Niche",
"offset", &self.offset, "value", &self.value, "valid_range",
&&self.valid_range)
}
}Debug)]
2104#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for Niche {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
Niche {
offset: ref __binding_0,
value: ref __binding_1,
valid_range: ref __binding_2 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
2105pub struct Niche {
2106 pub offset: Size,
2107 pub value: Primitive,
2108 pub valid_range: WrappingRange,
2109}
2110
2111impl Niche {
2112 pub fn from_scalar<C: HasDataLayout>(cx: &C, offset: Size, scalar: Scalar) -> Option<Self> {
2113 let Scalar::Initialized { value, valid_range } = scalar else { return None };
2114 let niche = Niche { offset, value, valid_range };
2115 if niche.available(cx) > 0 { Some(niche) } else { None }
2116 }
2117
2118 pub fn available<C: HasDataLayout>(&self, cx: &C) -> u128 {
2119 let Self { value, valid_range: v, .. } = *self;
2120 let size = value.size(cx);
2121 if !(size.bits() <= 128) {
::core::panicking::panic("assertion failed: size.bits() <= 128")
};assert!(size.bits() <= 128);
2122 let max_value = size.unsigned_int_max();
2123
2124 let niche = v.end.wrapping_add(1)..v.start;
2126 niche.end.wrapping_sub(niche.start) & max_value
2127 }
2128
2129 pub fn reserve<C: HasDataLayout>(&self, cx: &C, count: u128) -> Option<(u128, Scalar)> {
2130 if !(count > 0) { ::core::panicking::panic("assertion failed: count > 0") };assert!(count > 0);
2131
2132 let Self { value, valid_range: v, .. } = *self;
2133 let size = value.size(cx);
2134 if !(size.bits() <= 128) {
::core::panicking::panic("assertion failed: size.bits() <= 128")
};assert!(size.bits() <= 128);
2135 let max_value = size.unsigned_int_max();
2136
2137 let available = v.start.wrapping_sub(v.end).wrapping_sub(1) & max_value;
2138 if count > available {
2139 return None;
2140 }
2141
2142 let move_start = |v: WrappingRange| {
2156 let start = v.start.wrapping_sub(count) & max_value;
2157 Some((start, Scalar::Initialized { value, valid_range: v.with_start(start) }))
2158 };
2159 let move_end = |v: WrappingRange| {
2160 let start = v.end.wrapping_add(1) & max_value;
2161 let end = v.end.wrapping_add(count) & max_value;
2162 Some((start, Scalar::Initialized { value, valid_range: v.with_end(end) }))
2163 };
2164 let distance_end_zero = max_value - v.end;
2165 if count == 1 && v != (WrappingRange { start: 0, end: 1 }) {
2168 let next_up = size.sign_extend(v.end.wrapping_add(1)).unsigned_abs();
2173 let next_down = size.sign_extend(v.start.wrapping_sub(1)).unsigned_abs();
2174 if next_down <= next_up { move_start(v) } else { move_end(v) }
2175 } else if v.start > v.end {
2176 move_end(v)
2178 } else if v.start <= distance_end_zero {
2179 if count <= v.start {
2180 move_start(v)
2181 } else {
2182 move_end(v)
2184 }
2185 } else {
2186 let end = v.end.wrapping_add(count) & max_value;
2187 let overshot_zero = (1..=v.end).contains(&end);
2188 if overshot_zero {
2189 move_start(v)
2191 } else {
2192 move_end(v)
2193 }
2194 }
2195 }
2196}
2197
2198#[derive(#[automatically_derived]
impl<FieldIdx: ::core::cmp::PartialEq + Idx,
VariantIdx: ::core::cmp::PartialEq + Idx>
::core::marker::StructuralPartialEq for LayoutData<FieldIdx, VariantIdx> {
}
#[automatically_derived]
impl<FieldIdx: ::core::cmp::PartialEq + Idx,
VariantIdx: ::core::cmp::PartialEq + Idx> ::core::cmp::PartialEq for
LayoutData<FieldIdx, VariantIdx> {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.uninhabited == other.uninhabited && self.fields == other.fields
&& self.variants == other.variants &&
self.backend_repr == other.backend_repr &&
self.largest_niche == other.largest_niche &&
self.align == other.align && self.size == other.size &&
self.max_repr_align == other.max_repr_align &&
self.unadjusted_abi_align == other.unadjusted_abi_align &&
self.randomization_seed == other.randomization_seed
}
}PartialEq, #[automatically_derived]
impl<FieldIdx: ::core::cmp::Eq + Idx, VariantIdx: ::core::cmp::Eq + Idx>
::core::cmp::Eq for LayoutData<FieldIdx, VariantIdx> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<FieldsShape<FieldIdx>>;
let _: ::core::cmp::AssertParamIsEq<Variants<FieldIdx, VariantIdx>>;
let _: ::core::cmp::AssertParamIsEq<BackendRepr>;
let _: ::core::cmp::AssertParamIsEq<Option<Niche>>;
let _: ::core::cmp::AssertParamIsEq<bool>;
let _: ::core::cmp::AssertParamIsEq<AbiAlign>;
let _: ::core::cmp::AssertParamIsEq<Size>;
let _: ::core::cmp::AssertParamIsEq<Option<Align>>;
let _: ::core::cmp::AssertParamIsEq<Align>;
let _: ::core::cmp::AssertParamIsEq<Hash64>;
}
}Eq, #[automatically_derived]
impl<FieldIdx: ::core::hash::Hash + Idx, VariantIdx: ::core::hash::Hash + Idx>
::core::hash::Hash for LayoutData<FieldIdx, VariantIdx> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.fields, state);
::core::hash::Hash::hash(&self.variants, state);
::core::hash::Hash::hash(&self.backend_repr, state);
::core::hash::Hash::hash(&self.largest_niche, state);
::core::hash::Hash::hash(&self.uninhabited, state);
::core::hash::Hash::hash(&self.align, state);
::core::hash::Hash::hash(&self.size, state);
::core::hash::Hash::hash(&self.max_repr_align, state);
::core::hash::Hash::hash(&self.unadjusted_abi_align, state);
::core::hash::Hash::hash(&self.randomization_seed, state)
}
}Hash, #[automatically_derived]
impl<FieldIdx: ::core::clone::Clone + Idx, VariantIdx: ::core::clone::Clone +
Idx> ::core::clone::Clone for LayoutData<FieldIdx, VariantIdx> {
#[inline]
fn clone(&self) -> Self {
Self {
fields: ::core::clone::Clone::clone(&self.fields),
variants: ::core::clone::Clone::clone(&self.variants),
backend_repr: ::core::clone::Clone::clone(&self.backend_repr),
largest_niche: ::core::clone::Clone::clone(&self.largest_niche),
uninhabited: ::core::clone::Clone::clone(&self.uninhabited),
align: ::core::clone::Clone::clone(&self.align),
size: ::core::clone::Clone::clone(&self.size),
max_repr_align: ::core::clone::Clone::clone(&self.max_repr_align),
unadjusted_abi_align: ::core::clone::Clone::clone(&self.unadjusted_abi_align),
randomization_seed: ::core::clone::Clone::clone(&self.randomization_seed),
}
}
}Clone)]
2200#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<FieldIdx: Idx, VariantIdx: Idx>
::rustc_data_structures::stable_hash::StableHash for
LayoutData<FieldIdx, VariantIdx> where
FieldIdx: ::rustc_data_structures::stable_hash::StableHash,
VariantIdx: ::rustc_data_structures::stable_hash::StableHash {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
LayoutData {
fields: ref __binding_0,
variants: ref __binding_1,
backend_repr: ref __binding_2,
largest_niche: ref __binding_3,
uninhabited: ref __binding_4,
align: ref __binding_5,
size: ref __binding_6,
max_repr_align: ref __binding_7,
unadjusted_abi_align: ref __binding_8,
randomization_seed: ref __binding_9 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
{ __binding_3.stable_hash(__hcx, __hasher); }
{ __binding_4.stable_hash(__hcx, __hasher); }
{ __binding_5.stable_hash(__hcx, __hasher); }
{ __binding_6.stable_hash(__hcx, __hasher); }
{ __binding_7.stable_hash(__hcx, __hasher); }
{ __binding_8.stable_hash(__hcx, __hasher); }
{ __binding_9.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
2201pub struct LayoutData<FieldIdx: Idx, VariantIdx: Idx> {
2202 pub fields: FieldsShape<FieldIdx>,
2204
2205 pub variants: Variants<FieldIdx, VariantIdx>,
2213
2214 pub backend_repr: BackendRepr,
2222
2223 pub largest_niche: Option<Niche>,
2226 pub uninhabited: bool,
2231
2232 pub align: AbiAlign,
2233 pub size: Size,
2234
2235 pub max_repr_align: Option<Align>,
2239
2240 pub unadjusted_abi_align: Align,
2244
2245 pub randomization_seed: Hash64,
2256}
2257
2258impl<FieldIdx: Idx, VariantIdx: Idx> LayoutData<FieldIdx, VariantIdx> {
2259 pub fn is_aggregate(&self) -> bool {
2261 match self.backend_repr {
2262 BackendRepr::Scalar(_)
2263 | BackendRepr::SimdVector { .. }
2264 | BackendRepr::SimdScalableVector { .. } => false,
2265 BackendRepr::ScalarPair { .. } | BackendRepr::Memory { .. } => true,
2266 }
2267 }
2268
2269 pub fn is_uninhabited(&self) -> bool {
2271 self.uninhabited
2272 }
2273
2274 pub fn is_variant_uninhabited(&self, variant: VariantIdx) -> bool {
2276 match self.variants {
2277 Variants::Empty => true,
2278 Variants::Single { index } => variant != index || self.uninhabited,
2279 Variants::Multiple { ref variants, .. } => {
2280 variants.get(variant).map(|v| v.uninhabited).unwrap_or(true)
2281 }
2282 }
2283 }
2284}
2285
2286impl<FieldIdx: Idx, VariantIdx: Idx> fmt::Debug for LayoutData<FieldIdx, VariantIdx>
2287where
2288 FieldsShape<FieldIdx>: fmt::Debug,
2289 Variants<FieldIdx, VariantIdx>: fmt::Debug,
2290{
2291 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2292 let LayoutData {
2296 size,
2297 align,
2298 backend_repr,
2299 fields,
2300 largest_niche,
2301 uninhabited,
2302 variants,
2303 max_repr_align,
2304 unadjusted_abi_align,
2305 randomization_seed,
2306 } = self;
2307 f.debug_struct("Layout")
2308 .field("size", size)
2309 .field("align", align)
2310 .field("backend_repr", backend_repr)
2311 .field("fields", fields)
2312 .field("largest_niche", largest_niche)
2313 .field("uninhabited", uninhabited)
2314 .field("variants", variants)
2315 .field("max_repr_align", max_repr_align)
2316 .field("unadjusted_abi_align", unadjusted_abi_align)
2317 .field("randomization_seed", randomization_seed)
2318 .finish()
2319 }
2320}
2321
2322#[derive(#[automatically_derived]
impl ::core::marker::Copy for PointerKind { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PointerKind { }
#[automatically_derived]
impl ::core::clone::Clone for PointerKind {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<bool>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for PointerKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for PointerKind {
#[inline]
fn eq(&self, other: &Self) -> bool {
::core::intrinsics::discriminant_value(self) ==
::core::intrinsics::discriminant_value(other) &&
match (self, other) {
(Self::SharedRef { frozen: __self_0 }, Self::SharedRef {
frozen: __arg1_0 }) => __self_0 == __arg1_0,
(Self::MutableRef { unpin: __self_0 }, Self::MutableRef {
unpin: __arg1_0 }) => __self_0 == __arg1_0,
(Self::Box { unpin: __self_0, global: __self_1 }, Self::Box {
unpin: __arg1_0, global: __arg1_1 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1,
_ => unsafe { ::core::intrinsics::unreachable() }
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for PointerKind {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<bool>;
}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for PointerKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Self::SharedRef { frozen: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"SharedRef", "frozen", &__self_0),
Self::MutableRef { unpin: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"MutableRef", "unpin", &__self_0),
Self::Box { unpin: __self_0, global: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f, "Box",
"unpin", __self_0, "global", &__self_1),
}
}
}Debug)]
2323pub enum PointerKind {
2324 SharedRef { frozen: bool },
2326 MutableRef { unpin: bool },
2328 Box { unpin: bool, global: bool },
2331}
2332
2333#[derive(#[automatically_derived]
impl ::core::marker::Copy for PointeeInfo { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PointeeInfo { }
#[automatically_derived]
impl ::core::clone::Clone for PointeeInfo {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Option<PointerKind>>;
let _: ::core::clone::AssertParamIsClone<Size>;
let _: ::core::clone::AssertParamIsClone<Align>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for PointeeInfo {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field3_finish(f, "PointeeInfo",
"safe", &self.safe, "size", &self.size, "align", &&self.align)
}
}Debug)]
2339pub struct PointeeInfo {
2340 pub safe: Option<PointerKind>,
2342 pub size: Size,
2349 pub align: Align,
2351}
2352
2353impl<FieldIdx: Idx, VariantIdx: Idx> LayoutData<FieldIdx, VariantIdx> {
2354 #[inline]
2356 pub fn is_unsized(&self) -> bool {
2357 self.backend_repr.is_unsized()
2358 }
2359
2360 #[inline]
2361 pub fn is_sized(&self) -> bool {
2362 self.backend_repr.is_sized()
2363 }
2364
2365 pub fn is_1zst(&self) -> bool {
2367 self.is_sized() && self.size.bytes() == 0 && self.align.bytes() == 1
2368 }
2369
2370 pub fn is_scalable_vector(&self) -> bool {
2372 #[allow(non_exhaustive_omitted_patterns)] match self.backend_repr {
BackendRepr::SimdScalableVector { .. } => true,
_ => false,
}matches!(self.backend_repr, BackendRepr::SimdScalableVector { .. })
2373 }
2374
2375 pub fn scalable_vector_element_count(&self) -> Option<BackendLaneCount> {
2377 match self.backend_repr {
2378 BackendRepr::SimdScalableVector { count, .. } => Some(count),
2379 _ => None,
2380 }
2381 }
2382
2383 pub fn is_zst(&self) -> bool {
2388 match self.backend_repr {
2389 BackendRepr::Scalar(_)
2390 | BackendRepr::ScalarPair { .. }
2391 | BackendRepr::SimdScalableVector { .. }
2392 | BackendRepr::SimdVector { .. } => false,
2393 BackendRepr::Memory { sized } => sized && self.size.bytes() == 0,
2394 }
2395 }
2396
2397 #[inline]
2406 pub fn is_ssa_standalone(&self) -> bool {
2407 match self.backend_repr {
2408 BackendRepr::Memory { .. } => self.is_zst(),
2409 BackendRepr::Scalar(..)
2410 | BackendRepr::ScalarPair { .. }
2411 | BackendRepr::SimdVector { .. }
2412 | BackendRepr::SimdScalableVector { .. } => true,
2413 }
2414 }
2415
2416 pub fn eq_abi(&self, other: &Self) -> bool {
2422 self.size == other.size
2426 && self.is_sized() == other.is_sized()
2427 && self.backend_repr.eq_up_to_validity(&other.backend_repr)
2428 && self.backend_repr.is_bool() == other.backend_repr.is_bool()
2429 && self.align.abi == other.align.abi
2430 && self.max_repr_align == other.max_repr_align
2431 && self.unadjusted_abi_align == other.unadjusted_abi_align
2432 }
2433}
2434
2435#[derive(#[automatically_derived]
impl ::core::marker::Copy for StructKind { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for StructKind { }
#[automatically_derived]
impl ::core::clone::Clone for StructKind {
#[inline]
fn clone(&self) -> Self {
let _: ::core::clone::AssertParamIsClone<Size>;
let _: ::core::clone::AssertParamIsClone<Align>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for StructKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Self::AlwaysSized =>
::core::fmt::Formatter::write_str(f, "AlwaysSized"),
Self::MaybeUnsized =>
::core::fmt::Formatter::write_str(f, "MaybeUnsized"),
Self::Prefixed(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f,
"Prefixed", __self_0, &__self_1),
}
}
}Debug)]
2436pub enum StructKind {
2437 AlwaysSized,
2439 MaybeUnsized,
2441 Prefixed(Size, Align),
2443}
2444
2445#[derive(#[automatically_derived]
impl ::core::clone::Clone for AbiFromStrErr {
#[inline]
fn clone(&self) -> Self {
match self {
Self::Unknown => Self::Unknown,
Self::NoExplicitUnwind => Self::NoExplicitUnwind,
}
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AbiFromStrErr {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
AbiFromStrErr::Unknown => "Unknown",
AbiFromStrErr::NoExplicitUnwind => "NoExplicitUnwind",
})
}
}Debug)]
2446pub enum AbiFromStrErr {
2447 Unknown,
2449 NoExplicitUnwind,
2451}
2452
2453#[derive(#[automatically_derived]
impl<FieldIdx: ::core::cmp::PartialEq + Idx>
::core::marker::StructuralPartialEq for VariantLayout<FieldIdx> {
}
#[automatically_derived]
impl<FieldIdx: ::core::cmp::PartialEq + Idx> ::core::cmp::PartialEq for
VariantLayout<FieldIdx> {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.uninhabited == other.uninhabited && self.size == other.size &&
self.backend_repr == other.backend_repr &&
self.field_offsets == other.field_offsets &&
self.fields_in_memory_order == other.fields_in_memory_order &&
self.largest_niche == other.largest_niche
}
}PartialEq, #[automatically_derived]
impl<FieldIdx: ::core::cmp::Eq + Idx> ::core::cmp::Eq for
VariantLayout<FieldIdx> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Size>;
let _: ::core::cmp::AssertParamIsEq<BackendRepr>;
let _: ::core::cmp::AssertParamIsEq<IndexVec<FieldIdx, Size>>;
let _: ::core::cmp::AssertParamIsEq<IndexVec<u32, FieldIdx>>;
let _: ::core::cmp::AssertParamIsEq<Option<Niche>>;
let _: ::core::cmp::AssertParamIsEq<bool>;
}
}Eq, #[automatically_derived]
impl<FieldIdx: ::core::hash::Hash + Idx> ::core::hash::Hash for
VariantLayout<FieldIdx> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.size, state);
::core::hash::Hash::hash(&self.backend_repr, state);
::core::hash::Hash::hash(&self.field_offsets, state);
::core::hash::Hash::hash(&self.fields_in_memory_order, state);
::core::hash::Hash::hash(&self.largest_niche, state);
::core::hash::Hash::hash(&self.uninhabited, state)
}
}Hash, #[automatically_derived]
impl<FieldIdx: ::core::clone::Clone + Idx> ::core::clone::Clone for
VariantLayout<FieldIdx> {
#[inline]
fn clone(&self) -> Self {
Self {
size: ::core::clone::Clone::clone(&self.size),
backend_repr: ::core::clone::Clone::clone(&self.backend_repr),
field_offsets: ::core::clone::Clone::clone(&self.field_offsets),
fields_in_memory_order: ::core::clone::Clone::clone(&self.fields_in_memory_order),
largest_niche: ::core::clone::Clone::clone(&self.largest_niche),
uninhabited: ::core::clone::Clone::clone(&self.uninhabited),
}
}
}Clone, #[automatically_derived]
impl<FieldIdx: ::core::fmt::Debug + Idx> ::core::fmt::Debug for
VariantLayout<FieldIdx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ =
&["size", "backend_repr", "field_offsets",
"fields_in_memory_order", "largest_niche", "uninhabited"];
let values: &[&dyn ::core::fmt::Debug] =
&[&self.size, &self.backend_repr, &self.field_offsets,
&self.fields_in_memory_order, &self.largest_niche,
&&self.uninhabited];
::core::fmt::Formatter::debug_struct_fields_finish(f, "VariantLayout",
names, values)
}
}Debug)]
2462#[cfg_attr(feature = "nightly", derive(const _: () =
{
impl<FieldIdx: Idx> ::rustc_data_structures::stable_hash::StableHash
for VariantLayout<FieldIdx> where
FieldIdx: ::rustc_data_structures::stable_hash::StableHash {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
VariantLayout {
size: ref __binding_0,
backend_repr: ref __binding_1,
field_offsets: ref __binding_2,
fields_in_memory_order: ref __binding_3,
largest_niche: ref __binding_4,
uninhabited: ref __binding_5 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
{ __binding_3.stable_hash(__hcx, __hasher); }
{ __binding_4.stable_hash(__hcx, __hasher); }
{ __binding_5.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash))]
2463pub struct VariantLayout<FieldIdx: Idx> {
2464 pub size: Size,
2467 pub backend_repr: BackendRepr,
2468
2469 pub field_offsets: IndexVec<FieldIdx, Size>,
2470 fields_in_memory_order: IndexVec<u32, FieldIdx>,
2471 largest_niche: Option<Niche>,
2472 uninhabited: bool,
2473}
2474
2475impl<FieldIdx: Idx> VariantLayout<FieldIdx> {
2476 pub fn from_layout(layout: LayoutData<FieldIdx, impl Idx>) -> Self {
2477 let FieldsShape::Arbitrary { offsets, in_memory_order } = layout.fields else {
2478 {
::core::panicking::panic_fmt(format_args!("Layout of fields should be Arbitrary for variants"));
};panic!("Layout of fields should be Arbitrary for variants");
2479 };
2480
2481 Self {
2482 size: layout.size,
2483 backend_repr: layout.backend_repr,
2484 field_offsets: offsets,
2485 fields_in_memory_order: in_memory_order,
2486 largest_niche: layout.largest_niche,
2487 uninhabited: layout.uninhabited,
2488 }
2489 }
2490
2491 pub fn is_uninhabited(&self) -> bool {
2492 self.uninhabited
2493 }
2494
2495 pub fn has_fields(&self) -> bool {
2496 self.field_offsets.len() > 0
2497 }
2498}