]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/transmute/mod.rs
Add transmute/utils.rs
[rust.git] / clippy_lints / src / transmute / mod.rs
1 mod utils;
2 use utils::*;
3
4 use crate::utils::{
5     in_constant, match_def_path, paths, snippet, span_lint, span_lint_and_sugg, span_lint_and_then, sugg,
6 };
7 use if_chain::if_chain;
8 use rustc_ast as ast;
9 use rustc_errors::Applicability;
10 use rustc_hir::{Expr, ExprKind, Mutability, UnOp};
11 use rustc_lint::{LateContext, LateLintPass};
12 use rustc_middle::ty;
13 use rustc_session::{declare_lint_pass, declare_tool_lint};
14 use std::borrow::Cow;
15
16 declare_clippy_lint! {
17     /// **What it does:** Checks for transmutes that can't ever be correct on any
18     /// architecture.
19     ///
20     /// **Why is this bad?** It's basically guaranteed to be undefined behaviour.
21     ///
22     /// **Known problems:** When accessing C, users might want to store pointer
23     /// sized objects in `extradata` arguments to save an allocation.
24     ///
25     /// **Example:**
26     /// ```ignore
27     /// let ptr: *const T = core::intrinsics::transmute('x')
28     /// ```
29     pub WRONG_TRANSMUTE,
30     correctness,
31     "transmutes that are confusing at best, undefined behaviour at worst and always useless"
32 }
33
34 // FIXME: Move this to `complexity` again, after #5343 is fixed
35 declare_clippy_lint! {
36     /// **What it does:** Checks for transmutes to the original type of the object
37     /// and transmutes that could be a cast.
38     ///
39     /// **Why is this bad?** Readability. The code tricks people into thinking that
40     /// something complex is going on.
41     ///
42     /// **Known problems:** None.
43     ///
44     /// **Example:**
45     /// ```rust,ignore
46     /// core::intrinsics::transmute(t); // where the result type is the same as `t`'s
47     /// ```
48     pub USELESS_TRANSMUTE,
49     nursery,
50     "transmutes that have the same to and from types or could be a cast/coercion"
51 }
52
53 // FIXME: Merge this lint with USELESS_TRANSMUTE once that is out of the nursery.
54 declare_clippy_lint! {
55     /// **What it does:**Checks for transmutes that could be a pointer cast.
56     ///
57     /// **Why is this bad?** Readability. The code tricks people into thinking that
58     /// something complex is going on.
59     ///
60     /// **Known problems:** None.
61     ///
62     /// **Example:**
63     ///
64     /// ```rust
65     /// # let p: *const [i32] = &[];
66     /// unsafe { std::mem::transmute::<*const [i32], *const [u16]>(p) };
67     /// ```
68     /// Use instead:
69     /// ```rust
70     /// # let p: *const [i32] = &[];
71     /// p as *const [u16];
72     /// ```
73     pub TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS,
74     complexity,
75     "transmutes that could be a pointer cast"
76 }
77
78 declare_clippy_lint! {
79     /// **What it does:** Checks for transmutes between a type `T` and `*T`.
80     ///
81     /// **Why is this bad?** It's easy to mistakenly transmute between a type and a
82     /// pointer to that type.
83     ///
84     /// **Known problems:** None.
85     ///
86     /// **Example:**
87     /// ```rust,ignore
88     /// core::intrinsics::transmute(t) // where the result type is the same as
89     ///                                // `*t` or `&t`'s
90     /// ```
91     pub CROSSPOINTER_TRANSMUTE,
92     complexity,
93     "transmutes that have to or from types that are a pointer to the other"
94 }
95
96 declare_clippy_lint! {
97     /// **What it does:** Checks for transmutes from a pointer to a reference.
98     ///
99     /// **Why is this bad?** This can always be rewritten with `&` and `*`.
100     ///
101     /// **Known problems:**
102     /// - `mem::transmute` in statics and constants is stable from Rust 1.46.0,
103     /// while dereferencing raw pointer is not stable yet.
104     /// If you need to do this in those places,
105     /// you would have to use `transmute` instead.
106     ///
107     /// **Example:**
108     /// ```rust,ignore
109     /// unsafe {
110     ///     let _: &T = std::mem::transmute(p); // where p: *const T
111     /// }
112     ///
113     /// // can be written:
114     /// let _: &T = &*p;
115     /// ```
116     pub TRANSMUTE_PTR_TO_REF,
117     complexity,
118     "transmutes from a pointer to a reference type"
119 }
120
121 declare_clippy_lint! {
122     /// **What it does:** Checks for transmutes from an integer to a `char`.
123     ///
124     /// **Why is this bad?** Not every integer is a Unicode scalar value.
125     ///
126     /// **Known problems:**
127     /// - [`from_u32`] which this lint suggests using is slower than `transmute`
128     /// as it needs to validate the input.
129     /// If you are certain that the input is always a valid Unicode scalar value,
130     /// use [`from_u32_unchecked`] which is as fast as `transmute`
131     /// but has a semantically meaningful name.
132     /// - You might want to handle `None` returned from [`from_u32`] instead of calling `unwrap`.
133     ///
134     /// [`from_u32`]: https://doc.rust-lang.org/std/char/fn.from_u32.html
135     /// [`from_u32_unchecked`]: https://doc.rust-lang.org/std/char/fn.from_u32_unchecked.html
136     ///
137     /// **Example:**
138     /// ```rust
139     /// let x = 1_u32;
140     /// unsafe {
141     ///     let _: char = std::mem::transmute(x); // where x: u32
142     /// }
143     ///
144     /// // should be:
145     /// let _ = std::char::from_u32(x).unwrap();
146     /// ```
147     pub TRANSMUTE_INT_TO_CHAR,
148     complexity,
149     "transmutes from an integer to a `char`"
150 }
151
152 declare_clippy_lint! {
153     /// **What it does:** Checks for transmutes from a `&[u8]` to a `&str`.
154     ///
155     /// **Why is this bad?** Not every byte slice is a valid UTF-8 string.
156     ///
157     /// **Known problems:**
158     /// - [`from_utf8`] which this lint suggests using is slower than `transmute`
159     /// as it needs to validate the input.
160     /// If you are certain that the input is always a valid UTF-8,
161     /// use [`from_utf8_unchecked`] which is as fast as `transmute`
162     /// but has a semantically meaningful name.
163     /// - You might want to handle errors returned from [`from_utf8`] instead of calling `unwrap`.
164     ///
165     /// [`from_utf8`]: https://doc.rust-lang.org/std/str/fn.from_utf8.html
166     /// [`from_utf8_unchecked`]: https://doc.rust-lang.org/std/str/fn.from_utf8_unchecked.html
167     ///
168     /// **Example:**
169     /// ```rust
170     /// let b: &[u8] = &[1_u8, 2_u8];
171     /// unsafe {
172     ///     let _: &str = std::mem::transmute(b); // where b: &[u8]
173     /// }
174     ///
175     /// // should be:
176     /// let _ = std::str::from_utf8(b).unwrap();
177     /// ```
178     pub TRANSMUTE_BYTES_TO_STR,
179     complexity,
180     "transmutes from a `&[u8]` to a `&str`"
181 }
182
183 declare_clippy_lint! {
184     /// **What it does:** Checks for transmutes from an integer to a `bool`.
185     ///
186     /// **Why is this bad?** This might result in an invalid in-memory representation of a `bool`.
187     ///
188     /// **Known problems:** None.
189     ///
190     /// **Example:**
191     /// ```rust
192     /// let x = 1_u8;
193     /// unsafe {
194     ///     let _: bool = std::mem::transmute(x); // where x: u8
195     /// }
196     ///
197     /// // should be:
198     /// let _: bool = x != 0;
199     /// ```
200     pub TRANSMUTE_INT_TO_BOOL,
201     complexity,
202     "transmutes from an integer to a `bool`"
203 }
204
205 declare_clippy_lint! {
206     /// **What it does:** Checks for transmutes from an integer to a float.
207     ///
208     /// **Why is this bad?** Transmutes are dangerous and error-prone, whereas `from_bits` is intuitive
209     /// and safe.
210     ///
211     /// **Known problems:** None.
212     ///
213     /// **Example:**
214     /// ```rust
215     /// unsafe {
216     ///     let _: f32 = std::mem::transmute(1_u32); // where x: u32
217     /// }
218     ///
219     /// // should be:
220     /// let _: f32 = f32::from_bits(1_u32);
221     /// ```
222     pub TRANSMUTE_INT_TO_FLOAT,
223     complexity,
224     "transmutes from an integer to a float"
225 }
226
227 declare_clippy_lint! {
228     /// **What it does:** Checks for transmutes from a float to an integer.
229     ///
230     /// **Why is this bad?** Transmutes are dangerous and error-prone, whereas `to_bits` is intuitive
231     /// and safe.
232     ///
233     /// **Known problems:** None.
234     ///
235     /// **Example:**
236     /// ```rust
237     /// unsafe {
238     ///     let _: u32 = std::mem::transmute(1f32);
239     /// }
240     ///
241     /// // should be:
242     /// let _: u32 = 1f32.to_bits();
243     /// ```
244     pub TRANSMUTE_FLOAT_TO_INT,
245     complexity,
246     "transmutes from a float to an integer"
247 }
248
249 declare_clippy_lint! {
250     /// **What it does:** Checks for transmutes from a pointer to a pointer, or
251     /// from a reference to a reference.
252     ///
253     /// **Why is this bad?** Transmutes are dangerous, and these can instead be
254     /// written as casts.
255     ///
256     /// **Known problems:** None.
257     ///
258     /// **Example:**
259     /// ```rust
260     /// let ptr = &1u32 as *const u32;
261     /// unsafe {
262     ///     // pointer-to-pointer transmute
263     ///     let _: *const f32 = std::mem::transmute(ptr);
264     ///     // ref-ref transmute
265     ///     let _: &f32 = std::mem::transmute(&1u32);
266     /// }
267     /// // These can be respectively written:
268     /// let _ = ptr as *const f32;
269     /// let _ = unsafe{ &*(&1u32 as *const u32 as *const f32) };
270     /// ```
271     pub TRANSMUTE_PTR_TO_PTR,
272     complexity,
273     "transmutes from a pointer to a pointer / a reference to a reference"
274 }
275
276 declare_clippy_lint! {
277     /// **What it does:** Checks for transmutes between collections whose
278     /// types have different ABI, size or alignment.
279     ///
280     /// **Why is this bad?** This is undefined behavior.
281     ///
282     /// **Known problems:** Currently, we cannot know whether a type is a
283     /// collection, so we just lint the ones that come with `std`.
284     ///
285     /// **Example:**
286     /// ```rust
287     /// // different size, therefore likely out-of-bounds memory access
288     /// // You absolutely do not want this in your code!
289     /// unsafe {
290     ///     std::mem::transmute::<_, Vec<u32>>(vec![2_u16])
291     /// };
292     /// ```
293     ///
294     /// You must always iterate, map and collect the values:
295     ///
296     /// ```rust
297     /// vec![2_u16].into_iter().map(u32::from).collect::<Vec<_>>();
298     /// ```
299     pub UNSOUND_COLLECTION_TRANSMUTE,
300     correctness,
301     "transmute between collections of layout-incompatible types"
302 }
303
304 declare_lint_pass!(Transmute => [
305     CROSSPOINTER_TRANSMUTE,
306     TRANSMUTE_PTR_TO_REF,
307     TRANSMUTE_PTR_TO_PTR,
308     USELESS_TRANSMUTE,
309     WRONG_TRANSMUTE,
310     TRANSMUTE_INT_TO_CHAR,
311     TRANSMUTE_BYTES_TO_STR,
312     TRANSMUTE_INT_TO_BOOL,
313     TRANSMUTE_INT_TO_FLOAT,
314     TRANSMUTE_FLOAT_TO_INT,
315     UNSOUND_COLLECTION_TRANSMUTE,
316     TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS,
317 ]);
318
319 // used to check for UNSOUND_COLLECTION_TRANSMUTE
320 static COLLECTIONS: &[&[&str]] = &[
321     &paths::VEC,
322     &paths::VEC_DEQUE,
323     &paths::BINARY_HEAP,
324     &paths::BTREESET,
325     &paths::BTREEMAP,
326     &paths::HASHSET,
327     &paths::HASHMAP,
328 ];
329
330 impl<'tcx> LateLintPass<'tcx> for Transmute {
331     #[allow(clippy::similar_names, clippy::too_many_lines)]
332     fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
333         if_chain! {
334             if let ExprKind::Call(ref path_expr, ref args) = e.kind;
335             if let ExprKind::Path(ref qpath) = path_expr.kind;
336             if let Some(def_id) = cx.qpath_res(qpath, path_expr.hir_id).opt_def_id();
337             if match_def_path(cx, def_id, &paths::TRANSMUTE);
338             then {
339                 // Avoid suggesting from/to bits and dereferencing raw pointers in const contexts.
340                 // See https://github.com/rust-lang/rust/issues/73736 for progress on making them `const fn`.
341                 // And see https://github.com/rust-lang/rust/issues/51911 for dereferencing raw pointers.
342                 let const_context = in_constant(cx, e.hir_id);
343
344                 let from_ty = cx.typeck_results().expr_ty(&args[0]);
345                 let to_ty = cx.typeck_results().expr_ty(e);
346
347                 match (&from_ty.kind(), &to_ty.kind()) {
348                     _ if from_ty == to_ty => span_lint(
349                         cx,
350                         USELESS_TRANSMUTE,
351                         e.span,
352                         &format!("transmute from a type (`{}`) to itself", from_ty),
353                     ),
354                     (ty::Ref(_, rty, rty_mutbl), ty::RawPtr(ptr_ty)) => span_lint_and_then(
355                         cx,
356                         USELESS_TRANSMUTE,
357                         e.span,
358                         "transmute from a reference to a pointer",
359                         |diag| {
360                             if let Some(arg) = sugg::Sugg::hir_opt(cx, &args[0]) {
361                                 let rty_and_mut = ty::TypeAndMut {
362                                     ty: rty,
363                                     mutbl: *rty_mutbl,
364                                 };
365
366                                 let sugg = if *ptr_ty == rty_and_mut {
367                                     arg.as_ty(to_ty)
368                                 } else {
369                                     arg.as_ty(cx.tcx.mk_ptr(rty_and_mut)).as_ty(to_ty)
370                                 };
371
372                                 diag.span_suggestion(e.span, "try", sugg.to_string(), Applicability::Unspecified);
373                             }
374                         },
375                     ),
376                     (ty::Int(_) | ty::Uint(_), ty::RawPtr(_)) => span_lint_and_then(
377                         cx,
378                         USELESS_TRANSMUTE,
379                         e.span,
380                         "transmute from an integer to a pointer",
381                         |diag| {
382                             if let Some(arg) = sugg::Sugg::hir_opt(cx, &args[0]) {
383                                 diag.span_suggestion(
384                                     e.span,
385                                     "try",
386                                     arg.as_ty(&to_ty.to_string()).to_string(),
387                                     Applicability::Unspecified,
388                                 );
389                             }
390                         },
391                     ),
392                     (ty::Float(_) | ty::Char, ty::Ref(..) | ty::RawPtr(_)) => span_lint(
393                         cx,
394                         WRONG_TRANSMUTE,
395                         e.span,
396                         &format!("transmute from a `{}` to a pointer", from_ty),
397                     ),
398                     (ty::RawPtr(from_ptr), _) if from_ptr.ty == to_ty => span_lint(
399                         cx,
400                         CROSSPOINTER_TRANSMUTE,
401                         e.span,
402                         &format!(
403                             "transmute from a type (`{}`) to the type that it points to (`{}`)",
404                             from_ty, to_ty
405                         ),
406                     ),
407                     (_, ty::RawPtr(to_ptr)) if to_ptr.ty == from_ty => span_lint(
408                         cx,
409                         CROSSPOINTER_TRANSMUTE,
410                         e.span,
411                         &format!(
412                             "transmute from a type (`{}`) to a pointer to that type (`{}`)",
413                             from_ty, to_ty
414                         ),
415                     ),
416                     (ty::RawPtr(from_pty), ty::Ref(_, to_ref_ty, mutbl)) => span_lint_and_then(
417                         cx,
418                         TRANSMUTE_PTR_TO_REF,
419                         e.span,
420                         &format!(
421                             "transmute from a pointer type (`{}`) to a reference type \
422                              (`{}`)",
423                             from_ty, to_ty
424                         ),
425                         |diag| {
426                             let arg = sugg::Sugg::hir(cx, &args[0], "..");
427                             let (deref, cast) = if *mutbl == Mutability::Mut {
428                                 ("&mut *", "*mut")
429                             } else {
430                                 ("&*", "*const")
431                             };
432
433                             let arg = if from_pty.ty == *to_ref_ty {
434                                 arg
435                             } else {
436                                 arg.as_ty(&format!("{} {}", cast, get_type_snippet(cx, qpath, to_ref_ty)))
437                             };
438
439                             diag.span_suggestion(
440                                 e.span,
441                                 "try",
442                                 sugg::make_unop(deref, arg).to_string(),
443                                 Applicability::Unspecified,
444                             );
445                         },
446                     ),
447                     (ty::Int(ty::IntTy::I32) | ty::Uint(ty::UintTy::U32), &ty::Char) => {
448                         span_lint_and_then(
449                             cx,
450                             TRANSMUTE_INT_TO_CHAR,
451                             e.span,
452                             &format!("transmute from a `{}` to a `char`", from_ty),
453                             |diag| {
454                                 let arg = sugg::Sugg::hir(cx, &args[0], "..");
455                                 let arg = if let ty::Int(_) = from_ty.kind() {
456                                     arg.as_ty(ast::UintTy::U32.name_str())
457                                 } else {
458                                     arg
459                                 };
460                                 diag.span_suggestion(
461                                     e.span,
462                                     "consider using",
463                                     format!("std::char::from_u32({}).unwrap()", arg.to_string()),
464                                     Applicability::Unspecified,
465                                 );
466                             },
467                         )
468                     },
469                     (ty::Ref(_, ty_from, from_mutbl), ty::Ref(_, ty_to, to_mutbl)) => {
470                         if_chain! {
471                             if let (&ty::Slice(slice_ty), &ty::Str) = (&ty_from.kind(), &ty_to.kind());
472                             if let ty::Uint(ty::UintTy::U8) = slice_ty.kind();
473                             if from_mutbl == to_mutbl;
474                             then {
475                                 let postfix = if *from_mutbl == Mutability::Mut {
476                                     "_mut"
477                                 } else {
478                                     ""
479                                 };
480
481                                 span_lint_and_sugg(
482                                     cx,
483                                     TRANSMUTE_BYTES_TO_STR,
484                                     e.span,
485                                     &format!("transmute from a `{}` to a `{}`", from_ty, to_ty),
486                                     "consider using",
487                                     format!(
488                                         "std::str::from_utf8{}({}).unwrap()",
489                                         postfix,
490                                         snippet(cx, args[0].span, ".."),
491                                     ),
492                                     Applicability::Unspecified,
493                                 );
494                             } else {
495                                 if (cx.tcx.erase_regions(from_ty) != cx.tcx.erase_regions(to_ty))
496                                     && !const_context {
497                                     span_lint_and_then(
498                                         cx,
499                                         TRANSMUTE_PTR_TO_PTR,
500                                         e.span,
501                                         "transmute from a reference to a reference",
502                                         |diag| if let Some(arg) = sugg::Sugg::hir_opt(cx, &args[0]) {
503                                             let ty_from_and_mut = ty::TypeAndMut {
504                                                 ty: ty_from,
505                                                 mutbl: *from_mutbl
506                                             };
507                                             let ty_to_and_mut = ty::TypeAndMut { ty: ty_to, mutbl: *to_mutbl };
508                                             let sugg_paren = arg
509                                                 .as_ty(cx.tcx.mk_ptr(ty_from_and_mut))
510                                                 .as_ty(cx.tcx.mk_ptr(ty_to_and_mut));
511                                             let sugg = if *to_mutbl == Mutability::Mut {
512                                                 sugg_paren.mut_addr_deref()
513                                             } else {
514                                                 sugg_paren.addr_deref()
515                                             };
516                                             diag.span_suggestion(
517                                                 e.span,
518                                                 "try",
519                                                 sugg.to_string(),
520                                                 Applicability::Unspecified,
521                                             );
522                                         },
523                                     )
524                                 }
525                             }
526                         }
527                     },
528                     (ty::RawPtr(_), ty::RawPtr(to_ty)) => span_lint_and_then(
529                         cx,
530                         TRANSMUTE_PTR_TO_PTR,
531                         e.span,
532                         "transmute from a pointer to a pointer",
533                         |diag| {
534                             if let Some(arg) = sugg::Sugg::hir_opt(cx, &args[0]) {
535                                 let sugg = arg.as_ty(cx.tcx.mk_ptr(*to_ty));
536                                 diag.span_suggestion(e.span, "try", sugg.to_string(), Applicability::Unspecified);
537                             }
538                         },
539                     ),
540                     (ty::Int(ty::IntTy::I8) | ty::Uint(ty::UintTy::U8), ty::Bool) => {
541                         span_lint_and_then(
542                             cx,
543                             TRANSMUTE_INT_TO_BOOL,
544                             e.span,
545                             &format!("transmute from a `{}` to a `bool`", from_ty),
546                             |diag| {
547                                 let arg = sugg::Sugg::hir(cx, &args[0], "..");
548                                 let zero = sugg::Sugg::NonParen(Cow::from("0"));
549                                 diag.span_suggestion(
550                                     e.span,
551                                     "consider using",
552                                     sugg::make_binop(ast::BinOpKind::Ne, &arg, &zero).to_string(),
553                                     Applicability::Unspecified,
554                                 );
555                             },
556                         )
557                     },
558                     (ty::Int(_) | ty::Uint(_), ty::Float(_)) if !const_context => span_lint_and_then(
559                         cx,
560                         TRANSMUTE_INT_TO_FLOAT,
561                         e.span,
562                         &format!("transmute from a `{}` to a `{}`", from_ty, to_ty),
563                         |diag| {
564                             let arg = sugg::Sugg::hir(cx, &args[0], "..");
565                             let arg = if let ty::Int(int_ty) = from_ty.kind() {
566                                 arg.as_ty(format!(
567                                     "u{}",
568                                     int_ty.bit_width().map_or_else(|| "size".to_string(), |v| v.to_string())
569                                 ))
570                             } else {
571                                 arg
572                             };
573                             diag.span_suggestion(
574                                 e.span,
575                                 "consider using",
576                                 format!("{}::from_bits({})", to_ty, arg.to_string()),
577                                 Applicability::Unspecified,
578                             );
579                         },
580                     ),
581                     (ty::Float(float_ty), ty::Int(_) | ty::Uint(_)) if !const_context => span_lint_and_then(
582                         cx,
583                         TRANSMUTE_FLOAT_TO_INT,
584                         e.span,
585                         &format!("transmute from a `{}` to a `{}`", from_ty, to_ty),
586                         |diag| {
587                             let mut expr = &args[0];
588                             let mut arg = sugg::Sugg::hir(cx, expr, "..");
589
590                             if let ExprKind::Unary(UnOp::Neg, inner_expr) = &expr.kind {
591                                 expr = &inner_expr;
592                             }
593
594                             if_chain! {
595                                 // if the expression is a float literal and it is unsuffixed then
596                                 // add a suffix so the suggestion is valid and unambiguous
597                                 let op = format!("{}{}", arg, float_ty.name_str()).into();
598                                 if let ExprKind::Lit(lit) = &expr.kind;
599                                 if let ast::LitKind::Float(_, ast::LitFloatType::Unsuffixed) = lit.node;
600                                 then {
601                                     match arg {
602                                         sugg::Sugg::MaybeParen(_) => arg = sugg::Sugg::MaybeParen(op),
603                                         _ => arg = sugg::Sugg::NonParen(op)
604                                     }
605                                 }
606                             }
607
608                             arg = sugg::Sugg::NonParen(format!("{}.to_bits()", arg.maybe_par()).into());
609
610                             // cast the result of `to_bits` if `to_ty` is signed
611                             arg = if let ty::Int(int_ty) = to_ty.kind() {
612                                 arg.as_ty(int_ty.name_str().to_string())
613                             } else {
614                                 arg
615                             };
616
617                             diag.span_suggestion(
618                                 e.span,
619                                 "consider using",
620                                 arg.to_string(),
621                                 Applicability::Unspecified,
622                             );
623                         },
624                     ),
625                     (ty::Adt(from_adt, from_substs), ty::Adt(to_adt, to_substs)) => {
626                         if from_adt.did != to_adt.did ||
627                                 !COLLECTIONS.iter().any(|path| match_def_path(cx, to_adt.did, path)) {
628                             return;
629                         }
630                         if from_substs.types().zip(to_substs.types())
631                                               .any(|(from_ty, to_ty)| is_layout_incompatible(cx, from_ty, to_ty)) {
632                             span_lint(
633                                 cx,
634                                 UNSOUND_COLLECTION_TRANSMUTE,
635                                 e.span,
636                                 &format!(
637                                     "transmute from `{}` to `{}` with mismatched layout is unsound",
638                                     from_ty,
639                                     to_ty
640                                 )
641                             );
642                         }
643                     },
644                     (_, _) if can_be_expressed_as_pointer_cast(cx, e, from_ty, to_ty) => span_lint_and_then(
645                         cx,
646                         TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS,
647                         e.span,
648                         &format!(
649                             "transmute from `{}` to `{}` which could be expressed as a pointer cast instead",
650                             from_ty,
651                             to_ty
652                         ),
653                         |diag| {
654                             if let Some(arg) = sugg::Sugg::hir_opt(cx, &args[0]) {
655                                 let sugg = arg.as_ty(&to_ty.to_string()).to_string();
656                                 diag.span_suggestion(e.span, "try", sugg, Applicability::MachineApplicable);
657                             }
658                         }
659                     ),
660                     _ => {
661                         return;
662                     },
663                 }
664             }
665         }
666     }
667 }