2
2
//!
3
3
//! Currently, this pass only propagates scalar values.
4
4
5
- use rustc_const_eval:: interpret:: { ImmTy , Immediate , InterpCx , OpTy , Projectable } ;
5
+ use rustc_const_eval:: interpret:: { ImmTy , Immediate , InterpCx , OpTy , PlaceTy , Projectable } ;
6
6
use rustc_data_structures:: fx:: FxHashMap ;
7
7
use rustc_hir:: def:: DefKind ;
8
8
use rustc_middle:: mir:: interpret:: { AllocId , ConstAllocation , InterpResult , Scalar } ;
9
9
use rustc_middle:: mir:: visit:: { MutVisitor , PlaceContext , Visitor } ;
10
10
use rustc_middle:: mir:: * ;
11
- use rustc_middle:: ty:: layout:: TyAndLayout ;
11
+ use rustc_middle:: ty:: layout:: { LayoutOf , TyAndLayout } ;
12
12
use rustc_middle:: ty:: { self , Ty , TyCtxt } ;
13
13
use rustc_mir_dataflow:: value_analysis:: {
14
14
Map , PlaceIndex , State , TrackElem , ValueAnalysis , ValueAnalysisWrapper , ValueOrPlace ,
15
15
} ;
16
16
use rustc_mir_dataflow:: { lattice:: FlatSet , Analysis , Results , ResultsVisitor } ;
17
17
use rustc_span:: def_id:: DefId ;
18
18
use rustc_span:: DUMMY_SP ;
19
- use rustc_target:: abi:: { FieldIdx , VariantIdx } ;
19
+ use rustc_target:: abi:: { Abi , FieldIdx , Size , VariantIdx , FIRST_VARIANT } ;
20
20
21
+ use crate :: const_prop:: throw_machine_stop_str;
21
22
use crate :: MirPass ;
22
23
23
24
// These constants are somewhat random guesses and have not been optimized.
@@ -553,16 +554,151 @@ impl<'tcx, 'locals> Collector<'tcx, 'locals> {
553
554
554
555
fn try_make_constant (
555
556
& self ,
557
+ ecx : & mut InterpCx < ' tcx , ' tcx , DummyMachine > ,
556
558
place : Place < ' tcx > ,
557
559
state : & State < FlatSet < Scalar > > ,
558
560
map : & Map ,
559
561
) -> Option < Const < ' tcx > > {
560
- let FlatSet :: Elem ( Scalar :: Int ( value) ) = state. get ( place. as_ref ( ) , & map) else {
561
- return None ;
562
- } ;
563
562
let ty = place. ty ( self . local_decls , self . patch . tcx ) . ty ;
564
- Some ( Const :: Val ( ConstValue :: Scalar ( value. into ( ) ) , ty) )
563
+ let layout = ecx. layout_of ( ty) . ok ( ) ?;
564
+
565
+ if layout. is_zst ( ) {
566
+ return Some ( Const :: zero_sized ( ty) ) ;
567
+ }
568
+
569
+ if layout. is_unsized ( ) {
570
+ return None ;
571
+ }
572
+
573
+ let place = map. find ( place. as_ref ( ) ) ?;
574
+ if layout. abi . is_scalar ( )
575
+ && let Some ( value) = propagatable_scalar ( place, state, map)
576
+ {
577
+ return Some ( Const :: Val ( ConstValue :: Scalar ( value) , ty) ) ;
578
+ }
579
+
580
+ if matches ! ( layout. abi, Abi :: Scalar ( ..) | Abi :: ScalarPair ( ..) ) {
581
+ let alloc_id = ecx
582
+ . intern_with_temp_alloc ( layout, |ecx, dest| {
583
+ try_write_constant ( ecx, dest, place, ty, state, map)
584
+ } )
585
+ . ok ( ) ?;
586
+ return Some ( Const :: Val ( ConstValue :: Indirect { alloc_id, offset : Size :: ZERO } , ty) ) ;
587
+ }
588
+
589
+ None
590
+ }
591
+ }
592
+
593
+ fn propagatable_scalar (
594
+ place : PlaceIndex ,
595
+ state : & State < FlatSet < Scalar > > ,
596
+ map : & Map ,
597
+ ) -> Option < Scalar > {
598
+ if let FlatSet :: Elem ( value) = state. get_idx ( place, map) && value. try_to_int ( ) . is_ok ( ) {
599
+ // Do not attempt to propagate pointers, as we may fail to preserve their identity.
600
+ Some ( value)
601
+ } else {
602
+ None
603
+ }
604
+ }
605
+
606
+ #[ instrument( level = "trace" , skip( ecx, state, map) ) ]
607
+ fn try_write_constant < ' tcx > (
608
+ ecx : & mut InterpCx < ' _ , ' tcx , DummyMachine > ,
609
+ dest : & PlaceTy < ' tcx > ,
610
+ place : PlaceIndex ,
611
+ ty : Ty < ' tcx > ,
612
+ state : & State < FlatSet < Scalar > > ,
613
+ map : & Map ,
614
+ ) -> InterpResult < ' tcx > {
615
+ let layout = ecx. layout_of ( ty) ?;
616
+
617
+ // Fast path for ZSTs.
618
+ if layout. is_zst ( ) {
619
+ return Ok ( ( ) ) ;
620
+ }
621
+
622
+ // Fast path for scalars.
623
+ if layout. abi . is_scalar ( )
624
+ && let Some ( value) = propagatable_scalar ( place, state, map)
625
+ {
626
+ return ecx. write_immediate ( Immediate :: Scalar ( value) , dest) ;
627
+ }
628
+
629
+ match ty. kind ( ) {
630
+ // ZSTs. Nothing to do.
631
+ ty:: FnDef ( ..) => { }
632
+
633
+ // Those are scalars, must be handled above.
634
+ ty:: Bool | ty:: Int ( _) | ty:: Uint ( _) | ty:: Float ( _) | ty:: Char => throw_machine_stop_str ! ( "primitive type with provenance" ) ,
635
+
636
+ ty:: Tuple ( elem_tys) => {
637
+ for ( i, elem) in elem_tys. iter ( ) . enumerate ( ) {
638
+ let Some ( field) = map. apply ( place, TrackElem :: Field ( FieldIdx :: from_usize ( i) ) ) else {
639
+ throw_machine_stop_str ! ( "missing field in tuple" )
640
+ } ;
641
+ let field_dest = ecx. project_field ( dest, i) ?;
642
+ try_write_constant ( ecx, & field_dest, field, elem, state, map) ?;
643
+ }
644
+ }
645
+
646
+ ty:: Adt ( def, args) => {
647
+ if def. is_union ( ) {
648
+ throw_machine_stop_str ! ( "cannot propagate unions" )
649
+ }
650
+
651
+ let ( variant_idx, variant_def, variant_place, variant_dest) = if def. is_enum ( ) {
652
+ let Some ( discr) = map. apply ( place, TrackElem :: Discriminant ) else {
653
+ throw_machine_stop_str ! ( "missing discriminant for enum" )
654
+ } ;
655
+ let FlatSet :: Elem ( Scalar :: Int ( discr) ) = state. get_idx ( discr, map) else {
656
+ throw_machine_stop_str ! ( "discriminant with provenance" )
657
+ } ;
658
+ let discr_bits = discr. assert_bits ( discr. size ( ) ) ;
659
+ let Some ( ( variant, _) ) = def. discriminants ( * ecx. tcx ) . find ( |( _, var) | discr_bits == var. val ) else {
660
+ throw_machine_stop_str ! ( "illegal discriminant for enum" )
661
+ } ;
662
+ let Some ( variant_place) = map. apply ( place, TrackElem :: Variant ( variant) ) else {
663
+ throw_machine_stop_str ! ( "missing variant for enum" )
664
+ } ;
665
+ let variant_dest = ecx. project_downcast ( dest, variant) ?;
666
+ ( variant, def. variant ( variant) , variant_place, variant_dest)
667
+ } else {
668
+ ( FIRST_VARIANT , def. non_enum_variant ( ) , place, dest. clone ( ) )
669
+ } ;
670
+
671
+ for ( i, field) in variant_def. fields . iter_enumerated ( ) {
672
+ let ty = field. ty ( * ecx. tcx , args) ;
673
+ let Some ( field) = map. apply ( variant_place, TrackElem :: Field ( i) ) else {
674
+ throw_machine_stop_str ! ( "missing field in ADT" )
675
+ } ;
676
+ let field_dest = ecx. project_field ( & variant_dest, i. as_usize ( ) ) ?;
677
+ try_write_constant ( ecx, & field_dest, field, ty, state, map) ?;
678
+ }
679
+ ecx. write_discriminant ( variant_idx, dest) ?;
680
+ }
681
+
682
+ // Unsupported for now.
683
+ ty:: Array ( _, _)
684
+
685
+ // Do not attempt to support indirection in constants.
686
+ | ty:: Ref ( ..) | ty:: RawPtr ( ..) | ty:: FnPtr ( ..) | ty:: Str | ty:: Slice ( _)
687
+
688
+ | ty:: Never
689
+ | ty:: Foreign ( ..)
690
+ | ty:: Alias ( ..)
691
+ | ty:: Param ( _)
692
+ | ty:: Bound ( ..)
693
+ | ty:: Placeholder ( ..)
694
+ | ty:: Closure ( ..)
695
+ | ty:: Coroutine ( ..)
696
+ | ty:: Dynamic ( ..) => throw_machine_stop_str ! ( "unsupported type" ) ,
697
+
698
+ ty:: Error ( _) | ty:: Infer ( ..) | ty:: CoroutineWitness ( ..) => bug ! ( ) ,
565
699
}
700
+
701
+ Ok ( ( ) )
566
702
}
567
703
568
704
impl < ' mir , ' tcx >
@@ -580,8 +716,13 @@ impl<'mir, 'tcx>
580
716
) {
581
717
match & statement. kind {
582
718
StatementKind :: Assign ( box ( _, rvalue) ) => {
583
- OperandCollector { state, visitor : self , map : & results. analysis . 0 . map }
584
- . visit_rvalue ( rvalue, location) ;
719
+ OperandCollector {
720
+ state,
721
+ visitor : self ,
722
+ ecx : & mut results. analysis . 0 . ecx ,
723
+ map : & results. analysis . 0 . map ,
724
+ }
725
+ . visit_rvalue ( rvalue, location) ;
585
726
}
586
727
_ => ( ) ,
587
728
}
@@ -599,7 +740,12 @@ impl<'mir, 'tcx>
599
740
// Don't overwrite the assignment if it already uses a constant (to keep the span).
600
741
}
601
742
StatementKind :: Assign ( box ( place, _) ) => {
602
- if let Some ( value) = self . try_make_constant ( place, state, & results. analysis . 0 . map ) {
743
+ if let Some ( value) = self . try_make_constant (
744
+ & mut results. analysis . 0 . ecx ,
745
+ place,
746
+ state,
747
+ & results. analysis . 0 . map ,
748
+ ) {
603
749
self . patch . assignments . insert ( location, value) ;
604
750
}
605
751
}
@@ -614,8 +760,13 @@ impl<'mir, 'tcx>
614
760
terminator : & ' mir Terminator < ' tcx > ,
615
761
location : Location ,
616
762
) {
617
- OperandCollector { state, visitor : self , map : & results. analysis . 0 . map }
618
- . visit_terminator ( terminator, location) ;
763
+ OperandCollector {
764
+ state,
765
+ visitor : self ,
766
+ ecx : & mut results. analysis . 0 . ecx ,
767
+ map : & results. analysis . 0 . map ,
768
+ }
769
+ . visit_terminator ( terminator, location) ;
619
770
}
620
771
}
621
772
@@ -670,6 +821,7 @@ impl<'tcx> MutVisitor<'tcx> for Patch<'tcx> {
670
821
struct OperandCollector < ' tcx , ' map , ' locals , ' a > {
671
822
state : & ' a State < FlatSet < Scalar > > ,
672
823
visitor : & ' a mut Collector < ' tcx , ' locals > ,
824
+ ecx : & ' map mut InterpCx < ' tcx , ' tcx , DummyMachine > ,
673
825
map : & ' map Map ,
674
826
}
675
827
@@ -682,15 +834,17 @@ impl<'tcx> Visitor<'tcx> for OperandCollector<'tcx, '_, '_, '_> {
682
834
location : Location ,
683
835
) {
684
836
if let PlaceElem :: Index ( local) = elem
685
- && let Some ( value) = self . visitor . try_make_constant ( local. into ( ) , self . state , self . map )
837
+ && let Some ( value) = self . visitor . try_make_constant ( self . ecx , local. into ( ) , self . state , self . map )
686
838
{
687
839
self . visitor . patch . before_effect . insert ( ( location, local. into ( ) ) , value) ;
688
840
}
689
841
}
690
842
691
843
fn visit_operand ( & mut self , operand : & Operand < ' tcx > , location : Location ) {
692
844
if let Some ( place) = operand. place ( ) {
693
- if let Some ( value) = self . visitor . try_make_constant ( place, self . state , self . map ) {
845
+ if let Some ( value) =
846
+ self . visitor . try_make_constant ( self . ecx , place, self . state , self . map )
847
+ {
694
848
self . visitor . patch . before_effect . insert ( ( location, place) , value) ;
695
849
} else if !place. projection . is_empty ( ) {
696
850
// Try to propagate into `Index` projections.
@@ -713,7 +867,7 @@ impl<'mir, 'tcx: 'mir> rustc_const_eval::interpret::Machine<'mir, 'tcx> for Dumm
713
867
}
714
868
715
869
fn enforce_validity ( _ecx : & InterpCx < ' mir , ' tcx , Self > , _layout : TyAndLayout < ' tcx > ) -> bool {
716
- unimplemented ! ( )
870
+ false
717
871
}
718
872
719
873
fn before_access_global (
@@ -725,13 +879,13 @@ impl<'mir, 'tcx: 'mir> rustc_const_eval::interpret::Machine<'mir, 'tcx> for Dumm
725
879
is_write : bool ,
726
880
) -> InterpResult < ' tcx > {
727
881
if is_write {
728
- crate :: const_prop :: throw_machine_stop_str!( "can't write to global" ) ;
882
+ throw_machine_stop_str ! ( "can't write to global" ) ;
729
883
}
730
884
731
885
// If the static allocation is mutable, then we can't const prop it as its content
732
886
// might be different at runtime.
733
887
if alloc. inner ( ) . mutability . is_mut ( ) {
734
- crate :: const_prop :: throw_machine_stop_str!( "can't access mutable globals in ConstProp" ) ;
888
+ throw_machine_stop_str ! ( "can't access mutable globals in ConstProp" ) ;
735
889
}
736
890
737
891
Ok ( ( ) )
@@ -781,7 +935,7 @@ impl<'mir, 'tcx: 'mir> rustc_const_eval::interpret::Machine<'mir, 'tcx> for Dumm
781
935
_left : & rustc_const_eval:: interpret:: ImmTy < ' tcx , Self :: Provenance > ,
782
936
_right : & rustc_const_eval:: interpret:: ImmTy < ' tcx , Self :: Provenance > ,
783
937
) -> interpret:: InterpResult < ' tcx , ( ImmTy < ' tcx , Self :: Provenance > , bool ) > {
784
- crate :: const_prop :: throw_machine_stop_str!( "can't do pointer arithmetic" ) ;
938
+ throw_machine_stop_str ! ( "can't do pointer arithmetic" ) ;
785
939
}
786
940
787
941
fn expose_ptr (
0 commit comments