Skip to content

Commit d203476

Browse files
committedNov 14, 2023
rename debugging support functions
1 parent 84a002c commit d203476

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed
 

‎compiler/rustc_borrowck/src/region_infer/dump_mir.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
6767
with_msg: &mut dyn FnMut(&str) -> io::Result<()>,
6868
) -> io::Result<()> {
6969
for region in self.definitions.indices() {
70-
let value = self.liveness_constraints.region_value_str(region);
70+
let value = self.liveness_constraints.pretty_print_live_points(region);
7171
if value != "{}" {
7272
with_msg(&format!("{region:?} live at {value}"))?;
7373
}

‎compiler/rustc_borrowck/src/region_infer/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1970,7 +1970,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
19701970
trace!(universe = ?self.scc_universes[self.constraint_sccs.scc(fr1)]);
19711971
self.find_constraint_paths_between_regions(fr1, |r| {
19721972
// First look for some `r` such that `fr1: r` and `r` is live at `location`
1973-
trace!(?r, liveness_constraints=?self.liveness_constraints.region_value_str(r));
1973+
trace!(?r, liveness_constraints=?self.liveness_constraints.pretty_print_live_points(r));
19741974
self.liveness_constraints.is_live_at(r, location)
19751975
})
19761976
.or_else(|| {

‎compiler/rustc_borrowck/src/region_infer/values.rs

+10-7
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,10 @@ impl LivenessValues {
172172
.take_while(|&p| self.elements.point_in_range(p))
173173
}
174174

175-
/// Returns a "pretty" string value of the region. Meant for debugging.
176-
pub(crate) fn region_value_str(&self, region: RegionVid) -> String {
177-
region_value_str(
175+
/// For debugging purposes, returns a pretty-printed string of the points where the `region` is
176+
/// live.
177+
pub(crate) fn pretty_print_live_points(&self, region: RegionVid) -> String {
178+
pretty_print_region_elements(
178179
self.live_points(region).map(|p| RegionElement::Location(self.elements.to_location(p))),
179180
)
180181
}
@@ -378,7 +379,7 @@ impl<N: Idx> RegionValues<N> {
378379

379380
/// Returns a "pretty" string value of the region. Meant for debugging.
380381
pub(crate) fn region_value_str(&self, r: N) -> String {
381-
region_value_str(self.elements_contained_in(r))
382+
pretty_print_region_elements(self.elements_contained_in(r))
382383
}
383384
}
384385

@@ -422,11 +423,12 @@ impl ToElementIndex for ty::PlaceholderRegion {
422423
}
423424
}
424425

425-
pub(crate) fn location_set_str(
426+
/// For debugging purposes, returns a pretty-printed string of the given points.
427+
pub(crate) fn pretty_print_points(
426428
elements: &RegionValueElements,
427429
points: impl IntoIterator<Item = PointIndex>,
428430
) -> String {
429-
region_value_str(
431+
pretty_print_region_elements(
430432
points
431433
.into_iter()
432434
.take_while(|&p| elements.point_in_range(p))
@@ -435,7 +437,8 @@ pub(crate) fn location_set_str(
435437
)
436438
}
437439

438-
fn region_value_str(elements: impl IntoIterator<Item = RegionElement>) -> String {
440+
/// For debugging purposes, returns a pretty-printed string of the given region elements.
441+
fn pretty_print_region_elements(elements: impl IntoIterator<Item = RegionElement>) -> String {
439442
let mut result = String::new();
440443
result.push('{');
441444

‎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)