2020-08-07 02:28:29 +00:00
|
|
|
// run-rustfix
|
|
|
|
#![warn(clippy::transmutes_expressible_as_ptr_casts)]
|
2022-07-18 07:39:37 +00:00
|
|
|
// These two warnings currently cover the cases transmutes_expressible_as_ptr_casts
|
2020-08-07 02:28:29 +00:00
|
|
|
// would otherwise be responsible for
|
|
|
|
#![warn(clippy::useless_transmute)]
|
|
|
|
#![warn(clippy::transmute_ptr_to_ptr)]
|
2022-01-13 12:18:19 +00:00
|
|
|
#![allow(dead_code, unused_unsafe, clippy::borrow_as_ptr)]
|
2020-08-07 02:28:29 +00:00
|
|
|
|
2020-08-09 06:15:56 +00:00
|
|
|
use std::mem::{size_of, transmute};
|
2020-08-07 02:28:29 +00:00
|
|
|
|
2022-09-26 11:00:29 +00:00
|
|
|
// rustc_hir_analysis::check::cast contains documentation about when a cast `e as U` is
|
2020-08-07 02:28:29 +00:00
|
|
|
// valid, which we quote from below.
|
|
|
|
fn main() {
|
|
|
|
// We should see an error message for each transmute, and no error messages for
|
|
|
|
// the casts, since the casts are the recommended fixes.
|
|
|
|
|
|
|
|
// e is an integer and U is *U_0, while U_0: Sized; addr-ptr-cast
|
2020-08-11 13:43:21 +00:00
|
|
|
let _ptr_i32_transmute = unsafe { usize::MAX as *const i32 };
|
2020-08-09 06:28:56 +00:00
|
|
|
let ptr_i32 = usize::MAX as *const i32;
|
2020-08-07 02:28:29 +00:00
|
|
|
|
|
|
|
// e has type *T, U is *U_0, and either U_0: Sized ...
|
2020-08-11 13:43:21 +00:00
|
|
|
let _ptr_i8_transmute = unsafe { ptr_i32 as *const i8 };
|
2020-08-09 06:28:56 +00:00
|
|
|
let _ptr_i8 = ptr_i32 as *const i8;
|
2020-08-07 02:28:29 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
let slice_ptr = &[0, 1, 2, 3] as *const [i32];
|
2020-08-07 02:28:29 +00:00
|
|
|
|
|
|
|
// ... or pointer_kind(T) = pointer_kind(U_0); ptr-ptr-cast
|
2022-03-14 11:02:53 +00:00
|
|
|
let _ptr_to_unsized_transmute = unsafe { slice_ptr as *const [u32] };
|
|
|
|
let _ptr_to_unsized = slice_ptr as *const [u32];
|
2020-08-07 02:28:29 +00:00
|
|
|
// TODO: We could try testing vtable casts here too, but maybe
|
|
|
|
// we should wait until std::raw::TraitObject is stabilized?
|
|
|
|
|
|
|
|
// e has type *T and U is a numeric type, while T: Sized; ptr-addr-cast
|
2020-08-11 13:43:21 +00:00
|
|
|
let _usize_from_int_ptr_transmute = unsafe { ptr_i32 as usize };
|
2020-08-09 06:28:56 +00:00
|
|
|
let _usize_from_int_ptr = ptr_i32 as usize;
|
2020-08-07 02:28:29 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
let array_ref: &[i32; 4] = &[1, 2, 3, 4];
|
2020-08-07 02:28:29 +00:00
|
|
|
|
|
|
|
// e has type &[T; n] and U is *const T; array-ptr-cast
|
2020-08-11 13:43:21 +00:00
|
|
|
let _array_ptr_transmute = unsafe { array_ref as *const [i32; 4] };
|
2020-08-09 06:28:56 +00:00
|
|
|
let _array_ptr = array_ref as *const [i32; 4];
|
2020-08-07 02:28:29 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
fn foo(_: usize) -> u8 {
|
|
|
|
42
|
|
|
|
}
|
2020-08-07 02:28:29 +00:00
|
|
|
|
|
|
|
// e is a function pointer type and U has type *T, while T: Sized; fptr-ptr-cast
|
2020-08-11 13:43:21 +00:00
|
|
|
let _usize_ptr_transmute = unsafe { foo as *const usize };
|
2020-08-09 06:28:56 +00:00
|
|
|
let _usize_ptr_transmute = foo as *const usize;
|
2020-08-07 02:28:29 +00:00
|
|
|
|
|
|
|
// e is a function pointer type and U is an integer; fptr-addr-cast
|
2020-08-11 13:43:21 +00:00
|
|
|
let _usize_from_fn_ptr_transmute = unsafe { foo as usize };
|
2020-08-09 06:28:56 +00:00
|
|
|
let _usize_from_fn_ptr = foo as *const usize;
|
2020-08-07 02:28:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If a ref-to-ptr cast of this form where the pointer type points to a type other
|
|
|
|
// than the referenced type, calling `CastCheck::do_check` has been observed to
|
|
|
|
// cause an ICE error message. `do_check` is currently called inside the
|
|
|
|
// `transmutes_expressible_as_ptr_casts` check, but other, more specific lints
|
|
|
|
// currently prevent it from being called in these cases. This test is meant to
|
|
|
|
// fail if the ordering of the checks ever changes enough to cause these cases to
|
|
|
|
// fall through into `do_check`.
|
|
|
|
fn trigger_do_check_to_emit_error(in_param: &[i32; 1]) -> *const u8 {
|
|
|
|
unsafe { in_param as *const [i32; 1] as *const u8 }
|
|
|
|
}
|
2020-08-09 06:15:56 +00:00
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
struct Single(u64);
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
struct Pair(u32, u32);
|
|
|
|
|
|
|
|
fn cannot_be_expressed_as_pointer_cast(in_param: Single) -> Pair {
|
|
|
|
assert_eq!(size_of::<Single>(), size_of::<Pair>());
|
|
|
|
|
|
|
|
unsafe { transmute::<Single, Pair>(in_param) }
|
|
|
|
}
|