Use get_diagnostic_name
This commit is contained in:
parent
33b9b95305
commit
b6cab80c18
6 changed files with 73 additions and 113 deletions
|
@ -2478,14 +2478,11 @@ impl<'tcx> LateLintPass<'tcx> for InvalidValue {
|
|||
// Find calls to `mem::{uninitialized,zeroed}` methods.
|
||||
if let hir::ExprKind::Path(ref qpath) = path_expr.kind {
|
||||
let def_id = cx.qpath_res(qpath, path_expr.hir_id).opt_def_id()?;
|
||||
|
||||
if cx.tcx.is_diagnostic_item(sym::mem_zeroed, def_id) {
|
||||
return Some(InitKind::Zeroed);
|
||||
} else if cx.tcx.is_diagnostic_item(sym::mem_uninitialized, def_id) {
|
||||
return Some(InitKind::Uninit);
|
||||
} else if cx.tcx.is_diagnostic_item(sym::transmute, def_id) && is_zero(&args[0])
|
||||
{
|
||||
return Some(InitKind::Zeroed);
|
||||
match cx.tcx.get_diagnostic_name(def_id) {
|
||||
Some(sym::mem_zeroed) => return Some(InitKind::Zeroed),
|
||||
Some(sym::mem_uninitialized) => return Some(InitKind::Uninit),
|
||||
Some(sym::transmute) if is_zero(&args[0]) => return Some(InitKind::Zeroed),
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
} else if let hir::ExprKind::MethodCall(_, _, ref args, _) = expr.kind {
|
||||
|
@ -2497,11 +2494,10 @@ impl<'tcx> LateLintPass<'tcx> for InvalidValue {
|
|||
if let hir::ExprKind::Call(ref path_expr, _) = args[0].kind {
|
||||
if let hir::ExprKind::Path(ref qpath) = path_expr.kind {
|
||||
let def_id = cx.qpath_res(qpath, path_expr.hir_id).opt_def_id()?;
|
||||
|
||||
if cx.tcx.is_diagnostic_item(sym::maybe_uninit_zeroed, def_id) {
|
||||
return Some(InitKind::Zeroed);
|
||||
} else if cx.tcx.is_diagnostic_item(sym::maybe_uninit_uninit, def_id) {
|
||||
return Some(InitKind::Uninit);
|
||||
match cx.tcx.get_diagnostic_name(def_id) {
|
||||
Some(sym::maybe_uninit_zeroed) => return Some(InitKind::Zeroed),
|
||||
Some(sym::maybe_uninit_uninit) => return Some(InitKind::Uninit),
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3091,8 +3087,10 @@ impl<'tcx> LateLintPass<'tcx> for DerefNullPtr {
|
|||
rustc_hir::ExprKind::Call(ref path, _) => {
|
||||
if let rustc_hir::ExprKind::Path(ref qpath) = path.kind {
|
||||
if let Some(def_id) = cx.qpath_res(qpath, path.hir_id).opt_def_id() {
|
||||
return cx.tcx.is_diagnostic_item(sym::ptr_null, def_id)
|
||||
|| cx.tcx.is_diagnostic_item(sym::ptr_null_mut, def_id);
|
||||
return matches!(
|
||||
cx.tcx.get_diagnostic_name(def_id),
|
||||
Some(sym::ptr_null | sym::ptr_null_mut)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,12 +33,10 @@ impl LateLintPass<'_> for DefaultHashTypes {
|
|||
// don't lint imports, only actual usages
|
||||
return;
|
||||
}
|
||||
let replace = if cx.tcx.is_diagnostic_item(sym::HashMap, def_id) {
|
||||
"FxHashMap"
|
||||
} else if cx.tcx.is_diagnostic_item(sym::HashSet, def_id) {
|
||||
"FxHashSet"
|
||||
} else {
|
||||
return;
|
||||
let replace = match cx.tcx.get_diagnostic_name(def_id) {
|
||||
Some(sym::HashMap) => "FxHashMap",
|
||||
Some(sym::HashSet) => "FxHashSet",
|
||||
_ => return,
|
||||
};
|
||||
cx.struct_span_lint(DEFAULT_HASH_TYPES, path.span, |lint| {
|
||||
let msg = format!(
|
||||
|
@ -174,26 +172,29 @@ fn is_ty_or_ty_ctxt(cx: &LateContext<'_>, ty: &Ty<'_>) -> Option<String> {
|
|||
if let TyKind::Path(qpath) = &ty.kind {
|
||||
if let QPath::Resolved(_, path) = qpath {
|
||||
match path.res {
|
||||
Res::Def(_, did) => {
|
||||
if cx.tcx.is_diagnostic_item(sym::Ty, did) {
|
||||
return Some(format!("Ty{}", gen_args(path.segments.last().unwrap())));
|
||||
} else if cx.tcx.is_diagnostic_item(sym::TyCtxt, did) {
|
||||
return Some(format!("TyCtxt{}", gen_args(path.segments.last().unwrap())));
|
||||
Res::Def(_, def_id) => {
|
||||
if let Some(name @ (sym::Ty | sym::TyCtxt)) = cx.tcx.get_diagnostic_name(def_id)
|
||||
{
|
||||
return Some(format!(
|
||||
"{}{}",
|
||||
name,
|
||||
gen_args(path.segments.last().unwrap())
|
||||
));
|
||||
}
|
||||
}
|
||||
// Only lint on `&Ty` and `&TyCtxt` if it is used outside of a trait.
|
||||
Res::SelfTy(None, Some((did, _))) => {
|
||||
if let ty::Adt(adt, substs) = cx.tcx.type_of(did).kind() {
|
||||
if cx.tcx.is_diagnostic_item(sym::Ty, adt.did) {
|
||||
if let Some(name @ (sym::Ty | sym::TyCtxt)) =
|
||||
cx.tcx.get_diagnostic_name(adt.did)
|
||||
{
|
||||
// NOTE: This path is currently unreachable as `Ty<'tcx>` is
|
||||
// defined as a type alias meaning that `impl<'tcx> Ty<'tcx>`
|
||||
// is not actually allowed.
|
||||
//
|
||||
// I(@lcnr) still kept this branch in so we don't miss this
|
||||
// if we ever change it in the future.
|
||||
return Some(format!("Ty<{}>", substs[0]));
|
||||
} else if cx.tcx.is_diagnostic_item(sym::TyCtxt, adt.did) {
|
||||
return Some(format!("TyCtxt<{}>", substs[0]));
|
||||
return Some(format!("{}<{}>", name, substs[0]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,9 +54,10 @@ impl<'tcx> LateLintPass<'tcx> for NonPanicFmt {
|
|||
|| Some(def_id) == cx.tcx.lang_items().panic_str()
|
||||
{
|
||||
if let Some(id) = f.span.ctxt().outer_expn_data().macro_def_id {
|
||||
if cx.tcx.is_diagnostic_item(sym::std_panic_2015_macro, id)
|
||||
|| cx.tcx.is_diagnostic_item(sym::core_panic_2015_macro, id)
|
||||
{
|
||||
if matches!(
|
||||
cx.tcx.get_diagnostic_name(id),
|
||||
Some(sym::core_panic_2015_macro | sym::std_panic_2015_macro)
|
||||
) {
|
||||
check_panic(cx, f, arg);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -51,9 +51,10 @@ impl<'tcx> LateLintPass<'tcx> for NoopMethodCall {
|
|||
Some((DefKind::AssocFn, did)) => match cx.tcx.trait_of_item(did) {
|
||||
// Check that we're dealing with a trait method for one of the traits we care about.
|
||||
Some(trait_id)
|
||||
if [sym::Clone, sym::Deref, sym::Borrow]
|
||||
.iter()
|
||||
.any(|s| cx.tcx.is_diagnostic_item(*s, trait_id)) =>
|
||||
if matches!(
|
||||
cx.tcx.get_diagnostic_name(trait_id),
|
||||
Some(sym::Borrow | sym::Clone | sym::Deref)
|
||||
) =>
|
||||
{
|
||||
(trait_id, did)
|
||||
}
|
||||
|
|
|
@ -1541,8 +1541,7 @@ impl InvalidAtomicOrdering {
|
|||
if let ExprKind::Call(ref func, ref args) = expr.kind;
|
||||
if let ExprKind::Path(ref func_qpath) = func.kind;
|
||||
if let Some(def_id) = cx.qpath_res(func_qpath, func.hir_id).opt_def_id();
|
||||
if cx.tcx.is_diagnostic_item(sym::fence, def_id) ||
|
||||
cx.tcx.is_diagnostic_item(sym::compiler_fence, def_id);
|
||||
if matches!(cx.tcx.get_diagnostic_name(def_id), Some(sym::fence | sym::compiler_fence));
|
||||
if let ExprKind::Path(ref ordering_qpath) = &args[0].kind;
|
||||
if let Some(ordering_def_id) = cx.qpath_res(ordering_qpath, args[0].hir_id).opt_def_id();
|
||||
if Self::matches_ordering(cx, ordering_def_id, &[sym::Relaxed]);
|
||||
|
|
|
@ -1047,51 +1047,41 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
|||
err: &mut DiagnosticBuilder<'_>,
|
||||
unsatisfied_predicates: &Vec<(ty::Predicate<'tcx>, Option<ty::Predicate<'tcx>>)>,
|
||||
) {
|
||||
let derivables = [
|
||||
sym::Eq,
|
||||
sym::PartialEq,
|
||||
sym::Ord,
|
||||
sym::PartialOrd,
|
||||
sym::Clone,
|
||||
sym::Copy,
|
||||
sym::Hash,
|
||||
sym::Default,
|
||||
sym::Debug,
|
||||
];
|
||||
let mut derives = unsatisfied_predicates
|
||||
.iter()
|
||||
.filter_map(|(pred, _)| {
|
||||
let trait_pred =
|
||||
if let ty::PredicateKind::Trait(trait_pred) = pred.kind().skip_binder() {
|
||||
trait_pred
|
||||
} else {
|
||||
return None;
|
||||
};
|
||||
let trait_ref = trait_pred.trait_ref;
|
||||
let adt_def = if let ty::Adt(adt_def, _) = trait_ref.self_ty().kind() {
|
||||
adt_def
|
||||
} else {
|
||||
return None;
|
||||
};
|
||||
if adt_def.did.is_local() {
|
||||
let diagnostic_items = self.tcx.diagnostic_items(trait_ref.def_id.krate);
|
||||
return derivables.iter().find_map(|trait_derivable| {
|
||||
let item_def_id = diagnostic_items.name_to_id.get(trait_derivable)?;
|
||||
if item_def_id == &trait_pred.trait_ref.def_id
|
||||
&& !(adt_def.is_enum() && *trait_derivable == sym::Default)
|
||||
{
|
||||
return Some((
|
||||
format!("{}", trait_ref.self_ty()),
|
||||
self.tcx.def_span(adt_def.did),
|
||||
format!("{}", trait_ref.print_only_trait_name()),
|
||||
));
|
||||
}
|
||||
None
|
||||
});
|
||||
}
|
||||
None
|
||||
})
|
||||
.collect::<Vec<(String, Span, String)>>();
|
||||
let mut derives = Vec::<(String, Span, String)>::new();
|
||||
let mut traits = Vec::<Span>::new();
|
||||
for (pred, _) in unsatisfied_predicates {
|
||||
let trait_pred = match pred.kind().skip_binder() {
|
||||
ty::PredicateKind::Trait(trait_pred) => trait_pred,
|
||||
_ => continue,
|
||||
};
|
||||
let adt = match trait_pred.self_ty().ty_adt_def() {
|
||||
Some(adt) if adt.did.is_local() => adt,
|
||||
_ => continue,
|
||||
};
|
||||
let can_derive = match self.tcx.get_diagnostic_name(trait_pred.def_id()) {
|
||||
Some(sym::Default) => !adt.is_enum(),
|
||||
Some(
|
||||
sym::Eq
|
||||
| sym::PartialEq
|
||||
| sym::Ord
|
||||
| sym::PartialOrd
|
||||
| sym::Clone
|
||||
| sym::Copy
|
||||
| sym::Hash
|
||||
| sym::Debug,
|
||||
) => true,
|
||||
_ => false,
|
||||
};
|
||||
if can_derive {
|
||||
derives.push((
|
||||
format!("{}", trait_pred.self_ty()),
|
||||
self.tcx.def_span(adt.did),
|
||||
format!("{}", trait_pred.trait_ref.print_only_trait_name()),
|
||||
));
|
||||
} else {
|
||||
traits.push(self.tcx.def_span(trait_pred.def_id()));
|
||||
}
|
||||
}
|
||||
derives.sort();
|
||||
let derives_grouped = derives.into_iter().fold(
|
||||
Vec::<(String, Span, String)>::new(),
|
||||
|
@ -1106,36 +1096,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
|||
acc
|
||||
},
|
||||
);
|
||||
let mut traits: Vec<_> = unsatisfied_predicates
|
||||
.iter()
|
||||
.filter_map(|(pred, _)| {
|
||||
let trait_pred =
|
||||
if let ty::PredicateKind::Trait(trait_pred) = pred.kind().skip_binder() {
|
||||
trait_pred
|
||||
} else {
|
||||
return None;
|
||||
};
|
||||
if let ty::Adt(adt_def, _) = trait_pred.trait_ref.self_ty().kind() {
|
||||
if !adt_def.did.is_local() {
|
||||
return None;
|
||||
}
|
||||
} else {
|
||||
return None;
|
||||
};
|
||||
|
||||
let did = trait_pred.def_id();
|
||||
let diagnostic_items = self.tcx.diagnostic_items(did.krate);
|
||||
|
||||
if !derivables
|
||||
.iter()
|
||||
.any(|trait_derivable| diagnostic_items.get(trait_derivable) == Some(&did))
|
||||
{
|
||||
Some(self.tcx.def_span(did))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
})
|
||||
.collect();
|
||||
traits.sort();
|
||||
traits.dedup();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue