]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/redundant_clone.rs
rustup https://github.com/rust-lang/rust/pull/57907/
[rust.git] / clippy_lints / src / redundant_clone.rs
1 use crate::utils::{
2     has_drop, in_macro, is_copy, match_def_path, match_type, paths, snippet_opt, span_lint_node,
3     span_lint_node_and_then, walk_ptrs_ty_depth,
4 };
5 use if_chain::if_chain;
6 use matches::matches;
7 use rustc::hir::intravisit::FnKind;
8 use rustc::hir::{def_id, Body, FnDecl};
9 use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
10 use rustc::mir::{
11     self, traversal,
12     visit::{MutatingUseContext, PlaceContext, Visitor},
13     TerminatorKind,
14 };
15 use rustc::ty;
16 use rustc::{declare_tool_lint, lint_array};
17 use rustc_errors::Applicability;
18 use std::convert::TryFrom;
19 use syntax::{
20     ast::NodeId,
21     source_map::{BytePos, Span},
22 };
23
24 macro_rules! unwrap_or_continue {
25     ($x:expr) => {
26         match $x {
27             Some(x) => x,
28             None => continue,
29         }
30     };
31 }
32
33 /// **What it does:** Checks for a redudant `clone()` (and its relatives) which clones an owned
34 /// value that is going to be dropped without further use.
35 ///
36 /// **Why is this bad?** It is not always possible for the compiler to eliminate useless
37 /// allocations and deallocations generated by redundant `clone()`s.
38 ///
39 /// **Known problems:**
40 ///
41 /// * Suggestions made by this lint could require NLL to be enabled.
42 /// * False-positive if there is a borrow preventing the value from moving out.
43 ///
44 /// ```rust
45 /// let x = String::new();
46 ///
47 /// let y = &x;
48 ///
49 /// foo(x.clone()); // This lint suggests to remove this `clone()`
50 /// ```
51 ///
52 /// **Example:**
53 /// ```rust
54 /// {
55 ///     let x = Foo::new();
56 ///     call(x.clone());
57 ///     call(x.clone()); // this can just pass `x`
58 /// }
59 ///
60 /// ["lorem", "ipsum"].join(" ").to_string()
61 ///
62 /// Path::new("/a/b").join("c").to_path_buf()
63 /// ```
64 declare_clippy_lint! {
65     pub REDUNDANT_CLONE,
66     nursery,
67     "`clone()` of an owned value that is going to be dropped immediately"
68 }
69
70 pub struct RedundantClone;
71
72 impl LintPass for RedundantClone {
73     fn get_lints(&self) -> LintArray {
74         lint_array!(REDUNDANT_CLONE)
75     }
76
77     fn name(&self) -> &'static str {
78         "RedundantClone"
79     }
80 }
81
82 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for RedundantClone {
83     fn check_fn(
84         &mut self,
85         cx: &LateContext<'a, 'tcx>,
86         _: FnKind<'tcx>,
87         _: &'tcx FnDecl,
88         body: &'tcx Body,
89         _: Span,
90         _: NodeId,
91     ) {
92         let def_id = cx.tcx.hir().body_owner_def_id(body.id());
93         let mir = cx.tcx.optimized_mir(def_id);
94
95         for (bb, bbdata) in mir.basic_blocks().iter_enumerated() {
96             let terminator = bbdata.terminator();
97
98             if in_macro(terminator.source_info.span) {
99                 continue;
100             }
101
102             // Give up on loops
103             if terminator.successors().any(|s| *s == bb) {
104                 continue;
105             }
106
107             let (fn_def_id, arg, arg_ty, _) = unwrap_or_continue!(is_call_with_ref_arg(cx, mir, &terminator.kind));
108
109             let from_borrow = match_def_path(cx.tcx, fn_def_id, &paths::CLONE_TRAIT_METHOD)
110                 || match_def_path(cx.tcx, fn_def_id, &paths::TO_OWNED_METHOD)
111                 || (match_def_path(cx.tcx, fn_def_id, &paths::TO_STRING_METHOD)
112                     && match_type(cx, arg_ty, &paths::STRING));
113
114             let from_deref = !from_borrow
115                 && (match_def_path(cx.tcx, fn_def_id, &paths::PATH_TO_PATH_BUF)
116                     || match_def_path(cx.tcx, fn_def_id, &paths::OS_STR_TO_OS_STRING));
117
118             if !from_borrow && !from_deref {
119                 continue;
120             }
121
122             // _1 in MIR `{ _2 = &_1; clone(move _2); }` or `{ _2 = _1; to_path_buf(_2); } (from_deref)
123             // In case of `from_deref`, `arg` is already a reference since it is `deref`ed in the previous
124             // block.
125             let (cloned, cannot_move_out) = unwrap_or_continue!(find_stmt_assigns_to(
126                 cx,
127                 mir,
128                 arg,
129                 from_borrow,
130                 bbdata.statements.iter()
131             ));
132
133             if from_borrow && cannot_move_out {
134                 continue;
135             }
136
137             // _1 in MIR `{ _2 = &_1; _3 = deref(move _2); } -> { _4 = _3; to_path_buf(move _4); }`
138             let referent = if from_deref {
139                 let ps = mir.predecessors_for(bb);
140                 if ps.len() != 1 {
141                     continue;
142                 }
143                 let pred_terminator = mir[ps[0]].terminator();
144
145                 let pred_arg = if_chain! {
146                     if let Some((pred_fn_def_id, pred_arg, pred_arg_ty, Some(res))) =
147                         is_call_with_ref_arg(cx, mir, &pred_terminator.kind);
148                     if *res == mir::Place::Local(cloned);
149                     if match_def_path(cx.tcx, pred_fn_def_id, &paths::DEREF_TRAIT_METHOD);
150                     if match_type(cx, pred_arg_ty, &paths::PATH_BUF)
151                         || match_type(cx, pred_arg_ty, &paths::OS_STRING);
152                     then {
153                         pred_arg
154                     } else {
155                         continue;
156                     }
157                 };
158
159                 let (local, cannot_move_out) = unwrap_or_continue!(find_stmt_assigns_to(
160                     cx,
161                     mir,
162                     pred_arg,
163                     true,
164                     mir[ps[0]].statements.iter()
165                 ));
166                 if cannot_move_out {
167                     continue;
168                 }
169                 local
170             } else {
171                 cloned
172             };
173
174             let used_later = traversal::ReversePostorder::new(&mir, bb).skip(1).any(|(tbb, tdata)| {
175                 // Give up on loops
176                 if tdata.terminator().successors().any(|s| *s == bb) {
177                     return true;
178                 }
179
180                 let mut vis = LocalUseVisitor {
181                     local: referent,
182                     used_other_than_drop: false,
183                 };
184                 vis.visit_basic_block_data(tbb, tdata);
185                 vis.used_other_than_drop
186             });
187
188             if !used_later {
189                 let span = terminator.source_info.span;
190                 let node = if let mir::ClearCrossCrate::Set(scope_local_data) = &mir.source_scope_local_data {
191                     scope_local_data[terminator.source_info.scope].lint_root
192                 } else {
193                     unreachable!()
194                 };
195
196                 if_chain! {
197                     if let Some(snip) = snippet_opt(cx, span);
198                     if let Some(dot) = snip.rfind('.');
199                     then {
200                         let sugg_span = span.with_lo(
201                             span.lo() + BytePos(u32::try_from(dot).unwrap())
202                         );
203
204                         span_lint_node_and_then(cx, REDUNDANT_CLONE, node, sugg_span, "redundant clone", |db| {
205                             db.span_suggestion(
206                                 sugg_span,
207                                 "remove this",
208                                 String::new(),
209                                 Applicability::MaybeIncorrect,
210                             );
211                             db.span_note(
212                                 span.with_hi(span.lo() + BytePos(u32::try_from(dot).unwrap())),
213                                 "this value is dropped without further use",
214                             );
215                         });
216                     } else {
217                         span_lint_node(cx, REDUNDANT_CLONE, node, span, "redundant clone");
218                     }
219                 }
220             }
221         }
222     }
223 }
224
225 /// If `kind` is `y = func(x: &T)` where `T: !Copy`, returns `(DefId of func, x, T, y)`.
226 fn is_call_with_ref_arg<'tcx>(
227     cx: &LateContext<'_, 'tcx>,
228     mir: &'tcx mir::Mir<'tcx>,
229     kind: &'tcx mir::TerminatorKind<'tcx>,
230 ) -> Option<(def_id::DefId, mir::Local, ty::Ty<'tcx>, Option<&'tcx mir::Place<'tcx>>)> {
231     if_chain! {
232         if let TerminatorKind::Call { func, args, destination, .. } = kind;
233         if args.len() == 1;
234         if let mir::Operand::Move(mir::Place::Local(local)) = &args[0];
235         if let ty::FnDef(def_id, _) = func.ty(&*mir, cx.tcx).sty;
236         if let (inner_ty, 1) = walk_ptrs_ty_depth(args[0].ty(&*mir, cx.tcx));
237         if !is_copy(cx, inner_ty);
238         then {
239             Some((def_id, *local, inner_ty, destination.as_ref().map(|(dest, _)| dest)))
240         } else {
241             None
242         }
243     }
244 }
245
246 type CannotMoveOut = bool;
247
248 /// Finds the first `to = (&)from`, and returns
249 /// ``Some((from, [`true` if `from` cannot be moved out]))``.
250 fn find_stmt_assigns_to<'a, 'tcx: 'a>(
251     cx: &LateContext<'_, 'tcx>,
252     mir: &mir::Mir<'tcx>,
253     to: mir::Local,
254     by_ref: bool,
255     stmts: impl DoubleEndedIterator<Item = &'a mir::Statement<'tcx>>,
256 ) -> Option<(mir::Local, CannotMoveOut)> {
257     stmts
258         .rev()
259         .find_map(|stmt| {
260             if let mir::StatementKind::Assign(mir::Place::Local(local), v) = &stmt.kind {
261                 if *local == to {
262                     return Some(v);
263                 }
264             }
265
266             None
267         })
268         .and_then(|v| {
269             if by_ref {
270                 if let mir::Rvalue::Ref(_, _, ref place) = **v {
271                     return base_local_and_movability(cx, mir, place);
272                 }
273             } else if let mir::Rvalue::Use(mir::Operand::Copy(ref place)) = **v {
274                 return base_local_and_movability(cx, mir, place);
275             }
276             None
277         })
278 }
279
280 /// Extracts and returns the undermost base `Local` of given `place`. Returns `place` itself
281 /// if it is already a `Local`.
282 ///
283 /// Also reports whether given `place` cannot be moved out.
284 fn base_local_and_movability<'tcx>(
285     cx: &LateContext<'_, 'tcx>,
286     mir: &mir::Mir<'tcx>,
287     mut place: &mir::Place<'tcx>,
288 ) -> Option<(mir::Local, CannotMoveOut)> {
289     use rustc::mir::Place::*;
290
291     // Dereference. You cannot move things out from a borrowed value.
292     let mut deref = false;
293     // Accessing a field of an ADT that has `Drop`. Moving the field out will cause E0509.
294     let mut field = false;
295
296     loop {
297         match place {
298             Local(local) => return Some((*local, deref || field)),
299             Projection(proj) => {
300                 place = &proj.base;
301                 deref = deref || matches!(proj.elem, mir::ProjectionElem::Deref);
302                 if !field && matches!(proj.elem, mir::ProjectionElem::Field(..)) {
303                     field = has_drop(cx, place.ty(&mir.local_decls, cx.tcx).to_ty(cx.tcx));
304                 }
305             },
306             _ => return None,
307         }
308     }
309 }
310
311 struct LocalUseVisitor {
312     local: mir::Local,
313     used_other_than_drop: bool,
314 }
315
316 impl<'tcx> mir::visit::Visitor<'tcx> for LocalUseVisitor {
317     fn visit_basic_block_data(&mut self, block: mir::BasicBlock, data: &mir::BasicBlockData<'tcx>) {
318         let statements = &data.statements;
319         for (statement_index, statement) in statements.iter().enumerate() {
320             self.visit_statement(block, statement, mir::Location { block, statement_index });
321
322             // Once flagged, skip remaining statements
323             if self.used_other_than_drop {
324                 return;
325             }
326         }
327
328         self.visit_terminator(
329             block,
330             data.terminator(),
331             mir::Location {
332                 block,
333                 statement_index: statements.len(),
334             },
335         );
336     }
337
338     fn visit_local(&mut self, local: &mir::Local, ctx: PlaceContext<'tcx>, _: mir::Location) {
339         match ctx {
340             PlaceContext::MutatingUse(MutatingUseContext::Drop) | PlaceContext::NonUse(_) => return,
341             _ => {},
342         }
343
344         if *local == self.local {
345             self.used_other_than_drop = true;
346         }
347     }
348 }