rust/clippy_lints/src/utils/usage.rs

75 lines
2.2 KiB
Rust
Raw Normal View History

use rustc::hir::def::Res;
use rustc::hir::*;
2019-01-30 19:15:29 -06:00
use rustc::lint::LateContext;
2019-11-28 09:12:05 -06:00
use rustc_typeck::expr_use_visitor::*;
use rustc::ty;
use rustc_data_structures::fx::FxHashSet;
2019-01-30 19:15:29 -06:00
/// Returns a set of mutated local variable IDs, or `None` if mutations could not be determined.
pub fn mutated_variables<'a, 'tcx>(expr: &'tcx Expr, cx: &'a LateContext<'a, 'tcx>) -> Option<FxHashSet<HirId>> {
let mut delegate = MutVarsDelegate {
used_mutably: FxHashSet::default(),
skip: false,
};
let def_id = def_id::DefId::local(expr.hir_id.owner);
2019-06-02 11:58:11 -05:00
ExprUseVisitor::new(
&mut delegate,
cx.tcx,
def_id,
cx.param_env,
cx.tables,
)
.walk_expr(expr);
if delegate.skip {
return None;
}
Some(delegate.used_mutably)
}
pub fn is_potentially_mutated<'a, 'tcx>(variable: &'tcx Path, expr: &'tcx Expr, cx: &'a LateContext<'a, 'tcx>) -> bool {
if let Res::Local(id) = variable.res {
mutated_variables(expr, cx).map_or(true, |mutated| mutated.contains(&id))
} else {
2019-06-23 21:00:05 -05:00
true
}
}
struct MutVarsDelegate {
2019-03-01 06:26:06 -06:00
used_mutably: FxHashSet<HirId>,
skip: bool,
}
impl<'tcx> MutVarsDelegate {
#[allow(clippy::similar_names)]
2018-07-23 06:01:12 -05:00
fn update(&mut self, cat: &'tcx Categorization<'_>) {
match *cat {
Categorization::Local(id) => {
self.used_mutably.insert(id);
},
Categorization::Upvar(_) => {
//FIXME: This causes false negatives. We can't get the `NodeId` from
//`Categorization::Upvar(_)`. So we search for any `Upvar`s in the
//`while`-body, not just the ones in the condition.
self.skip = true
},
Categorization::Deref(ref cmt, _) | Categorization::Interior(ref cmt, _) => self.update(&cmt.cat),
_ => {},
}
}
}
impl<'tcx> Delegate<'tcx> for MutVarsDelegate {
2019-11-28 09:09:02 -06:00
fn consume(&mut self, _: &Place<'tcx>, _: ConsumeMode) {}
2019-11-28 09:09:02 -06:00
fn borrow(&mut self, cmt: &Place<'tcx>, bk: ty::BorrowKind) {
if let ty::BorrowKind::MutBorrow = bk {
self.update(&cmt.cat)
}
}
2019-11-28 09:09:02 -06:00
fn mutate(&mut self, cmt: &Place<'tcx>) {
self.update(&cmt.cat)
}
}