Skip to content

Commit 669fc15

Browse files
authored
Unrolled build for rust-lang#130175
Rollup merge of rust-lang#130175 - nnethercote:rustc_mir_transform-cleanups-3, r=saethlin `rustc_mir_transform` cleanups 3 More cleanups in the style of rust-lang#129929. r? `@saethlin`
2 parents 33855f8 + 8949b44 commit 669fc15

39 files changed

+569
-570
lines changed

compiler/rustc_mir_transform/src/add_call_guards.rs

-6
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@ pub(super) use self::AddCallGuards::*;
3232

3333
impl<'tcx> crate::MirPass<'tcx> for AddCallGuards {
3434
fn run_pass(&self, _tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
35-
self.add_call_guards(body);
36-
}
37-
}
38-
39-
impl AddCallGuards {
40-
pub(super) fn add_call_guards(&self, body: &mut Body<'_>) {
4135
let mut pred_count: IndexVec<_, _> =
4236
body.basic_blocks.predecessors().iter().map(|ps| ps.len()).collect();
4337
pred_count[START_BLOCK] += 1;

compiler/rustc_mir_transform/src/add_moves_for_packed_drops.rs

+22-23
Original file line numberDiff line numberDiff line change
@@ -40,35 +40,34 @@ pub(super) struct AddMovesForPackedDrops;
4040
impl<'tcx> crate::MirPass<'tcx> for AddMovesForPackedDrops {
4141
fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
4242
debug!("add_moves_for_packed_drops({:?} @ {:?})", body.source, body.span);
43-
add_moves_for_packed_drops(tcx, body);
44-
}
45-
}
46-
47-
fn add_moves_for_packed_drops<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
48-
let patch = add_moves_for_packed_drops_patch(tcx, body);
49-
patch.apply(body);
50-
}
5143

