@@ -66,6 +66,11 @@ pub(super) struct EncodeContext<'a, 'tcx> {
66
66
required_source_files : Option < GrowableBitSet < usize > > ,
67
67
is_proc_macro : bool ,
68
68
hygiene_ctxt : & ' a HygieneEncodeContext ,
69
+
70
+ // Determines if MIR used for code generation will be included in the crate
71
+ // metadata. When emitting only metadata (e.g., cargo check), we can avoid
72
+ // generating optimized MIR altogether.
73
+ emit_codegen_mir : bool ,
69
74
}
70
75
71
76
/// If the current crate is a proc-macro, returns early with `Lazy:empty()`.
@@ -787,9 +792,11 @@ impl EncodeContext<'a, 'tcx> {
787
792
self . encode_generics ( def_id) ;
788
793
self . encode_explicit_predicates ( def_id) ;
789
794
self . encode_inferred_outlives ( def_id) ;
795
+ let opt_mir = tcx. sess . opts . debugging_opts . always_encode_mir || self . emit_codegen_mir ;
796
+ if opt_mir {
797
+ self . encode_optimized_mir ( def_id. expect_local ( ) ) ;
798
+ }
790
799
self . encode_mir_for_ctfe ( def_id. expect_local ( ) ) ;
791
- self . encode_optimized_mir ( def_id. expect_local ( ) ) ;
792
- self . encode_promoted_mir ( def_id. expect_local ( ) ) ;
793
800
}
794
801
795
802
fn encode_info_for_mod ( & mut self , id : hir:: HirId , md : & hir:: Mod < ' _ > , attrs : & [ ast:: Attribute ] ) {
@@ -895,9 +902,11 @@ impl EncodeContext<'a, 'tcx> {
895
902
self . encode_generics ( def_id) ;
896
903
self . encode_explicit_predicates ( def_id) ;
897
904
self . encode_inferred_outlives ( def_id) ;
898
- self . encode_optimized_mir ( def_id. expect_local ( ) ) ;
905
+ let opt_mir = tcx. sess . opts . debugging_opts . always_encode_mir || self . emit_codegen_mir ;
906
+ if opt_mir {
907
+ self . encode_optimized_mir ( def_id. expect_local ( ) ) ;
908
+ }
899
909
self . encode_mir_for_ctfe ( def_id. expect_local ( ) ) ;
900
- self . encode_promoted_mir ( def_id. expect_local ( ) ) ;
901
910
}
902
911
903
912
fn encode_generics ( & mut self , def_id : DefId ) {
@@ -1024,17 +1033,23 @@ impl EncodeContext<'a, 'tcx> {
1024
1033
}
1025
1034
}
1026
1035
ty:: AssocKind :: Fn => {
1027
- if self . tcx . mir_keys ( LOCAL_CRATE ) . contains ( & def_id. expect_local ( ) ) {
1028
- self . encode_optimized_mir ( def_id. expect_local ( ) ) ;
1029
- self . encode_promoted_mir ( def_id. expect_local ( ) ) ;
1036
+ let opt_mir =
1037
+ tcx. sess . opts . debugging_opts . always_encode_mir || self . emit_codegen_mir ;
1038
+ if opt_mir {
1039
+ if self . tcx . mir_keys ( LOCAL_CRATE ) . contains ( & def_id. expect_local ( ) ) {
1040
+ self . encode_optimized_mir ( def_id. expect_local ( ) ) ;
1041
+ self . encode_promoted_mir ( def_id. expect_local ( ) ) ;
1042
+ }
1030
1043
}
1031
1044
}
1032
1045
}
1033
1046
}
1034
1047
1035
- fn metadata_output_only ( & self ) -> bool {
1036
- // MIR optimisation can be skipped when we're just interested in the metadata.
1037
- !self . tcx . sess . opts . output_types . should_codegen ( )
1048
+ fn should_encode_fn_opt_mir ( & self , def_id : DefId ) -> bool {
1049
+ self . tcx . sess . opts . debugging_opts . always_encode_mir
1050
+ || ( self . emit_codegen_mir
1051
+ && ( self . tcx . generics_of ( def_id) . requires_monomorphization ( self . tcx )
1052
+ || self . tcx . codegen_fn_attrs ( def_id) . requests_inline ( ) ) )
1038
1053
}
1039
1054
1040
1055
fn encode_info_for_impl_item ( & mut self , def_id : DefId ) {
@@ -1105,13 +1120,9 @@ impl EncodeContext<'a, 'tcx> {
1105
1120
let ( mir, mir_const) = match ast_item. kind {
1106
1121
hir:: ImplItemKind :: Const ( ..) => ( false , true ) ,
1107
1122
hir:: ImplItemKind :: Fn ( ref sig, _) => {
1108
- let generics = self . tcx . generics_of ( def_id) ;
1109
- let needs_inline = ( generics. requires_monomorphization ( self . tcx )
1110
- || tcx. codegen_fn_attrs ( def_id) . requests_inline ( ) )
1111
- && !self . metadata_output_only ( ) ;
1123
+ let opt_mir = self . should_encode_fn_opt_mir ( def_id) ;
1112
1124
let is_const_fn = sig. header . constness == hir:: Constness :: Const ;
1113
- let always_encode_mir = self . tcx . sess . opts . debugging_opts . always_encode_mir ;
1114
- ( needs_inline || always_encode_mir, is_const_fn)
1125
+ ( opt_mir, is_const_fn)
1115
1126
}
1116
1127
hir:: ImplItemKind :: TyAlias ( ..) => ( false , false ) ,
1117
1128
} ;
@@ -1433,16 +1444,10 @@ impl EncodeContext<'a, 'tcx> {
1433
1444
let ( mir, const_mir) = match item. kind {
1434
1445
hir:: ItemKind :: Static ( ..) | hir:: ItemKind :: Const ( ..) => ( false , true ) ,
1435
1446
hir:: ItemKind :: Fn ( ref sig, ..) => {
1436
- let generics = tcx. generics_of ( def_id) ;
1437
- let needs_inline = ( generics. requires_monomorphization ( tcx)
1438
- || tcx. codegen_fn_attrs ( def_id) . requests_inline ( ) )
1439
- && !self . metadata_output_only ( ) ;
1440
-
1447
+ let opt_mir = self . should_encode_fn_opt_mir ( def_id) ;
1441
1448
let is_const_fn = sig. header . constness == hir:: Constness :: Const ;
1442
- let always_encode_mir = self . tcx . sess . opts . debugging_opts . always_encode_mir ;
1443
- let mir = needs_inline || always_encode_mir;
1444
1449
// We don't need the optimized MIR for const fns.
1445
- ( mir , is_const_fn)
1450
+ ( opt_mir , is_const_fn)
1446
1451
}
1447
1452
_ => ( false , false ) ,
1448
1453
} ;
@@ -1502,8 +1507,11 @@ impl EncodeContext<'a, 'tcx> {
1502
1507
record ! ( self . tables. fn_sig[ def_id] <- substs. as_closure( ) . sig( ) ) ;
1503
1508
}
1504
1509
self . encode_generics ( def_id. to_def_id ( ) ) ;
1505
- self . encode_optimized_mir ( def_id) ;
1506
- self . encode_promoted_mir ( def_id) ;
1510
+ let opt_mir = self . tcx . sess . opts . debugging_opts . always_encode_mir || self . emit_codegen_mir ;
1511
+ if opt_mir {
1512
+ self . encode_optimized_mir ( def_id) ;
1513
+ self . encode_promoted_mir ( def_id) ;
1514
+ }
1507
1515
}
1508
1516
1509
1517
fn encode_info_for_anon_const ( & mut self , def_id : LocalDefId ) {
@@ -2008,10 +2016,9 @@ impl<'tcx, 'v> ParItemLikeVisitor<'v> for PrefetchVisitor<'tcx> {
2008
2016
}
2009
2017
hir:: ItemKind :: Fn ( ref sig, ..) => {
2010
2018
let def_id = tcx. hir ( ) . local_def_id ( item. hir_id ) ;
2011
- let generics = tcx. generics_of ( def_id. to_def_id ( ) ) ;
2012
- let needs_inline = generics. requires_monomorphization ( tcx)
2019
+ let opt_mir = tcx. generics_of ( def_id. to_def_id ( ) ) . requires_monomorphization ( tcx)
2013
2020
|| tcx. codegen_fn_attrs ( def_id. to_def_id ( ) ) . requests_inline ( ) ;
2014
- if needs_inline {
2021
+ if opt_mir {
2015
2022
self . prefetch_mir ( def_id)
2016
2023
}
2017
2024
if sig. header . constness == hir:: Constness :: Const {
@@ -2045,11 +2052,10 @@ impl<'tcx, 'v> ParItemLikeVisitor<'v> for PrefetchVisitor<'tcx> {
2045
2052
}
2046
2053
hir:: ImplItemKind :: Fn ( ref sig, _) => {
2047
2054
let def_id = tcx. hir ( ) . local_def_id ( impl_item. hir_id ) ;
2048
- let generics = tcx. generics_of ( def_id. to_def_id ( ) ) ;
2049
- let needs_inline = generics. requires_monomorphization ( tcx)
2055
+ let opt_mir = tcx. generics_of ( def_id. to_def_id ( ) ) . requires_monomorphization ( tcx)
2050
2056
|| tcx. codegen_fn_attrs ( def_id. to_def_id ( ) ) . requests_inline ( ) ;
2051
2057
let is_const_fn = sig. header . constness == hir:: Constness :: Const ;
2052
- if needs_inline {
2058
+ if opt_mir {
2053
2059
self . prefetch_mir ( def_id)
2054
2060
}
2055
2061
if is_const_fn {
@@ -2148,6 +2154,7 @@ fn encode_metadata_impl(tcx: TyCtxt<'_>) -> EncodedMetadata {
2148
2154
required_source_files,
2149
2155
is_proc_macro : tcx. sess . crate_types ( ) . contains ( & CrateType :: ProcMacro ) ,
2150
2156
hygiene_ctxt : & hygiene_ctxt,
2157
+ emit_codegen_mir : tcx. sess . opts . output_types . should_codegen ( ) ,
2151
2158
} ;
2152
2159
2153
2160
// Encode the rustc version string in a predictable location.
0 commit comments