Skip to content

Commit c5e2829

Browse files
committed
Use a VnIndex in Address projection.
1 parent 0683fdd commit c5e2829

File tree

7 files changed

+164
-78
lines changed

7 files changed

+164
-78
lines changed

compiler/rustc_mir_transform/src/gvn.rs

Lines changed: 122 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,14 @@ enum AddressKind {
164164
Address(RawPtrKind),
165165
}
166166

167+
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
168+
enum AddressBase {
169+
/// This address is based on this local.
170+
Local(Local),
171+
/// This address is based on the deref of this pointer.
172+
Deref(VnIndex),
173+
}
174+
167175
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
168176
enum Value<'a, 'tcx> {
169177
// Root values.
@@ -192,7 +200,10 @@ enum Value<'a, 'tcx> {
192200
Repeat(VnIndex, ty::Const<'tcx>),
193201
/// The address of a place.
194202
Address {
195-
place: Place<'tcx>,
203+
base: AddressBase,
204+
// We do not use a plain `Place` as we want to be able to reason about indices.
205+
// This does not contain any `Deref` projection.
206+
projection: &'a [ProjectionElem<VnIndex, Ty<'tcx>>],
196207
kind: AddressKind,
197208
/// Give each borrow and pointer a different provenance, so we don't merge them.
198209
provenance: usize,
@@ -307,16 +318,30 @@ impl<'body, 'a, 'tcx> VnState<'body, 'a, 'tcx> {
307318

308319
/// Create a new `Value::Address` distinct from all the others.
309320
#[instrument(level = "trace", skip(self), ret)]
310-
fn new_pointer(&mut self, place: Place<'tcx>, kind: AddressKind) -> VnIndex {
321+
fn new_pointer(&mut self, place: Place<'tcx>, kind: AddressKind) -> Option<VnIndex> {
311322
let pty = place.ty(self.local_decls, self.tcx).ty;
312323
let ty = match kind {
313324
AddressKind::Ref(bk) => {
314325
Ty::new_ref(self.tcx, self.tcx.lifetimes.re_erased, pty, bk.to_mutbl_lossy())
315326
}
316327
AddressKind::Address(mutbl) => Ty::new_ptr(self.tcx, pty, mutbl.to_mutbl_lossy()),
317328
};
318-
let value = Value::Address { place, kind, provenance: self.next_opaque() };
319-
self.insert(ty, value)
329+
330+
let mut projection = place.projection.iter();
331+
let base = if place.is_indirect_first_projection() {
332+
let base = self.locals[place.local]?;
333+
// Skip the initial `Deref`.
334+
projection.next();
335+
AddressBase::Deref(base)
336+
} else {
337+
AddressBase::Local(place.local)
338+
};
339+
// Do not try evaluating inside `Index`, this has been done by `simplify_place_projection`.
340+
let projection =
341+
projection.map(|proj| proj.try_map(|index| self.locals[index], |ty| ty).ok_or(()));
342+
let projection = self.arena.try_alloc_from_iter(projection).ok()?;
343+
let value = Value::Address { base, projection, kind, provenance: self.next_opaque() };
344+
Some(self.insert(ty, value))
320345
}
321346

322347
#[inline]
@@ -457,14 +482,15 @@ impl<'body, 'a, 'tcx> VnState<'body, 'a, 'tcx> {
457482
let elem = elem.try_map(|_| None, |()| ty.ty)?;
458483
self.ecx.project(base, elem).discard_err()?
459484
}
460-
Address { place, kind: _, provenance: _ } => {
461-
if !place.is_indirect_first_projection() {
462-
return None;
463-
}
464-
let local = self.locals[place.local]?;
465-
let pointer = self.evaluated[local].as_ref()?;
485+
Address { base, projection, .. } => {
486+
debug_assert!(!projection.contains(&ProjectionElem::Deref));
487+
let pointer = match base {
488+
AddressBase::Deref(pointer) => self.evaluated[pointer].as_ref()?,
489+
// We have no stack to point to.
490+
AddressBase::Local(_) => return None,
491+
};
466492
let mut mplace = self.ecx.deref_pointer(pointer).discard_err()?;
467-
for elem in place.projection.iter().skip(1) {
493+
for elem in projection {
468494
// `Index` by constants should have been replaced by `ConstantIndex` by
469495
// `simplify_place_projection`.
470496
let elem = elem.try_map(|_| None, |ty| ty)?;
@@ -583,19 +609,51 @@ impl<'body, 'a, 'tcx> VnState<'body, 'a, 'tcx> {
583609
Some(op)
584610
}
585611

612+
/// Represent the *value* we obtain by dereferencing an `Address` value.
613+
#[instrument(level = "trace", skip(self), ret)]
614+
fn dereference_address(
615+
&mut self,
616+
base: AddressBase,
617+
projection: &[ProjectionElem<VnIndex, Ty<'tcx>>],
618+
) -> Option<VnIndex> {
619+
let (mut place_ty, mut value) = match base {
620+
// The base is a local, so we take the local's value and project from it.
621+
AddressBase::Local(local) => {
622+
let local = self.locals[local]?;
623+
let place_ty = PlaceTy::from_ty(self.ty(local));
624+
(place_ty, local)
625+
}
626+
// The base is a pointer's deref, so we introduce the implicit deref.
627+
AddressBase::Deref(reborrow) => {
628+
let place_ty = PlaceTy::from_ty(self.ty(reborrow));
629+
self.project(place_ty, reborrow, ProjectionElem::Deref)?
630+
}
631+
};
632+
for &proj in projection {
633+
(place_ty, value) = self.project(place_ty, value, proj)?;
634+
}
635+
Some(value)
636+
}
637+
638+
#[instrument(level = "trace", skip(self), ret)]
586639
fn project(
587640
&mut self,
588641
place_ty: PlaceTy<'tcx>,
589642
value: VnIndex,
590-
proj: PlaceElem<'tcx>,
591-
from_non_ssa_index: &mut bool,
643+
proj: ProjectionElem<VnIndex, Ty<'tcx>>,
592644
) -> Option<(PlaceTy<'tcx>, VnIndex)> {
593645
let projection_ty = place_ty.projection_ty(self.tcx, proj);
594646
let proj = match proj {
595647
ProjectionElem::Deref => {
596648
if let Some(Mutability::Not) = place_ty.ty.ref_mutability()
597649
&& projection_ty.ty.is_freeze(self.tcx, self.typing_env())
598650
{
651+
if let Value::Address { base, projection, .. } = self.get(value)
652+
&& let Some(value) = self.dereference_address(base, projection)
653+
{
654+
return Some((projection_ty, value));
655+
}
656+
599657
// An immutable borrow `_x` always points to the same value for the
600658
// lifetime of the borrow, so we can merge all instances of `*_x`.
601659
return Some((projection_ty, self.insert_deref(projection_ty.ty, value)));
@@ -632,10 +690,8 @@ impl<'body, 'a, 'tcx> VnState<'body, 'a, 'tcx> {
632690
}
633691
ProjectionElem::Index(idx) => {
634692
if let Value::Repeat(inner, _) = self.get(value) {
635-
*from_non_ssa_index |= self.locals[idx].is_none();
636693
return Some((projection_ty, inner));
637694
}
638-
let idx = self.locals[idx]?;
639695
ProjectionElem::Index(idx)
640696
}
641697
ProjectionElem::ConstantIndex { offset, min_length, from_end } => {
@@ -711,77 +767,74 @@ impl<'body, 'a, 'tcx> VnState<'body, 'a, 'tcx> {
711767
trace!(?place);
712768
}
713769

714-
/// Represent the *value* which would be read from `place`, and point `place` to a preexisting
715-
/// place with the same value (if that already exists).
770+
/// Represent the *value* which would be read from `place`. If we succeed, return it.
771+
/// If we fail, return a `PlaceRef` that contains the same value.
716772
#[instrument(level = "trace", skip(self), ret)]
717-
fn simplify_place_value(
773+
fn compute_place_value(
718774
&mut self,
719-
place: &mut Place<'tcx>,
775+
place: Place<'tcx>,
720776
location: Location,
721-
) -> Option<VnIndex> {
722-
self.simplify_place_projection(place, location);
723-
777+
) -> Result<VnIndex, PlaceRef<'tcx>> {
724778
// Invariant: `place` and `place_ref` point to the same value, even if they point to
725779
// different memory locations.
726780
let mut place_ref = place.as_ref();
727781

728782
// Invariant: `value` holds the value up-to the `index`th projection excluded.
729-
let mut value = self.locals[place.local]?;
783+
let Some(mut value) = self.locals[place.local] else { return Err(place_ref) };
730784
// Invariant: `value` has type `place_ty`, with optional downcast variant if needed.
731785
let mut place_ty = PlaceTy::from_ty(self.local_decls[place.local].ty);
732-
let mut from_non_ssa_index = false;
733786
for (index, proj) in place.projection.iter().enumerate() {
734-
if let Value::Projection(pointer, ProjectionElem::Deref) = self.get(value)
735-
&& let Value::Address { place: mut pointee, kind, .. } = self.get(pointer)
736-
&& let AddressKind::Ref(BorrowKind::Shared) = kind
737-
&& let Some(v) = self.simplify_place_value(&mut pointee, location)
738-
{
739-
value = v;
740-
// `pointee` holds a `Place`, so `ProjectionElem::Index` holds a `Local`.
741-
// That local is SSA, but we otherwise have no guarantee on that local's value at
742-
// the current location compared to its value where `pointee` was borrowed.
743-
if pointee.projection.iter().all(|elem| !matches!(elem, ProjectionElem::Index(_))) {
744-
place_ref =
745-
pointee.project_deeper(&place.projection[index..], self.tcx).as_ref();
746-
}
747-
}
748787
if let Some(local) = self.try_as_local(value, location) {
749788
// Both `local` and `Place { local: place.local, projection: projection[..index] }`
750789
// hold the same value. Therefore, following place holds the value in the original
751790
// `place`.
752791
place_ref = PlaceRef { local, projection: &place.projection[index..] };
753792
}
754793

755-
(place_ty, value) = self.project(place_ty, value, proj, &mut from_non_ssa_index)?;
794+
let Some(proj) = proj.try_map(|value| self.locals[value], |ty| ty) else {
795+
return Err(place_ref);
796+
};
797+
let Some(ty_and_value) = self.project(place_ty, value, proj) else {
798+
return Err(place_ref);
799+
};
800+
(place_ty, value) = ty_and_value;
756801
}
757802

758-
if let Value::Projection(pointer, ProjectionElem::Deref) = self.get(value)
759-
&& let Value::Address { place: mut pointee, kind, .. } = self.get(pointer)
760-
&& let AddressKind::Ref(BorrowKind::Shared) = kind
761-
&& let Some(v) = self.simplify_place_value(&mut pointee, location)
762-
{
763-
value = v;
764-
// `pointee` holds a `Place`, so `ProjectionElem::Index` holds a `Local`.
765-
// That local is SSA, but we otherwise have no guarantee on that local's value at
766-
// the current location compared to its value where `pointee` was borrowed.
767-
if pointee.projection.iter().all(|elem| !matches!(elem, ProjectionElem::Index(_))) {
768-
place_ref = pointee.project_deeper(&[], self.tcx).as_ref();
769-
}
770-
}
771-
if let Some(new_local) = self.try_as_local(value, location) {
772-
place_ref = PlaceRef { local: new_local, projection: &[] };
773-
} else if from_non_ssa_index {
774-
// If access to non-SSA locals is unavoidable, bail out.
775-
return None;
776-
}
803+
Ok(value)
804+
}
777805

778-
if place_ref.local != place.local || place_ref.projection.len() < place.projection.len() {
779-
// By the invariant on `place_ref`.
780-
*place = place_ref.project_deeper(&[], self.tcx);
781-
self.reused_locals.insert(place_ref.local);
782-
}
806+
/// Represent the *value* which would be read from `place`, and point `place` to a preexisting
807+
/// place with the same value (if that already exists).
808+
#[instrument(level = "trace", skip(self), ret)]
809+
fn simplify_place_value(
810+
&mut self,
811+
place: &mut Place<'tcx>,
812+
location: Location,
813+
) -> Option<VnIndex> {
814+
self.simplify_place_projection(place, location);
783815

784-
Some(value)
816+
match self.compute_place_value(*place, location) {
817+
Ok(value) => {
818+
if let Some(new_place) = self.try_as_place(value, location, true)
819+
&& (new_place.local != place.local
820+
|| new_place.projection.len() < place.projection.len())
821+
{
822+
*place = new_place;
823+
self.reused_locals.insert(new_place.local);
824+
}
825+
Some(value)
826+
}
827+
Err(place_ref) => {
828+
if place_ref.local != place.local
829+
|| place_ref.projection.len() < place.projection.len()
830+
{
831+
// By the invariant on `place_ref`.
832+
*place = place_ref.project_deeper(&[], self.tcx);
833+
self.reused_locals.insert(place_ref.local);
834+
}
835+
None
836+
}
837+
}
785838
}
786839

787840
#[instrument(level = "trace", skip(self), ret)]
@@ -828,11 +881,11 @@ impl<'body, 'a, 'tcx> VnState<'body, 'a, 'tcx> {
828881
Rvalue::Aggregate(..) => return self.simplify_aggregate(lhs, rvalue, location),
829882
Rvalue::Ref(_, borrow_kind, ref mut place) => {
830883
self.simplify_place_projection(place, location);
831-
return Some(self.new_pointer(*place, AddressKind::Ref(borrow_kind)));
884+
return self.new_pointer(*place, AddressKind::Ref(borrow_kind));
832885
}
833886
Rvalue::RawPtr(mutbl, ref mut place) => {
834887
self.simplify_place_projection(place, location);
835-
return Some(self.new_pointer(*place, AddressKind::Address(mutbl)));
888+
return self.new_pointer(*place, AddressKind::Address(mutbl));
836889
}
837890
Rvalue::WrapUnsafeBinder(ref mut op, _) => {
838891
let value = self.simplify_operand(op, location)?;
@@ -1072,12 +1125,10 @@ impl<'body, 'a, 'tcx> VnState<'body, 'a, 'tcx> {
10721125
}
10731126

10741127
// `&mut *p`, `&raw *p`, etc don't change metadata.
1075-
Value::Address { place, kind: _, provenance: _ }
1076-
if let PlaceRef { local, projection: [PlaceElem::Deref] } =
1077-
place.as_ref()
1078-
&& let Some(local_index) = self.locals[local] =>
1128+
Value::Address { base: AddressBase::Deref(reborrowed), projection, .. }
1129+
if projection.is_empty() =>
10791130
{
1080-
local_index
1131+
reborrowed
10811132
}
10821133

10831134
_ => break,

tests/mir-opt/gvn.dereference_indexing.GVN.panic-abort.diff

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
+ nop;
4444
StorageLive(_8);
4545
StorageLive(_9);
46-
_9 = copy (*_3);
46+
- _9 = copy (*_3);
47+
+ _9 = copy _1[_4];
4748
_8 = opaque::<u8>(move _9) -> [return: bb2, unwind unreachable];
4849
}
4950

tests/mir-opt/gvn.dereference_indexing.GVN.panic-unwind.diff

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
+ nop;
4444
StorageLive(_8);
4545
StorageLive(_9);
46-
_9 = copy (*_3);
46+
- _9 = copy (*_3);
47+
+ _9 = copy _1[_4];
4748
_8 = opaque::<u8>(move _9) -> [return: bb2, unwind continue];
4849
}
4950

tests/mir-opt/gvn.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,8 +1065,8 @@ fn dereference_indexing(array: [u8; 2], index: usize) {
10651065
&array[i]
10661066
};
10671067

1068-
// CHECK-NOT: [{{.*}}]
1069-
// CHECK: [[tmp:_.*]] = copy (*[[a]]);
1068+
// CHECK-NOT: StorageDead([[i]]);
1069+
// CHECK: [[tmp:_.*]] = copy _1[[[i]]];
10701070
// CHECK: opaque::<u8>(move [[tmp]])
10711071
opaque(*a);
10721072
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
- // MIR for `index_place` before GVN
2+
+ // MIR for `index_place` after GVN
3+
4+
fn index_place(_1: usize, _2: usize, _3: [i32; 5]) -> i32 {
5+
let mut _0: i32;
6+
let mut _4: &i32;
7+
8+
bb0: {
9+
_4 = &_3[_1];
10+
_1 = copy _2;
11+
_0 = copy (*_4);
12+
return;
13+
}
14+
}
15+

tests/mir-opt/gvn_repeat.repeat_local.GVN.diff

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
_4 = [copy _3; 5];
1111
_5 = &_4[_1];
1212
_1 = copy _2;
13-
- _0 = copy (*_5);
14-
+ _0 = copy _3;
13+
_0 = copy (*_5);
1514
return;
1615
}
1716
}

0 commit comments

Comments
 (0)