2021-03-25 19:29:11 +01:00
|
|
|
use clippy_utils::diagnostics::{multispan_sugg, span_lint_and_then};
|
|
|
|
use clippy_utils::ptr::get_spans;
|
|
|
|
use clippy_utils::source::{snippet, snippet_opt};
|
|
|
|
use clippy_utils::ty::{implements_trait, is_copy, is_type_diagnostic_item};
|
|
|
|
use clippy_utils::{get_trait_def_id, is_self, paths};
|
2018-11-27 21:14:15 +01:00
|
|
|
use if_chain::if_chain;
|
2020-03-01 12:23:33 +09:00
|
|
|
use rustc_ast::ast::Attribute;
|
2021-04-08 17:50:13 +02:00
|
|
|
use rustc_data_structures::fx::FxHashSet;
|
2022-01-23 20:41:46 +00:00
|
|
|
use rustc_errors::{Applicability, Diagnostic};
|
2020-01-09 16:13:22 +09:00
|
|
|
use rustc_hir::intravisit::FnKind;
|
2022-08-30 17:36:53 -05:00
|
|
|
use rustc_hir::{
|
|
|
|
BindingAnnotation, Body, FnDecl, GenericArg, HirId, Impl, ItemKind, Mutability, Node, PatKind, QPath, TyKind,
|
|
|
|
};
|
2021-04-08 17:50:13 +02:00
|
|
|
use rustc_hir::{HirIdMap, HirIdSet};
|
2020-02-17 11:07:26 +09:00
|
|
|
use rustc_infer::infer::TyCtxtInferExt;
|
2020-01-12 15:08:41 +09:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2021-02-25 15:33:18 -05:00
|
|
|
use rustc_middle::mir::FakeReadCause;
|
2022-06-17 13:15:00 +01:00
|
|
|
use rustc_middle::ty::{self, TypeVisitable};
|
2020-01-11 20:37:08 +09:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2021-01-15 10:56:44 +01:00
|
|
|
use rustc_span::symbol::kw;
|
2020-11-05 14:29:48 +01:00
|
|
|
use rustc_span::{sym, Span};
|
2018-12-29 16:04:45 +01:00
|
|
|
use rustc_target::spec::abi::Abi;
|
2020-03-15 05:26:32 +09:00
|
|
|
use rustc_trait_selection::traits;
|
|
|
|
use rustc_trait_selection::traits::misc::can_type_implement_copy;
|
2019-11-29 11:12:19 +01:00
|
|
|
use rustc_typeck::expr_use_visitor as euv;
|
2017-10-08 17:51:44 +09:00
|
|
|
use std::borrow::Cow;
|
2017-02-18 17:00:36 +09:00
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for functions taking arguments by value, but not
|
2019-03-05 11:50:33 -05:00
|
|
|
/// consuming them in its
|
|
|
|
/// body.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Taking arguments by reference is more flexible and can
|
2019-03-05 11:50:33 -05:00
|
|
|
/// sometimes avoid
|
|
|
|
/// unnecessary allocations.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Known problems
|
2019-03-05 11:50:33 -05:00
|
|
|
/// * This lint suggests taking an argument by reference,
|
|
|
|
/// however sometimes it is better to let users decide the argument type
|
|
|
|
/// (by using `Borrow` trait, for example), depending on how the function is used.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2019-03-05 11:50:33 -05:00
|
|
|
/// ```rust
|
|
|
|
/// fn foo(v: Vec<i32>) {
|
|
|
|
/// assert_eq!(v.len(), 42);
|
|
|
|
/// }
|
2019-08-03 18:42:05 +02:00
|
|
|
/// ```
|
2020-08-11 15:43:21 +02:00
|
|
|
/// should be
|
2019-08-03 18:42:05 +02:00
|
|
|
/// ```rust
|
2019-03-05 11:50:33 -05:00
|
|
|
/// fn foo(v: &[i32]) {
|
|
|
|
/// assert_eq!(v.len(), 42);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2017-02-20 12:50:31 +09:00
|
|
|
pub NEEDLESS_PASS_BY_VALUE,
|
2018-11-21 01:58:27 -08:00
|
|
|
pedantic,
|
2017-02-20 12:50:31 +09:00
|
|
|
"functions taking arguments by value, but not consuming them in its body"
|
2017-02-18 17:00:36 +09:00
|
|
|
}
|
|
|
|
|
2019-04-08 13:43:55 -07:00
|
|
|
declare_lint_pass!(NeedlessPassByValue => [NEEDLESS_PASS_BY_VALUE]);
|
2017-02-18 17:00:36 +09:00
|
|
|
|
2017-03-16 08:57:17 +01:00
|
|
|
macro_rules! need {
|
2018-11-27 21:14:15 +01:00
|
|
|
($e: expr) => {
|
|
|
|
if let Some(x) = $e {
|
|
|
|
x
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
2017-03-16 08:57:17 +01:00
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for NeedlessPassByValue {
|
2022-05-21 13:24:00 +02:00
|
|
|
#[expect(clippy::too_many_lines)]
|
2017-02-18 17:00:36 +09:00
|
|
|
fn check_fn(
|
|
|
|
&mut self,
|
2020-06-25 23:41:36 +03:00
|
|
|
cx: &LateContext<'tcx>,
|
2017-02-18 17:00:36 +09:00
|
|
|
kind: FnKind<'tcx>,
|
2019-12-30 13:02:10 +09:00
|
|
|
decl: &'tcx FnDecl<'_>,
|
2019-12-22 15:42:41 +01:00
|
|
|
body: &'tcx Body<'_>,
|
2017-02-18 17:00:36 +09:00
|
|
|
span: Span,
|
2019-02-20 11:11:11 +01:00
|
|
|
hir_id: HirId,
|
2017-02-18 17:00:36 +09:00
|
|
|
) {
|
2019-08-19 09:30:32 -07:00
|
|
|
if span.from_expansion() {
|
2017-02-18 17:00:36 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-13 07:30:18 +09:00
|
|
|
match kind {
|
2022-02-13 15:40:08 +01:00
|
|
|
FnKind::ItemFn(.., header) => {
|
2020-11-27 09:24:42 +01:00
|
|
|
let attrs = cx.tcx.hir().attrs(hir_id);
|
2019-03-11 20:45:57 +09:00
|
|
|
if header.abi != Abi::Rust || requires_exact_signature(attrs) {
|
2018-01-18 14:00:52 +05:30
|
|
|
return;
|
|
|
|
}
|
2017-03-13 07:30:18 +09:00
|
|
|
},
|
2017-11-03 17:24:10 +09:00
|
|
|
FnKind::Method(..) => (),
|
2020-11-27 09:24:42 +01:00
|
|
|
FnKind::Closure => return,
|
2017-02-18 17:00:36 +09:00
|
|
|
}
|
|
|
|
|
2017-11-03 17:24:10 +09:00
|
|
|
// Exclude non-inherent impls
|
2019-06-25 14:41:10 -07:00
|
|
|
if let Some(Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent_node(hir_id)) {
|
2020-12-20 17:19:49 +01:00
|
|
|
if matches!(
|
|
|
|
item.kind,
|
2020-11-22 17:46:21 -05:00
|
|
|
ItemKind::Impl(Impl { of_trait: Some(_), .. }) | ItemKind::Trait(..)
|
2020-12-20 17:19:49 +01:00
|
|
|
) {
|
2017-11-03 17:24:10 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-08 18:04:45 +09:00
|
|
|
// Allow `Borrow` or functions to be taken by value
|
2020-07-07 11:12:44 -04:00
|
|
|
let allowed_traits = [
|
2017-10-08 18:04:45 +09:00
|
|
|
need!(cx.tcx.lang_items().fn_trait()),
|
|
|
|
need!(cx.tcx.lang_items().fn_once_trait()),
|
|
|
|
need!(cx.tcx.lang_items().fn_mut_trait()),
|
2019-05-17 23:53:54 +02:00
|
|
|
need!(get_trait_def_id(cx, &paths::RANGE_ARGUMENT_TRAIT)),
|
2017-10-08 18:04:45 +09:00
|
|
|
];
|
2017-10-08 10:23:41 +09:00
|
|
|
|
|
|
|
let sized_trait = need!(cx.tcx.lang_items().sized_trait());
|
2017-02-18 17:00:36 +09:00
|
|
|
|
2019-07-06 10:52:51 +07:00
|
|
|
let fn_def_id = cx.tcx.hir().local_def_id(hir_id);
|
2017-05-14 09:56:10 +02:00
|
|
|
|
2020-07-02 20:52:40 -04:00
|
|
|
let preds = traits::elaborate_predicates(cx.tcx, cx.param_env.caller_bounds().iter())
|
2022-01-12 03:19:52 +00:00
|
|
|
.filter(|p| !p.is_global())
|
2020-04-11 01:41:52 +02:00
|
|
|
.filter_map(|obligation| {
|
2020-06-19 10:22:25 +02:00
|
|
|
// Note that we do not want to deal with qualified predicates here.
|
2021-01-07 11:20:28 -05:00
|
|
|
match obligation.predicate.kind().no_bound_vars() {
|
2021-07-22 21:56:07 +08:00
|
|
|
Some(ty::PredicateKind::Trait(pred)) if pred.def_id() != sized_trait => Some(pred),
|
2020-12-21 22:49:03 -05:00
|
|
|
_ => None,
|
2017-10-08 20:17:04 +09:00
|
|
|
}
|
2017-10-08 10:23:41 +09:00
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
2017-02-20 12:50:31 +09:00
|
|
|
|
2017-08-09 09:30:56 +02:00
|
|
|
// Collect moved variables and spans which will need dereferencings from the
|
|
|
|
// function body.
|
|
|
|
let MovedVariablesCtxt {
|
|
|
|
moved_vars,
|
|
|
|
spans_need_deref,
|
|
|
|
..
|
|
|
|
} = {
|
2019-10-04 15:00:01 +02:00
|
|
|
let mut ctx = MovedVariablesCtxt::default();
|
2019-11-29 11:12:19 +01:00
|
|
|
cx.tcx.infer_ctxt().enter(|infcx| {
|
2020-07-17 08:47:04 +00:00
|
|
|
euv::ExprUseVisitor::new(&mut ctx, &infcx, fn_def_id, cx.param_env, cx.typeck_results())
|
|
|
|
.consume_body(body);
|
2019-11-29 11:12:19 +01:00
|
|
|
});
|
2017-02-20 16:45:37 +09:00
|
|
|
ctx
|
2017-02-18 17:00:36 +09:00
|
|
|
};
|
|
|
|
|
2017-06-29 21:38:25 +08:00
|
|
|
let fn_sig = cx.tcx.fn_sig(fn_def_id);
|
2020-10-24 02:21:27 +02:00
|
|
|
let fn_sig = cx.tcx.erase_late_bound_regions(fn_sig);
|
2017-02-18 17:00:36 +09:00
|
|
|
|
2019-12-22 15:56:34 +01:00
|
|
|
for (idx, ((input, &ty), arg)) in decl.inputs.iter().zip(fn_sig.inputs()).zip(body.params).enumerate() {
|
2017-10-18 07:29:47 +09:00
|
|
|
// All spans generated from a proc-macro invocation are the same...
|
|
|
|
if span == input.span {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-03 17:24:10 +09:00
|
|
|
// Ignore `self`s.
|
|
|
|
if idx == 0 {
|
2019-09-27 17:16:06 +02:00
|
|
|
if let PatKind::Binding(.., ident, _) = arg.pat.kind {
|
2021-01-15 10:56:44 +01:00
|
|
|
if ident.name == kw::SelfLower {
|
2017-11-03 17:24:10 +09:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-11 15:43:21 +02:00
|
|
|
//
|
2017-10-08 10:23:41 +09:00
|
|
|
// * Exclude a type that is specifically bounded by `Borrow`.
|
2019-01-31 01:15:29 +00:00
|
|
|
// * Exclude a type whose reference also fulfills its bound. (e.g., `std::convert::AsRef`,
|
2018-11-27 21:14:15 +01:00
|
|
|
// `serde::Serialize`)
|
2017-10-08 10:23:41 +09:00
|
|
|
let (implements_borrow_trait, all_borrowable_trait) = {
|
2020-08-11 15:43:21 +02:00
|
|
|
let preds = preds.iter().filter(|t| t.self_ty() == ty).collect::<Vec<_>>();
|
2017-10-08 10:23:41 +09:00
|
|
|
|
|
|
|
(
|
2021-07-29 12:16:06 +02:00
|
|
|
preds.iter().any(|t| cx.tcx.is_diagnostic_item(sym::Borrow, t.def_id())),
|
2020-02-09 15:31:47 +07:00
|
|
|
!preds.is_empty() && {
|
2022-06-26 15:40:45 -04:00
|
|
|
let ty_empty_region = cx.tcx.mk_imm_ref(cx.tcx.lifetimes.re_erased, ty);
|
2020-02-09 15:31:47 +07:00
|
|
|
preds.iter().all(|t| {
|
2020-08-11 15:43:21 +02:00
|
|
|
let ty_params = t.trait_ref.substs.iter().skip(1).collect::<Vec<_>>();
|
2020-06-19 10:22:25 +02:00
|
|
|
implements_trait(cx, ty_empty_region, t.def_id(), &ty_params)
|
2020-02-09 15:31:47 +07:00
|
|
|
})
|
|
|
|
},
|
2017-10-08 10:23:41 +09:00
|
|
|
)
|
|
|
|
};
|
2017-02-20 12:50:31 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
if_chain! {
|
|
|
|
if !is_self(arg);
|
2019-07-26 22:58:31 +02:00
|
|
|
if !ty.is_mutable_ptr();
|
2017-10-23 15:18:02 -04:00
|
|
|
if !is_copy(cx, ty);
|
2020-07-07 11:12:44 -04:00
|
|
|
if !allowed_traits.iter().any(|&t| implements_trait(cx, ty, t, &[]));
|
2017-10-23 15:18:02 -04:00
|
|
|
if !implements_borrow_trait;
|
|
|
|
if !all_borrowable_trait;
|
|
|
|
|
2022-08-30 17:36:53 -05:00
|
|
|
if let PatKind::Binding(BindingAnnotation(_, Mutability::Not), canonical_id, ..) = arg.pat.kind;
|
2017-10-23 15:18:02 -04:00
|
|
|
if !moved_vars.contains(&canonical_id);
|
|
|
|
then {
|
|
|
|
// Dereference suggestion
|
2022-01-23 20:41:46 +00:00
|
|
|
let sugg = |diag: &mut Diagnostic| {
|
2020-08-04 00:18:29 +02:00
|
|
|
if let ty::Adt(def, ..) = ty.kind() {
|
2022-03-05 07:28:41 +11:00
|
|
|
if let Some(span) = cx.tcx.hir().span_if_local(def.did()) {
|
2022-03-14 12:02:53 +01:00
|
|
|
if can_type_implement_copy(
|
|
|
|
cx.tcx,
|
|
|
|
cx.param_env,
|
|
|
|
ty,
|
|
|
|
traits::ObligationCause::dummy_with_span(span),
|
|
|
|
).is_ok() {
|
2020-04-17 08:08:00 +02:00
|
|
|
diag.span_help(span, "consider marking this type as `Copy`");
|
2018-01-18 14:27:47 +01:00
|
|
|
}
|
2018-01-18 14:15:41 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
let deref_span = spans_need_deref.get(&canonical_id);
|
|
|
|
if_chain! {
|
2021-10-02 18:51:01 -05:00
|
|
|
if is_type_diagnostic_item(cx, ty, sym::Vec);
|
2017-10-23 15:18:02 -04:00
|
|
|
if let Some(clone_spans) =
|
2019-05-17 23:53:54 +02:00
|
|
|
get_spans(cx, Some(body.id()), idx, &[("clone", ".to_owned()")]);
|
2021-04-08 17:50:13 +02:00
|
|
|
if let TyKind::Path(QPath::Resolved(_, path)) = input.kind;
|
2017-10-23 15:18:02 -04:00
|
|
|
if let Some(elem_ty) = path.segments.iter()
|
2020-11-05 14:29:48 +01:00
|
|
|
.find(|seg| seg.ident.name == sym::Vec)
|
2018-06-24 15:32:40 +02:00
|
|
|
.and_then(|ps| ps.args.as_ref())
|
2018-06-24 23:42:52 +02:00
|
|
|
.map(|params| params.args.iter().find_map(|arg| match arg {
|
|
|
|
GenericArg::Type(ty) => Some(ty),
|
2019-02-19 13:04:43 +05:30
|
|
|
_ => None,
|
2018-06-24 23:42:52 +02:00
|
|
|
}).unwrap());
|
2017-10-23 15:18:02 -04:00
|
|
|
then {
|
|
|
|
let slice_ty = format!("&[{}]", snippet(cx, elem_ty.span, "_"));
|
2020-04-17 08:08:00 +02:00
|
|
|
diag.span_suggestion(
|
2018-09-18 18:07:54 +03:00
|
|
|
input.span,
|
|
|
|
"consider changing the type to",
|
|
|
|
slice_ty,
|
|
|
|
Applicability::Unspecified,
|
|
|
|
);
|
2017-11-03 17:24:10 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
for (span, suggestion) in clone_spans {
|
2020-04-17 08:08:00 +02:00
|
|
|
diag.span_suggestion(
|
2017-10-23 15:18:02 -04:00
|
|
|
span,
|
2022-03-26 07:27:43 +00:00
|
|
|
snippet_opt(cx, span)
|
2017-10-23 15:18:02 -04:00
|
|
|
.map_or(
|
|
|
|
"change the call to".into(),
|
|
|
|
|x| Cow::from(format!("change `{}` to", x)),
|
2022-03-26 07:27:43 +00:00
|
|
|
)
|
|
|
|
.as_ref(),
|
2022-04-26 06:17:33 +01:00
|
|
|
suggestion,
|
2018-09-15 19:14:08 +03:00
|
|
|
Applicability::Unspecified,
|
2017-10-23 15:18:02 -04:00
|
|
|
);
|
|
|
|
}
|
2017-11-03 17:24:10 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
// cannot be destructured, no need for `*` suggestion
|
|
|
|
assert!(deref_span.is_none());
|
|
|
|
return;
|
|
|
|
}
|
2017-10-08 17:51:44 +09:00
|
|
|
}
|
2017-11-03 17:24:10 +09:00
|
|
|
|
2021-10-02 18:51:01 -05:00
|
|
|
if is_type_diagnostic_item(cx, ty, sym::String) {
|
2017-10-23 15:18:02 -04:00
|
|
|
if let Some(clone_spans) =
|
2019-05-17 23:53:54 +02:00
|
|
|
get_spans(cx, Some(body.id()), idx, &[("clone", ".to_string()"), ("as_str", "")]) {
|
2020-04-17 08:08:00 +02:00
|
|
|
diag.span_suggestion(
|
2018-09-18 18:07:54 +03:00
|
|
|
input.span,
|
|
|
|
"consider changing the type to",
|
2022-06-13 15:48:40 +09:00
|
|
|
"&str",
|
2018-09-18 18:07:54 +03:00
|
|
|
Applicability::Unspecified,
|
|
|
|
);
|
2017-11-03 17:24:10 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
for (span, suggestion) in clone_spans {
|
2020-04-17 08:08:00 +02:00
|
|
|
diag.span_suggestion(
|
2017-10-23 15:18:02 -04:00
|
|
|
span,
|
2022-03-26 07:27:43 +00:00
|
|
|
snippet_opt(cx, span)
|
2017-10-23 15:18:02 -04:00
|
|
|
.map_or(
|
|
|
|
"change the call to".into(),
|
|
|
|
|x| Cow::from(format!("change `{}` to", x))
|
2022-03-26 07:27:43 +00:00
|
|
|
)
|
|
|
|
.as_ref(),
|
2022-04-26 06:17:33 +01:00
|
|
|
suggestion,
|
2018-09-15 19:14:08 +03:00
|
|
|
Applicability::Unspecified,
|
2017-10-23 15:18:02 -04:00
|
|
|
);
|
|
|
|
}
|
2017-11-03 17:24:10 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
assert!(deref_span.is_none());
|
|
|
|
return;
|
2017-10-08 17:51:44 +09:00
|
|
|
}
|
|
|
|
}
|
2017-11-03 17:24:10 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
let mut spans = vec![(input.span, format!("&{}", snippet(cx, input.span, "_")))];
|
2017-11-03 17:24:10 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
// Suggests adding `*` to dereference the added reference.
|
|
|
|
if let Some(deref_span) = deref_span {
|
|
|
|
spans.extend(
|
|
|
|
deref_span
|
|
|
|
.iter()
|
2021-04-22 11:31:13 +02:00
|
|
|
.copied()
|
2017-10-23 15:18:02 -04:00
|
|
|
.map(|span| (span, format!("*{}", snippet(cx, span, "<expr>")))),
|
|
|
|
);
|
|
|
|
spans.sort_by_key(|&(span, _)| span);
|
|
|
|
}
|
2020-05-17 17:36:26 +02:00
|
|
|
multispan_sugg(diag, "consider taking a reference instead", spans);
|
2017-10-23 15:18:02 -04:00
|
|
|
};
|
2017-11-03 17:24:10 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
NEEDLESS_PASS_BY_VALUE,
|
|
|
|
input.span,
|
|
|
|
"this argument is passed by value, but not consumed in the function body",
|
|
|
|
sugg,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-02-18 17:00:36 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-11 20:45:57 +09:00
|
|
|
/// Functions marked with these attributes must have the exact signature.
|
|
|
|
fn requires_exact_signature(attrs: &[Attribute]) -> bool {
|
|
|
|
attrs.iter().any(|attr| {
|
2020-11-05 14:29:48 +01:00
|
|
|
[sym::proc_macro, sym::proc_macro_attribute, sym::proc_macro_derive]
|
2019-03-11 20:45:57 +09:00
|
|
|
.iter()
|
2020-08-02 13:17:20 +03:00
|
|
|
.any(|&allow| attr.has_name(allow))
|
2019-03-11 20:45:57 +09:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-10-04 15:00:01 +02:00
|
|
|
#[derive(Default)]
|
|
|
|
struct MovedVariablesCtxt {
|
2021-04-08 17:50:13 +02:00
|
|
|
moved_vars: HirIdSet,
|
2017-08-09 09:30:56 +02:00
|
|
|
/// Spans which need to be prefixed with `*` for dereferencing the
|
2017-10-08 10:23:41 +09:00
|
|
|
/// suggested additional reference.
|
2021-04-08 17:50:13 +02:00
|
|
|
spans_need_deref: HirIdMap<FxHashSet<Span>>,
|
2017-02-18 17:00:36 +09:00
|
|
|
}
|
|
|
|
|
2019-10-04 15:00:01 +02:00
|
|
|
impl MovedVariablesCtxt {
|
2020-06-17 18:13:05 -04:00
|
|
|
fn move_common(&mut self, cmt: &euv::PlaceWithHirId<'_>) {
|
|
|
|
if let euv::PlaceBase::Local(vid) = cmt.place.base {
|
2017-09-12 14:26:40 +02:00
|
|
|
self.moved_vars.insert(vid);
|
|
|
|
}
|
2017-02-18 17:00:36 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-04 15:00:01 +02:00
|
|
|
impl<'tcx> euv::Delegate<'tcx> for MovedVariablesCtxt {
|
2021-07-14 02:21:08 -04:00
|
|
|
fn consume(&mut self, cmt: &euv::PlaceWithHirId<'tcx>, _: HirId) {
|
|
|
|
self.move_common(cmt);
|
2017-02-18 17:00:36 +09:00
|
|
|
}
|
|
|
|
|
2020-11-01 02:15:22 -05:00
|
|
|
fn borrow(&mut self, _: &euv::PlaceWithHirId<'tcx>, _: HirId, _: ty::BorrowKind) {}
|
2017-02-18 17:00:36 +09:00
|
|
|
|
2020-11-01 02:15:22 -05:00
|
|
|
fn mutate(&mut self, _: &euv::PlaceWithHirId<'tcx>, _: HirId) {}
|
2021-02-25 15:33:18 -05:00
|
|
|
|
2022-05-10 14:20:34 -07:00
|
|
|
fn fake_read(&mut self, _: &rustc_typeck::expr_use_visitor::PlaceWithHirId<'tcx>, _: FakeReadCause, _: HirId) {}
|
2017-02-18 17:00:36 +09:00
|
|
|
}
|