205
205
//! this is not implemented however: a mono item will be produced
206
206
//! regardless of whether it is actually needed or not.
207
207
208
- mod move_check;
208
+ // mod move_check;
209
209
210
210
use std:: path:: PathBuf ;
211
211
212
- use move_check:: MoveCheckState ;
212
+ // use move_check::MoveCheckState;
213
213
use rustc_data_structures:: sync:: { LRef , MTLock , par_for_each_in} ;
214
214
use rustc_data_structures:: unord:: { UnordMap , UnordSet } ;
215
215
use rustc_hir as hir;
@@ -226,17 +226,16 @@ use rustc_middle::ty::adjustment::{CustomCoerceUnsized, PointerCoercion};
226
226
use rustc_middle:: ty:: layout:: ValidityRequirement ;
227
227
use rustc_middle:: ty:: print:: { shrunk_instance_name, with_no_trimmed_paths} ;
228
228
use rustc_middle:: ty:: {
229
- self , AssocKind , GenericArgs , GenericParamDefKind , Instance , InstanceKind , Ty , TyCtxt ,
230
- TypeFoldable , TypeVisitableExt , VtblEntry ,
229
+ self , GenericArgs , GenericParamDefKind , Instance , InstanceKind , Ty , TyCtxt , TypeFoldable ,
230
+ TypeVisitableExt , VtblEntry ,
231
231
} ;
232
232
use rustc_middle:: util:: Providers ;
233
233
use rustc_middle:: { bug, span_bug} ;
234
234
use rustc_session:: Limit ;
235
235
use rustc_session:: config:: EntryFnType ;
236
236
use rustc_span:: source_map:: { Spanned , dummy_spanned, respan} ;
237
- use rustc_span:: symbol:: { Ident , sym} ;
237
+ use rustc_span:: symbol:: sym;
238
238
use rustc_span:: { DUMMY_SP , Span } ;
239
- use rustc_target:: abi:: Size ;
240
239
use tracing:: { debug, instrument, trace} ;
241
240
242
241
use crate :: errors:: { self , EncounteredErrorWhileInstantiating , NoOptimizedMir , RecursionLimit } ;
@@ -612,7 +611,7 @@ struct MirUsedCollector<'a, 'tcx> {
612
611
used_mentioned_items : & ' a mut UnordSet < MentionedItem < ' tcx > > ,
613
612
instance : Instance < ' tcx > ,
614
613
visiting_call_terminator : bool ,
615
- move_check : move_check:: MoveCheckState ,
614
+ // move_check: move_check::MoveCheckState,
616
615
}
617
616
618
617
impl < ' a , ' tcx > MirUsedCollector < ' a , ' tcx > {
@@ -759,13 +758,13 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirUsedCollector<'a, 'tcx> {
759
758
} ;
760
759
761
760
match terminator. kind {
762
- mir:: TerminatorKind :: Call { ref func, ref args , ref fn_span , .. }
763
- | mir:: TerminatorKind :: TailCall { ref func, ref args , ref fn_span } => {
761
+ mir:: TerminatorKind :: Call { ref func, .. }
762
+ | mir:: TerminatorKind :: TailCall { ref func, .. } => {
764
763
let callee_ty = func. ty ( self . body , tcx) ;
765
764
// *Before* monomorphizing, record that we already handled this mention.
766
765
self . used_mentioned_items . insert ( MentionedItem :: Fn ( callee_ty) ) ;
767
766
let callee_ty = self . monomorphize ( callee_ty) ;
768
- self . check_fn_args_move_size ( callee_ty, args, * fn_span, location) ;
767
+ // self.check_fn_args_move_size(callee_ty, args, *fn_span, location);
769
768
visit_fn_use ( self . tcx , callee_ty, true , source, & mut self . used_items )
770
769
}
771
770
mir:: TerminatorKind :: Drop { ref place, .. } => {
@@ -832,7 +831,7 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirUsedCollector<'a, 'tcx> {
832
831
833
832
fn visit_operand ( & mut self , operand : & mir:: Operand < ' tcx > , location : Location ) {
834
833
self . super_operand ( operand, location) ;
835
- self . check_operand_move_size ( operand, location) ;
834
+ // self.check_operand_move_size(operand, location);
836
835
}
837
836
}
838
837
@@ -1182,20 +1181,6 @@ fn collect_alloc<'tcx>(tcx: TyCtxt<'tcx>, alloc_id: AllocId, output: &mut MonoIt
1182
1181
}
1183
1182
}
1184
1183
1185
- fn assoc_fn_of_type < ' tcx > ( tcx : TyCtxt < ' tcx > , def_id : DefId , fn_ident : Ident ) -> Option < DefId > {
1186
- for impl_def_id in tcx. inherent_impls ( def_id) {
1187
- if let Some ( new) = tcx. associated_items ( impl_def_id) . find_by_name_and_kind (
1188
- tcx,
1189
- fn_ident,
1190
- AssocKind :: Fn ,
1191
- def_id,
1192
- ) {
1193
- return Some ( new. def_id ) ;
1194
- }
1195
- }
1196
- None
1197
- }
1198
-
1199
1184
/// Scans the MIR in order to find function calls, closures, and drop-glue.
1200
1185
///
1201
1186
/// Anything that's found is added to `output`. Furthermore the "mentioned items" of the MIR are returned.
@@ -1226,7 +1211,7 @@ fn collect_items_of_instance<'tcx>(
1226
1211
used_mentioned_items : & mut used_mentioned_items,
1227
1212
instance,
1228
1213
visiting_call_terminator : false ,
1229
- move_check : MoveCheckState :: new ( ) ,
1214
+ // move_check: MoveCheckState::new(),
1230
1215
} ;
1231
1216
1232
1217
if mode == CollectionMode :: UsedItems {
0 commit comments