Skip to content

Commit aea82b2

Browse files
committed
Auto merge of #117603 - HKalbasi:make-feature-additive, r=Nilstrieb
Make the randomize feature of rustc_abi additive The goal here is to make rust-analyzer able to build with the `rustc_private` versions of the rustc crates it depends on. See #116847
2 parents b049093 + c8a25ed commit aea82b2

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

compiler/rustc_abi/src/layout.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -906,9 +906,8 @@ fn univariant<
906906
use rand::{seq::SliceRandom, SeedableRng};
907907
// `ReprOptions.layout_seed` is a deterministic seed we can use to randomize field
908908
// 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);
912911

913912
// Shuffle the ordering of the fields.
914913
optimizing.shuffle(&mut rng);

compiler/rustc_abi/src/lib.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,14 @@ pub struct ReprOptions {
7676
pub align: Option<Align>,
7777
pub pack: Option<Align>,
7878
pub flags: ReprFlags,
79-
#[cfg(feature = "randomize")]
8079
/// The seed to be used for randomizing a type's layout
8180
///
82-
/// Note: This could technically be a `Hash128` which would
81+
/// Note: This could technically be a `u128` which would
8382
/// be the "most accurate" hash as it'd encompass the item and crate
8483
/// hash without loss, but it does pay the price of being larger.
8584
/// Everything's a tradeoff, a 64-bit seed should be sufficient for our
8685
/// purposes (primarily `-Z randomize-layout`)
87-
pub field_shuffle_seed: rustc_data_structures::stable_hasher::Hash64,
86+
pub field_shuffle_seed: u64,
8887
}
8988

9089
impl ReprOptions {

compiler/rustc_middle/src/ty/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2011,7 +2011,7 @@ impl<'tcx> TyCtxt<'tcx> {
20112011

20122012
// Generate a deterministically-derived seed from the item's path hash
20132013
// 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();
20152015

20162016
// If the user defined a custom seed for layout randomization, xor the item's
20172017
// path hash with the user defined seed, this will allowing determinism while

compiler/rustc_mir_transform/src/sroa.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use rustc_middle::mir::visit::*;
77
use rustc_middle::mir::*;
88
use rustc_middle::ty::{self, Ty, TyCtxt};
99
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};
1111

1212
pub struct ScalarReplacementOfAggregates;
1313

@@ -66,7 +66,7 @@ fn escaping_locals<'tcx>(
6666
return true;
6767
}
6868
if let ty::Adt(def, _args) = ty.kind() {
69-
if def.repr().flags.contains(ReprFlags::IS_SIMD) {
69+
if def.repr().simd() {
7070
// Exclude #[repr(simd)] types so that they are not de-optimized into an array
7171
return true;
7272
}

0 commit comments

Comments
 (0)