2017-08-09 02:30:56 -05:00
|
|
|
//! This module contains functions for retrieve the original AST from lowered
|
|
|
|
//! `hir`.
|
2016-06-29 14:23:21 -05:00
|
|
|
|
2018-08-01 15:48:41 -05:00
|
|
|
#![deny(clippy::missing_docs_in_private_items)]
|
2016-08-23 12:39:36 -05:00
|
|
|
|
2019-05-14 03:06:21 -05:00
|
|
|
use crate::utils::{is_expn_of, match_def_path, match_qpath, paths, resolve_node};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::lint::LateContext;
|
|
|
|
use rustc::{hir, ty};
|
|
|
|
use syntax::ast;
|
2016-06-29 14:23:21 -05:00
|
|
|
|
2019-01-30 19:15:29 -06:00
|
|
|
/// Converts a hir binary operator to the corresponding `ast` type.
|
2018-07-12 02:50:09 -05:00
|
|
|
pub fn binop(op: hir::BinOpKind) -> ast::BinOpKind {
|
2016-06-29 14:23:21 -05:00
|
|
|
match op {
|
2018-07-12 02:30:57 -05: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 14:23:21 -05:00
|
|
|
}
|
|
|
|
}
|
2016-06-29 16:16:44 -05:00
|
|
|
|
|
|
|
/// Represent a range akin to `ast::ExprKind::Range`.
|
|
|
|
#[derive(Debug, Copy, Clone)]
|
|
|
|
pub struct Range<'a> {
|
2016-08-23 12:39:36 -05:00
|
|
|
/// The lower bound of the range, or `None` for ranges such as `..X`.
|
2016-06-29 16:16:44 -05:00
|
|
|
pub start: Option<&'a hir::Expr>,
|
2016-08-23 12:39:36 -05:00
|
|
|
/// The upper bound of the range, or `None` for ranges such as `X..`.
|
2016-06-29 16:16:44 -05:00
|
|
|
pub end: Option<&'a hir::Expr>,
|
2016-08-23 12:39:36 -05:00
|
|
|
/// Whether the interval is open or closed.
|
2016-06-29 16:16:44 -05:00
|
|
|
pub limits: ast::RangeLimits,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Higher a `hir` range to something similar to `ast::ExprKind::Range`.
|
2018-05-08 10:16:01 -05:00
|
|
|
pub fn range<'a, 'b, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'b hir::Expr) -> Option<Range<'b>> {
|
2019-01-30 19:15:29 -06:00
|
|
|
/// Finds the field named `name` in the field. Always return `Some` for
|
2018-10-07 19:07:10 -05:00
|
|
|
/// convenience.
|
2019-05-17 16:53:54 -05:00
|
|
|
fn get_field<'c>(name: &str, fields: &'c [hir::Field]) -> Option<&'c hir::Expr> {
|
|
|
|
let expr = &fields.iter().find(|field| field.ident.name.as_str() == name)?.expr;
|
2018-10-07 19:07:10 -05:00
|
|
|
|
|
|
|
Some(expr)
|
|
|
|
}
|
|
|
|
|
2019-09-26 04:03:36 -05:00
|
|
|
let def_path = match cx.tables.expr_ty(expr).kind {
|
2018-08-22 16:34:52 -05:00
|
|
|
ty::Adt(def, _) => cx.tcx.def_path(def.did),
|
2018-05-08 10:16:01 -05:00
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
|
|
|
|
// sanity checks for std::ops::RangeXXXX
|
|
|
|
if def_path.data.len() != 3 {
|
|
|
|
return None;
|
|
|
|
}
|
2019-05-21 23:58:27 -05:00
|
|
|
if def_path.data.get(0)?.data.as_interned_str().as_symbol() != sym!(ops) {
|
2018-05-08 10:16:01 -05:00
|
|
|
return None;
|
|
|
|
}
|
2019-05-21 23:58:27 -05:00
|
|
|
if def_path.data.get(1)?.data.as_interned_str().as_symbol() != sym!(range) {
|
2018-05-08 10:16:01 -05:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let type_name = def_path.data.get(2)?.data.as_interned_str();
|
|
|
|
let range_types = [
|
|
|
|
"RangeFrom",
|
|
|
|
"RangeFull",
|
|
|
|
"RangeInclusive",
|
|
|
|
"Range",
|
|
|
|
"RangeTo",
|
|
|
|
"RangeToInclusive",
|
|
|
|
];
|
|
|
|
if !range_types.contains(&&*type_name.as_str()) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
// The range syntax is expanded to literal paths starting with `core` or `std`
|
|
|
|
// depending on
|
2016-06-29 16:16:44 -05:00
|
|
|
// `#[no_std]`. Testing both instead of resolving the paths.
|
|
|
|
|
2019-09-27 10:16:06 -05:00
|
|
|
match expr.kind {
|
2018-07-12 02:30:57 -05:00
|
|
|
hir::ExprKind::Path(ref path) => {
|
2019-05-17 16:53:54 -05:00
|
|
|
if match_qpath(path, &paths::RANGE_FULL_STD) || match_qpath(path, &paths::RANGE_FULL) {
|
2016-06-29 16:16:44 -05:00
|
|
|
Some(Range {
|
|
|
|
start: None,
|
|
|
|
end: None,
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2018-11-27 14:14:15 -06:00
|
|
|
hir::ExprKind::Call(ref path, ref args) => {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Path(ref path) = path.kind {
|
2019-05-17 17:58:25 -05:00
|
|
|
if match_qpath(path, &paths::RANGE_INCLUSIVE_STD_NEW) || match_qpath(path, &paths::RANGE_INCLUSIVE_NEW)
|
2018-11-27 14:14:15 -06:00
|
|
|
{
|
|
|
|
Some(Range {
|
|
|
|
start: Some(&args[0]),
|
|
|
|
end: Some(&args[1]),
|
|
|
|
limits: ast::RangeLimits::Closed,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
},
|
|
|
|
hir::ExprKind::Struct(ref path, ref fields, None) => {
|
2019-05-17 16:53:54 -05:00
|
|
|
if match_qpath(path, &paths::RANGE_FROM_STD) || match_qpath(path, &paths::RANGE_FROM) {
|
2018-05-03 08:52:44 -05:00
|
|
|
Some(Range {
|
2019-05-17 16:53:54 -05:00
|
|
|
start: Some(get_field("start", fields)?),
|
2018-11-27 14:14:15 -06:00
|
|
|
end: None,
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
})
|
2019-05-17 16:53:54 -05:00
|
|
|
} else if match_qpath(path, &paths::RANGE_STD) || match_qpath(path, &paths::RANGE) {
|
2018-11-27 14:14:15 -06:00
|
|
|
Some(Range {
|
2019-05-17 16:53:54 -05:00
|
|
|
start: Some(get_field("start", fields)?),
|
|
|
|
end: Some(get_field("end", fields)?),
|
2018-11-27 14:14:15 -06:00
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
})
|
2019-05-17 17:58:25 -05:00
|
|
|
} else if match_qpath(path, &paths::RANGE_TO_INCLUSIVE_STD) || match_qpath(path, &paths::RANGE_TO_INCLUSIVE)
|
2018-11-27 14:14:15 -06:00
|
|
|
{
|
|
|
|
Some(Range {
|
|
|
|
start: None,
|
2019-05-17 16:53:54 -05:00
|
|
|
end: Some(get_field("end", fields)?),
|
2018-05-03 08:52:44 -05:00
|
|
|
limits: ast::RangeLimits::Closed,
|
|
|
|
})
|
2019-05-17 16:53:54 -05:00
|
|
|
} else if match_qpath(path, &paths::RANGE_TO_STD) || match_qpath(path, &paths::RANGE_TO) {
|
2018-11-27 14:14:15 -06:00
|
|
|
Some(Range {
|
|
|
|
start: None,
|
2019-05-17 16:53:54 -05:00
|
|
|
end: Some(get_field("end", fields)?),
|
2018-11-27 14:14:15 -06:00
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
})
|
2018-05-03 08:52:44 -05:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-06-29 16:16:44 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-20 04:21:30 -06:00
|
|
|
/// Checks if a `let` statement is from a `for` loop desugaring.
|
|
|
|
pub fn is_from_for_desugar(local: &hir::Local) -> bool {
|
2017-08-18 09:12:00 -05:00
|
|
|
// This will detect plain for-loops without an actual variable binding:
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// for x in some_vec {
|
2018-11-27 14:14:15 -06:00
|
|
|
// // do stuff
|
2017-08-18 09:12:00 -05:00
|
|
|
// }
|
|
|
|
// ```
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-01-20 04:21:30 -06:00
|
|
|
if let Some(ref expr) = local.init;
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Match(_, _, hir::MatchSource::ForLoopDesugar) = expr.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-08-18 09:07:39 -05:00
|
|
|
|
|
|
|
// This detects a variable binding in for loop to avoid `let_unit_value`
|
|
|
|
// lint (see issue #1964).
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// for _ in vec![()] {
|
2018-11-27 14:14:15 -06:00
|
|
|
// // anything
|
2017-08-18 09:07:39 -05:00
|
|
|
// }
|
|
|
|
// ```
|
2019-01-20 04:21:30 -06:00
|
|
|
if let hir::LocalSource::ForLoopDesugar = local.source {
|
|
|
|
return true;
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
2017-08-18 09:07:39 -05:00
|
|
|
|
2016-06-29 17:08:43 -05:00
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Recover the essential nodes of a desugared for loop:
|
|
|
|
/// `for pat in arg { body }` becomes `(pat, arg, body)`.
|
|
|
|
pub fn for_loop(expr: &hir::Expr) -> Option<(&hir::Pat, &hir::Expr, &hir::Expr)> {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05: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 14:18:02 -05:00
|
|
|
if iterargs.len() == 1 && arms.len() == 1 && arms[0].guard.is_none();
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Loop(ref block, _, _) = arms[0].body.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
if block.expr.is_none();
|
|
|
|
if let [ _, _, ref let_stmt, ref body ] = *block.stmts;
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::StmtKind::Local(ref local) = let_stmt.kind;
|
|
|
|
if let hir::StmtKind::Expr(ref expr) = body.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
2019-01-20 04:21:30 -06:00
|
|
|
return Some((&*local.pat, &iterargs[0], expr));
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
}
|
2016-06-29 17:08:43 -05:00
|
|
|
None
|
|
|
|
}
|
2016-06-30 12:49:34 -05:00
|
|
|
|
2019-07-06 12:35:08 -05:00
|
|
|
/// Recover the essential nodes of a desugared while loop:
|
|
|
|
/// `while cond { body }` becomes `(cond, body)`.
|
|
|
|
pub fn while_loop(expr: &hir::Expr) -> Option<(&hir::Expr, &hir::Expr)> {
|
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Loop(block, _, hir::LoopSource::While) = &expr.kind;
|
2019-07-06 12:35:08 -05:00
|
|
|
if let hir::Block { expr: Some(expr), .. } = &**block;
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Match(cond, arms, hir::MatchSource::WhileDesugar) = &expr.kind;
|
|
|
|
if let hir::ExprKind::DropTemps(cond) = &cond.kind;
|
2019-07-06 12:35:08 -05:00
|
|
|
if let [arm, ..] = &arms[..];
|
|
|
|
if let hir::Arm { body, .. } = arm;
|
|
|
|
then {
|
|
|
|
return Some((cond, body));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2019-05-10 21:10:47 -05:00
|
|
|
/// Recover the essential nodes of a desugared if block
|
|
|
|
/// `if cond { then } else { els }` becomes `(cond, then, Some(els))`
|
|
|
|
pub fn if_block(expr: &hir::Expr) -> Option<(&hir::Expr, &hir::Expr, Option<&hir::Expr>)> {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Match(ref cond, ref arms, hir::MatchSource::IfDesugar { contains_else_clause }) = expr.kind {
|
|
|
|
let cond = if let hir::ExprKind::DropTemps(ref cond) = cond.kind {
|
2019-05-10 21:10:47 -05:00
|
|
|
cond
|
|
|
|
} else {
|
|
|
|
panic!("If block desugar must contain DropTemps");
|
|
|
|
};
|
|
|
|
let then = &arms[0].body;
|
|
|
|
let els = if contains_else_clause {
|
|
|
|
Some(&*arms[1].body)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
Some((cond, then, els))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-30 12:49:34 -05:00
|
|
|
/// Represent the pre-expansion arguments of a `vec!` invocation.
|
|
|
|
pub enum VecArgs<'a> {
|
|
|
|
/// `vec![elem; len]`
|
2016-11-23 15:44:00 -06:00
|
|
|
Repeat(&'a hir::Expr, &'a hir::Expr),
|
2016-06-30 12:49:34 -05:00
|
|
|
/// `vec![a, b, c]`
|
2016-11-23 15:44:00 -06:00
|
|
|
Vec(&'a [hir::Expr]),
|
2016-06-30 12:49:34 -05:00
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
/// Returns the arguments of the `vec!` macro if this expression was expanded
|
|
|
|
/// from `vec!`.
|
2018-07-23 06:01:12 -05:00
|
|
|
pub fn vec_macro<'e>(cx: &LateContext<'_, '_>, expr: &'e hir::Expr) -> Option<VecArgs<'e>> {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Call(ref fun, ref args) = expr.kind;
|
|
|
|
if let hir::ExprKind::Path(ref path) = fun.kind;
|
2019-05-17 16:53:54 -05:00
|
|
|
if is_expn_of(fun.span, "vec").is_some();
|
2019-03-08 07:14:41 -06:00
|
|
|
if let Some(fun_def_id) = resolve_node(cx, path, fun.hir_id).opt_def_id();
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
2019-05-17 16:53:54 -05:00
|
|
|
return if match_def_path(cx, fun_def_id, &paths::VEC_FROM_ELEM) && args.len() == 2 {
|
2017-10-23 14:18:02 -05:00
|
|
|
// `vec![elem; size]` case
|
|
|
|
Some(VecArgs::Repeat(&args[0], &args[1]))
|
|
|
|
}
|
2019-05-17 16:53:54 -05:00
|
|
|
else if match_def_path(cx, fun_def_id, &paths::SLICE_INTO_VEC) && args.len() == 1 {
|
2017-10-23 14:18:02 -05:00
|
|
|
// `vec![a, b, c]` case
|
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Box(ref boxed) = args[0].kind;
|
|
|
|
if let hir::ExprKind::Array(ref args) = boxed.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
return Some(VecArgs::Vec(&*args));
|
|
|
|
}
|
|
|
|
}
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
None
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
None
|
|
|
|
};
|
2016-06-30 12:49:34 -05:00
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
2016-06-30 12:49:34 -05:00
|
|
|
|
|
|
|
None
|
|
|
|
}
|