@@ -172,9 +172,10 @@ impl LivenessValues {
172
172
. take_while ( |& p| self . elements . point_in_range ( p) )
173
173
}
174
174
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 (
178
179
self . live_points ( region) . map ( |p| RegionElement :: Location ( self . elements . to_location ( p) ) ) ,
179
180
)
180
181
}
@@ -378,7 +379,7 @@ impl<N: Idx> RegionValues<N> {
378
379
379
380
/// Returns a "pretty" string value of the region. Meant for debugging.
380
381
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) )
382
383
}
383
384
}
384
385
@@ -422,11 +423,12 @@ impl ToElementIndex for ty::PlaceholderRegion {
422
423
}
423
424
}
424
425
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 (
426
428
elements : & RegionValueElements ,
427
429
points : impl IntoIterator < Item = PointIndex > ,
428
430
) -> String {
429
- region_value_str (
431
+ pretty_print_region_elements (
430
432
points
431
433
. into_iter ( )
432
434
. take_while ( |& p| elements. point_in_range ( p) )
@@ -435,7 +437,8 @@ pub(crate) fn location_set_str(
435
437
)
436
438
}
437
439
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 {
439
442
let mut result = String :: new ( ) ;
440
443
result. push ( '{' ) ;
441
444
0 commit comments