File tree 4 files changed +7
-9
lines changed
4 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -906,9 +906,8 @@ fn univariant<
906
906
use rand:: { seq:: SliceRandom , SeedableRng } ;
907
907
// `ReprOptions.layout_seed` is a deterministic seed we can use to randomize field
908
908
// ordering.
909
- let mut rng = rand_xoshiro:: Xoshiro128StarStar :: seed_from_u64 (
910
- repr. field_shuffle_seed . as_u64 ( ) ,
911
- ) ;
909
+ let mut rng =
910
+ rand_xoshiro:: Xoshiro128StarStar :: seed_from_u64 ( repr. field_shuffle_seed ) ;
912
911
913
912
// Shuffle the ordering of the fields.
914
913
optimizing. shuffle ( & mut rng) ;
Original file line number Diff line number Diff line change @@ -76,15 +76,14 @@ pub struct ReprOptions {
76
76
pub align : Option < Align > ,
77
77
pub pack : Option < Align > ,
78
78
pub flags : ReprFlags ,
79
- #[ cfg( feature = "randomize" ) ]
80
79
/// The seed to be used for randomizing a type's layout
81
80
///
82
- /// Note: This could technically be a `Hash128 ` which would
81
+ /// Note: This could technically be a `u128 ` which would
83
82
/// be the "most accurate" hash as it'd encompass the item and crate
84
83
/// hash without loss, but it does pay the price of being larger.
85
84
/// Everything's a tradeoff, a 64-bit seed should be sufficient for our
86
85
/// purposes (primarily `-Z randomize-layout`)
87
- pub field_shuffle_seed : rustc_data_structures :: stable_hasher :: Hash64 ,
86
+ pub field_shuffle_seed : u64 ,
88
87
}
89
88
90
89
impl ReprOptions {
Original file line number Diff line number Diff line change @@ -2011,7 +2011,7 @@ impl<'tcx> TyCtxt<'tcx> {
2011
2011
2012
2012
// Generate a deterministically-derived seed from the item's path hash
2013
2013
// to allow for cross-crate compilation to actually work
2014
- let mut field_shuffle_seed = self . def_path_hash ( did) . 0 . to_smaller_hash ( ) ;
2014
+ let mut field_shuffle_seed = self . def_path_hash ( did) . 0 . to_smaller_hash ( ) . as_u64 ( ) ;
2015
2015
2016
2016
// If the user defined a custom seed for layout randomization, xor the item's
2017
2017
// path hash with the user defined seed, this will allowing determinism while
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use rustc_middle::mir::visit::*;
7
7
use rustc_middle:: mir:: * ;
8
8
use rustc_middle:: ty:: { self , Ty , TyCtxt } ;
9
9
use rustc_mir_dataflow:: value_analysis:: { excluded_locals, iter_fields} ;
10
- use rustc_target:: abi:: { FieldIdx , ReprFlags , FIRST_VARIANT } ;
10
+ use rustc_target:: abi:: { FieldIdx , FIRST_VARIANT } ;
11
11
12
12
pub struct ScalarReplacementOfAggregates ;
13
13
@@ -66,7 +66,7 @@ fn escaping_locals<'tcx>(
66
66
return true ;
67
67
}
68
68
if let ty:: Adt ( def, _args) = ty. kind ( ) {
69
- if def. repr ( ) . flags . contains ( ReprFlags :: IS_SIMD ) {
69
+ if def. repr ( ) . simd ( ) {
70
70
// Exclude #[repr(simd)] types so that they are not de-optimized into an array
71
71
return true ;
72
72
}
You can’t perform that action at this time.
0 commit comments