2021-03-12 08:30:50 -06:00
|
|
|
use super::NEVER_LOOP;
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint;
|
2021-03-12 08:30:50 -06:00
|
|
|
use rustc_hir::{Block, Expr, ExprKind, HirId, InlineAsmOperand, Stmt, StmtKind};
|
|
|
|
use rustc_lint::LateContext;
|
|
|
|
use std::iter::{once, Iterator};
|
|
|
|
|
|
|
|
pub(super) fn check(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2021-04-08 10:50:13 -05:00
|
|
|
if let ExprKind::Loop(block, _, _, _) = expr.kind {
|
2021-03-12 08:30:50 -06:00
|
|
|
match never_loop_block(block, expr.hir_id) {
|
|
|
|
NeverLoopResult::AlwaysBreak => span_lint(cx, NEVER_LOOP, expr.span, "this loop never actually loops"),
|
|
|
|
NeverLoopResult::MayContinueMainLoop | NeverLoopResult::Otherwise => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum NeverLoopResult {
|
|
|
|
// A break/return always get triggered but not necessarily for the main loop.
|
|
|
|
AlwaysBreak,
|
|
|
|
// A continue may occur for the main loop.
|
|
|
|
MayContinueMainLoop,
|
|
|
|
Otherwise,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[must_use]
|
|
|
|
fn absorb_break(arg: &NeverLoopResult) -> NeverLoopResult {
|
|
|
|
match *arg {
|
|
|
|
NeverLoopResult::AlwaysBreak | NeverLoopResult::Otherwise => NeverLoopResult::Otherwise,
|
|
|
|
NeverLoopResult::MayContinueMainLoop => NeverLoopResult::MayContinueMainLoop,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Combine two results for parts that are called in order.
|
|
|
|
#[must_use]
|
|
|
|
fn combine_seq(first: NeverLoopResult, second: NeverLoopResult) -> NeverLoopResult {
|
|
|
|
match first {
|
|
|
|
NeverLoopResult::AlwaysBreak | NeverLoopResult::MayContinueMainLoop => first,
|
|
|
|
NeverLoopResult::Otherwise => second,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Combine two results where both parts are called but not necessarily in order.
|
|
|
|
#[must_use]
|
|
|
|
fn combine_both(left: NeverLoopResult, right: NeverLoopResult) -> NeverLoopResult {
|
|
|
|
match (left, right) {
|
|
|
|
(NeverLoopResult::MayContinueMainLoop, _) | (_, NeverLoopResult::MayContinueMainLoop) => {
|
|
|
|
NeverLoopResult::MayContinueMainLoop
|
|
|
|
},
|
|
|
|
(NeverLoopResult::AlwaysBreak, _) | (_, NeverLoopResult::AlwaysBreak) => NeverLoopResult::AlwaysBreak,
|
|
|
|
(NeverLoopResult::Otherwise, NeverLoopResult::Otherwise) => NeverLoopResult::Otherwise,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Combine two results where only one of the part may have been executed.
|
|
|
|
#[must_use]
|
|
|
|
fn combine_branches(b1: NeverLoopResult, b2: NeverLoopResult) -> NeverLoopResult {
|
|
|
|
match (b1, b2) {
|
|
|
|
(NeverLoopResult::AlwaysBreak, NeverLoopResult::AlwaysBreak) => NeverLoopResult::AlwaysBreak,
|
|
|
|
(NeverLoopResult::MayContinueMainLoop, _) | (_, NeverLoopResult::MayContinueMainLoop) => {
|
|
|
|
NeverLoopResult::MayContinueMainLoop
|
|
|
|
},
|
|
|
|
(NeverLoopResult::Otherwise, _) | (_, NeverLoopResult::Otherwise) => NeverLoopResult::Otherwise,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn never_loop_block(block: &Block<'_>, main_loop_id: HirId) -> NeverLoopResult {
|
|
|
|
let stmts = block.stmts.iter().map(stmt_to_expr);
|
|
|
|
let expr = once(block.expr.as_deref());
|
|
|
|
let mut iter = stmts.chain(expr).flatten();
|
|
|
|
never_loop_expr_seq(&mut iter, main_loop_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn never_loop_expr_seq<'a, T: Iterator<Item = &'a Expr<'a>>>(es: &mut T, main_loop_id: HirId) -> NeverLoopResult {
|
|
|
|
es.map(|e| never_loop_expr(e, main_loop_id))
|
|
|
|
.fold(NeverLoopResult::Otherwise, combine_seq)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn stmt_to_expr<'tcx>(stmt: &Stmt<'tcx>) -> Option<&'tcx Expr<'tcx>> {
|
|
|
|
match stmt.kind {
|
2021-04-08 10:50:13 -05:00
|
|
|
StmtKind::Semi(e, ..) | StmtKind::Expr(e, ..) => Some(e),
|
|
|
|
StmtKind::Local(local) => local.init.as_deref(),
|
2021-03-25 13:29:11 -05:00
|
|
|
StmtKind::Item(..) => None,
|
2021-03-12 08:30:50 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn never_loop_expr(expr: &Expr<'_>, main_loop_id: HirId) -> NeverLoopResult {
|
|
|
|
match expr.kind {
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Box(e)
|
|
|
|
| ExprKind::Unary(_, e)
|
|
|
|
| ExprKind::Cast(e, _)
|
|
|
|
| ExprKind::Type(e, _)
|
|
|
|
| ExprKind::Field(e, _)
|
|
|
|
| ExprKind::AddrOf(_, _, e)
|
|
|
|
| ExprKind::Struct(_, _, Some(e))
|
|
|
|
| ExprKind::Repeat(e, _)
|
|
|
|
| ExprKind::DropTemps(e) => never_loop_expr(e, main_loop_id),
|
|
|
|
ExprKind::Array(es) | ExprKind::MethodCall(_, _, es, _) | ExprKind::Tup(es) => {
|
2021-03-12 08:30:50 -06:00
|
|
|
never_loop_expr_all(&mut es.iter(), main_loop_id)
|
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Call(e, es) => never_loop_expr_all(&mut once(e).chain(es.iter()), main_loop_id),
|
|
|
|
ExprKind::Binary(_, e1, e2)
|
|
|
|
| ExprKind::Assign(e1, e2, _)
|
|
|
|
| ExprKind::AssignOp(_, e1, e2)
|
2021-04-22 04:31:13 -05:00
|
|
|
| ExprKind::Index(e1, e2) => never_loop_expr_all(&mut [e1, e2].iter().copied(), main_loop_id),
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Loop(b, _, _, _) => {
|
2021-03-12 08:30:50 -06:00
|
|
|
// Break can come from the inner loop so remove them.
|
|
|
|
absorb_break(&never_loop_block(b, main_loop_id))
|
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::If(e, e2, ref e3) => {
|
2021-03-12 08:30:50 -06:00
|
|
|
let e1 = never_loop_expr(e, main_loop_id);
|
|
|
|
let e2 = never_loop_expr(e2, main_loop_id);
|
|
|
|
let e3 = e3
|
|
|
|
.as_ref()
|
|
|
|
.map_or(NeverLoopResult::Otherwise, |e| never_loop_expr(e, main_loop_id));
|
|
|
|
combine_seq(e1, combine_branches(e2, e3))
|
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Match(e, arms, _) => {
|
2021-03-12 08:30:50 -06:00
|
|
|
let e = never_loop_expr(e, main_loop_id);
|
|
|
|
if arms.is_empty() {
|
|
|
|
e
|
|
|
|
} else {
|
|
|
|
let arms = never_loop_expr_branch(&mut arms.iter().map(|a| &*a.body), main_loop_id);
|
|
|
|
combine_seq(e, arms)
|
|
|
|
}
|
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Block(b, _) => never_loop_block(b, main_loop_id),
|
2021-03-12 08:30:50 -06:00
|
|
|
ExprKind::Continue(d) => {
|
|
|
|
let id = d
|
|
|
|
.target_id
|
|
|
|
.expect("target ID can only be missing in the presence of compilation errors");
|
|
|
|
if id == main_loop_id {
|
|
|
|
NeverLoopResult::MayContinueMainLoop
|
|
|
|
} else {
|
|
|
|
NeverLoopResult::AlwaysBreak
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ExprKind::Break(_, ref e) | ExprKind::Ret(ref e) => e.as_ref().map_or(NeverLoopResult::AlwaysBreak, |e| {
|
|
|
|
combine_seq(never_loop_expr(e, main_loop_id), NeverLoopResult::AlwaysBreak)
|
|
|
|
}),
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::InlineAsm(asm) => asm
|
2021-03-12 08:30:50 -06:00
|
|
|
.operands
|
|
|
|
.iter()
|
|
|
|
.map(|(o, _)| match o {
|
|
|
|
InlineAsmOperand::In { expr, .. }
|
|
|
|
| InlineAsmOperand::InOut { expr, .. }
|
|
|
|
| InlineAsmOperand::Sym { expr } => never_loop_expr(expr, main_loop_id),
|
|
|
|
InlineAsmOperand::Out { expr, .. } => never_loop_expr_all(&mut expr.iter(), main_loop_id),
|
|
|
|
InlineAsmOperand::SplitInOut { in_expr, out_expr, .. } => {
|
|
|
|
never_loop_expr_all(&mut once(in_expr).chain(out_expr.iter()), main_loop_id)
|
|
|
|
},
|
2021-04-05 23:50:55 -05:00
|
|
|
InlineAsmOperand::Const { .. } => NeverLoopResult::Otherwise,
|
2021-03-12 08:30:50 -06:00
|
|
|
})
|
|
|
|
.fold(NeverLoopResult::Otherwise, combine_both),
|
|
|
|
ExprKind::Struct(_, _, None)
|
|
|
|
| ExprKind::Yield(_, _)
|
|
|
|
| ExprKind::Closure(_, _, _, _, _)
|
|
|
|
| ExprKind::LlvmInlineAsm(_)
|
|
|
|
| ExprKind::Path(_)
|
|
|
|
| ExprKind::ConstBlock(_)
|
|
|
|
| ExprKind::Lit(_)
|
|
|
|
| ExprKind::Err => NeverLoopResult::Otherwise,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn never_loop_expr_all<'a, T: Iterator<Item = &'a Expr<'a>>>(es: &mut T, main_loop_id: HirId) -> NeverLoopResult {
|
|
|
|
es.map(|e| never_loop_expr(e, main_loop_id))
|
|
|
|
.fold(NeverLoopResult::Otherwise, combine_both)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn never_loop_expr_branch<'a, T: Iterator<Item = &'a Expr<'a>>>(e: &mut T, main_loop_id: HirId) -> NeverLoopResult {
|
|
|
|
e.map(|e| never_loop_expr(e, main_loop_id))
|
|
|
|
.fold(NeverLoopResult::AlwaysBreak, combine_branches)
|
|
|
|
}
|