Skip to content

Commit 2dbd623

Browse files
committed
Auto merge of #121303 - GrigorenkoPV:static_mut_refs, r=oli-obk,RalfJung
Get rid of some `#![allow(static_mut_refs)]`
2 parents 21033f6 + 58c8c08 commit 2dbd623

File tree

6 files changed

+31
-42
lines changed

6 files changed

+31
-42
lines changed

library/panic_unwind/src/seh.rs

+17-22
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
use alloc::boxed::Box;
5050
use core::any::Any;
5151
use core::mem::{self, ManuallyDrop};
52-
use core::ptr;
52+
use core::ptr::{addr_of, addr_of_mut};
5353
use libc::{c_int, c_uint, c_void};
5454

5555
// NOTE(nbdd0121): The `canary` field is part of stable ABI.
@@ -135,7 +135,7 @@ mod imp {
135135
macro_rules! ptr {
136136
(0) => (0);
137137
($e:expr) => {
138-
(($e as usize) - (&imp::__ImageBase as *const _ as usize)) as u32
138+
(($e as usize) - (addr_of!(imp::__ImageBase) as usize)) as u32
139139
}
140140
}
141141
}
@@ -220,7 +220,7 @@ extern "C" {
220220
// This is fine since the MSVC runtime uses string comparison on the type name
221221
// to match TypeDescriptors rather than pointer equality.
222222
static mut TYPE_DESCRIPTOR: _TypeDescriptor = _TypeDescriptor {
223-
pVFTable: unsafe { &TYPE_INFO_VTABLE } as *const _ as *const _,
223+
pVFTable: unsafe { addr_of!(TYPE_INFO_VTABLE) } as *const _,
224224
spare: core::ptr::null_mut(),
225225
name: TYPE_NAME,
226226
};
@@ -261,9 +261,6 @@ cfg_if::cfg_if! {
261261
}
262262
}
263263

