Skip to content

Commit

Permalink
Rename places_conflict to borrow_conflicts_with_place
Browse files Browse the repository at this point in the history
This name better reflects the asymmetry of this function.
  • Loading branch information
matthewjasper committed Sep 24, 2018
1 parent 531e98a commit a830732
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/librustc_mir/borrow_check/path_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub(super) fn each_borrow_involving_path<'a, 'tcx, 'gcx: 'tcx, F, I, S> (
for i in candidates {
let borrowed = &borrow_set[i];

if places_conflict::places_conflict(
if places_conflict::borrow_conflicts_with_place(
tcx,
mir,
&borrowed.borrowed_place,
Expand Down
24 changes: 12 additions & 12 deletions src/librustc_mir/borrow_check/places_conflict.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use rustc::mir::{Projection, ProjectionElem};
use rustc::ty::{self, TyCtxt};
use std::cmp::max;

pub(super) fn places_conflict<'gcx, 'tcx>(
pub(super) fn borrow_conflicts_with_place<'gcx, 'tcx>(
tcx: TyCtxt<'_, 'gcx, 'tcx>,
mir: &Mir<'tcx>,
borrow_place: &Place<'tcx>,
Expand All @@ -26,7 +26,7 @@ pub(super) fn places_conflict<'gcx, 'tcx>(
access: AccessDepth,
) -> bool {
debug!(
"places_conflict({:?},{:?},{:?})",
"borrow_conflicts_with_place({:?},{:?},{:?})",
borrow_place, access_place, access
);

Expand Down Expand Up @@ -104,10 +104,10 @@ fn place_components_conflict<'gcx, 'tcx>(
loop {
// loop invariant: borrow_c is always either equal to access_c or disjoint from it.
if let Some(borrow_c) = borrow_components.next() {
debug!("places_conflict: borrow_c = {:?}", borrow_c);
debug!("borrow_conflicts_with_place: borrow_c = {:?}", borrow_c);

if let Some(access_c) = access_components.next() {
debug!("places_conflict: access_c = {:?}", access_c);
debug!("borrow_conflicts_with_place: access_c = {:?}", access_c);

// Borrow and access path both have more components.
//
Expand Down Expand Up @@ -136,7 +136,7 @@ fn place_components_conflict<'gcx, 'tcx>(
// idea, at least for now, so just give up and
// report a conflict. This is unsafe code anyway so
// the user could always use raw pointers.
debug!("places_conflict: arbitrary -> conflict");
debug!("borrow_conflicts_with_place: arbitrary -> conflict");
return true;
}
Overlap::EqualOrDisjoint => {
Expand All @@ -145,7 +145,7 @@ fn place_components_conflict<'gcx, 'tcx>(
Overlap::Disjoint => {
// We have proven the borrow disjoint - further
// projections will remain disjoint.
debug!("places_conflict: disjoint");
debug!("borrow_conflicts_with_place: disjoint");
return false;
}
}
Expand Down Expand Up @@ -177,15 +177,15 @@ fn place_components_conflict<'gcx, 'tcx>(
//
// e.g. a (mutable) borrow of `a[5]` while we read the
// array length of `a`.
debug!("places_conflict: implicit field");
debug!("borrow_conflicts_with_place: implicit field");
return false;
}

(ProjectionElem::Deref, _, Shallow(None)) => {
// e.g. a borrow of `*x.y` while we shallowly access `x.y` or some
// prefix thereof - the shallow access can't touch anything behind
// the pointer.
debug!("places_conflict: shallow access behind ptr");
debug!("borrow_conflicts_with_place: shallow access behind ptr");
return false;
}
(ProjectionElem::Deref, ty::Ref(_, _, hir::MutImmutable), _) => {
Expand All @@ -195,7 +195,7 @@ fn place_components_conflict<'gcx, 'tcx>(
(ProjectionElem::Deref, ty::Ref(_, _, hir::MutMutable), AccessDepth::Drop) => {
// Values behind a mutatble reference are not access either by Dropping a
// value, or by StorageDead
debug!("places_conflict: drop access behind ptr");
debug!("borrow_conflicts_with_place: drop access behind ptr");
return false;
}

Expand Down Expand Up @@ -236,10 +236,10 @@ fn place_components_conflict<'gcx, 'tcx>(
// that the borrow can access a *part* of our place that
// our access cares about, so we still have a conflict.
if borrow_kind == BorrowKind::Shallow && access_components.next().is_some() {
debug!("places_conflict: shallow borrow");
debug!("borrow_conflicts_with_place: shallow borrow");
return false;
} else {
debug!("places_conflict: full borrow, CONFLICT");
debug!("borrow_conflicts_with_place: full borrow, CONFLICT");
return true;
}
}
Expand All @@ -253,7 +253,7 @@ fn place_components_conflict<'gcx, 'tcx>(
///
/// NB: This particular impl strategy is not the most obvious. It was
/// chosen because it makes a measurable difference to NLL
/// performance, as this code (`places_conflict`) is somewhat hot.
/// performance, as this code (`borrow_conflicts_with_place`) is somewhat hot.
struct PlaceComponents<'p, 'tcx: 'p> {
component: &'p Place<'tcx>,
next: Option<&'p PlaceComponents<'p, 'tcx>>,
Expand Down

0 comments on commit a830732

Please sign in to comment.