Skip to content

Commit

Permalink
Auto merge of #81453 - jumbatm:clashing-extern-decl-perf, r=nagisa
Browse files Browse the repository at this point in the history
clashing_extern_declarations: Use symbol interning to avoid string alloc.

Use symbol interning as a hack to avoid allocating a string for every symbol name we store in the seen set. This hopefully addresses the minor perf regression described in #80009 (comment).

r? `@nagisa`
  • Loading branch information
bors committed Jan 30, 2021
2 parents 7ce1b3b + a1a7830 commit fd20a8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions compiler/rustc_lint/src/builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2607,7 +2607,7 @@ pub struct ClashingExternDeclarations {
/// the symbol should be reported as a clashing declaration.
// FIXME: Technically, we could just store a &'tcx str here without issue; however, the
// `impl_lint_pass` macro doesn't currently support lints parametric over a lifetime.
seen_decls: FxHashMap<String, HirId>,
seen_decls: FxHashMap<Symbol, HirId>,
}

/// Differentiate between whether the name for an extern decl came from the link_name attribute or
Expand Down Expand Up @@ -2641,14 +2641,14 @@ impl ClashingExternDeclarations {
let local_did = tcx.hir().local_def_id(fi.hir_id);
let did = local_did.to_def_id();
let instance = Instance::new(did, ty::List::identity_for_item(tcx, did));
let name = tcx.symbol_name(instance).name;
if let Some(&hir_id) = self.seen_decls.get(name) {
let name = Symbol::intern(tcx.symbol_name(instance).name);
if let Some(&hir_id) = self.seen_decls.get(&name) {
// Avoid updating the map with the new entry when we do find a collision. We want to
// make sure we're always pointing to the first definition as the previous declaration.
// This lets us avoid emitting "knock-on" diagnostics.
Some(hir_id)
} else {
self.seen_decls.insert(name.to_owned(), hid)
self.seen_decls.insert(name, hid)
}
}

Expand Down

0 comments on commit fd20a8b

Please sign in to comment.