1
1
use rustc_data_structures:: fx:: { FxHashMap , FxHashSet } ;
2
2
use rustc_index:: bit_set:: HybridBitSet ;
3
+ use rustc_index:: interval:: IntervalSet ;
3
4
use rustc_infer:: infer:: canonical:: QueryRegionConstraints ;
4
5
use rustc_middle:: mir:: { BasicBlock , Body , ConstraintCategory , Local , Location } ;
5
6
use rustc_middle:: ty:: { Ty , TypeFoldable } ;
@@ -105,12 +106,12 @@ struct LivenessResults<'me, 'typeck, 'flow, 'tcx> {
105
106
106
107
/// Points where the current variable is "use live" -- meaning
107
108
/// that there is a future "full use" that may use its value.
108
- use_live_at : HybridBitSet < PointIndex > ,
109
+ use_live_at : IntervalSet < PointIndex > ,
109
110
110
111
/// Points where the current variable is "drop live" -- meaning
111
112
/// that there is no future "full use" that may use its value, but
112
113
/// there is a future drop.
113
- drop_live_at : HybridBitSet < PointIndex > ,
114
+ drop_live_at : IntervalSet < PointIndex > ,
114
115
115
116
/// Locations where drops may occur.
116
117
drop_locations : Vec < Location > ,
@@ -125,8 +126,8 @@ impl<'me, 'typeck, 'flow, 'tcx> LivenessResults<'me, 'typeck, 'flow, 'tcx> {
125
126
LivenessResults {
126
127
cx,
127
128
defs : HybridBitSet :: new_empty ( num_points) ,
128
- use_live_at : HybridBitSet :: new_empty ( num_points) ,
129
- drop_live_at : HybridBitSet :: new_empty ( num_points) ,
129
+ use_live_at : IntervalSet :: new ( num_points) ,
130
+ drop_live_at : IntervalSet :: new ( num_points) ,
130
131
drop_locations : vec ! [ ] ,
131
132
stack : vec ! [ ] ,
132
133
}
@@ -165,7 +166,7 @@ impl<'me, 'typeck, 'flow, 'tcx> LivenessResults<'me, 'typeck, 'flow, 'tcx> {
165
166
drop_used : Vec < ( Local , Location ) > ,
166
167
live_locals : FxHashSet < Local > ,
167
168
) {
168
- let locations = HybridBitSet :: new_empty ( self . cx . elements . num_points ( ) ) ;
169
+ let locations = IntervalSet :: new ( self . cx . elements . num_points ( ) ) ;
169
170
170
171
for ( local, location) in drop_used {
171
172
if !live_locals. contains ( & local) {
@@ -456,7 +457,7 @@ impl<'tcx> LivenessContext<'_, '_, '_, 'tcx> {
456
457
fn add_use_live_facts_for (
457
458
& mut self ,
458
459
value : impl TypeFoldable < ' tcx > ,
459
- live_at : & HybridBitSet < PointIndex > ,
460
+ live_at : & IntervalSet < PointIndex > ,
460
461
) {
461
462
debug ! ( "add_use_live_facts_for(value={:?})" , value) ;
462
463
@@ -473,7 +474,7 @@ impl<'tcx> LivenessContext<'_, '_, '_, 'tcx> {
473
474
dropped_local : Local ,
474
475
dropped_ty : Ty < ' tcx > ,
475
476
drop_locations : & [ Location ] ,
476
- live_at : & HybridBitSet < PointIndex > ,
477
+ live_at : & IntervalSet < PointIndex > ,
477
478
) {
478
479
debug ! (
479
480
"add_drop_live_constraint(\
@@ -521,7 +522,7 @@ impl<'tcx> LivenessContext<'_, '_, '_, 'tcx> {
521
522
elements : & RegionValueElements ,
522
523
typeck : & mut TypeChecker < ' _ , ' tcx > ,
523
524
value : impl TypeFoldable < ' tcx > ,
524
- live_at : & HybridBitSet < PointIndex > ,
525
+ live_at : & IntervalSet < PointIndex > ,
525
526
) {
526
527
debug ! ( "make_all_regions_live(value={:?})" , value) ;
527
528
debug ! (
0 commit comments