@@ -11,7 +11,6 @@ use rustc_mir_dataflow::{Analysis, ResultsCursor};
11
11
use std:: borrow:: Cow ;
12
12
13
13
pub fn lint_body < ' tcx > ( tcx : TyCtxt < ' tcx > , body : & Body < ' tcx > , when : String ) {
14
- let reachable_blocks = traversal:: reachable_as_bitset ( body) ;
15
14
let always_live_locals = & always_storage_live_locals ( body) ;
16
15
17
16
let maybe_storage_live = MaybeStorageLive :: new ( Cow :: Borrowed ( always_live_locals) )
@@ -24,17 +23,18 @@ pub fn lint_body<'tcx>(tcx: TyCtxt<'tcx>, body: &Body<'tcx>, when: String) {
24
23
. iterate_to_fixpoint ( )
25
24
. into_results_cursor ( body) ;
26
25
27
- Lint {
26
+ let mut lint = Lint {
28
27
tcx,
29
28
when,
30
29
body,
31
30
is_fn_like : tcx. def_kind ( body. source . def_id ( ) ) . is_fn_like ( ) ,
32
31
always_live_locals,
33
- reachable_blocks,
34
32
maybe_storage_live,
35
33
maybe_storage_dead,
34
+ } ;
35
+ for ( bb, data) in traversal:: reachable ( body) {
36
+ lint. visit_basic_block_data ( bb, data) ;
36
37
}
37
- . visit_body ( body) ;
38
38
}
39
39
40
40
struct Lint < ' a , ' tcx > {
@@ -43,7 +43,6 @@ struct Lint<'a, 'tcx> {
43
43
body : & ' a Body < ' tcx > ,
44
44
is_fn_like : bool ,
45
45
always_live_locals : & ' a BitSet < Local > ,
46
- reachable_blocks : BitSet < BasicBlock > ,
47
46
maybe_storage_live : ResultsCursor < ' a , ' tcx , MaybeStorageLive < ' a > > ,
48
47
maybe_storage_dead : ResultsCursor < ' a , ' tcx , MaybeStorageDead < ' a > > ,
49
48
}
@@ -67,7 +66,7 @@ impl<'a, 'tcx> Lint<'a, 'tcx> {
67
66
68
67
impl < ' a , ' tcx > Visitor < ' tcx > for Lint < ' a , ' tcx > {
69
68
fn visit_local ( & mut self , local : Local , context : PlaceContext , location : Location ) {
70
- if self . reachable_blocks . contains ( location . block ) && context. is_use ( ) {
69
+ if context. is_use ( ) {
71
70
self . maybe_storage_dead . seek_after_primary_effect ( location) ;
72
71
if self . maybe_storage_dead . get ( ) . contains ( local) {
73
72
self . fail ( location, format ! ( "use of local {local:?}, which has no storage here" ) ) ;
@@ -78,14 +77,12 @@ impl<'a, 'tcx> Visitor<'tcx> for Lint<'a, 'tcx> {
78
77
fn visit_statement ( & mut self , statement : & Statement < ' tcx > , location : Location ) {
79
78
match statement. kind {
80
79
StatementKind :: StorageLive ( local) => {
81
- if self . reachable_blocks . contains ( location. block ) {
82
- self . maybe_storage_live . seek_before_primary_effect ( location) ;
83
- if self . maybe_storage_live . get ( ) . contains ( local) {
84
- self . fail (
85
- location,
86
- format ! ( "StorageLive({local:?}) which already has storage here" ) ,
87
- ) ;
88
- }
80
+ self . maybe_storage_live . seek_before_primary_effect ( location) ;
81
+ if self . maybe_storage_live . get ( ) . contains ( local) {
82
+ self . fail (
83
+ location,
84
+ format ! ( "StorageLive({local:?}) which already has storage here" ) ,
85
+ ) ;
89
86
}
90
87
}
91
88
_ => { }
@@ -97,7 +94,7 @@ impl<'a, 'tcx> Visitor<'tcx> for Lint<'a, 'tcx> {
97
94
fn visit_terminator ( & mut self , terminator : & Terminator < ' tcx > , location : Location ) {
98
95
match terminator. kind {
99
96
TerminatorKind :: Return => {
100
- if self . is_fn_like && self . reachable_blocks . contains ( location . block ) {
97
+ if self . is_fn_like {
101
98
self . maybe_storage_live . seek_after_primary_effect ( location) ;
102
99
for local in self . maybe_storage_live . get ( ) . iter ( ) {
103
100
if !self . always_live_locals . contains ( local) {
0 commit comments