Skip to content

Commit 686b6e9

Browse files
committed
rename debugging support functions
1 parent 28783a2 commit 686b6e9

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

compiler/rustc_borrowck/src/region_infer/values.rs

+10-8
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ impl LivenessValues {
176176
.take_while(move |&p| self.elements.point_in_range(p))
177177
}
178178

179-
/// Returns a "pretty" string value of the region. Meant for debugging.
179+
/// For debugging purposes, returns a pretty-printed string of the points where the `region` is
180+
/// live.
180181
pub(crate) fn region_value_str(&self, region: RegionVid) -> String {
181-
region_value_str(
182-
self.live_points(region)
183-
.map(move |p| RegionElement::Location(self.elements.to_location(p))),
182+
pretty_print_region_elements(
183+
self.live_points(region).map(|p| RegionElement::Location(self.elements.to_location(p))),
184184
)
185185
}
186186

@@ -383,7 +383,7 @@ impl<N: Idx> RegionValues<N> {
383383

384384
/// Returns a "pretty" string value of the region. Meant for debugging.
385385
pub(crate) fn region_value_str(&self, r: N) -> String {
386-
region_value_str(self.elements_contained_in(r))
386+
pretty_print_region_elements(self.elements_contained_in(r))
387387
}
388388
}
389389

@@ -427,11 +427,12 @@ impl ToElementIndex for ty::PlaceholderRegion {
427427
}
428428
}
429429

430-
pub(crate) fn location_set_str(
430+
/// For debugging purposes, returns a pretty-printed string of the given points.
431+
pub(crate) fn pretty_print_points(
431432
elements: &RegionValueElements,
432433
points: impl IntoIterator<Item = PointIndex>,
433434
) -> String {
434-
region_value_str(
435+
pretty_print_region_elements(
435436
points
436437
.into_iter()
437438
.take_while(|&p| elements.point_in_range(p))
@@ -440,7 +441,8 @@ pub(crate) fn location_set_str(
440441
)
441442
}
442443

443-
fn region_value_str(elements: impl IntoIterator<Item = RegionElement>) -> String {
444+
/// For debugging purposes, returns a pretty-printed string of the given region elements.
445+
fn pretty_print_region_elements(elements: impl IntoIterator<Item = RegionElement>) -> String {
444446
let mut result = String::new();
445447
result.push('{');
446448

compiler/rustc_borrowck/src/type_check/liveness/trace.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ impl<'tcx> LivenessContext<'_, '_, '_, 'tcx> {
550550
dropped_local,
551551
dropped_ty,
552552
drop_locations,
553-
values::location_set_str(self.elements, live_at.iter()),
553+
values::pretty_print_points(self.elements, live_at.iter()),
554554
);
555555

556556
let drop_data = self.drop_data.entry(dropped_ty).or_insert_with({
@@ -599,7 +599,7 @@ impl<'tcx> LivenessContext<'_, '_, '_, 'tcx> {
599599
debug!("make_all_regions_live(value={:?})", value);
600600
debug!(
601601
"make_all_regions_live: live_at={}",
602-
values::location_set_str(elements, live_at.iter()),
602+
values::pretty_print_points(elements, live_at.iter()),
603603
);
604604

605605
// When using `-Zpolonius=next`, we want to record the loans that flow into this value's

0 commit comments

Comments
 (0)