@@ -4,7 +4,6 @@ use crate::dataflow::impls::MaybeStorageLive;
4
4
use crate :: dataflow:: { Analysis , ResultsCursor } ;
5
5
use crate :: util:: storage:: AlwaysLiveLocals ;
6
6
7
- use super :: MirPass ;
8
7
use rustc_middle:: mir:: visit:: { PlaceContext , Visitor } ;
9
8
use rustc_middle:: mir:: {
10
9
AggregateKind , BasicBlock , Body , BorrowKind , Local , Location , MirPhase , Operand , Rvalue ,
@@ -13,38 +12,32 @@ use rustc_middle::mir::{
13
12
use rustc_middle:: ty:: relate:: { Relate , RelateResult , TypeRelation } ;
14
13
use rustc_middle:: ty:: { self , ParamEnv , Ty , TyCtxt } ;
15
14
16
- #[ derive( Copy , Clone , Debug ) ]
17
- enum EdgeKind {
18
- Unwind ,
19
- Normal ,
15
+ pub fn validate_body ( tcx : TyCtxt < ' tcx > , body : & Body < ' tcx > , when : & str ) {
16
+ validate_body_during_phase ( tcx, body, body. phase , when) ;
20
17
}
21
18
22
- pub struct Validator {
23
- /// Describes at which point in the pipeline this validation is happening.
24
- pub when : String ,
25
- /// The phase for which we are upholding the dialect. If the given phase forbids a specific
26
- /// element, this validator will now emit errors if that specific element is encountered.
27
- /// Note that phases that change the dialect cause all *following* phases to check the
28
- /// invariants of the new dialect. A phase that changes dialects never checks the new invariants
29
- /// itself.
30
- pub mir_phase : MirPhase ,
31
- }
19
+ pub fn validate_body_during_phase (
20
+ tcx : TyCtxt < ' tcx > ,
21
+ body : & Body < ' tcx > ,
22
+ phase : MirPhase ,
23
+ when : & str ,
24
+ ) {
25
+ let def_id = body. source . def_id ( ) ;
26
+ let param_env = tcx. param_env ( def_id) ;
32
27
33
- impl < ' tcx > MirPass < ' tcx > for Validator {
34
- fn run_pass ( & self , tcx : TyCtxt < ' tcx > , body : & mut Body < ' tcx > ) {
35
- let def_id = body . source . def_id ( ) ;
36
- let param_env = tcx . param_env ( def_id ) ;
37
- let mir_phase = self . mir_phase ;
28
+ let always_live_locals = AlwaysLiveLocals :: new ( body ) ;
29
+ let storage_liveness = MaybeStorageLive :: new ( always_live_locals )
30
+ . into_engine ( tcx , body )
31
+ . iterate_to_fixpoint ( )
32
+ . into_results_cursor ( body ) ;
38
33
39
- let always_live_locals = AlwaysLiveLocals :: new ( body) ;
40
- let storage_liveness = MaybeStorageLive :: new ( always_live_locals)
41
- . into_engine ( tcx, body)
42
- . iterate_to_fixpoint ( )
43
- . into_results_cursor ( body) ;
34
+ TypeChecker { when, body, tcx, param_env, mir_phase : phase, storage_liveness } . visit_body ( body) ;
35
+ }
44
36
45
- TypeChecker { when : & self . when , body, tcx, param_env, mir_phase, storage_liveness }
46
- . visit_body ( body) ;
47
- }
37
+ #[ derive( Copy , Clone , Debug ) ]
38
+ enum EdgeKind {
39
+ Unwind ,
40
+ Normal ,
48
41
}
49
42
50
43
/// Returns whether the two types are equal up to lifetimes.
0 commit comments