3
3
4
4
use rustc:: hir:: def:: DefKind ;
5
5
use rustc:: mir:: {
6
- Constant , Location , Place , PlaceBase , Mir , Operand , Rvalue , Local ,
6
+ AggregateKind , Constant , Location , Place , PlaceBase , Mir , Operand , Rvalue , Local ,
7
7
NullOp , UnOp , StatementKind , Statement , LocalKind , Static , StaticKind ,
8
8
TerminatorKind , Terminator , ClearCrossCrate , SourceInfo , BinOp , ProjectionElem ,
9
9
SourceScope , SourceScopeLocalData , LocalDecl , Promoted ,
10
10
} ;
11
- use rustc:: mir:: visit:: { Visitor , PlaceContext , MutatingUseContext , NonMutatingUseContext } ;
11
+ use rustc:: mir:: visit:: {
12
+ Visitor , PlaceContext , MutatingUseContext , MutVisitor , NonMutatingUseContext ,
13
+ } ;
12
14
use rustc:: mir:: interpret:: { InterpError , Scalar , GlobalId , EvalResult } ;
13
15
use rustc:: ty:: { self , Instance , ParamEnv , Ty , TyCtxt } ;
14
16
use syntax:: source_map:: DUMMY_SP ;
@@ -19,7 +21,7 @@ use rustc::ty::layout::{
19
21
HasTyCtxt , TargetDataLayout , HasDataLayout ,
20
22
} ;
21
23
22
- use crate :: interpret:: { InterpretCx , ScalarMaybeUndef , Immediate , OpTy , ImmTy , MemoryKind } ;
24
+ use crate :: interpret:: { self , InterpretCx , ScalarMaybeUndef , Immediate , OpTy , ImmTy , MemoryKind } ;
23
25
use crate :: const_eval:: {
24
26
CompileTimeInterpreter , error_to_const_error, eval_promoted, mk_eval_cx,
25
27
} ;
@@ -497,6 +499,46 @@ impl<'a, 'mir, 'tcx> ConstPropagator<'a, 'mir, 'tcx> {
497
499
} ,
498
500
}
499
501
}
502
+
503
+ fn operand_from_scalar ( & self , scalar : Scalar , ty : Ty < ' tcx > ) -> Operand < ' tcx > {
504
+ Operand :: Constant ( Box :: new (
505
+ Constant {
506
+ span : DUMMY_SP ,
507
+ ty,
508
+ user_ty : None ,
509
+ literal : self . tcx . mk_const ( ty:: Const :: from_scalar (
510
+ scalar,
511
+ ty,
512
+ ) )
513
+ }
514
+ ) )
515
+ }
516
+
517
+ fn replace_with_const ( & self , rval : & mut Rvalue < ' tcx > , value : Const < ' tcx > ) {
518
+ if let interpret:: Operand :: Immediate ( im) = * value {
519
+ match im {
520
+ interpret:: Immediate :: Scalar ( ScalarMaybeUndef :: Scalar ( scalar) ) => {
521
+ * rval = Rvalue :: Use ( self . operand_from_scalar ( scalar, value. layout . ty ) ) ;
522
+ } ,
523
+ Immediate :: ScalarPair (
524
+ ScalarMaybeUndef :: Scalar ( one) ,
525
+ ScalarMaybeUndef :: Scalar ( two)
526
+ ) => {
527
+ let ty = & value. layout . ty . sty ;
528
+ if let ty:: Tuple ( substs) = ty {
529
+ * rval = Rvalue :: Aggregate (
530
+ Box :: new ( AggregateKind :: Tuple ) ,
531
+ vec ! [
532
+ self . operand_from_scalar( one, substs[ 0 ] . expect_ty( ) ) ,
533
+ self . operand_from_scalar( two, substs[ 1 ] . expect_ty( ) ) ,
534
+ ] ,
535
+ ) ;
536
+ }
537
+ } ,
538
+ _ => { }
539
+ }
540
+ }
541
+ }
500
542
}
501
543
502
544
fn type_size_of < ' a , ' tcx > ( tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
@@ -560,10 +602,10 @@ impl<'tcx> Visitor<'tcx> for CanConstProp {
560
602
}
561
603
}
562
604
563
- impl < ' b , ' a , ' tcx > Visitor < ' tcx > for ConstPropagator < ' b , ' a , ' tcx > {
605
+ impl < ' b , ' a , ' tcx > MutVisitor < ' tcx > for ConstPropagator < ' b , ' a , ' tcx > {
564
606
fn visit_constant (
565
607
& mut self ,
566
- constant : & Constant < ' tcx > ,
608
+ constant : & mut Constant < ' tcx > ,
567
609
location : Location ,
568
610
) {
569
611
trace ! ( "visit_constant: {:?}" , constant) ;
@@ -573,12 +615,12 @@ impl<'b, 'a, 'tcx> Visitor<'tcx> for ConstPropagator<'b, 'a, 'tcx> {
573
615
574
616
fn visit_statement (
575
617
& mut self ,
576
- statement : & Statement < ' tcx > ,
618
+ statement : & mut Statement < ' tcx > ,
577
619
location : Location ,
578
620
) {
579
621
trace ! ( "visit_statement: {:?}" , statement) ;
580
- if let StatementKind :: Assign ( ref place, ref rval) = statement. kind {
581
- let place_ty: Ty < ' tcx > = place
622
+ if let StatementKind :: Assign ( ref place, ref mut rval) = statement. kind {
623
+ let place_ty: ty :: Ty < ' tcx > = place
582
624
. ty ( & self . local_decls , self . tcx )
583
625
. ty ;
584
626
if let Ok ( place_layout) = self . tcx . layout_of ( self . param_env . and ( place_ty) ) {
@@ -589,6 +631,10 @@ impl<'b, 'a, 'tcx> Visitor<'tcx> for ConstPropagator<'b, 'a, 'tcx> {
589
631
trace ! ( "storing {:?} to {:?}" , value, local) ;
590
632
assert ! ( self . places[ local] . is_none( ) ) ;
591
633
self . places [ local] = Some ( value) ;
634
+
635
+ if self . tcx . sess . opts . debugging_opts . mir_opt_level >= 3 {
636
+ self . replace_with_const ( rval, value) ;
637
+ }
592
638
}
593
639
}
594
640
}
@@ -599,7 +645,7 @@ impl<'b, 'a, 'tcx> Visitor<'tcx> for ConstPropagator<'b, 'a, 'tcx> {
599
645
600
646
fn visit_terminator (
601
647
& mut self ,
602
- terminator : & Terminator < ' tcx > ,
648
+ terminator : & mut Terminator < ' tcx > ,
603
649
location : Location ,
604
650
) {
605
651
self . super_terminator ( terminator, location) ;
0 commit comments