264-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
265-
#[cfg_attr(bootstrap, allow(static_mut_ref))]
266-
#[cfg_attr(not(bootstrap), allow(static_mut_refs))]
267264
pub unsafe fn panic(data: Box<dyn Any + Send>) -> u32 {
268265
use core::intrinsics::atomic_store_seqcst;
269266

@@ -274,8 +271,9 @@ pub unsafe fn panic(data: Box<dyn Any + Send>) -> u32 {
274271
// The ManuallyDrop is needed here since we don't want Exception to be
275272
// dropped when unwinding. Instead it will be dropped by exception_cleanup
276273
// which is invoked by the C++ runtime.
277-
let mut exception = ManuallyDrop::new(Exception { canary: &TYPE_DESCRIPTOR, data: Some(data) });
278-
let throw_ptr = &mut exception as *mut _ as *mut _;
274+
let mut exception =
275+
ManuallyDrop::new(Exception { canary: addr_of!(TYPE_DESCRIPTOR), data: Some(data) });
276+
let throw_ptr = addr_of_mut!(exception) as *mut _;
279277

280278
// This... may seems surprising, and justifiably so. On 32-bit MSVC the
281279
// pointers between these structure are just that, pointers. On 64-bit MSVC,
@@ -298,45 +296,42 @@ pub unsafe fn panic(data: Box<dyn Any + Send>) -> u32 {
298296
// In any case, we basically need to do something like this until we can
299297
// express more operations in statics (and we may never be able to).
300298
atomic_store_seqcst(
301-
&mut THROW_INFO.pmfnUnwind as *mut _ as *mut u32,
299+
addr_of_mut!(THROW_INFO.pmfnUnwind) as *mut u32,
302300
ptr!(exception_cleanup) as u32,
303301
);
304302
atomic_store_seqcst(
305-
&mut THROW_INFO.pCatchableTypeArray as *mut _ as *mut u32,
306-
ptr!(&CATCHABLE_TYPE_ARRAY as *const _) as u32,
303+
addr_of_mut!(THROW_INFO.pCatchableTypeArray) as *mut u32,
304+
ptr!(addr_of!(CATCHABLE_TYPE_ARRAY)) as u32,
307305
);
308306
atomic_store_seqcst(
309-
&mut CATCHABLE_TYPE_ARRAY.arrayOfCatchableTypes[0] as *mut _ as *mut u32,
310-
ptr!(&CATCHABLE_TYPE as *const _) as u32,
307+
addr_of_mut!(CATCHABLE_TYPE_ARRAY.arrayOfCatchableTypes[0]) as *mut u32,
308+
ptr!(addr_of!(CATCHABLE_TYPE)) as u32,
311309
);
312310
atomic_store_seqcst(
313-
&mut CATCHABLE_TYPE.pType as *mut _ as *mut u32,
314-
ptr!(&TYPE_DESCRIPTOR as *const _) as u32,
311+
addr_of_mut!(CATCHABLE_TYPE.pType) as *mut u32,
312+
ptr!(addr_of!(TYPE_DESCRIPTOR)) as u32,
315313
);
316314
atomic_store_seqcst(
317-
&mut CATCHABLE_TYPE.copyFunction as *mut _ as *mut u32,
315+
addr_of_mut!(CATCHABLE_TYPE.copyFunction) as *mut u32,
318316
ptr!(exception_copy) as u32,
319317
);
320318

321319
extern "system-unwind" {
322320
fn _CxxThrowException(pExceptionObject: *mut c_void, pThrowInfo: *mut u8) -> !;
323321
}
324322

325-
_CxxThrowException(throw_ptr, &mut THROW_INFO as *mut _ as *mut _);
323+
_CxxThrowException(throw_ptr, addr_of_mut!(THROW_INFO) as *mut _);
326324
}
327325

328-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
329-
#[cfg_attr(bootstrap, allow(static_mut_ref))]
330-
#[cfg_attr(not(bootstrap), allow(static_mut_refs))]
331326
pub unsafe fn cleanup(payload: *mut u8) -> Box<dyn Any + Send> {
332327
// A null payload here means that we got here from the catch (...) of
333328
// __rust_try. This happens when a non-Rust foreign exception is caught.
334329
if payload.is_null() {
335330
super::__rust_foreign_exception();
336331
}
337332
let exception = payload as *mut Exception;
338-
let canary = ptr::addr_of!((*exception).canary).read();
339-
if !ptr::eq(canary, &TYPE_DESCRIPTOR) {
333+
let canary = addr_of!((*exception).canary).read();
334+
if !core::ptr::eq(canary, addr_of!(TYPE_DESCRIPTOR)) {
340335
// A foreign Rust exception.
341336
super::__rust_foreign_exception();
342337
}

library/std/src/panicking.rs

-3
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,6 @@ pub mod panic_count {
337337
#[doc(hidden)]
338338
#[cfg(not(feature = "panic_immediate_abort"))]
339339
#[unstable(feature = "update_panic_count", issue = "none")]
340-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
341-
#[cfg_attr(bootstrap, allow(static_mut_ref))]
342-
#[cfg_attr(not(bootstrap), allow(static_mut_refs))]
343340
pub mod panic_count {
344341
use crate::cell::Cell;
345342
use crate::sync::atomic::{AtomicUsize, Ordering};

library/std/src/thread/local.rs

-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@ impl<T: 'static> fmt::Debug for LocalKey<T> {
180180
#[stable(feature = "rust1", since = "1.0.0")]
181181
#[cfg_attr(not(test), rustc_diagnostic_item = "thread_local_macro")]
182182
#[allow_internal_unstable(thread_local_internals)]
183-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
184-
#[cfg_attr(not(bootstrap), allow(static_mut_refs))]
185183
macro_rules! thread_local {
186184
// empty (base case for the recursion)
187185
() => {};
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//! Ensure that thread-local statics get deallocated when the thread dies.
22
33
#![feature(thread_local)]
4-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
5-
#![allow(static_mut_refs)]
4+
5+
use std::ptr::addr_of;
66

77
#[thread_local]
88
static mut TLS: u8 = 0;
@@ -12,7 +12,7 @@ unsafe impl Send for SendRaw {}
1212

1313
fn main() {
1414
unsafe {
15-
let dangling_ptr = std::thread::spawn(|| SendRaw(&TLS as *const u8)).join().unwrap();
15+
let dangling_ptr = std::thread::spawn(|| SendRaw(addr_of!(TLS))).join().unwrap();
1616
let _val = *dangling_ptr.0; //~ ERROR: has been freed
1717
}
1818
}

src/tools/miri/tests/pass/static_mut.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
use std::ptr::addr_of;
2+
13
static mut FOO: i32 = 42;
24

3-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
4-
#[allow(static_mut_refs)]
5-
static BAR: Foo = Foo(unsafe { &FOO as *const _ });
5+
static BAR: Foo = Foo(unsafe { addr_of!(FOO) });
66

77
#[allow(dead_code)]
88
struct Foo(*const i32);

src/tools/miri/tests/pass/tls/tls_static.rs

+8-9
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
//! test, we also check that thread-locals act as per-thread statics.
99
1010
#![feature(thread_local)]
11-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
12-
#![allow(static_mut_refs)]
1311

12+
use std::ptr::addr_of_mut;
1413
use std::thread;
1514

1615
#[thread_local]
@@ -23,8 +22,8 @@ static mut C: u8 = 0;
2322
#[thread_local]
2423
static READ_ONLY: u8 = 42;
2524

26-
unsafe fn get_a_ref() -> *mut u8 {
27-
&mut A
25+
unsafe fn get_a_ptr() -> *mut u8 {
26+
addr_of_mut!(A)
2827
}
2928

3029
struct Sender(*mut u8);
@@ -35,12 +34,12 @@ fn main() {
3534
let _val = READ_ONLY;
3635

3736
let ptr = unsafe {
38-
let x = get_a_ref();
37+
let x = get_a_ptr();
3938
*x = 5;
4039
assert_eq!(A, 5);
4140
B = 15;
4241
C = 25;
43-
Sender(&mut A)
42+
Sender(addr_of_mut!(A))
4443
};
4544

4645
thread::spawn(move || unsafe {
@@ -51,18 +50,18 @@ fn main() {
5150
assert_eq!(C, 25);
5251
B = 14;
5352
C = 24;
54-
let y = get_a_ref();
53+
let y = get_a_ptr();
5554
assert_eq!(*y, 0);
5655
*y = 4;
5756
assert_eq!(*ptr.0, 5);
5857
assert_eq!(A, 4);
59-
assert_eq!(*get_a_ref(), 4);
58+
assert_eq!(*get_a_ptr(), 4);
6059
})
6160
.join()
6261
.unwrap();
6362

6463
unsafe {
65-
assert_eq!(*get_a_ref(), 5);
64+
assert_eq!(*get_a_ptr(), 5);
6665
assert_eq!(A, 5);
6766
assert_eq!(B, 15);
6867
assert_eq!(C, 24);

0 commit comments

Comments
 (0)