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
|
|
|
|
2016-08-23 12:39:36 -05:00
|
|
|
#![deny(missing_docs_in_private_items)]
|
|
|
|
|
2016-06-29 14:23:21 -05:00
|
|
|
use rustc::hir;
|
2016-06-30 12:49:34 -05:00
|
|
|
use rustc::lint::LateContext;
|
2016-06-29 14:23:21 -05:00
|
|
|
use syntax::ast;
|
2016-10-22 08:57:19 -05:00
|
|
|
use utils::{is_expn_of, match_path, match_def_path, resolve_node, paths};
|
2016-06-29 14:23:21 -05:00
|
|
|
|
|
|
|
/// Convert a hir binary operator to the corresponding `ast` type.
|
|
|
|
pub fn binop(op: hir::BinOp_) -> ast::BinOpKind {
|
|
|
|
match op {
|
|
|
|
hir::BiEq => ast::BinOpKind::Eq,
|
|
|
|
hir::BiGe => ast::BinOpKind::Ge,
|
|
|
|
hir::BiGt => ast::BinOpKind::Gt,
|
|
|
|
hir::BiLe => ast::BinOpKind::Le,
|
|
|
|
hir::BiLt => ast::BinOpKind::Lt,
|
|
|
|
hir::BiNe => ast::BinOpKind::Ne,
|
|
|
|
hir::BiOr => ast::BinOpKind::Or,
|
|
|
|
hir::BiAdd => ast::BinOpKind::Add,
|
|
|
|
hir::BiAnd => ast::BinOpKind::And,
|
|
|
|
hir::BiBitAnd => ast::BinOpKind::BitAnd,
|
|
|
|
hir::BiBitOr => ast::BinOpKind::BitOr,
|
|
|
|
hir::BiBitXor => ast::BinOpKind::BitXor,
|
|
|
|
hir::BiDiv => ast::BinOpKind::Div,
|
|
|
|
hir::BiMul => ast::BinOpKind::Mul,
|
|
|
|
hir::BiRem => ast::BinOpKind::Rem,
|
|
|
|
hir::BiShl => ast::BinOpKind::Shl,
|
|
|
|
hir::BiShr => ast::BinOpKind::Shr,
|
|
|
|
hir::BiSub => ast::BinOpKind::Sub,
|
|
|
|
}
|
|
|
|
}
|
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`.
|
|
|
|
pub fn range(expr: &hir::Expr) -> Option<Range> {
|
2017-08-09 02:30:56 -05:00
|
|
|
/// Find the field named `name` in the field. Always return `Some` for
|
|
|
|
/// convenience.
|
2016-06-29 16:16:44 -05:00
|
|
|
fn get_field<'a>(name: &str, fields: &'a [hir::Field]) -> Option<&'a hir::Expr> {
|
2017-08-09 02:30:56 -05:00
|
|
|
let expr = &fields
|
|
|
|
.iter()
|
2016-12-20 11:21:30 -06:00
|
|
|
.find(|field| field.name.node == name)
|
|
|
|
.unwrap_or_else(|| panic!("missing {} field for range", name))
|
|
|
|
.expr;
|
2016-06-29 16:16:44 -05:00
|
|
|
|
2016-12-01 15:31:56 -06:00
|
|
|
Some(expr)
|
2016-06-29 16:16:44 -05:00
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
|
2016-12-01 15:31:56 -06:00
|
|
|
match expr.node {
|
|
|
|
hir::ExprPath(ref path) => {
|
2016-06-29 16:16:44 -05:00
|
|
|
if match_path(path, &paths::RANGE_FULL_STD) || match_path(path, &paths::RANGE_FULL) {
|
|
|
|
Some(Range {
|
|
|
|
start: None,
|
|
|
|
end: None,
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-06-29 16:16:44 -05:00
|
|
|
hir::ExprStruct(ref path, ref fields, None) => {
|
|
|
|
if match_path(path, &paths::RANGE_FROM_STD) || match_path(path, &paths::RANGE_FROM) {
|
|
|
|
Some(Range {
|
|
|
|
start: get_field("start", fields),
|
|
|
|
end: None,
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
})
|
2017-06-10 23:46:26 -05:00
|
|
|
} else if match_path(path, &paths::RANGE_INCLUSIVE_STD) || match_path(path, &paths::RANGE_INCLUSIVE) {
|
2016-06-29 16:16:44 -05:00
|
|
|
Some(Range {
|
|
|
|
start: get_field("start", fields),
|
|
|
|
end: get_field("end", fields),
|
|
|
|
limits: ast::RangeLimits::Closed,
|
|
|
|
})
|
|
|
|
} else if match_path(path, &paths::RANGE_STD) || match_path(path, &paths::RANGE) {
|
|
|
|
Some(Range {
|
|
|
|
start: get_field("start", fields),
|
|
|
|
end: get_field("end", fields),
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
})
|
|
|
|
} else if match_path(path, &paths::RANGE_TO_INCLUSIVE_STD) || match_path(path, &paths::RANGE_TO_INCLUSIVE) {
|
|
|
|
Some(Range {
|
|
|
|
start: None,
|
|
|
|
end: get_field("end", fields),
|
|
|
|
limits: ast::RangeLimits::Closed,
|
|
|
|
})
|
|
|
|
} else if match_path(path, &paths::RANGE_TO_STD) || match_path(path, &paths::RANGE_TO) {
|
|
|
|
Some(Range {
|
|
|
|
start: None,
|
|
|
|
end: get_field("end", fields),
|
|
|
|
limits: ast::RangeLimits::HalfOpen,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-06-29 16:16:44 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-29 17:08:43 -05:00
|
|
|
/// Checks if a `let` decl is from a `for` loop desugaring.
|
|
|
|
pub fn is_from_for_desugar(decl: &hir::Decl) -> 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 {
|
|
|
|
// // do stuff
|
|
|
|
// }
|
|
|
|
// ```
|
2016-06-29 17:08:43 -05:00
|
|
|
if_let_chain! {[
|
|
|
|
let hir::DeclLocal(ref loc) = decl.node,
|
|
|
|
let Some(ref expr) = loc.init,
|
|
|
|
let hir::ExprMatch(_, _, hir::MatchSource::ForLoopDesugar) = expr.node,
|
|
|
|
], {
|
|
|
|
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![()] {
|
|
|
|
// // anything
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
if_let_chain! {[
|
|
|
|
let hir::DeclLocal(ref loc) = decl.node,
|
|
|
|
let hir::LocalSource::ForLoopDesugar = loc.source,
|
|
|
|
], {
|
|
|
|
return true;
|
|
|
|
}}
|
|
|
|
|
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)> {
|
|
|
|
if_let_chain! {[
|
2017-06-08 13:16:18 -05:00
|
|
|
let hir::ExprMatch(ref iterexpr, ref arms, hir::MatchSource::ForLoopDesugar) = expr.node,
|
2016-06-29 17:08:43 -05:00
|
|
|
let hir::ExprCall(_, ref iterargs) = iterexpr.node,
|
|
|
|
iterargs.len() == 1 && arms.len() == 1 && arms[0].guard.is_none(),
|
2016-11-25 12:24:55 -06:00
|
|
|
let hir::ExprLoop(ref block, _, _) = arms[0].body.node,
|
2017-06-05 14:49:26 -05:00
|
|
|
block.expr.is_none(),
|
2017-06-28 04:02:27 -05:00
|
|
|
let [ _, _, ref let_stmt, ref body ] = *block.stmts,
|
2017-06-05 14:49:26 -05:00
|
|
|
let hir::StmtDecl(ref decl, _) = let_stmt.node,
|
|
|
|
let hir::DeclLocal(ref decl) = decl.node,
|
|
|
|
let hir::StmtExpr(ref expr, _) = body.node,
|
2016-06-29 17:08:43 -05:00
|
|
|
], {
|
2017-06-05 14:49:26 -05:00
|
|
|
return Some((&*decl.pat, &iterargs[0], expr));
|
2016-06-29 17:08:43 -05:00
|
|
|
}}
|
|
|
|
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!`.
|
2016-06-30 12:49:34 -05:00
|
|
|
pub fn vec_macro<'e>(cx: &LateContext, expr: &'e hir::Expr) -> Option<VecArgs<'e>> {
|
|
|
|
if_let_chain!{[
|
|
|
|
let hir::ExprCall(ref fun, ref args) = expr.node,
|
2016-12-01 15:31:56 -06:00
|
|
|
let hir::ExprPath(ref path) = fun.node,
|
2017-03-31 17:14:04 -05:00
|
|
|
is_expn_of(fun.span, "vec").is_some(),
|
2016-06-30 12:49:34 -05:00
|
|
|
], {
|
2017-08-15 04:10:49 -05:00
|
|
|
let fun_def = resolve_node(cx, path, fun.hir_id);
|
2017-01-13 10:04:56 -06:00
|
|
|
return if match_def_path(cx.tcx, fun_def.def_id(), &paths::VEC_FROM_ELEM) && args.len() == 2 {
|
2016-06-30 12:49:34 -05:00
|
|
|
// `vec![elem; size]` case
|
|
|
|
Some(VecArgs::Repeat(&args[0], &args[1]))
|
|
|
|
}
|
2017-01-13 10:04:56 -06:00
|
|
|
else if match_def_path(cx.tcx, fun_def.def_id(), &paths::SLICE_INTO_VEC) && args.len() == 1 {
|
2016-06-30 12:49:34 -05:00
|
|
|
// `vec![a, b, c]` case
|
|
|
|
if_let_chain!{[
|
|
|
|
let hir::ExprBox(ref boxed) = args[0].node,
|
2016-09-30 08:35:24 -05:00
|
|
|
let hir::ExprArray(ref args) = boxed.node
|
2016-06-30 12:49:34 -05:00
|
|
|
], {
|
|
|
|
return Some(VecArgs::Vec(&*args));
|
|
|
|
}}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
}}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|