Struct rustc_middle::ty::ReprOptions
source · [−]pub struct ReprOptions {
pub int: Option<IntType>,
pub align: Option<Align>,
pub pack: Option<Align>,
pub flags: ReprFlags,
pub field_shuffle_seed: u64,
}
Expand description
Represents the repr options provided by the user,
Fields
int: Option<IntType>
align: Option<Align>
pack: Option<Align>
flags: ReprFlags
field_shuffle_seed: u64
The seed to be used for randomizing a type’s layout
Note: This could technically be a [u8; 16]
(a u128
) which would
be the “most accurate” hash as it’d encompass the item and crate
hash without loss, but it does pay the price of being larger.
Everything’s a tradeoff, a u64
seed should be sufficient for our
purposes (primarily -Z randomize-layout
)
Implementations
sourceimpl ReprOptions
impl ReprOptions
pub fn new(tcx: TyCtxt<'_>, did: DefId) -> ReprOptions
pub fn simd(&self) -> bool
pub fn c(&self) -> bool
pub fn packed(&self) -> bool
pub fn transparent(&self) -> bool
pub fn linear(&self) -> bool
sourcepub fn discr_type(&self) -> IntType
pub fn discr_type(&self) -> IntType
Returns the discriminant type, given these repr
options.
This must only be called on enums!
sourcepub fn inhibit_enum_layout_opt(&self) -> bool
pub fn inhibit_enum_layout_opt(&self) -> bool
Returns true
if this #[repr()]
should inhabit “smart enum
layout” optimizations, such as representing Foo<&T>
as a
single pointer.
sourcepub fn inhibit_struct_field_reordering_opt(&self) -> bool
pub fn inhibit_struct_field_reordering_opt(&self) -> bool
Returns true
if this #[repr()]
should inhibit struct field reordering
optimizations, such as with repr(C)
, repr(packed(1))
, or repr(<int>)
.
sourcepub fn can_randomize_type_layout(&self) -> bool
pub fn can_randomize_type_layout(&self) -> bool
Returns true
if this type is valid for reordering and -Z randomize-layout
was enabled for its declaration crate
sourcepub fn inhibit_union_abi_opt(&self) -> bool
pub fn inhibit_union_abi_opt(&self) -> bool
Returns true
if this #[repr()]
should inhibit union ABI optimisations.
Trait Implementations
sourceimpl Clone for ReprOptions
impl Clone for ReprOptions
sourcefn clone(&self) -> ReprOptions
fn clone(&self) -> ReprOptions
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for ReprOptions
impl Debug for ReprOptions
sourceimpl<'tcx, __D: TyDecoder<I = TyCtxt<'tcx>>> Decodable<__D> for ReprOptions
impl<'tcx, __D: TyDecoder<I = TyCtxt<'tcx>>> Decodable<__D> for ReprOptions
sourceimpl Default for ReprOptions
impl Default for ReprOptions
sourcefn default() -> ReprOptions
fn default() -> ReprOptions
sourceimpl<'tcx, __E: TyEncoder<I = TyCtxt<'tcx>>> Encodable<__E> for ReprOptions
impl<'tcx, __E: TyEncoder<I = TyCtxt<'tcx>>> Encodable<__E> for ReprOptions
sourceimpl<'__ctx> HashStable<StableHashingContext<'__ctx>> for ReprOptions
impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for ReprOptions
fn hash_stable(
&self,
__hcx: &mut StableHashingContext<'__ctx>,
__hasher: &mut StableHasher
)
sourceimpl ParameterizedOverTcx for ReprOptions
impl ParameterizedOverTcx for ReprOptions
type Value<'tcx> = ReprOptions
sourceimpl PartialEq<ReprOptions> for ReprOptions
impl PartialEq<ReprOptions> for ReprOptions
sourcefn eq(&self, other: &ReprOptions) -> bool
fn eq(&self, other: &ReprOptions) -> bool
impl Copy for ReprOptions
impl Eq for ReprOptions
impl StructuralEq for ReprOptions
impl StructuralPartialEq for ReprOptions
Auto Trait Implementations
impl RefUnwindSafe for ReprOptions
impl Send for ReprOptions
impl Sync for ReprOptions
impl Unpin for ReprOptions
impl UnwindSafe for ReprOptions
Blanket Implementations
sourceimpl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
default fn fingerprint_style() -> FingerprintStyle
sourcedefault fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_debug_str(&self, Ctxt) -> String
sourcedefault fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> Option<T>
default fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> Option<T>
DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it. Read moresourceimpl<T, R> InternIteratorElement<T, R> for T
impl<T, R> InternIteratorElement<T, R> for T
type Output = R
fn intern_with<I, F>(iter: I, f: F) -> <T as InternIteratorElement<T, R>>::Outputwhere
I: Iterator<Item = T>,
F: FnOnce(&[T]) -> R,
sourceimpl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 16 bytes