Skip to content

Commit cc07061

Browse files
authored
Rollup merge of #82091 - henryboisdequin:use-place-ref-more, r=RalfJung
use PlaceRef abstractions more consistently Addresses this [comment](https://github.com/rust-lang/rust/pull/80865/files#r558978715) Associated issue: #80647 r? ```@RalfJung```
2 parents 7b9ef2f + a9c6188 commit cc07061

File tree

5 files changed

+22
-23
lines changed

5 files changed

+22
-23
lines changed

compiler/rustc_codegen_ssa/src/mir/analyze.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ impl<Bx: BuilderMethods<'a, 'tcx>> LocalAnalyzer<'mir, 'a, 'tcx, Bx> {
199199
}
200200

201201
self.visit_local(&place_ref.local, context, location);
202-
self.visit_projection(place_ref.local, place_ref.projection, context, location);
202+
self.visit_projection(*place_ref, context, location);
203203
}
204204
}
205205
}

compiler/rustc_middle/src/mir/visit.rs

+7-8
Original file line numberDiff line numberDiff line change
@@ -998,12 +998,11 @@ macro_rules! visit_place_fns {
998998
() => {
999999
fn visit_projection(
10001000
&mut self,
1001-
local: Local,
1002-
projection: &[PlaceElem<'tcx>],
1001+
place_ref: PlaceRef<'tcx>,
10031002
context: PlaceContext,
10041003
location: Location,
10051004
) {
1006-
self.super_projection(local, projection, context, location);
1005+
self.super_projection(place_ref, context, location);
10071006
}
10081007

10091008
fn visit_projection_elem(
@@ -1033,20 +1032,20 @@ macro_rules! visit_place_fns {
10331032

10341033
self.visit_local(&place.local, context, location);
10351034

1036-
self.visit_projection(place.local, &place.projection, context, location);
1035+
self.visit_projection(place.as_ref(), context, location);
10371036
}
10381037

10391038
fn super_projection(
10401039
&mut self,
1041-
local: Local,
1042-
projection: &[PlaceElem<'tcx>],
1040+
place_ref: PlaceRef<'tcx>,
10431041
context: PlaceContext,
10441042
location: Location,
10451043
) {
1046-
let mut cursor = projection;
1044+
// FIXME: Use PlaceRef::iter_projections, once that exists.
1045+
let mut cursor = place_ref.projection;
10471046
while let &[ref proj_base @ .., elem] = cursor {
10481047
cursor = proj_base;
1049-
self.visit_projection_elem(local, cursor, elem, context, location);
1048+
self.visit_projection_elem(place_ref.local, cursor, elem, context, location);
10501049
}
10511050
}
10521051

compiler/rustc_mir/src/dataflow/impls/liveness.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ where
9595

9696
// We purposefully do not call `super_place` here to avoid calling `visit_local` for this
9797
// place with one of the `Projection` variants of `PlaceContext`.
98-
self.visit_projection(local, projection, context, location);
98+
self.visit_projection(place.as_ref(), context, location);
9999

100100
match DefUse::for_place(context) {
101101
// Treat derefs as a use of the base local. `*p = 4` is not a def of `p` but a use.

compiler/rustc_mir/src/transform/check_consts/validation.rs

+12-11
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ impl Visitor<'tcx> for Validator<'mir, 'tcx> {
515515
// Special-case reborrows to be more like a copy of a reference.
516516
match *rvalue {
517517
Rvalue::Ref(_, kind, place) => {
518-
if let Some(reborrowed_proj) = place_as_reborrow(self.tcx, self.body, place) {
518+
if let Some(reborrowed_place_ref) = place_as_reborrow(self.tcx, self.body, place) {
519519
let ctx = match kind {
520520
BorrowKind::Shared => {
521521
PlaceContext::NonMutatingUse(NonMutatingUseContext::SharedBorrow)
@@ -530,21 +530,21 @@ impl Visitor<'tcx> for Validator<'mir, 'tcx> {
530530
PlaceContext::MutatingUse(MutatingUseContext::Borrow)
531531
}
532532
};
533-
self.visit_local(&place.local, ctx, location);
534-
self.visit_projection(place.local, reborrowed_proj, ctx, location);
533+
self.visit_local(&reborrowed_place_ref.local, ctx, location);
534+
self.visit_projection(reborrowed_place_ref, ctx, location);
535535
return;
536536
}
537537
}
538538
Rvalue::AddressOf(mutbl, place) => {
539-
if let Some(reborrowed_proj) = place_as_reborrow(self.tcx, self.body, place) {
539+
if let Some(reborrowed_place_ref) = place_as_reborrow(self.tcx, self.body, place) {
540540
let ctx = match mutbl {
541541
Mutability::Not => {
542542
PlaceContext::NonMutatingUse(NonMutatingUseContext::AddressOf)
543543
}
544544
Mutability::Mut => PlaceContext::MutatingUse(MutatingUseContext::AddressOf),
545545
};
546-
self.visit_local(&place.local, ctx, location);
547-
self.visit_projection(place.local, reborrowed_proj, ctx, location);
546+
self.visit_local(&reborrowed_place_ref.local, ctx, location);
547+
self.visit_projection(reborrowed_place_ref, ctx, location);
548548
return;
549549
}
550550
}
@@ -1039,7 +1039,7 @@ fn place_as_reborrow(
10391039
tcx: TyCtxt<'tcx>,
10401040
body: &Body<'tcx>,
10411041
place: Place<'tcx>,
1042-
) -> Option<&'a [PlaceElem<'tcx>]> {
1042+
) -> Option<PlaceRef<'tcx>> {
10431043
match place.as_ref().last_projection() {
10441044
Some((place_base, ProjectionElem::Deref)) => {
10451045
// A borrow of a `static` also looks like `&(*_1)` in the MIR, but `_1` is a `const`
@@ -1048,13 +1048,14 @@ fn place_as_reborrow(
10481048
None
10491049
} else {
10501050
// Ensure the type being derefed is a reference and not a raw pointer.
1051-
//
10521051
// This is sufficient to prevent an access to a `static mut` from being marked as a
10531052
// reborrow, even if the check above were to disappear.
10541053
let inner_ty = place_base.ty(body, tcx).ty;
1055-
match inner_ty.kind() {
1056-
ty::Ref(..) => Some(place_base.projection),
1057-
_ => None,
1054+
1055+
if let ty::Ref(..) = inner_ty.kind() {
1056+
return Some(place_base);
1057+
} else {
1058+
return None;
10581059
}
10591060
}
10601061
}

compiler/rustc_mir/src/transform/simplify.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,7 @@ impl UsedLocals {
413413
} else {
414414
// A definition. Although, it still might use other locals for indexing.
415415
self.super_projection(
416-
place.local,
417-
&place.projection,
416+
place.as_ref(),
418417
PlaceContext::MutatingUse(MutatingUseContext::Projection),
419418
location,
420419
);

0 commit comments

Comments
 (0)