52-
fn add_moves_for_packed_drops_patch<'tcx>(tcx: TyCtxt<'tcx>, body: &Body<'tcx>) -> MirPatch<'tcx> {
53-
let def_id = body.source.def_id();
54-
let mut patch = MirPatch::new(body);
55-
let param_env = tcx.param_env(def_id);
44+
let def_id = body.source.def_id();
45+
let mut patch = MirPatch::new(body);
46+
let param_env = tcx.param_env(def_id);
5647

57-
for (bb, data) in body.basic_blocks.iter_enumerated() {
58-
let loc = Location { block: bb, statement_index: data.statements.len() };
59-
let terminator = data.terminator();
48+
for (bb, data) in body.basic_blocks.iter_enumerated() {
49+
let loc = Location { block: bb, statement_index: data.statements.len() };
50+
let terminator = data.terminator();
6051

61-
match terminator.kind {
62-
TerminatorKind::Drop { place, .. }
63-
if util::is_disaligned(tcx, body, param_env, place) =>
64-
{
65-
add_move_for_packed_drop(tcx, body, &mut patch, terminator, loc, data.is_cleanup);
52+
match terminator.kind {
53+
TerminatorKind::Drop { place, .. }
54+
if util::is_disaligned(tcx, body, param_env, place) =>
55+
{
56+
add_move_for_packed_drop(
57+
tcx,
58+
body,
59+
&mut patch,
60+
terminator,
61+
loc,
62+
data.is_cleanup,
63+
);
64+
}
65+
_ => {}
6666
}
67-
_ => {}
6867
}
69-
}
7068

71-
patch
69+
patch.apply(body);
70+
}
7271
}
7372

7473
fn add_move_for_packed_drop<'tcx>(

compiler/rustc_mir_transform/src/add_retag.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ impl<'tcx> crate::MirPass<'tcx> for AddRetag {
6060
let basic_blocks = body.basic_blocks.as_mut();
6161
let local_decls = &body.local_decls;
6262
let needs_retag = |place: &Place<'tcx>| {
63-
!place.is_indirect_first_projection() // we're not really interested in stores to "outside" locations, they are hard to keep track of anyway
63+
// We're not really interested in stores to "outside" locations, they are hard to keep
64+
// track of anyway.
65+
!place.is_indirect_first_projection()
6466
&& may_contain_reference(place.ty(&*local_decls, tcx).ty, /*depth*/ 3, tcx)
6567
&& !local_decls[place.local].is_deref_temp()
6668
};
@@ -129,9 +131,9 @@ impl<'tcx> crate::MirPass<'tcx> for AddRetag {
129131
StatementKind::Assign(box (ref place, ref rvalue)) => {
130132
let add_retag = match rvalue {
131133
// Ptr-creating operations already do their own internal retagging, no
132-
// need to also add a retag statement.
133-
// *Except* if we are deref'ing a Box, because those get desugared to directly working
134-
// with the inner raw pointer! That's relevant for `RawPtr` as Miri otherwise makes it
134+
// need to also add a retag statement. *Except* if we are deref'ing a
135+
// Box, because those get desugared to directly working with the inner
136+
// raw pointer! That's relevant for `RawPtr` as Miri otherwise makes it
135137
// a NOP when the original pointer is already raw.
136138
Rvalue::RawPtr(_mutbl, place) => {
137139
// Using `is_box_global` here is a bit sketchy: if this code is

compiler/rustc_mir_transform/src/add_subtyping_projections.rs

+7-11
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,14 @@ impl<'a, 'tcx> MutVisitor<'tcx> for SubTypeChecker<'a, 'tcx> {
5151
// // gets transformed to
5252
// let temp: rval_ty = rval;
5353
// let place: place_ty = temp as place_ty;
54-
fn subtype_finder<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
55-
let patch = MirPatch::new(body);
56-
let mut checker = SubTypeChecker { tcx, patcher: patch, local_decls: &body.local_decls };
57-
58-
for (bb, data) in body.basic_blocks.as_mut_preserves_cfg().iter_enumerated_mut() {
59-
checker.visit_basic_block_data(bb, data);
60-
}
61-
checker.patcher.apply(body);
62-
}
63-
6454
impl<'tcx> crate::MirPass<'tcx> for Subtyper {
6555
fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
66-
subtype_finder(tcx, body);
56+
let patch = MirPatch::new(body);
57+
let mut checker = SubTypeChecker { tcx, patcher: patch, local_decls: &body.local_decls };
58+
59+
for (bb, data) in body.basic_blocks.as_mut_preserves_cfg().iter_enumerated_mut() {
60+
checker.visit_basic_block_data(bb, data);
61+
}
62+
checker.patcher.apply(body);
6763
}
6864
}

compiler/rustc_mir_transform/src/check_const_item_mutation.rs

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ impl<'tcx> Visitor<'tcx> for ConstMutationChecker<'_, 'tcx> {
123123
self.super_statement(stmt, loc);
124124
self.target_local = None;
125125
}
126+
126127
fn visit_rvalue(&mut self, rvalue: &Rvalue<'tcx>, loc: Location) {
127128
if let Rvalue::Ref(_, BorrowKind::Mut { .. }, place) = rvalue {
128129
let local = place.local;

compiler/rustc_mir_transform/src/copy_prop.rs

+23-25
Original file line numberDiff line numberDiff line change
@@ -27,37 +27,34 @@ impl<'tcx> crate::MirPass<'tcx> for CopyProp {
2727
#[instrument(level = "trace", skip(self, tcx, body))]
2828
fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
2929
debug!(def_id = ?body.source.def_id());
30-
propagate_ssa(tcx, body);
31-
}
32-
}
3330

34-
fn propagate_ssa<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
35-
let param_env = tcx.param_env_reveal_all_normalized(body.source.def_id());
36-
let ssa = SsaLocals::new(tcx, body, param_env);
31+
let param_env = tcx.param_env_reveal_all_normalized(body.source.def_id());
32+
let ssa = SsaLocals::new(tcx, body, param_env);
3733

38-
let fully_moved = fully_moved_locals(&ssa, body);
39-
debug!(?fully_moved);
34+
let fully_moved = fully_moved_locals(&ssa, body);
35+
debug!(?fully_moved);
4036

41-
let mut storage_to_remove = BitSet::new_empty(fully_moved.domain_size());
42-
for (local, &head) in ssa.copy_classes().iter_enumerated() {
43-
if local != head {
44-
storage_to_remove.insert(head);
37+
let mut storage_to_remove = BitSet::new_empty(fully_moved.domain_size());
38+
for (local, &head) in ssa.copy_classes().iter_enumerated() {
39+
if local != head {
40+
storage_to_remove.insert(head);
41+
}
4542
}
46-
}
4743

48-
let any_replacement = ssa.copy_classes().iter_enumerated().any(|(l, &h)| l != h);
44+
let any_replacement = ssa.copy_classes().iter_enumerated().any(|(l, &h)| l != h);
4945

50-
Replacer {
51-
tcx,
52-
copy_classes: ssa.copy_classes(),
53-
fully_moved,
54-
borrowed_locals: ssa.borrowed_locals(),
55-
storage_to_remove,
56-
}
57-
.visit_body_preserves_cfg(body);
46+
Replacer {
47+
tcx,
48+
copy_classes: ssa.copy_classes(),
49+
fully_moved,
50+
borrowed_locals: ssa.borrowed_locals(),
51+
storage_to_remove,
52+
}
53+
.visit_body_preserves_cfg(body);
5854

59-
if any_replacement {
60-
crate::simplify::remove_unused_definitions(body);
55+
if any_replacement {
56+
crate::simplify::remove_unused_definitions(body);
57+
}
6158
}
6259
}
6360

@@ -140,7 +137,8 @@ impl<'tcx> MutVisitor<'tcx> for Replacer<'_, 'tcx> {
140137

141138
fn visit_operand(&mut self, operand: &mut Operand<'tcx>, loc: Location) {
142139
if let Operand::Move(place) = *operand
143-
// A move out of a projection of a copy is equivalent to a copy of the original projection.
140+
// A move out of a projection of a copy is equivalent to a copy of the original
141+
// projection.
144142
&& !place.is_indirect_first_projection()
145143
&& !self.fully_moved.contains(place.local)
146144
{

compiler/rustc_mir_transform/src/coverage/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,8 @@ fn inject_mcdc_statements<'tcx>(
279279
basic_coverage_blocks: &CoverageGraph,
280280
extracted_mappings: &ExtractedMappings,
281281
) {
282-
// Inject test vector update first because `inject_statement` always insert new statement at head.
282+
// Inject test vector update first because `inject_statement` always insert new statement at
283+
// head.
283284
for &mappings::MCDCDecision {
284285
span: _,
285286
ref end_bcbs,

compiler/rustc_mir_transform/src/dataflow_const_prop.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,8 @@ fn try_write_constant<'tcx>(
647647
ty::FnDef(..) => {}
648648

649649
// Those are scalars, must be handled above.
650-
ty::Bool | ty::Int(_) | ty::Uint(_) | ty::Float(_) | ty::Char => throw_machine_stop_str!("primitive type with provenance"),
650+
ty::Bool | ty::Int(_) | ty::Uint(_) | ty::Float(_) | ty::Char =>
651+
throw_machine_stop_str!("primitive type with provenance"),
651652

652653
ty::Tuple(elem_tys) => {
653654
for (i, elem) in elem_tys.iter().enumerate() {

compiler/rustc_mir_transform/src/deduce_param_attrs.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ impl<'tcx> Visitor<'tcx> for DeduceReadOnly {
4242
}
4343
PlaceContext::NonMutatingUse(NonMutatingUseContext::RawBorrow) => {
4444
// Whether mutating though a `&raw const` is allowed is still undecided, so we
45-
// disable any sketchy `readonly` optimizations for now.
46-
// But we only need to do this if the pointer would point into the argument.
47-
// IOW: for indirect places, like `&raw (*local).field`, this surely cannot mutate `local`.
45+
// disable any sketchy `readonly` optimizations for now. But we only need to do
46+
// this if the pointer would point into the argument. IOW: for indirect places,
47+
// like `&raw (*local).field`, this surely cannot mutate `local`.
4848
!place.is_indirect()
4949
}
5050
PlaceContext::NonMutatingUse(..) | PlaceContext::NonUse(..) => {

compiler/rustc_mir_transform/src/deduplicate_blocks.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ fn find_duplicates(body: &Body<'_>) -> FxHashMap<BasicBlock, BasicBlock> {
6969
// For example, if bb1, bb2 and bb3 are duplicates, we will first insert bb3 in same_hashes.
7070
// Then we will see that bb2 is a duplicate of bb3,
7171
// and insert bb2 with the replacement bb3 in the duplicates list.
72-
// When we see bb1, we see that it is a duplicate of bb3, and therefore insert it in the duplicates list
73-
// with replacement bb3.
72+
// When we see bb1, we see that it is a duplicate of bb3, and therefore insert it in the
73+
// duplicates list with replacement bb3.
7474
// When the duplicates are removed, we will end up with only bb3.
7575
for (bb, bbd) in body.basic_blocks.iter_enumerated().rev().filter(|(_, bbd)| !bbd.is_cleanup) {
7676
// Basic blocks can get really big, so to avoid checking for duplicates in basic blocks
@@ -105,7 +105,8 @@ struct BasicBlockHashable<'tcx, 'a> {
105105
impl Hash for BasicBlockHashable<'_, '_> {
106106
fn hash<H: Hasher>(&self, state: &mut H) {
107107
hash_statements(state, self.basic_block_data.statements.iter());
108-
// Note that since we only hash the kind, we lose span information if we deduplicate the blocks
108+
// Note that since we only hash the kind, we lose span information if we deduplicate the
109+
// blocks.
109110
self.basic_block_data.terminator().kind.hash(state);
110111
}
111112
}

compiler/rustc_mir_transform/src/dest_prop.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ impl<'tcx> crate::MirPass<'tcx> for DestinationPropagation {
242242
}
243243
round_count += 1;
244244

245-
apply_merges(body, tcx, &merges, &merged_locals);
245+
apply_merges(body, tcx, merges, merged_locals);
246246
}
247247

248248
trace!(round_count);
@@ -281,20 +281,20 @@ struct Candidates {
281281
fn apply_merges<'tcx>(
282282
body: &mut Body<'tcx>,
283283
tcx: TyCtxt<'tcx>,
284-
merges: &FxIndexMap<Local, Local>,
285-
merged_locals: &BitSet<Local>,
284+
merges: FxIndexMap<Local, Local>,
285+
merged_locals: BitSet<Local>,
286286
) {
287287
let mut merger = Merger { tcx, merges, merged_locals };
288288
merger.visit_body_preserves_cfg(body);
289289
}
290290

291-
struct Merger<'a, 'tcx> {
291+
struct Merger<'tcx> {
292292
tcx: TyCtxt<'tcx>,
293-
merges: &'a FxIndexMap<Local, Local>,
294-
merged_locals: &'a BitSet<Local>,
293+
merges: FxIndexMap<Local, Local>,
294+
merged_locals: BitSet<Local>,
295295
}
296296

297-
impl<'a, 'tcx> MutVisitor<'tcx> for Merger<'a, 'tcx> {
297+
impl<'tcx> MutVisitor<'tcx> for Merger<'tcx> {
298298
fn tcx(&self) -> TyCtxt<'tcx> {
299299
self.tcx
300300
}

compiler/rustc_mir_transform/src/early_otherwise_branch.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ fn evaluate_candidate<'tcx>(
261261
// };
262262
// ```
263263
//
264-
// Hoisting the `discriminant(Q)` out of the `A` arm causes us to compute the discriminant of an
265-
// invalid value, which is UB.
264+
// Hoisting the `discriminant(Q)` out of the `A` arm causes us to compute the discriminant
265+
// of an invalid value, which is UB.
266266
// In order to fix this, **we would either need to show that the discriminant computation of
267267
// `place` is computed in all branches**.
268268
// FIXME(#95162) For the moment, we adopt a conservative approach and

compiler/rustc_mir_transform/src/elaborate_drops.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ use tracing::{debug, instrument};
2020
use crate::deref_separator::deref_finder;
2121

2222
/// During MIR building, Drop terminators are inserted in every place where a drop may occur.
23-
/// However, in this phase, the presence of these terminators does not guarantee that a destructor will run,
24-
/// as the target of the drop may be uninitialized.
23+
/// However, in this phase, the presence of these terminators does not guarantee that a destructor
24+
/// will run, as the target of the drop may be uninitialized.
2525
/// In general, the compiler cannot determine at compile time whether a destructor will run or not.
2626
///
2727
/// At a high level, this pass refines Drop to only run the destructor if the
@@ -30,10 +30,10 @@ use crate::deref_separator::deref_finder;
3030
/// Once this is complete, Drop terminators in the MIR correspond to a call to the "drop glue" or
3131
/// "drop shim" for the type of the dropped place.
3232
///
33-
/// This pass relies on dropped places having an associated move path, which is then used to determine
34-
/// the initialization status of the place and its descendants.
35-
/// It's worth noting that a MIR containing a Drop without an associated move path is probably ill formed,
36-
/// as it would allow running a destructor on a place behind a reference:
33+
/// This pass relies on dropped places having an associated move path, which is then used to
34+
/// determine the initialization status of the place and its descendants.
35+
/// It's worth noting that a MIR containing a Drop without an associated move path is probably ill
36+
/// formed, as it would allow running a destructor on a place behind a reference:
3737
///
3838
/// ```text
3939
/// fn drop_term<T>(t: &mut T) {
@@ -377,8 +377,8 @@ impl<'a, 'tcx> ElaborateDropsCtxt<'a, 'tcx> {
377377
);
378378
}
379379
// A drop and replace behind a pointer/array/whatever.
380-
// The borrow checker requires that these locations are initialized before the assignment,
381-
// so we just leave an unconditional drop.
380+
// The borrow checker requires that these locations are initialized before the
381+
// assignment, so we just leave an unconditional drop.
382382
assert!(!data.is_cleanup);
383383
}
384384
}

compiler/rustc_mir_transform/src/ffi_unwind_calls.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ fn has_ffi_unwind_calls(tcx: TyCtxt<'_>, local_def_id: LocalDefId) -> bool {
6060
let fn_def_id = match ty.kind() {
6161
ty::FnPtr(..) => None,
6262
&ty::FnDef(def_id, _) => {
63-
// Rust calls cannot themselves create foreign unwinds (even if they use a non-Rust ABI).
64-
// So the leak of the foreign unwind into Rust can only be elsewhere, not here.
63+
// Rust calls cannot themselves create foreign unwinds (even if they use a non-Rust
64+
// ABI). So the leak of the foreign unwind into Rust can only be elsewhere, not
65+
// here.
6566
if !tcx.is_foreign_item(def_id) {
6667
continue;
6768
}

compiler/rustc_mir_transform/src/function_item_references.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ impl<'tcx> FunctionItemRefChecker<'_, 'tcx> {
9292
{
9393
let mut span = self.nth_arg_span(args, arg_num);
9494
if span.from_expansion() {
95-
// The operand's ctxt wouldn't display the lint since it's inside a macro so
96-
// we have to use the callsite's ctxt.
95+
// The operand's ctxt wouldn't display the lint since it's
96+
// inside a macro so we have to use the callsite's ctxt.
9797
let callsite_ctxt = span.source_callsite().ctxt();
9898
span = span.with_ctxt(callsite_ctxt);
9999
}

0 commit comments

Comments
 (0)