2015-02-25 05:44:44 -06:00
|
|
|
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-02-25 06:03:44 -06:00
|
|
|
//! Lints in the Rust compiler.
|
2015-02-25 05:44:44 -06:00
|
|
|
//!
|
2015-02-25 06:03:44 -06:00
|
|
|
//! This contains lints which can feasibly be implemented as their own
|
|
|
|
//! AST visitor. Also see `rustc::lint::builtin`, which contains the
|
|
|
|
//! definitions of lints that are emitted directly inside the main
|
|
|
|
//! compiler.
|
2015-02-25 05:44:44 -06:00
|
|
|
//!
|
|
|
|
//! To add a new lint to rustc, declare it here using `declare_lint!()`.
|
|
|
|
//! Then add code to emit the new lint in the appropriate circumstances.
|
2015-02-25 06:03:44 -06:00
|
|
|
//! You can do that in an existing `LintPass` if it makes sense, or in a
|
|
|
|
//! new `LintPass`, or using `Session::add_lint` elsewhere in the
|
|
|
|
//! compiler. Only do the latter if the check can't be written cleanly as a
|
|
|
|
//! `LintPass` (also, note that such lints will need to be defined in
|
|
|
|
//! `rustc::lint::builtin`, not here).
|
2015-02-25 05:44:44 -06:00
|
|
|
//!
|
|
|
|
//! If you define a new `LintPass`, you will also need to add it to the
|
2015-02-25 06:03:44 -06:00
|
|
|
//! `add_builtin!` or `add_builtin_with_new!` invocation in `lib.rs`.
|
2015-02-25 05:44:44 -06:00
|
|
|
//! Use the former for unit-like structs and the latter for structs with
|
|
|
|
//! a `pub fn new()`.
|
|
|
|
|
2016-01-20 13:31:10 -06:00
|
|
|
use middle::{cfg, infer, stability, traits};
|
|
|
|
use middle::def::Def;
|
2015-11-24 16:00:26 -06:00
|
|
|
use middle::cstore::CrateStore;
|
2015-08-16 08:06:23 -05:00
|
|
|
use middle::def_id::DefId;
|
2015-02-25 05:44:44 -06:00
|
|
|
use middle::subst::Substs;
|
|
|
|
use middle::ty::{self, Ty};
|
2015-09-14 06:55:56 -05:00
|
|
|
use middle::ty::adjustment;
|
2015-07-31 02:04:06 -05:00
|
|
|
use rustc::front::map as hir_map;
|
2015-09-21 19:58:57 -05:00
|
|
|
use util::nodemap::{NodeSet};
|
2015-09-15 17:58:19 -05:00
|
|
|
use lint::{Level, LateContext, LintContext, LintArray, Lint};
|
|
|
|
use lint::{LintPass, LateLintPass};
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-08-11 19:27:05 -05:00
|
|
|
use std::collections::HashSet;
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-21 19:58:57 -05:00
|
|
|
use syntax::{ast};
|
2015-09-14 04:58:20 -05:00
|
|
|
use syntax::attr::{self, AttrMetaMethods};
|
2015-02-25 05:44:44 -06:00
|
|
|
use syntax::codemap::{self, Span};
|
|
|
|
|
2015-07-31 02:04:06 -05:00
|
|
|
use rustc_front::hir;
|
2015-11-17 16:51:44 -06:00
|
|
|
use rustc_front::intravisit::FnKind;
|
2015-07-31 02:04:06 -05:00
|
|
|
|
2015-09-14 21:36:39 -05:00
|
|
|
use bad_style::{MethodLateContext, method_context};
|
|
|
|
|
2015-02-25 05:44:44 -06:00
|
|
|
// hardwired lints from librustc
|
|
|
|
pub use lint::builtin::*;
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
WHILE_TRUE,
|
|
|
|
Warn,
|
|
|
|
"suggest using `loop { }` instead of `while true { }`"
|
|
|
|
}
|
|
|
|
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 05:44:44 -06:00
|
|
|
pub struct WhileTrue;
|
|
|
|
|
|
|
|
impl LintPass for WhileTrue {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(WHILE_TRUE)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for WhileTrue {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_expr(&mut self, cx: &LateContext, e: &hir::Expr) {
|
2015-09-03 08:29:56 -05:00
|
|
|
if let hir::ExprWhile(ref cond, _, _) = e.node {
|
|
|
|
if let hir::ExprLit(ref lit) = cond.node {
|
2015-09-14 04:58:20 -05:00
|
|
|
if let ast::LitBool(true) = lit.node {
|
2015-02-25 05:44:44 -06:00
|
|
|
cx.span_lint(WHILE_TRUE, e.span,
|
|
|
|
"denote infinite loops with loop { ... }");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
BOX_POINTERS,
|
|
|
|
Allow,
|
|
|
|
"use of owned (Box type) heap memory"
|
|
|
|
}
|
|
|
|
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 05:44:44 -06:00
|
|
|
pub struct BoxPointers;
|
|
|
|
|
|
|
|
impl BoxPointers {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_heap_type<'a, 'tcx>(&self, cx: &LateContext<'a, 'tcx>,
|
2015-02-25 05:44:44 -06:00
|
|
|
span: Span, ty: Ty<'tcx>) {
|
2015-06-25 15:42:17 -05:00
|
|
|
for leaf_ty in ty.walk() {
|
|
|
|
if let ty::TyBox(_) = leaf_ty.sty {
|
|
|
|
let m = format!("type uses owned (Box type) pointers: {}", ty);
|
|
|
|
cx.span_lint(BOX_POINTERS, span, &m);
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for BoxPointers {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(BOX_POINTERS)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for BoxPointers {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext, it: &hir::Item) {
|
2015-02-25 05:44:44 -06:00
|
|
|
match it.node {
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemFn(..) |
|
|
|
|
hir::ItemTy(..) |
|
|
|
|
hir::ItemEnum(..) |
|
|
|
|
hir::ItemStruct(..) =>
|
2015-02-25 05:44:44 -06:00
|
|
|
self.check_heap_type(cx, it.span,
|
2015-06-25 15:42:17 -05:00
|
|
|
cx.tcx.node_id_to_type(it.id)),
|
2015-02-25 05:44:44 -06:00
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
|
|
|
|
// If it's a struct, we also have to check the fields' types
|
|
|
|
match it.node {
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemStruct(ref struct_def, _) => {
|
2015-10-08 15:45:46 -05:00
|
|
|
for struct_field in struct_def.fields() {
|
2015-02-25 05:44:44 -06:00
|
|
|
self.check_heap_type(cx, struct_field.span,
|
2015-06-25 15:42:17 -05:00
|
|
|
cx.tcx.node_id_to_type(struct_field.node.id));
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_expr(&mut self, cx: &LateContext, e: &hir::Expr) {
|
2015-07-31 02:04:06 -05:00
|
|
|
let ty = cx.tcx.node_id_to_type(e.id);
|
2015-02-25 05:44:44 -06:00
|
|
|
self.check_heap_type(cx, e.span, ty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
NON_SHORTHAND_FIELD_PATTERNS,
|
|
|
|
Warn,
|
|
|
|
"using `Struct { x: x }` instead of `Struct { x }`"
|
|
|
|
}
|
|
|
|
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 05:44:44 -06:00
|
|
|
pub struct NonShorthandFieldPatterns;
|
|
|
|
|
|
|
|
impl LintPass for NonShorthandFieldPatterns {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NON_SHORTHAND_FIELD_PATTERNS)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for NonShorthandFieldPatterns {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_pat(&mut self, cx: &LateContext, pat: &hir::Pat) {
|
2015-02-25 05:44:44 -06:00
|
|
|
let def_map = cx.tcx.def_map.borrow();
|
2015-09-03 08:29:56 -05:00
|
|
|
if let hir::PatStruct(_, ref v, _) = pat.node {
|
2015-02-28 06:31:14 -06:00
|
|
|
let field_pats = v.iter().filter(|fieldpat| {
|
|
|
|
if fieldpat.node.is_shorthand {
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
let def = def_map.get(&fieldpat.node.pat.id).map(|d| d.full_def());
|
2015-09-10 14:53:08 -05:00
|
|
|
if let Some(def_id) = cx.tcx.map.opt_local_def_id(fieldpat.node.pat.id) {
|
2016-01-20 13:31:10 -06:00
|
|
|
def == Some(Def::Local(def_id, fieldpat.node.pat.id))
|
2015-09-10 14:53:08 -05:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
});
|
|
|
|
for fieldpat in field_pats {
|
2015-09-03 08:29:56 -05:00
|
|
|
if let hir::PatIdent(_, ident, None) = fieldpat.node.pat.node {
|
2015-12-01 11:38:40 -06:00
|
|
|
if ident.node.unhygienic_name == fieldpat.node.name {
|
2015-02-25 05:44:44 -06:00
|
|
|
cx.span_lint(NON_SHORTHAND_FIELD_PATTERNS, fieldpat.span,
|
|
|
|
&format!("the `{}:` in this pattern is redundant and can \
|
2015-07-28 11:07:20 -05:00
|
|
|
be removed", ident.node))
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
UNSAFE_CODE,
|
|
|
|
Allow,
|
|
|
|
"usage of `unsafe` code"
|
|
|
|
}
|
|
|
|
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 05:44:44 -06:00
|
|
|
pub struct UnsafeCode;
|
|
|
|
|
|
|
|
impl LintPass for UnsafeCode {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(UNSAFE_CODE)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for UnsafeCode {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_expr(&mut self, cx: &LateContext, e: &hir::Expr) {
|
2015-09-03 08:29:56 -05:00
|
|
|
if let hir::ExprBlock(ref blk) = e.node {
|
2015-02-25 05:44:44 -06:00
|
|
|
// Don't warn about generated blocks, that'll just pollute the output.
|
2015-09-03 08:29:56 -05:00
|
|
|
if blk.rules == hir::UnsafeBlock(hir::UserProvided) {
|
2015-02-25 05:44:44 -06:00
|
|
|
cx.span_lint(UNSAFE_CODE, blk.span, "usage of an `unsafe` block");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext, it: &hir::Item) {
|
2015-02-25 05:44:44 -06:00
|
|
|
match it.node {
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemTrait(hir::Unsafety::Unsafe, _, _, _) =>
|
2015-02-25 05:44:44 -06:00
|
|
|
cx.span_lint(UNSAFE_CODE, it.span, "declaration of an `unsafe` trait"),
|
|
|
|
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemImpl(hir::Unsafety::Unsafe, _, _, _, _, _) =>
|
2015-02-25 05:44:44 -06:00
|
|
|
cx.span_lint(UNSAFE_CODE, it.span, "implementation of an `unsafe` trait"),
|
|
|
|
|
|
|
|
_ => return,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_fn(&mut self, cx: &LateContext, fk: FnKind, _: &hir::FnDecl,
|
2015-09-03 08:29:56 -05:00
|
|
|
_: &hir::Block, span: Span, _: ast::NodeId) {
|
2015-02-25 05:44:44 -06:00
|
|
|
match fk {
|
2015-09-03 08:29:56 -05:00
|
|
|
FnKind::ItemFn(_, _, hir::Unsafety::Unsafe, _, _, _) =>
|
2015-02-25 05:44:44 -06:00
|
|
|
cx.span_lint(UNSAFE_CODE, span, "declaration of an `unsafe` function"),
|
|
|
|
|
2015-08-26 05:00:14 -05:00
|
|
|
FnKind::Method(_, sig, _) => {
|
2015-09-03 08:29:56 -05:00
|
|
|
if sig.unsafety == hir::Unsafety::Unsafe {
|
2015-03-10 05:28:44 -05:00
|
|
|
cx.span_lint(UNSAFE_CODE, span, "implementation of an `unsafe` method")
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext, trait_item: &hir::TraitItem) {
|
2015-09-03 08:29:56 -05:00
|
|
|
if let hir::MethodTraitItem(ref sig, None) = trait_item.node {
|
|
|
|
if sig.unsafety == hir::Unsafety::Unsafe {
|
2015-03-10 05:28:44 -05:00
|
|
|
cx.span_lint(UNSAFE_CODE, trait_item.span,
|
|
|
|
"declaration of an `unsafe` method")
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
MISSING_DOCS,
|
|
|
|
Allow,
|
|
|
|
"detects missing documentation for public members"
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct MissingDoc {
|
|
|
|
/// Stack of IDs of struct definitions.
|
|
|
|
struct_def_stack: Vec<ast::NodeId>,
|
|
|
|
|
|
|
|
/// True if inside variant definition
|
|
|
|
in_variant: bool,
|
|
|
|
|
|
|
|
/// Stack of whether #[doc(hidden)] is set
|
|
|
|
/// at each level which has lint attributes.
|
|
|
|
doc_hidden_stack: Vec<bool>,
|
2015-03-29 22:41:54 -05:00
|
|
|
|
|
|
|
/// Private traits or trait items that leaked through. Don't check their methods.
|
|
|
|
private_traits: HashSet<ast::NodeId>,
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl MissingDoc {
|
|
|
|
pub fn new() -> MissingDoc {
|
|
|
|
MissingDoc {
|
|
|
|
struct_def_stack: vec!(),
|
|
|
|
in_variant: false,
|
|
|
|
doc_hidden_stack: vec!(false),
|
2015-03-29 22:41:54 -05:00
|
|
|
private_traits: HashSet::new(),
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn doc_hidden(&self) -> bool {
|
|
|
|
*self.doc_hidden_stack.last().expect("empty doc_hidden_stack")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_missing_docs_attrs(&self,
|
2015-09-09 23:40:59 -05:00
|
|
|
cx: &LateContext,
|
2015-02-25 05:44:44 -06:00
|
|
|
id: Option<ast::NodeId>,
|
2015-09-14 04:58:20 -05:00
|
|
|
attrs: &[ast::Attribute],
|
2015-02-25 05:44:44 -06:00
|
|
|
sp: Span,
|
|
|
|
desc: &'static str) {
|
|
|
|
// If we're building a test harness, then warning about
|
|
|
|
// documentation is probably not really relevant right now.
|
2015-02-28 06:31:14 -06:00
|
|
|
if cx.sess().opts.test {
|
|
|
|
return;
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
|
|
|
// `#[doc(hidden)]` disables missing_docs check.
|
2015-02-28 06:31:14 -06:00
|
|
|
if self.doc_hidden() {
|
|
|
|
return;
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
|
|
|
// Only check publicly-visible items, using the result from the privacy pass.
|
|
|
|
// It's an option so the crate root can also use this function (it doesn't
|
|
|
|
// have a NodeId).
|
2015-11-19 05:16:35 -06:00
|
|
|
if let Some(id) = id {
|
|
|
|
if !cx.access_levels.is_exported(id) {
|
2015-02-25 05:44:44 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let has_doc = attrs.iter().any(|a| {
|
|
|
|
match a.node.value.node {
|
2015-09-14 04:58:20 -05:00
|
|
|
ast::MetaNameValue(ref name, _) if *name == "doc" => true,
|
2015-02-25 05:44:44 -06:00
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if !has_doc {
|
|
|
|
cx.span_lint(MISSING_DOCS, sp,
|
2015-02-28 06:31:14 -06:00
|
|
|
&format!("missing documentation for {}", desc));
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for MissingDoc {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(MISSING_DOCS)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for MissingDoc {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn enter_lint_attrs(&mut self, _: &LateContext, attrs: &[ast::Attribute]) {
|
2015-02-25 05:44:44 -06:00
|
|
|
let doc_hidden = self.doc_hidden() || attrs.iter().any(|attr| {
|
|
|
|
attr.check_name("doc") && match attr.meta_item_list() {
|
|
|
|
None => false,
|
|
|
|
Some(l) => attr::contains_name(&l[..], "hidden"),
|
|
|
|
}
|
|
|
|
});
|
|
|
|
self.doc_hidden_stack.push(doc_hidden);
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn exit_lint_attrs(&mut self, _: &LateContext, _: &[ast::Attribute]) {
|
2015-02-25 05:44:44 -06:00
|
|
|
self.doc_hidden_stack.pop().expect("empty doc_hidden_stack");
|
|
|
|
}
|
|
|
|
|
2015-10-07 19:20:57 -05:00
|
|
|
fn check_struct_def(&mut self, _: &LateContext, _: &hir::VariantData,
|
2015-10-02 08:14:20 -05:00
|
|
|
_: ast::Name, _: &hir::Generics, item_id: ast::NodeId) {
|
|
|
|
self.struct_def_stack.push(item_id);
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-10-07 19:20:57 -05:00
|
|
|
fn check_struct_def_post(&mut self, _: &LateContext, _: &hir::VariantData,
|
2015-10-02 08:14:20 -05:00
|
|
|
_: ast::Name, _: &hir::Generics, item_id: ast::NodeId) {
|
2015-02-25 05:44:44 -06:00
|
|
|
let popped = self.struct_def_stack.pop().expect("empty struct_def_stack");
|
2015-10-02 08:14:20 -05:00
|
|
|
assert!(popped == item_id);
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_crate(&mut self, cx: &LateContext, krate: &hir::Crate) {
|
2015-02-28 06:31:14 -06:00
|
|
|
self.check_missing_docs_attrs(cx, None, &krate.attrs, krate.span, "crate");
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext, it: &hir::Item) {
|
2015-02-25 05:44:44 -06:00
|
|
|
let desc = match it.node {
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemFn(..) => "a function",
|
|
|
|
hir::ItemMod(..) => "a module",
|
|
|
|
hir::ItemEnum(..) => "an enum",
|
|
|
|
hir::ItemStruct(..) => "a struct",
|
|
|
|
hir::ItemTrait(_, _, _, ref items) => {
|
2015-03-29 22:41:54 -05:00
|
|
|
// Issue #11592, traits are always considered exported, even when private.
|
2015-09-03 08:29:56 -05:00
|
|
|
if it.vis == hir::Visibility::Inherited {
|
2015-03-29 22:41:54 -05:00
|
|
|
self.private_traits.insert(it.id);
|
|
|
|
for itm in items {
|
|
|
|
self.private_traits.insert(itm.id);
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
"a trait"
|
|
|
|
},
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemTy(..) => "a type alias",
|
|
|
|
hir::ItemImpl(_, _, _, Some(ref trait_ref), _, ref impl_items) => {
|
2015-03-29 22:41:54 -05:00
|
|
|
// If the trait is private, add the impl items to private_traits so they don't get
|
|
|
|
// reported for missing docs.
|
2015-09-03 08:29:56 -05:00
|
|
|
let real_trait = cx.tcx.trait_ref_to_def_id(trait_ref);
|
2015-09-04 12:52:28 -05:00
|
|
|
if let Some(node_id) = cx.tcx.map.as_local_node_id(real_trait) {
|
|
|
|
match cx.tcx.map.find(node_id) {
|
|
|
|
Some(hir_map::NodeItem(item)) => if item.vis == hir::Visibility::Inherited {
|
|
|
|
for itm in impl_items {
|
|
|
|
self.private_traits.insert(itm.id);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => { }
|
|
|
|
}
|
2015-03-29 22:41:54 -05:00
|
|
|
}
|
|
|
|
return
|
|
|
|
},
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemConst(..) => "a constant",
|
|
|
|
hir::ItemStatic(..) => "a static",
|
2015-02-25 05:44:44 -06:00
|
|
|
_ => return
|
|
|
|
};
|
2015-03-29 22:41:54 -05:00
|
|
|
|
2015-02-28 06:31:14 -06:00
|
|
|
self.check_missing_docs_attrs(cx, Some(it.id), &it.attrs, it.span, desc);
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext, trait_item: &hir::TraitItem) {
|
2015-03-29 22:41:54 -05:00
|
|
|
if self.private_traits.contains(&trait_item.id) { return }
|
|
|
|
|
2015-03-10 05:28:44 -05:00
|
|
|
let desc = match trait_item.node {
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ConstTraitItem(..) => "an associated constant",
|
|
|
|
hir::MethodTraitItem(..) => "a trait method",
|
|
|
|
hir::TypeTraitItem(..) => "an associated type",
|
2015-03-10 05:28:44 -05:00
|
|
|
};
|
2015-03-29 22:41:54 -05:00
|
|
|
|
2015-03-10 05:28:44 -05:00
|
|
|
self.check_missing_docs_attrs(cx, Some(trait_item.id),
|
|
|
|
&trait_item.attrs,
|
|
|
|
trait_item.span, desc);
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext, impl_item: &hir::ImplItem) {
|
2015-03-10 05:28:44 -05:00
|
|
|
// If the method is an impl for a trait, don't doc.
|
2015-09-09 23:40:59 -05:00
|
|
|
if method_context(cx, impl_item.id, impl_item.span) == MethodLateContext::TraitImpl {
|
2015-03-10 05:28:44 -05:00
|
|
|
return;
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-03-10 05:28:44 -05:00
|
|
|
|
|
|
|
let desc = match impl_item.node {
|
2015-11-12 08:57:51 -06:00
|
|
|
hir::ImplItemKind::Const(..) => "an associated constant",
|
|
|
|
hir::ImplItemKind::Method(..) => "a method",
|
|
|
|
hir::ImplItemKind::Type(_) => "an associated type",
|
2015-03-10 05:28:44 -05:00
|
|
|
};
|
|
|
|
self.check_missing_docs_attrs(cx, Some(impl_item.id),
|
|
|
|
&impl_item.attrs,
|
|
|
|
impl_item.span, desc);
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_struct_field(&mut self, cx: &LateContext, sf: &hir::StructField) {
|
2015-09-03 08:29:56 -05:00
|
|
|
if let hir::NamedField(_, vis) = sf.node.kind {
|
|
|
|
if vis == hir::Public || self.in_variant {
|
2015-02-25 05:44:44 -06:00
|
|
|
let cur_struct_def = *self.struct_def_stack.last()
|
|
|
|
.expect("empty struct_def_stack");
|
|
|
|
self.check_missing_docs_attrs(cx, Some(cur_struct_def),
|
|
|
|
&sf.node.attrs, sf.span,
|
|
|
|
"a struct field")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_variant(&mut self, cx: &LateContext, v: &hir::Variant, _: &hir::Generics) {
|
2015-10-09 19:28:40 -05:00
|
|
|
self.check_missing_docs_attrs(cx, Some(v.node.data.id()),
|
|
|
|
&v.node.attrs, v.span, "a variant");
|
2015-02-25 05:44:44 -06:00
|
|
|
assert!(!self.in_variant);
|
|
|
|
self.in_variant = true;
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_variant_post(&mut self, _: &LateContext, _: &hir::Variant, _: &hir::Generics) {
|
2015-02-25 05:44:44 -06:00
|
|
|
assert!(self.in_variant);
|
|
|
|
self.in_variant = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
pub MISSING_COPY_IMPLEMENTATIONS,
|
|
|
|
Allow,
|
|
|
|
"detects potentially-forgotten implementations of `Copy`"
|
|
|
|
}
|
|
|
|
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 05:44:44 -06:00
|
|
|
pub struct MissingCopyImplementations;
|
|
|
|
|
|
|
|
impl LintPass for MissingCopyImplementations {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(MISSING_COPY_IMPLEMENTATIONS)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for MissingCopyImplementations {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext, item: &hir::Item) {
|
2015-11-19 05:16:35 -06:00
|
|
|
if !cx.access_levels.is_reachable(item.id) {
|
2015-02-28 06:31:14 -06:00
|
|
|
return;
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-08-25 13:52:15 -05:00
|
|
|
let (def, ty) = match item.node {
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemStruct(_, ref ast_generics) => {
|
2015-02-25 05:44:44 -06:00
|
|
|
if ast_generics.is_parameterized() {
|
2015-02-28 06:31:14 -06:00
|
|
|
return;
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-09-02 15:11:32 -05:00
|
|
|
let def = cx.tcx.lookup_adt_def(cx.tcx.map.local_def_id(item.id));
|
2015-08-25 13:52:15 -05:00
|
|
|
(def, cx.tcx.mk_struct(def,
|
|
|
|
cx.tcx.mk_substs(Substs::empty())))
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemEnum(_, ref ast_generics) => {
|
2015-02-25 05:44:44 -06:00
|
|
|
if ast_generics.is_parameterized() {
|
2015-02-28 06:31:14 -06:00
|
|
|
return;
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-09-02 15:11:32 -05:00
|
|
|
let def = cx.tcx.lookup_adt_def(cx.tcx.map.local_def_id(item.id));
|
2015-08-25 13:52:15 -05:00
|
|
|
(def, cx.tcx.mk_enum(def,
|
|
|
|
cx.tcx.mk_substs(Substs::empty())))
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
_ => return,
|
|
|
|
};
|
2015-08-25 13:52:15 -05:00
|
|
|
if def.has_dtor() { return; }
|
2015-06-25 15:42:17 -05:00
|
|
|
let parameter_environment = cx.tcx.empty_parameter_environment();
|
2015-06-29 01:03:47 -05:00
|
|
|
// FIXME (@jroesch) should probably inver this so that the parameter env still impls this
|
|
|
|
// method
|
|
|
|
if !ty.moves_by_default(¶meter_environment, item.span) {
|
2015-02-28 06:31:14 -06:00
|
|
|
return;
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-06-25 15:42:17 -05:00
|
|
|
if parameter_environment.can_type_implement_copy(ty, item.span).is_ok() {
|
2015-02-25 05:44:44 -06:00
|
|
|
cx.span_lint(MISSING_COPY_IMPLEMENTATIONS,
|
|
|
|
item.span,
|
|
|
|
"type could implement `Copy`; consider adding `impl \
|
|
|
|
Copy`")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
MISSING_DEBUG_IMPLEMENTATIONS,
|
|
|
|
Allow,
|
|
|
|
"detects missing implementations of fmt::Debug"
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct MissingDebugImplementations {
|
|
|
|
impling_types: Option<NodeSet>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MissingDebugImplementations {
|
|
|
|
pub fn new() -> MissingDebugImplementations {
|
|
|
|
MissingDebugImplementations {
|
|
|
|
impling_types: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for MissingDebugImplementations {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(MISSING_DEBUG_IMPLEMENTATIONS)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for MissingDebugImplementations {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext, item: &hir::Item) {
|
2015-11-19 05:16:35 -06:00
|
|
|
if !cx.access_levels.is_reachable(item.id) {
|
2015-02-25 05:44:44 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
match item.node {
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemStruct(..) | hir::ItemEnum(..) => {},
|
2015-02-25 05:44:44 -06:00
|
|
|
_ => return,
|
|
|
|
}
|
|
|
|
|
|
|
|
let debug = match cx.tcx.lang_items.debug_trait() {
|
|
|
|
Some(debug) => debug,
|
|
|
|
None => return,
|
|
|
|
};
|
|
|
|
|
|
|
|
if self.impling_types.is_none() {
|
2015-06-25 15:42:17 -05:00
|
|
|
let debug_def = cx.tcx.lookup_trait_def(debug);
|
2015-04-21 11:00:12 -05:00
|
|
|
let mut impls = NodeSet();
|
|
|
|
debug_def.for_each_impl(cx.tcx, |d| {
|
2015-09-04 12:52:28 -05:00
|
|
|
if let Some(n) = cx.tcx.map.as_local_node_id(d) {
|
|
|
|
if let Some(ty_def) = cx.tcx.node_id_to_type(n).ty_to_def_id() {
|
|
|
|
if let Some(node_id) = cx.tcx.map.as_local_node_id(ty_def) {
|
|
|
|
impls.insert(node_id);
|
|
|
|
}
|
2015-04-21 11:00:12 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-04-21 11:00:12 -05:00
|
|
|
});
|
|
|
|
|
2015-02-25 05:44:44 -06:00
|
|
|
self.impling_types = Some(impls);
|
|
|
|
debug!("{:?}", self.impling_types);
|
|
|
|
}
|
|
|
|
|
|
|
|
if !self.impling_types.as_ref().unwrap().contains(&item.id) {
|
|
|
|
cx.span_lint(MISSING_DEBUG_IMPLEMENTATIONS,
|
|
|
|
item.span,
|
|
|
|
"type does not implement `fmt::Debug`; consider adding #[derive(Debug)] \
|
|
|
|
or a manual implementation")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
DEPRECATED,
|
|
|
|
Warn,
|
2015-12-12 12:40:45 -06:00
|
|
|
"detects use of deprecated items"
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-12-04 10:34:28 -06:00
|
|
|
/// Checks for use of items with `#[deprecated]` or `#[rustc_deprecated]` attributes
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-12-04 10:34:28 -06:00
|
|
|
pub struct Deprecated;
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-12-04 10:34:28 -06:00
|
|
|
impl Deprecated {
|
|
|
|
fn lint(&self, cx: &LateContext, _id: DefId, span: Span,
|
|
|
|
stability: &Option<&attr::Stability>, deprecation: &Option<attr::Deprecation>) {
|
2015-02-28 06:31:14 -06:00
|
|
|
// Deprecated attributes apply in-crate and cross-crate.
|
2015-12-04 10:34:28 -06:00
|
|
|
if let Some(&attr::Stability{rustc_depr: Some(attr::RustcDeprecation{ref reason, ..}), ..})
|
|
|
|
= *stability {
|
|
|
|
output(cx, DEPRECATED, span, Some(&reason))
|
|
|
|
} else if let Some(attr::Deprecation{ref note, ..}) = *deprecation {
|
|
|
|
output(cx, DEPRECATED, span, note.as_ref().map(|x| &**x))
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-12-04 10:34:28 -06:00
|
|
|
fn output(cx: &LateContext, lint: &'static Lint, span: Span, note: Option<&str>) {
|
|
|
|
let msg = if let Some(note) = note {
|
|
|
|
format!("use of deprecated item: {}", note)
|
|
|
|
} else {
|
|
|
|
format!("use of deprecated item")
|
2015-02-25 05:44:44 -06:00
|
|
|
};
|
|
|
|
|
2015-12-04 10:34:28 -06:00
|
|
|
cx.span_lint(lint, span, &msg);
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-04 10:34:28 -06:00
|
|
|
impl LintPass for Deprecated {
|
2015-02-25 05:44:44 -06:00
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(DEPRECATED)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-12-04 10:34:28 -06:00
|
|
|
impl LateLintPass for Deprecated {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext, item: &hir::Item) {
|
2015-09-03 08:29:56 -05:00
|
|
|
stability::check_item(cx.tcx, item, false,
|
2015-12-04 10:34:28 -06:00
|
|
|
&mut |id, sp, stab, depr|
|
|
|
|
self.lint(cx, id, sp, &stab, &depr));
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_expr(&mut self, cx: &LateContext, e: &hir::Expr) {
|
2015-09-03 08:29:56 -05:00
|
|
|
stability::check_expr(cx.tcx, e,
|
2015-12-04 10:34:28 -06:00
|
|
|
&mut |id, sp, stab, depr|
|
|
|
|
self.lint(cx, id, sp, &stab, &depr));
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_path(&mut self, cx: &LateContext, path: &hir::Path, id: ast::NodeId) {
|
2015-09-03 08:29:56 -05:00
|
|
|
stability::check_path(cx.tcx, path, id,
|
2015-12-04 10:34:28 -06:00
|
|
|
&mut |id, sp, stab, depr|
|
|
|
|
self.lint(cx, id, sp, &stab, &depr));
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-09-12 08:10:12 -05:00
|
|
|
fn check_path_list_item(&mut self, cx: &LateContext, item: &hir::PathListItem) {
|
|
|
|
stability::check_path_list_item(cx.tcx, item,
|
2015-12-04 10:34:28 -06:00
|
|
|
&mut |id, sp, stab, depr|
|
|
|
|
self.lint(cx, id, sp, &stab, &depr));
|
2015-09-12 08:10:12 -05:00
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_pat(&mut self, cx: &LateContext, pat: &hir::Pat) {
|
2015-09-03 08:29:56 -05:00
|
|
|
stability::check_pat(cx.tcx, pat,
|
2015-12-04 10:34:28 -06:00
|
|
|
&mut |id, sp, stab, depr|
|
|
|
|
self.lint(cx, id, sp, &stab, &depr));
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
pub UNCONDITIONAL_RECURSION,
|
|
|
|
Warn,
|
|
|
|
"functions that cannot return without calling themselves"
|
|
|
|
}
|
|
|
|
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 05:44:44 -06:00
|
|
|
pub struct UnconditionalRecursion;
|
|
|
|
|
|
|
|
|
|
|
|
impl LintPass for UnconditionalRecursion {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array![UNCONDITIONAL_RECURSION]
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for UnconditionalRecursion {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_fn(&mut self, cx: &LateContext, fn_kind: FnKind, _: &hir::FnDecl,
|
2015-09-03 08:29:56 -05:00
|
|
|
blk: &hir::Block, sp: Span, id: ast::NodeId) {
|
2015-07-02 05:33:01 -05:00
|
|
|
let method = match fn_kind {
|
2015-08-26 05:00:14 -05:00
|
|
|
FnKind::ItemFn(..) => None,
|
|
|
|
FnKind::Method(..) => {
|
2015-09-02 15:11:32 -05:00
|
|
|
cx.tcx.impl_or_trait_item(cx.tcx.map.local_def_id(id)).as_opt_method()
|
2015-07-02 05:33:01 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
// closures can't recur, so they don't matter.
|
2015-08-26 05:00:14 -05:00
|
|
|
FnKind::Closure => return
|
2015-02-25 05:44:44 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
// Walk through this function (say `f`) looking to see if
|
|
|
|
// every possible path references itself, i.e. the function is
|
|
|
|
// called recursively unconditionally. This is done by trying
|
|
|
|
// to find a path from the entry node to the exit node that
|
|
|
|
// *doesn't* call `f` by traversing from the entry while
|
|
|
|
// pretending that calls of `f` are sinks (i.e. ignoring any
|
|
|
|
// exit edges from them).
|
|
|
|
//
|
|
|
|
// NB. this has an edge case with non-returning statements,
|
|
|
|
// like `loop {}` or `panic!()`: control flow never reaches
|
|
|
|
// the exit node through these, so one can have a function
|
|
|
|
// that never actually calls itselfs but is still picked up by
|
|
|
|
// this lint:
|
|
|
|
//
|
|
|
|
// fn f(cond: bool) {
|
|
|
|
// if !cond { panic!() } // could come from `assert!(cond)`
|
|
|
|
// f(false)
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// In general, functions of that form may be able to call
|
|
|
|
// itself a finite number of times and then diverge. The lint
|
|
|
|
// considers this to be an error for two reasons, (a) it is
|
|
|
|
// easier to implement, and (b) it seems rare to actually want
|
|
|
|
// to have behaviour like the above, rather than
|
|
|
|
// e.g. accidentally recurring after an assert.
|
|
|
|
|
2015-09-03 08:29:56 -05:00
|
|
|
let cfg = cfg::CFG::new(cx.tcx, blk);
|
2015-02-25 05:44:44 -06:00
|
|
|
|
|
|
|
let mut work_queue = vec![cfg.entry];
|
|
|
|
let mut reached_exit_without_self_call = false;
|
|
|
|
let mut self_call_spans = vec![];
|
2015-08-11 19:27:05 -05:00
|
|
|
let mut visited = HashSet::new();
|
2015-02-25 05:44:44 -06:00
|
|
|
|
|
|
|
while let Some(idx) = work_queue.pop() {
|
|
|
|
if idx == cfg.exit {
|
|
|
|
// found a path!
|
|
|
|
reached_exit_without_self_call = true;
|
2015-02-28 06:31:14 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
let cfg_id = idx.node_id();
|
|
|
|
if visited.contains(&cfg_id) {
|
2015-02-25 05:44:44 -06:00
|
|
|
// already done
|
2015-02-28 06:31:14 -06:00
|
|
|
continue;
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
visited.insert(cfg_id);
|
2015-02-28 06:31:14 -06:00
|
|
|
|
2015-02-25 05:44:44 -06:00
|
|
|
let node_id = cfg.graph.node_data(idx).id();
|
|
|
|
|
|
|
|
// is this a recursive call?
|
2015-07-02 05:33:01 -05:00
|
|
|
let self_recursive = if node_id != ast::DUMMY_NODE_ID {
|
|
|
|
match method {
|
|
|
|
Some(ref method) => {
|
|
|
|
expr_refers_to_this_method(cx.tcx, method, node_id)
|
|
|
|
}
|
|
|
|
None => expr_refers_to_this_fn(cx.tcx, id, node_id)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
};
|
|
|
|
if self_recursive {
|
2015-02-25 05:44:44 -06:00
|
|
|
self_call_spans.push(cx.tcx.map.span(node_id));
|
|
|
|
// this is a self call, so we shouldn't explore past
|
|
|
|
// this node in the CFG.
|
2015-02-28 06:31:14 -06:00
|
|
|
continue;
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
// add the successors of this node to explore the graph further.
|
2015-04-07 05:12:13 -05:00
|
|
|
for (_, edge) in cfg.graph.outgoing_edges(idx) {
|
2015-02-25 05:44:44 -06:00
|
|
|
let target_idx = edge.target();
|
|
|
|
let target_cfg_id = target_idx.node_id();
|
|
|
|
if !visited.contains(&target_cfg_id) {
|
|
|
|
work_queue.push(target_idx)
|
|
|
|
}
|
2015-04-07 05:12:13 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-02-28 06:31:14 -06:00
|
|
|
// Check the number of self calls because a function that
|
2015-02-25 05:44:44 -06:00
|
|
|
// doesn't return (e.g. calls a `-> !` function or `loop { /*
|
|
|
|
// no break */ }`) shouldn't be linted unless it actually
|
|
|
|
// recurs.
|
2015-03-24 18:54:09 -05:00
|
|
|
if !reached_exit_without_self_call && !self_call_spans.is_empty() {
|
2015-12-20 15:00:43 -06:00
|
|
|
let mut db = cx.struct_span_lint(UNCONDITIONAL_RECURSION, sp,
|
|
|
|
"function cannot return without recurring");
|
2015-02-25 05:44:44 -06:00
|
|
|
|
|
|
|
// FIXME #19668: these could be span_lint_note's instead of this manual guard.
|
|
|
|
if cx.current_level(UNCONDITIONAL_RECURSION) != Level::Allow {
|
|
|
|
// offer some help to the programmer.
|
|
|
|
for call in &self_call_spans {
|
2015-12-23 00:27:20 -06:00
|
|
|
db.span_note(*call, "recursive call site");
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-12-23 00:27:20 -06:00
|
|
|
db.fileline_help(sp, "a `loop` may express intention \
|
|
|
|
better if this is on purpose");
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-12-23 00:27:20 -06:00
|
|
|
db.emit();
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// all done
|
|
|
|
return;
|
|
|
|
|
2015-07-02 05:33:01 -05:00
|
|
|
// Functions for identifying if the given Expr NodeId `id`
|
|
|
|
// represents a call to the function `fn_id`/method `method`.
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-07-02 05:33:01 -05:00
|
|
|
fn expr_refers_to_this_fn(tcx: &ty::ctxt,
|
|
|
|
fn_id: ast::NodeId,
|
|
|
|
id: ast::NodeId) -> bool {
|
2015-06-29 16:51:56 -05:00
|
|
|
match tcx.map.get(id) {
|
2015-07-31 02:04:06 -05:00
|
|
|
hir_map::NodeExpr(&hir::Expr { node: hir::ExprCall(ref callee, _), .. }) => {
|
2015-09-02 15:11:32 -05:00
|
|
|
tcx.def_map
|
|
|
|
.borrow()
|
|
|
|
.get(&callee.id)
|
|
|
|
.map_or(false,
|
|
|
|
|def| def.def_id() == tcx.map.local_def_id(fn_id))
|
2015-06-29 16:51:56 -05:00
|
|
|
}
|
|
|
|
_ => false
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
|
2015-08-03 17:17:56 -05:00
|
|
|
// Check if the expression `id` performs a call to `method`.
|
2015-07-02 05:33:01 -05:00
|
|
|
fn expr_refers_to_this_method(tcx: &ty::ctxt,
|
|
|
|
method: &ty::Method,
|
|
|
|
id: ast::NodeId) -> bool {
|
2015-08-03 17:17:56 -05:00
|
|
|
// Check for method calls and overloaded operators.
|
2015-09-17 13:29:59 -05:00
|
|
|
let opt_m = tcx.tables.borrow().method_map.get(&ty::MethodCall::expr(id)).cloned();
|
|
|
|
if let Some(m) = opt_m {
|
2015-08-03 17:17:56 -05:00
|
|
|
if method_call_refers_to_method(tcx, method, m.def_id, m.substs, id) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for overloaded autoderef method calls.
|
2015-09-17 13:29:59 -05:00
|
|
|
let opt_adj = tcx.tables.borrow().adjustments.get(&id).cloned();
|
|
|
|
if let Some(adjustment::AdjustDerefRef(adj)) = opt_adj {
|
2015-08-03 17:17:56 -05:00
|
|
|
for i in 0..adj.autoderefs {
|
|
|
|
let method_call = ty::MethodCall::autoderef(id, i as u32);
|
2015-09-17 13:29:59 -05:00
|
|
|
if let Some(m) = tcx.tables.borrow().method_map
|
|
|
|
.get(&method_call)
|
|
|
|
.cloned() {
|
2015-08-03 17:17:56 -05:00
|
|
|
if method_call_refers_to_method(tcx, method, m.def_id, m.substs, id) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for calls to methods via explicit paths (e.g. `T::method()`).
|
|
|
|
match tcx.map.get(id) {
|
2015-07-31 02:04:06 -05:00
|
|
|
hir_map::NodeExpr(&hir::Expr { node: hir::ExprCall(ref callee, _), .. }) => {
|
2015-08-03 17:17:56 -05:00
|
|
|
match tcx.def_map.borrow().get(&callee.id).map(|d| d.full_def()) {
|
2016-01-20 13:31:10 -06:00
|
|
|
Some(Def::Method(def_id)) => {
|
2015-09-17 13:29:59 -05:00
|
|
|
let item_substs =
|
|
|
|
tcx.tables.borrow().item_substs
|
|
|
|
.get(&callee.id)
|
|
|
|
.cloned()
|
|
|
|
.unwrap_or_else(|| ty::ItemSubsts::empty());
|
|
|
|
method_call_refers_to_method(
|
|
|
|
tcx, method, def_id, &item_substs.substs, id)
|
2015-08-03 17:17:56 -05:00
|
|
|
}
|
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the method call to the method with the ID `callee_id`
|
|
|
|
// and instantiated with `callee_substs` refers to method `method`.
|
|
|
|
fn method_call_refers_to_method<'tcx>(tcx: &ty::ctxt<'tcx>,
|
|
|
|
method: &ty::Method,
|
2015-08-16 05:32:28 -05:00
|
|
|
callee_id: DefId,
|
2015-08-03 17:17:56 -05:00
|
|
|
callee_substs: &Substs<'tcx>,
|
|
|
|
expr_id: ast::NodeId) -> bool {
|
|
|
|
let callee_item = tcx.impl_or_trait_item(callee_id);
|
2015-07-02 05:33:01 -05:00
|
|
|
|
|
|
|
match callee_item.container() {
|
|
|
|
// This is an inherent method, so the `def_id` refers
|
|
|
|
// directly to the method definition.
|
|
|
|
ty::ImplContainer(_) => {
|
2015-08-03 17:17:56 -05:00
|
|
|
callee_id == method.def_id
|
2015-07-02 05:33:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// A trait method, from any number of possible sources.
|
|
|
|
// Attempt to select a concrete impl before checking.
|
|
|
|
ty::TraitContainer(trait_def_id) => {
|
2016-01-21 06:26:35 -06:00
|
|
|
let trait_ref = callee_substs.to_trait_ref(tcx, trait_def_id);
|
2015-07-02 05:33:01 -05:00
|
|
|
let trait_ref = ty::Binder(trait_ref);
|
2015-08-03 17:17:56 -05:00
|
|
|
let span = tcx.map.span(expr_id);
|
2015-07-02 05:33:01 -05:00
|
|
|
let obligation =
|
2015-08-03 17:17:56 -05:00
|
|
|
traits::Obligation::new(traits::ObligationCause::misc(span, expr_id),
|
2015-07-02 05:33:01 -05:00
|
|
|
trait_ref.to_poly_trait_predicate());
|
|
|
|
|
2015-09-04 12:52:28 -05:00
|
|
|
// unwrap() is ok here b/c `method` is the method
|
|
|
|
// defined in this crate whose body we are
|
|
|
|
// checking, so it's always local
|
|
|
|
let node_id = tcx.map.as_local_node_id(method.def_id).unwrap();
|
|
|
|
|
|
|
|
let param_env = ty::ParameterEnvironment::for_item(tcx, node_id);
|
2015-11-18 13:44:24 -06:00
|
|
|
let infcx = infer::new_infer_ctxt(tcx, &tcx.tables, Some(param_env));
|
2015-07-02 05:33:01 -05:00
|
|
|
let mut selcx = traits::SelectionContext::new(&infcx);
|
|
|
|
match selcx.select(&obligation) {
|
|
|
|
// The method comes from a `T: Trait` bound.
|
|
|
|
// If `T` is `Self`, then this call is inside
|
|
|
|
// a default method definition.
|
|
|
|
Ok(Some(traits::VtableParam(_))) => {
|
2015-08-03 17:17:56 -05:00
|
|
|
let self_ty = callee_substs.self_ty();
|
2015-07-02 05:33:01 -05:00
|
|
|
let on_self = self_ty.map_or(false, |t| t.is_self());
|
|
|
|
// We can only be recurring in a default
|
2015-06-29 17:56:00 -05:00
|
|
|
// method if we're being called literally
|
|
|
|
// on the `Self` type.
|
2015-08-03 17:17:56 -05:00
|
|
|
on_self && callee_id == method.def_id
|
2015-06-29 17:56:00 -05:00
|
|
|
}
|
2015-07-02 00:52:36 -05:00
|
|
|
|
2015-07-02 05:33:01 -05:00
|
|
|
// The `impl` is known, so we check that with a
|
|
|
|
// special case:
|
|
|
|
Ok(Some(traits::VtableImpl(vtable_impl))) => {
|
|
|
|
let container = ty::ImplContainer(vtable_impl.impl_def_id);
|
|
|
|
// It matches if it comes from the same impl,
|
|
|
|
// and has the same method name.
|
|
|
|
container == method.container
|
|
|
|
&& callee_item.name() == method.name
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-07-02 05:33:01 -05:00
|
|
|
// There's no way to know if this call is
|
|
|
|
// recursive, so we assume it's not.
|
|
|
|
_ => return false
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
2015-07-02 05:33:01 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
PLUGIN_AS_LIBRARY,
|
|
|
|
Warn,
|
|
|
|
"compiler plugin used as ordinary library in non-plugin crate"
|
|
|
|
}
|
|
|
|
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 05:44:44 -06:00
|
|
|
pub struct PluginAsLibrary;
|
|
|
|
|
|
|
|
impl LintPass for PluginAsLibrary {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array![PLUGIN_AS_LIBRARY]
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for PluginAsLibrary {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext, it: &hir::Item) {
|
2015-02-25 05:44:44 -06:00
|
|
|
if cx.sess().plugin_registrar_fn.get().is_some() {
|
|
|
|
// We're compiling a plugin; it's fine to link other plugins.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
match it.node {
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemExternCrate(..) => (),
|
2015-02-25 05:44:44 -06:00
|
|
|
_ => return,
|
|
|
|
};
|
|
|
|
|
2015-11-21 13:39:05 -06:00
|
|
|
let prfn = match cx.sess().cstore.extern_mod_stmt_cnum(it.id) {
|
2015-11-20 09:46:39 -06:00
|
|
|
Some(cnum) => cx.sess().cstore.plugin_registrar_fn(cnum),
|
2015-02-25 05:44:44 -06:00
|
|
|
None => {
|
|
|
|
// Probably means we aren't linking the crate for some reason.
|
|
|
|
//
|
|
|
|
// Not sure if / when this could happen.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-11-20 09:46:39 -06:00
|
|
|
if prfn.is_some() {
|
2015-02-25 05:44:44 -06:00
|
|
|
cx.span_lint(PLUGIN_AS_LIBRARY, it.span,
|
2015-02-28 06:31:14 -06:00
|
|
|
"compiler plugin used as an ordinary library");
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
PRIVATE_NO_MANGLE_FNS,
|
|
|
|
Warn,
|
|
|
|
"functions marked #[no_mangle] should be exported"
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
PRIVATE_NO_MANGLE_STATICS,
|
|
|
|
Warn,
|
|
|
|
"statics marked #[no_mangle] should be exported"
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
NO_MANGLE_CONST_ITEMS,
|
|
|
|
Deny,
|
|
|
|
"const items will not have their symbols exported"
|
|
|
|
}
|
|
|
|
|
2015-12-08 10:48:40 -06:00
|
|
|
declare_lint! {
|
|
|
|
NO_MANGLE_GENERIC_ITEMS,
|
|
|
|
Warn,
|
|
|
|
"generic items must be mangled"
|
|
|
|
}
|
|
|
|
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 05:44:44 -06:00
|
|
|
pub struct InvalidNoMangleItems;
|
|
|
|
|
|
|
|
impl LintPass for InvalidNoMangleItems {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(PRIVATE_NO_MANGLE_FNS,
|
|
|
|
PRIVATE_NO_MANGLE_STATICS,
|
2015-12-08 10:48:40 -06:00
|
|
|
NO_MANGLE_CONST_ITEMS,
|
|
|
|
NO_MANGLE_GENERIC_ITEMS)
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for InvalidNoMangleItems {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext, it: &hir::Item) {
|
2015-02-25 05:44:44 -06:00
|
|
|
match it.node {
|
2015-12-08 10:48:40 -06:00
|
|
|
hir::ItemFn(_, _, _, _, ref generics, _) => {
|
|
|
|
if attr::contains_name(&it.attrs, "no_mangle") {
|
|
|
|
if !cx.access_levels.is_reachable(it.id) {
|
|
|
|
let msg = format!("function {} is marked #[no_mangle], but not exported",
|
|
|
|
it.name);
|
|
|
|
cx.span_lint(PRIVATE_NO_MANGLE_FNS, it.span, &msg);
|
|
|
|
}
|
|
|
|
if generics.is_parameterized() {
|
|
|
|
cx.span_lint(NO_MANGLE_GENERIC_ITEMS,
|
|
|
|
it.span,
|
|
|
|
"generic functions must be mangled");
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
},
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemStatic(..) => {
|
2015-03-18 11:14:54 -05:00
|
|
|
if attr::contains_name(&it.attrs, "no_mangle") &&
|
2015-11-19 05:16:35 -06:00
|
|
|
!cx.access_levels.is_reachable(it.id) {
|
2015-02-25 05:44:44 -06:00
|
|
|
let msg = format!("static {} is marked #[no_mangle], but not exported",
|
2015-09-19 20:50:30 -05:00
|
|
|
it.name);
|
2015-03-07 20:08:48 -06:00
|
|
|
cx.span_lint(PRIVATE_NO_MANGLE_STATICS, it.span, &msg);
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
},
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ItemConst(..) => {
|
2015-03-18 11:14:54 -05:00
|
|
|
if attr::contains_name(&it.attrs, "no_mangle") {
|
2015-02-25 05:44:44 -06:00
|
|
|
// Const items do not refer to a particular location in memory, and therefore
|
|
|
|
// don't have anything to attach a symbol to
|
|
|
|
let msg = "const items should never be #[no_mangle], consider instead using \
|
2015-02-28 06:31:14 -06:00
|
|
|
`pub static`";
|
2015-02-25 05:44:44 -06:00
|
|
|
cx.span_lint(NO_MANGLE_CONST_ITEMS, it.span, msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-13 16:49:10 -05:00
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub struct MutableTransmutes;
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
MUTABLE_TRANSMUTES,
|
|
|
|
Deny,
|
|
|
|
"mutating transmuted &mut T from &T may cause undefined behavior"
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for MutableTransmutes {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(MUTABLE_TRANSMUTES)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-04-13 16:49:10 -05:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for MutableTransmutes {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_expr(&mut self, cx: &LateContext, expr: &hir::Expr) {
|
2015-04-13 16:49:10 -05:00
|
|
|
use syntax::abi::RustIntrinsic;
|
2015-07-31 02:04:06 -05:00
|
|
|
|
2015-04-13 16:49:10 -05:00
|
|
|
let msg = "mutating transmuted &mut T from &T may cause undefined behavior,\
|
|
|
|
consider instead using an UnsafeCell";
|
|
|
|
match get_transmute_from_to(cx, expr) {
|
2015-06-11 18:21:46 -05:00
|
|
|
Some((&ty::TyRef(_, from_mt), &ty::TyRef(_, to_mt))) => {
|
2015-07-31 02:04:06 -05:00
|
|
|
if to_mt.mutbl == hir::Mutability::MutMutable
|
|
|
|
&& from_mt.mutbl == hir::Mutability::MutImmutable {
|
2015-04-13 16:49:10 -05:00
|
|
|
cx.span_lint(MUTABLE_TRANSMUTES, expr.span, msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn get_transmute_from_to<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &hir::Expr)
|
2015-06-11 18:21:46 -05:00
|
|
|
-> Option<(&'tcx ty::TypeVariants<'tcx>, &'tcx ty::TypeVariants<'tcx>)> {
|
2015-04-13 16:49:10 -05:00
|
|
|
match expr.node {
|
2015-09-03 08:29:56 -05:00
|
|
|
hir::ExprPath(..) => (),
|
2015-04-13 16:49:10 -05:00
|
|
|
_ => return None
|
|
|
|
}
|
2016-01-20 13:31:10 -06:00
|
|
|
if let Def::Fn(did) = cx.tcx.resolve_expr(expr) {
|
2015-04-13 16:49:10 -05:00
|
|
|
if !def_id_is_transmute(cx, did) {
|
|
|
|
return None;
|
|
|
|
}
|
2015-06-25 15:42:17 -05:00
|
|
|
let typ = cx.tcx.node_id_to_type(expr.id);
|
2015-04-13 16:49:10 -05:00
|
|
|
match typ.sty {
|
2015-06-11 18:21:46 -05:00
|
|
|
ty::TyBareFn(_, ref bare_fn) if bare_fn.abi == RustIntrinsic => {
|
2015-04-13 16:49:10 -05:00
|
|
|
if let ty::FnConverging(to) = bare_fn.sig.0.output {
|
|
|
|
let from = bare_fn.sig.0.inputs[0];
|
|
|
|
return Some((&from.sty, &to.sty));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2015-09-09 23:40:59 -05:00
|
|
|
fn def_id_is_transmute(cx: &LateContext, def_id: DefId) -> bool {
|
2015-06-25 15:42:17 -05:00
|
|
|
match cx.tcx.lookup_item_type(def_id).ty.sty {
|
2015-06-11 18:21:46 -05:00
|
|
|
ty::TyBareFn(_, ref bfty) if bfty.abi == RustIntrinsic => (),
|
2015-04-13 16:49:10 -05:00
|
|
|
_ => return false
|
|
|
|
}
|
2015-06-25 15:42:17 -05:00
|
|
|
cx.tcx.with_path(def_id, |path| match path.last() {
|
2015-04-13 16:49:10 -05:00
|
|
|
Some(ref last) => last.name().as_str() == "transmute",
|
|
|
|
_ => false
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-25 05:44:44 -06:00
|
|
|
/// Forbids using the `#[feature(...)]` attribute
|
2015-03-30 08:38:44 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 05:44:44 -06:00
|
|
|
pub struct UnstableFeatures;
|
|
|
|
|
2015-02-28 06:31:14 -06:00
|
|
|
declare_lint! {
|
|
|
|
UNSTABLE_FEATURES,
|
|
|
|
Allow,
|
2015-06-17 19:48:16 -05:00
|
|
|
"enabling unstable features (deprecated. do not use)"
|
2015-02-28 06:31:14 -06:00
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
|
|
|
|
impl LintPass for UnstableFeatures {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(UNSTABLE_FEATURES)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
2015-09-09 23:40:59 -05:00
|
|
|
|
2015-09-14 18:35:25 -05:00
|
|
|
impl LateLintPass for UnstableFeatures {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_attribute(&mut self, ctx: &LateContext, attr: &ast::Attribute) {
|
2015-02-25 05:44:44 -06:00
|
|
|
if attr::contains_name(&[attr.node.value.clone()], "feature") {
|
2015-05-18 09:37:05 -05:00
|
|
|
if let Some(items) = attr.node.value.meta_item_list() {
|
|
|
|
for item in items {
|
|
|
|
ctx.span_lint(UNSTABLE_FEATURES, item.span, "unstable feature");
|
|
|
|
}
|
|
|
|
}
|
2015-02-25 05:44:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-29 04:37:19 -05:00
|
|
|
|
|
|
|
/// Lints for attempts to impl Drop on types that have `#[repr(C)]`
|
|
|
|
/// attribute (see issue #24585).
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct DropWithReprExtern;
|
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
DROP_WITH_REPR_EXTERN,
|
|
|
|
Warn,
|
|
|
|
"use of #[repr(C)] on a type that implements Drop"
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for DropWithReprExtern {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(DROP_WITH_REPR_EXTERN)
|
|
|
|
}
|
2015-09-14 18:35:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl LateLintPass for DropWithReprExtern {
|
2015-09-09 23:40:59 -05:00
|
|
|
fn check_crate(&mut self, ctx: &LateContext, _: &hir::Crate) {
|
2015-09-26 14:25:49 -05:00
|
|
|
let drop_trait = match ctx.tcx.lang_items.drop_trait() {
|
|
|
|
Some(id) => ctx.tcx.lookup_trait_def(id), None => { return }
|
|
|
|
};
|
|
|
|
drop_trait.for_each_impl(ctx.tcx, |drop_impl_did| {
|
|
|
|
if !drop_impl_did.is_local() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let dtor_self_type = ctx.tcx.lookup_item_type(drop_impl_did).ty;
|
2015-04-29 04:37:19 -05:00
|
|
|
|
|
|
|
match dtor_self_type.sty {
|
2015-07-20 14:13:36 -05:00
|
|
|
ty::TyEnum(self_type_def, _) |
|
|
|
|
ty::TyStruct(self_type_def, _) => {
|
|
|
|
let self_type_did = self_type_def.did;
|
2015-06-25 15:42:17 -05:00
|
|
|
let hints = ctx.tcx.lookup_repr_hints(self_type_did);
|
2015-09-03 08:29:56 -05:00
|
|
|
if hints.iter().any(|attr| *attr == attr::ReprExtern) &&
|
2015-08-25 13:52:15 -05:00
|
|
|
self_type_def.dtor_kind().has_drop_flag() {
|
2015-04-29 04:37:19 -05:00
|
|
|
let drop_impl_span = ctx.tcx.map.def_id_span(drop_impl_did,
|
|
|
|
codemap::DUMMY_SP);
|
|
|
|
let self_defn_span = ctx.tcx.map.def_id_span(self_type_did,
|
|
|
|
codemap::DUMMY_SP);
|
2015-10-16 15:44:26 -05:00
|
|
|
ctx.span_lint_note(DROP_WITH_REPR_EXTERN,
|
|
|
|
drop_impl_span,
|
|
|
|
"implementing Drop adds hidden state to types, \
|
|
|
|
possibly conflicting with `#[repr(C)]`",
|
|
|
|
self_defn_span,
|
|
|
|
"the `#[repr(C)]` attribute is attached here");
|
2015-04-29 04:37:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
2015-09-26 14:25:49 -05:00
|
|
|
})
|
2015-04-29 04:37:19 -05:00
|
|
|
}
|
|
|
|
}
|