]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/pass_by_ref_or_value.rs
Rollup merge of #86747 - FabianWolff:issue-86653, r=GuillaumeGomez
[rust.git] / src / tools / clippy / clippy_lints / src / pass_by_ref_or_value.rs
1 use std::cmp;
2 use std::iter;
3
4 use clippy_utils::diagnostics::span_lint_and_sugg;
5 use clippy_utils::source::snippet;
6 use clippy_utils::ty::is_copy;
7 use clippy_utils::{is_self, is_self_ty};
8 use if_chain::if_chain;
9 use rustc_ast::attr;
10 use rustc_errors::Applicability;
11 use rustc_hir as hir;
12 use rustc_hir::intravisit::FnKind;
13 use rustc_hir::{BindingAnnotation, Body, FnDecl, HirId, Impl, ItemKind, MutTy, Mutability, Node, PatKind};
14 use rustc_lint::{LateContext, LateLintPass};
15 use rustc_middle::ty;
16 use rustc_session::{declare_tool_lint, impl_lint_pass};
17 use rustc_span::def_id::LocalDefId;
18 use rustc_span::{sym, Span};
19 use rustc_target::abi::LayoutOf;
20 use rustc_target::spec::abi::Abi;
21 use rustc_target::spec::Target;
22
23 declare_clippy_lint! {
24     /// ### What it does
25     /// Checks for functions taking arguments by reference, where
26     /// the argument type is `Copy` and small enough to be more efficient to always
27     /// pass by value.
28     ///
29     /// ### Why is this bad?
30     /// In many calling conventions instances of structs will
31     /// be passed through registers if they fit into two or less general purpose
32     /// registers.
33     ///
34     /// ### Known problems
35     /// This lint is target register size dependent, it is
36     /// limited to 32-bit to try and reduce portability problems between 32 and
37     /// 64-bit, but if you are compiling for 8 or 16-bit targets then the limit
38     /// will be different.
39     ///
40     /// The configuration option `trivial_copy_size_limit` can be set to override
41     /// this limit for a project.
42     ///
43     /// This lint attempts to allow passing arguments by reference if a reference
44     /// to that argument is returned. This is implemented by comparing the lifetime
45     /// of the argument and return value for equality. However, this can cause
46     /// false positives in cases involving multiple lifetimes that are bounded by
47     /// each other.
48     ///
49     /// Also, it does not take account of other similar cases where getting memory addresses
50     /// matters; namely, returning the pointer to the argument in question,
51     /// and passing the argument, as both references and pointers,
52     /// to a function that needs the memory address. For further details, refer to
53     /// [this issue](https://github.com/rust-lang/rust-clippy/issues/5953)
54     /// that explains a real case in which this false positive
55     /// led to an **undefined behaviour** introduced with unsafe code.
56     ///
57     /// ### Example
58     ///
59     /// ```rust
60     /// // Bad
61     /// fn foo(v: &u32) {}
62     /// ```
63     ///
64     /// ```rust
65     /// // Better
66     /// fn foo(v: u32) {}
67     /// ```
68     pub TRIVIALLY_COPY_PASS_BY_REF,
69     pedantic,
70     "functions taking small copyable arguments by reference"
71 }
72
73 declare_clippy_lint! {
74     /// ### What it does
75     /// Checks for functions taking arguments by value, where
76     /// the argument type is `Copy` and large enough to be worth considering
77     /// passing by reference. Does not trigger if the function is being exported,
78     /// because that might induce API breakage, if the parameter is declared as mutable,
79     /// or if the argument is a `self`.
80     ///
81     /// ### Why is this bad?
82     /// Arguments passed by value might result in an unnecessary
83     /// shallow copy, taking up more space in the stack and requiring a call to
84     /// `memcpy`, which can be expensive.
85     ///
86     /// ### Example
87     /// ```rust
88     /// #[derive(Clone, Copy)]
89     /// struct TooLarge([u8; 2048]);
90     ///
91     /// // Bad
92     /// fn foo(v: TooLarge) {}
93     /// ```
94     /// ```rust
95     /// #[derive(Clone, Copy)]
96     /// struct TooLarge([u8; 2048]);
97     ///
98     /// // Good
99     /// fn foo(v: &TooLarge) {}
100     /// ```
101     pub LARGE_TYPES_PASSED_BY_VALUE,
102     pedantic,
103     "functions taking large arguments by value"
104 }
105
106 #[derive(Copy, Clone)]
107 pub struct PassByRefOrValue {
108     ref_min_size: u64,
109     value_max_size: u64,
110     avoid_breaking_exported_api: bool,
111 }
112
113 impl<'tcx> PassByRefOrValue {
114     pub fn new(
115         ref_min_size: Option<u64>,
116         value_max_size: u64,
117         avoid_breaking_exported_api: bool,
118         target: &Target,
119     ) -> Self {
120         let ref_min_size = ref_min_size.unwrap_or_else(|| {
121             let bit_width = u64::from(target.pointer_width);
122             // Cap the calculated bit width at 32-bits to reduce
123             // portability problems between 32 and 64-bit targets
124             let bit_width = cmp::min(bit_width, 32);
125             #[allow(clippy::integer_division)]
126             let byte_width = bit_width / 8;
127             // Use a limit of 2 times the register byte width
128             byte_width * 2
129         });
130
131         Self {
132             ref_min_size,
133             value_max_size,
134             avoid_breaking_exported_api,
135         }
136     }
137
138     fn check_poly_fn(&mut self, cx: &LateContext<'tcx>, def_id: LocalDefId, decl: &FnDecl<'_>, span: Option<Span>) {
139         if self.avoid_breaking_exported_api && cx.access_levels.is_exported(def_id) {
140             return;
141         }
142
143         let fn_sig = cx.tcx.fn_sig(def_id);
144         let fn_sig = cx.tcx.erase_late_bound_regions(fn_sig);
145
146         let fn_body = cx.enclosing_body.map(|id| cx.tcx.hir().body(id));
147
148         for (index, (input, &ty)) in iter::zip(decl.inputs, fn_sig.inputs()).enumerate() {
149             // All spans generated from a proc-macro invocation are the same...
150             match span {
151                 Some(s) if s == input.span => return,
152                 _ => (),
153             }
154
155             match ty.kind() {
156                 ty::Ref(input_lt, ty, Mutability::Not) => {
157                     // Use lifetimes to determine if we're returning a reference to the
158                     // argument. In that case we can't switch to pass-by-value as the
159                     // argument will not live long enough.
160                     let output_lts = match *fn_sig.output().kind() {
161                         ty::Ref(output_lt, _, _) => vec![output_lt],
162                         ty::Adt(_, substs) => substs.regions().collect(),
163                         _ => vec![],
164                     };
165
166                     if_chain! {
167                         if !output_lts.contains(input_lt);
168                         if is_copy(cx, ty);
169                         if let Some(size) = cx.layout_of(ty).ok().map(|l| l.size.bytes());
170                         if size <= self.ref_min_size;
171                         if let hir::TyKind::Rptr(_, MutTy { ty: decl_ty, .. }) = input.kind;
172                         then {
173                             let value_type = if fn_body.and_then(|body| body.params.get(index)).map_or(false, is_self) {
174                                 "self".into()
175                             } else {
176                                 snippet(cx, decl_ty.span, "_").into()
177                             };
178                             span_lint_and_sugg(
179                                 cx,
180                                 TRIVIALLY_COPY_PASS_BY_REF,
181                                 input.span,
182                                 &format!("this argument ({} byte) is passed by reference, but would be more efficient if passed by value (limit: {} byte)", size, self.ref_min_size),
183                                 "consider passing by value instead",
184                                 value_type,
185                                 Applicability::Unspecified,
186                             );
187                         }
188                     }
189                 },
190
191                 ty::Adt(_, _) | ty::Array(_, _) | ty::Tuple(_) => {
192                     // if function has a body and parameter is annotated with mut, ignore
193                     if let Some(param) = fn_body.and_then(|body| body.params.get(index)) {
194                         match param.pat.kind {
195                             PatKind::Binding(BindingAnnotation::Unannotated, _, _, _) => {},
196                             _ => continue,
197                         }
198                     }
199
200                     if_chain! {
201                         if is_copy(cx, ty);
202                         if !is_self_ty(input);
203                         if let Some(size) = cx.layout_of(ty).ok().map(|l| l.size.bytes());
204                         if size > self.value_max_size;
205                         then {
206                             span_lint_and_sugg(
207                                 cx,
208                                 LARGE_TYPES_PASSED_BY_VALUE,
209                                 input.span,
210                                 &format!("this argument ({} byte) is passed by value, but might be more efficient if passed by reference (limit: {} byte)", size, self.value_max_size),
211                                 "consider passing by reference instead",
212                                 format!("&{}", snippet(cx, input.span, "_")),
213                                 Applicability::MaybeIncorrect,
214                             );
215                         }
216                     }
217                 },
218
219                 _ => {},
220             }
221         }
222     }
223 }
224
225 impl_lint_pass!(PassByRefOrValue => [TRIVIALLY_COPY_PASS_BY_REF, LARGE_TYPES_PASSED_BY_VALUE]);
226
227 impl<'tcx> LateLintPass<'tcx> for PassByRefOrValue {
228     fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::TraitItem<'_>) {
229         if item.span.from_expansion() {
230             return;
231         }
232
233         if let hir::TraitItemKind::Fn(method_sig, _) = &item.kind {
234             self.check_poly_fn(cx, item.def_id, &*method_sig.decl, None);
235         }
236     }
237
238     fn check_fn(
239         &mut self,
240         cx: &LateContext<'tcx>,
241         kind: FnKind<'tcx>,
242         decl: &'tcx FnDecl<'_>,
243         _body: &'tcx Body<'_>,
244         span: Span,
245         hir_id: HirId,
246     ) {
247         if span.from_expansion() {
248             return;
249         }
250
251         match kind {
252             FnKind::ItemFn(.., header, _) => {
253                 if header.abi != Abi::Rust {
254                     return;
255                 }
256                 let attrs = cx.tcx.hir().attrs(hir_id);
257                 for a in attrs {
258                     if let Some(meta_items) = a.meta_item_list() {
259                         if a.has_name(sym::proc_macro_derive)
260                             || (a.has_name(sym::inline) && attr::list_contains_name(&meta_items, sym::always))
261                         {
262                             return;
263                         }
264                     }
265                 }
266             },
267             FnKind::Method(..) => (),
268             FnKind::Closure => return,
269         }
270
271         // Exclude non-inherent impls
272         if let Some(Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent_node(hir_id)) {
273             if matches!(
274                 item.kind,
275                 ItemKind::Impl(Impl { of_trait: Some(_), .. }) | ItemKind::Trait(..)
276             ) {
277                 return;
278             }
279         }
280
281         self.check_poly_fn(cx, cx.tcx.hir().local_def_id(hir_id), decl, Some(span));
282     }
283 }