2017-08-09 07:30:56 +00:00
|
|
|
//! This module contains functions for retrieve the original AST from lowered
|
|
|
|
//! `hir`.
|
2016-06-29 19:23:21 +00:00
|
|
|
|
2018-08-01 20:48:41 +00:00
|
|
|
#![deny(clippy::missing_docs_in_private_items)]
|
2016-08-23 17:39:36 +00:00
|
|
|
|
2021-02-25 10:25:22 +00:00
|
|
|
use crate::{is_expn_of, match_def_path, paths};
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2020-03-01 03:23:33 +00:00
|
|
|
use rustc_ast::ast;
|
2020-01-06 16:39:50 +00:00
|
|
|
use rustc_hir as hir;
|
2020-10-23 20:16:59 +00:00
|
|
|
use rustc_hir::{BorrowKind, Expr, ExprKind, StmtKind, UnOp};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::LateContext;
|
2021-02-11 14:04:38 +00:00
|
|
|
use rustc_span::source_map::Span;
|
2016-06-29 19:23:21 +00:00
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Converts a hir binary operator to the corresponding `ast` type.
|
2019-09-18 06:37:41 +00:00
|
|
|
#[must_use]
|
2018-07-12 07:50:09 +00:00
|
|
|
pub fn binop(op: hir::BinOpKind) -> ast::BinOpKind {
|
2016-06-29 19:23:21 +00:00
|
|
|
match op {
|
2018-07-12 07:30:57 +00:00
|
|
|
hir::BinOpKind::Eq => ast::BinOpKind::Eq,
|
|
|
|
hir::BinOpKind::Ge => ast::BinOpKind::Ge,
|
|
|
|
hir::BinOpKind::Gt => ast::BinOpKind::Gt,
|
|
|
|
hir::BinOpKind::Le => ast::BinOpKind::Le,
|
|
|
|
hir::BinOpKind::Lt => ast::BinOpKind::Lt,
|
|
|
|
hir::BinOpKind::Ne => ast::BinOpKind::Ne,
|
|
|
|
hir::BinOpKind::Or => ast::BinOpKind::Or,
|
|
|
|
hir::BinOpKind::Add => ast::BinOpKind::Add,
|
|
|
|
hir::BinOpKind::And => ast::BinOpKind::And,
|
|
|
|
hir::BinOpKind::BitAnd => ast::BinOpKind::BitAnd,
|
|
|
|
hir::BinOpKind::BitOr => ast::BinOpKind::BitOr,
|
|
|
|
hir::BinOpKind::BitXor => ast::BinOpKind::BitXor,
|
|
|
|
hir::BinOpKind::Div => ast::BinOpKind::Div,
|
|
|
|
hir::BinOpKind::Mul => ast::BinOpKind::Mul,
|
|
|
|
hir::BinOpKind::Rem => ast::BinOpKind::Rem,
|
|
|
|
hir::BinOpKind::Shl => ast::BinOpKind::Shl,
|
|
|
|
hir::BinOpKind::Shr => ast::BinOpKind::Shr,
|
|
|
|
hir::BinOpKind::Sub => ast::BinOpKind::Sub,
|
2016-06-29 19:23:21 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-29 21:16:44 +00:00
|
|
|
|
|
|
|
/// Represent a range akin to `ast::ExprKind::Range`.
|
|
|
|
#[derive(Debug, Copy, Clone)]
|
|
|
|
pub struct Range<'a> {
|
2016-08-23 17:39:36 +00:00
|
|
|
/// The lower bound of the range, or `None` for ranges such as `..X`.
|
2019-12-27 07:12:26 +00:00
|
|
|
pub start: Option<&'a hir::Expr<'a>>,
|
2016-08-23 17:39:36 +00:00
|
|
|
/// The upper bound of the range, or `None` for ranges such as `X..`.
|
2019-12-27 07:12:26 +00:00
|
|
|
pub end: Option<&'a hir::Expr<'a>>,
|
2016-08-23 17:39:36 +00:00
|
|
|
/// Whether the interval is open or closed.
|
2016-06-29 21:16:44 +00:00
|
|
|
pub limits: ast::RangeLimits,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Higher a `hir` range to something similar to `ast::ExprKind::Range`.
|
2020-08-04 13:24:13 +00:00
|
|
|
pub fn range<'a>(expr: &'a hir::Expr<'_>) -> Option<Range<'a>> {
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Finds the field named `name` in the field. Always return `Some` for
|
2018-10-08 00:07:10 +00:00
|
|
|
/// convenience.
|
2021-03-15 21:36:07 +00:00
|
|
|
fn get_field<'c>(name: &str, fields: &'c [hir::ExprField<'_>]) -> Option<&'c hir::Expr<'c>> {
|
2019-05-17 21:53:54 +00:00
|
|
|
let expr = &fields.iter().find(|field| field.ident.name.as_str() == name)?.expr;
|
2018-10-08 00:07:10 +00:00
|
|
|
|
|
|
|
Some(expr)
|
|
|
|
}
|
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
match expr.kind {
|
2020-08-28 14:10:16 +00:00
|
|
|
hir::ExprKind::Call(ref path, ref args)
|
|
|
|
if matches!(
|
|
|
|
path.kind,
|
|
|
|
hir::ExprKind::Path(hir::QPath::LangItem(hir::LangItem::RangeInclusiveNew, _))
|
|
|
|
) =>
|
|
|
|
{
|
|
|
|
Some(Range {
|
|
|
|
start: Some(&args[0]),
|
|
|
|
end: Some(&args[1]),
|
|
|
|
limits: ast::RangeLimits::Closed,
|
|
|
|
})
|
|
|
|
},
|
|
|
|
hir::ExprKind::Struct(ref path, ref fields, None) => match path {
|
|
|
|
hir::QPath::LangItem(hir::LangItem::RangeFull, _) => Some(Range {
|
|
|
|
start: None,
|
|
|
|
end: None,
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
}),
|
|
|
|
hir::QPath::LangItem(hir::LangItem::RangeFrom, _) => Some(Range {
|
|
|
|
start: Some(get_field("start", fields)?),
|
|
|
|
end: None,
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
}),
|
|
|
|
hir::QPath::LangItem(hir::LangItem::Range, _) => Some(Range {
|
|
|
|
start: Some(get_field("start", fields)?),
|
|
|
|
end: Some(get_field("end", fields)?),
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
}),
|
|
|
|
hir::QPath::LangItem(hir::LangItem::RangeToInclusive, _) => Some(Range {
|
|
|
|
start: None,
|
|
|
|
end: Some(get_field("end", fields)?),
|
|
|
|
limits: ast::RangeLimits::Closed,
|
|
|
|
}),
|
|
|
|
hir::QPath::LangItem(hir::LangItem::RangeTo, _) => Some(Range {
|
|
|
|
start: None,
|
|
|
|
end: Some(get_field("end", fields)?),
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
}),
|
|
|
|
_ => None,
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-06-29 21:16:44 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-20 10:21:30 +00:00
|
|
|
/// Checks if a `let` statement is from a `for` loop desugaring.
|
2019-12-27 07:12:26 +00:00
|
|
|
pub fn is_from_for_desugar(local: &hir::Local<'_>) -> bool {
|
2017-08-18 14:12:00 +00:00
|
|
|
// This will detect plain for-loops without an actual variable binding:
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// for x in some_vec {
|
2018-11-27 20:14:15 +00:00
|
|
|
// // do stuff
|
2017-08-18 14:12:00 +00:00
|
|
|
// }
|
|
|
|
// ```
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2019-01-20 10:21:30 +00:00
|
|
|
if let Some(ref expr) = local.init;
|
2019-09-27 15:16:06 +00:00
|
|
|
if let hir::ExprKind::Match(_, _, hir::MatchSource::ForLoopDesugar) = expr.kind;
|
2017-10-23 19:18:02 +00:00
|
|
|
then {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-08-18 14:07:39 +00:00
|
|
|
|
|
|
|
// This detects a variable binding in for loop to avoid `let_unit_value`
|
|
|
|
// lint (see issue #1964).
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// for _ in vec![()] {
|
2018-11-27 20:14:15 +00:00
|
|
|
// // anything
|
2017-08-18 14:07:39 +00:00
|
|
|
// }
|
|
|
|
// ```
|
2019-01-20 10:21:30 +00:00
|
|
|
if let hir::LocalSource::ForLoopDesugar = local.source {
|
|
|
|
return true;
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2017-08-18 14:07:39 +00:00
|
|
|
|
2016-06-29 22:08:43 +00:00
|
|
|
false
|
|
|
|
}
|
|
|
|
|
2021-02-11 14:04:38 +00:00
|
|
|
/// Recover the essential nodes of a desugared for loop as well as the entire span:
|
|
|
|
/// `for pat in arg { body }` becomes `(pat, arg, body)`. Return `(pat, arg, body, span)`.
|
2019-12-27 07:12:26 +00:00
|
|
|
pub fn for_loop<'tcx>(
|
|
|
|
expr: &'tcx hir::Expr<'tcx>,
|
2021-02-11 14:04:38 +00:00
|
|
|
) -> Option<(&hir::Pat<'_>, &'tcx hir::Expr<'tcx>, &'tcx hir::Expr<'tcx>, Span)> {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let hir::ExprKind::Match(ref iterexpr, ref arms, hir::MatchSource::ForLoopDesugar) = expr.kind;
|
|
|
|
if let hir::ExprKind::Call(_, ref iterargs) = iterexpr.kind;
|
2017-10-23 19:18:02 +00:00
|
|
|
if iterargs.len() == 1 && arms.len() == 1 && arms[0].guard.is_none();
|
2021-01-22 00:48:17 +00:00
|
|
|
if let hir::ExprKind::Loop(ref block, ..) = arms[0].body.kind;
|
2017-10-23 19:18:02 +00:00
|
|
|
if block.expr.is_none();
|
|
|
|
if let [ _, _, ref let_stmt, ref body ] = *block.stmts;
|
2019-09-27 15:16:06 +00:00
|
|
|
if let hir::StmtKind::Local(ref local) = let_stmt.kind;
|
|
|
|
if let hir::StmtKind::Expr(ref expr) = body.kind;
|
2017-10-23 19:18:02 +00:00
|
|
|
then {
|
2021-02-11 14:04:38 +00:00
|
|
|
return Some((&*local.pat, &iterargs[0], expr, arms[0].span));
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-29 22:08:43 +00:00
|
|
|
None
|
|
|
|
}
|
2016-06-30 17:49:34 +00:00
|
|
|
|
2019-07-06 17:35:08 +00:00
|
|
|
/// Recover the essential nodes of a desugared while loop:
|
|
|
|
/// `while cond { body }` becomes `(cond, body)`.
|
2019-12-27 07:12:26 +00:00
|
|
|
pub fn while_loop<'tcx>(expr: &'tcx hir::Expr<'tcx>) -> Option<(&'tcx hir::Expr<'tcx>, &'tcx hir::Expr<'tcx>)> {
|
2019-07-06 17:35:08 +00:00
|
|
|
if_chain! {
|
2021-01-30 17:06:34 +00:00
|
|
|
if let hir::ExprKind::Loop(hir::Block { expr: Some(expr), .. }, _, hir::LoopSource::While, _) = &expr.kind;
|
2019-09-27 15:16:06 +00:00
|
|
|
if let hir::ExprKind::Match(cond, arms, hir::MatchSource::WhileDesugar) = &expr.kind;
|
|
|
|
if let hir::ExprKind::DropTemps(cond) = &cond.kind;
|
2020-12-06 14:01:03 +00:00
|
|
|
if let [hir::Arm { body, .. }, ..] = &arms[..];
|
2019-07-06 17:35:08 +00:00
|
|
|
then {
|
|
|
|
return Some((cond, body));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2016-06-30 17:49:34 +00:00
|
|
|
/// Represent the pre-expansion arguments of a `vec!` invocation.
|
|
|
|
pub enum VecArgs<'a> {
|
|
|
|
/// `vec![elem; len]`
|
2019-12-27 07:12:26 +00:00
|
|
|
Repeat(&'a hir::Expr<'a>, &'a hir::Expr<'a>),
|
2016-06-30 17:49:34 +00:00
|
|
|
/// `vec![a, b, c]`
|
2019-12-27 07:12:26 +00:00
|
|
|
Vec(&'a [hir::Expr<'a>]),
|
2016-06-30 17:49:34 +00:00
|
|
|
}
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
/// Returns the arguments of the `vec!` macro if this expression was expanded
|
|
|
|
/// from `vec!`.
|
2020-06-25 20:41:36 +00:00
|
|
|
pub fn vec_macro<'e>(cx: &LateContext<'_>, expr: &'e hir::Expr<'_>) -> Option<VecArgs<'e>> {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let hir::ExprKind::Call(ref fun, ref args) = expr.kind;
|
2019-10-10 18:00:43 +00:00
|
|
|
if let hir::ExprKind::Path(ref qpath) = fun.kind;
|
2019-05-17 21:53:54 +00:00
|
|
|
if is_expn_of(fun.span, "vec").is_some();
|
2020-06-26 02:55:23 +00:00
|
|
|
if let Some(fun_def_id) = cx.qpath_res(qpath, fun.hir_id).opt_def_id();
|
2017-10-23 19:18:02 +00:00
|
|
|
then {
|
2019-05-17 21:53:54 +00:00
|
|
|
return if match_def_path(cx, fun_def_id, &paths::VEC_FROM_ELEM) && args.len() == 2 {
|
2017-10-23 19:18:02 +00:00
|
|
|
// `vec![elem; size]` case
|
|
|
|
Some(VecArgs::Repeat(&args[0], &args[1]))
|
|
|
|
}
|
2019-05-17 21:53:54 +00:00
|
|
|
else if match_def_path(cx, fun_def_id, &paths::SLICE_INTO_VEC) && args.len() == 1 {
|
2017-10-23 19:18:02 +00:00
|
|
|
// `vec![a, b, c]` case
|
|
|
|
if_chain! {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let hir::ExprKind::Box(ref boxed) = args[0].kind;
|
|
|
|
if let hir::ExprKind::Array(ref args) = boxed.kind;
|
2017-10-23 19:18:02 +00:00
|
|
|
then {
|
|
|
|
return Some(VecArgs::Vec(&*args));
|
|
|
|
}
|
|
|
|
}
|
2017-11-04 19:55:56 +00:00
|
|
|
|
2017-10-23 19:18:02 +00:00
|
|
|
None
|
|
|
|
}
|
2020-04-01 18:14:05 +00:00
|
|
|
else if match_def_path(cx, fun_def_id, &paths::VEC_NEW) && args.is_empty() {
|
|
|
|
Some(VecArgs::Vec(&[]))
|
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
else {
|
|
|
|
None
|
|
|
|
};
|
2016-06-30 17:49:34 +00:00
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2016-06-30 17:49:34 +00:00
|
|
|
|
|
|
|
None
|
|
|
|
}
|
2020-10-23 20:16:59 +00:00
|
|
|
|
|
|
|
/// Extract args from an assert-like macro.
|
|
|
|
/// Currently working with:
|
|
|
|
/// - `assert!`, `assert_eq!` and `assert_ne!`
|
|
|
|
/// - `debug_assert!`, `debug_assert_eq!` and `debug_assert_ne!`
|
|
|
|
/// For example:
|
|
|
|
/// `assert!(expr)` will return Some([expr])
|
|
|
|
/// `debug_assert_eq!(a, b)` will return Some([a, b])
|
|
|
|
pub fn extract_assert_macro_args<'tcx>(e: &'tcx Expr<'tcx>) -> Option<Vec<&'tcx Expr<'tcx>>> {
|
|
|
|
/// Try to match the AST for a pattern that contains a match, for example when two args are
|
|
|
|
/// compared
|
|
|
|
fn ast_matchblock(matchblock_expr: &'tcx Expr<'tcx>) -> Option<Vec<&Expr<'_>>> {
|
|
|
|
if_chain! {
|
|
|
|
if let ExprKind::Match(ref headerexpr, _, _) = &matchblock_expr.kind;
|
|
|
|
if let ExprKind::Tup([lhs, rhs]) = &headerexpr.kind;
|
|
|
|
if let ExprKind::AddrOf(BorrowKind::Ref, _, lhs) = lhs.kind;
|
|
|
|
if let ExprKind::AddrOf(BorrowKind::Ref, _, rhs) = rhs.kind;
|
|
|
|
then {
|
|
|
|
return Some(vec![lhs, rhs]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
if let ExprKind::Block(ref block, _) = e.kind {
|
|
|
|
if block.stmts.len() == 1 {
|
2021-01-01 18:38:11 +00:00
|
|
|
if let StmtKind::Semi(ref matchexpr) = block.stmts.get(0)?.kind {
|
2020-10-23 20:16:59 +00:00
|
|
|
// macros with unique arg: `{debug_}assert!` (e.g., `debug_assert!(some_condition)`)
|
|
|
|
if_chain! {
|
2021-01-01 18:38:11 +00:00
|
|
|
if let ExprKind::If(ref clause, _, _) = matchexpr.kind;
|
2021-02-09 08:15:53 +00:00
|
|
|
if let ExprKind::Unary(UnOp::Not, condition) = clause.kind;
|
2020-10-23 20:16:59 +00:00
|
|
|
then {
|
|
|
|
return Some(vec![condition]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// debug macros with two args: `debug_assert_{ne, eq}` (e.g., `assert_ne!(a, b)`)
|
|
|
|
if_chain! {
|
|
|
|
if let ExprKind::Block(ref matchblock,_) = matchexpr.kind;
|
|
|
|
if let Some(ref matchblock_expr) = matchblock.expr;
|
|
|
|
then {
|
|
|
|
return ast_matchblock(matchblock_expr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if let Some(matchblock_expr) = block.expr {
|
|
|
|
// macros with two args: `assert_{ne, eq}` (e.g., `assert_ne!(a, b)`)
|
|
|
|
return ast_matchblock(&matchblock_expr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|