Skip to content

Commit ffdac0b

Browse files
committed
Auto merge of rust-lang#132467 - RalfJung:move-check-perf, r=<try>
perf experiment: disable large-move-check This is to figure out whether it's worth moving this check into a query, like we are doing for another mono-time check in rust-lang#132173.
2 parents 145f9cf + c4d5c7e commit ffdac0b

File tree

4 files changed

+26
-42
lines changed

4 files changed

+26
-42
lines changed

compiler/rustc_monomorphize/messages.ftl

-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ monomorphize_couldnt_dump_mono_stats =
44
monomorphize_encountered_error_while_instantiating =
55
the above error was encountered while instantiating `{$formatted_item}`
66
7-
monomorphize_large_assignments =
8-
moving {$size} bytes
9-
.label = value moved from here
10-
.note = The current maximum size is {$limit}, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
11-
127
monomorphize_no_optimized_mir =
138
missing optimized MIR for an item in the crate `{$crate_name}`
149
.note = missing optimized MIR for this item (was the crate `{$crate_name}` compiled with `--emit=metadata`?)

compiler/rustc_monomorphize/src/collector.rs

+11-26
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,11 @@
205205
//! this is not implemented however: a mono item will be produced
206206
//! regardless of whether it is actually needed or not.
207207
208-
mod move_check;
208+
//mod move_check;
209209

210210
use std::path::PathBuf;
211211

212-
use move_check::MoveCheckState;
212+
//use move_check::MoveCheckState;
213213
use rustc_data_structures::sync::{LRef, MTLock, par_for_each_in};
214214
use rustc_data_structures::unord::{UnordMap, UnordSet};
215215
use rustc_hir as hir;
@@ -226,17 +226,16 @@ use rustc_middle::ty::adjustment::{CustomCoerceUnsized, PointerCoercion};
226226
use rustc_middle::ty::layout::ValidityRequirement;
227227
use rustc_middle::ty::print::{shrunk_instance_name, with_no_trimmed_paths};
228228
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,
231231
};
232232
use rustc_middle::util::Providers;
233233
use rustc_middle::{bug, span_bug};
234234
use rustc_session::Limit;
235235
use rustc_session::config::EntryFnType;
236236
use rustc_span::source_map::{Spanned, dummy_spanned, respan};
237-
use rustc_span::symbol::{Ident, sym};
237+
use rustc_span::symbol::sym;
238238
use rustc_span::{DUMMY_SP, Span};
239-
use rustc_target::abi::Size;
240239
use tracing::{debug, instrument, trace};
241240

242241
use crate::errors::{self, EncounteredErrorWhileInstantiating, NoOptimizedMir, RecursionLimit};
@@ -612,7 +611,7 @@ struct MirUsedCollector<'a, 'tcx> {
612611
used_mentioned_items: &'a mut UnordSet<MentionedItem<'tcx>>,
613612
instance: Instance<'tcx>,
614613
visiting_call_terminator: bool,
615-
move_check: move_check::MoveCheckState,
614+
//move_check: move_check::MoveCheckState,
616615
}
617616

618617
impl<'a, 'tcx> MirUsedCollector<'a, 'tcx> {
@@ -759,13 +758,13 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirUsedCollector<'a, 'tcx> {
759758
};
760759

761760
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, .. } => {
764763
let callee_ty = func.ty(self.body, tcx);
765764
// *Before* monomorphizing, record that we already handled this mention.
766765
self.used_mentioned_items.insert(MentionedItem::Fn(callee_ty));
767766
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);
769768
visit_fn_use(self.tcx, callee_ty, true, source, &mut self.used_items)
770769
}
771770
mir::TerminatorKind::Drop { ref place, .. } => {
@@ -832,7 +831,7 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirUsedCollector<'a, 'tcx> {
832831

833832
fn visit_operand(&mut self, operand: &mir::Operand<'tcx>, location: Location) {
834833
self.super_operand(operand, location);
835-
self.check_operand_move_size(operand, location);
834+
//self.check_operand_move_size(operand, location);
836835
}
837836
}
838837

@@ -1182,20 +1181,6 @@ fn collect_alloc<'tcx>(tcx: TyCtxt<'tcx>, alloc_id: AllocId, output: &mut MonoIt
11821181
}
11831182
}
11841183

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-
11991184
/// Scans the MIR in order to find function calls, closures, and drop-glue.
12001185
///
12011186
/// 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>(
12261211
used_mentioned_items: &mut used_mentioned_items,
12271212
instance,
12281213
visiting_call_terminator: false,
1229-
move_check: MoveCheckState::new(),
1214+
//move_check: MoveCheckState::new(),
12301215
};
12311216

12321217
if mode == CollectionMode::UsedItems {

compiler/rustc_monomorphize/src/collector/move_check.rs

+14
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,17 @@ fn build_skip_move_check_fns(tcx: TyCtxt<'_>) -> Vec<DefId> {
153153
})
154154
.collect::<Vec<_>>()
155155
}
156+
157+
fn assoc_fn_of_type<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, fn_ident: Ident) -> Option<DefId> {
158+
for impl_def_id in tcx.inherent_impls(def_id) {
159+
if let Some(new) = tcx.associated_items(impl_def_id).find_by_name_and_kind(
160+
tcx,
161+
fn_ident,
162+
AssocKind::Fn,
163+
def_id,
164+
) {
165+
return Some(new.def_id);
166+
}
167+
}
168+
None
169+
}

compiler/rustc_monomorphize/src/errors.rs

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::path::PathBuf;
22

33
use rustc_errors::{Diag, DiagCtxtHandle, Diagnostic, EmissionGuarantee, Level};
4-
use rustc_macros::{Diagnostic, LintDiagnostic};
4+
use rustc_macros::Diagnostic;
55
use rustc_span::{Span, Symbol};
66

77
use crate::fluent_generated as fluent;
@@ -50,16 +50,6 @@ impl<G: EmissionGuarantee> Diagnostic<'_, G> for UnusedGenericParamsHint {
5050
}
5151
}
5252

53-
#[derive(LintDiagnostic)]
54-
#[diag(monomorphize_large_assignments)]
55-
#[note]
56-
pub(crate) struct LargeAssignmentsLint {
57-
#[label]
58-
pub span: Span,
59-
pub size: u64,
60-
pub limit: u64,
61-
}
62-
6353
#[derive(Diagnostic)]
6454
#[diag(monomorphize_symbol_already_defined)]
6555
pub(crate) struct SymbolAlreadyDefined {

0 commit comments

Comments
 (0)