@@ -1017,7 +1017,7 @@ impl<T: ?Sized> Box<T> {
10171017 /// resulting `Box`. Specifically, the `Box` destructor will call
10181018 /// the destructor of `T` and free the allocated memory. For this
10191019 /// to be safe, the memory must have been allocated in accordance
1020- /// with the [memory layout] used by `Box` .
1020+ /// with the [memory layout] used by `Box`.
10211021 ///
10221022 /// # Safety
10231023 ///
@@ -1056,8 +1056,25 @@ impl<T: ?Sized> Box<T> {
10561056 #[ stable( feature = "box_raw" , since = "1.4.0" ) ]
10571057 #[ inline]
10581058 #[ must_use = "call `drop(Box::from_raw(ptr))` if you intend to drop the `Box`" ]
1059- pub unsafe fn from_raw ( raw : * mut T ) -> Self {
1060- unsafe { Self :: from_raw_in ( raw, Global ) }
1059+ pub unsafe fn from_raw ( ptr : * mut T ) -> Self {
1060+ core:: assert_unsafe_precondition!(
1061+ check_language_ub,
1062+ "Box::from_raw requires that its pointer argument is properly aligned and not null" ,
1063+ (
1064+ ptr: * const ( ) = ptr as * const ( ) ,
1065+ align: usize = align_of:: <T >( ) ,
1066+ ) => core:: intrinsics:: const_eval_select!(
1067+ @capture { ptr: * const ( ) , align: usize } -> bool :
1068+ if const {
1069+ !ptr. is_null( )
1070+ } else {
1071+ ptr. is_aligned_to( align) && !ptr. is_null( )
1072+ }
1073+ )
1074+ ) ;
1075+
1076+ //assert_pointer_is_aligned_and_not_null!("Box::from_raw", ptr, align_of::<T>(), T::IS_ZST);
1077+ unsafe { Self :: from_raw_in ( ptr, Global ) }
10611078 }
10621079
10631080 /// Constructs a box from a `NonNull` pointer.
@@ -1111,6 +1128,12 @@ impl<T: ?Sized> Box<T> {
11111128 #[ inline]
11121129 #[ must_use = "call `drop(Box::from_non_null(ptr))` if you intend to drop the `Box`" ]
11131130 pub unsafe fn from_non_null ( ptr : NonNull < T > ) -> Self {
1131+ /*assert_pointer_is_aligned_and_not_null!(
1132+ "Box::from_non_null",
1133+ ptr,
1134+ align_of::<T>(),
1135+ T::IS_ZST
1136+ );*/
11141137 unsafe { Self :: from_raw ( ptr. as_ptr ( ) ) }
11151138 }
11161139}
@@ -1166,8 +1189,14 @@ impl<T: ?Sized, A: Allocator> Box<T, A> {
11661189 #[ unstable( feature = "allocator_api" , issue = "32838" ) ]
11671190 #[ rustc_const_unstable( feature = "const_box" , issue = "92521" ) ]
11681191 #[ inline]
1169- pub const unsafe fn from_raw_in ( raw : * mut T , alloc : A ) -> Self {
1170- Box ( unsafe { Unique :: new_unchecked ( raw) } , alloc)
1192+ pub const unsafe fn from_raw_in ( ptr : * mut T , alloc : A ) -> Self {
1193+ /*assert_pointer_is_aligned_and_not_null!(
1194+ "Box::from_raw_in",
1195+ ptr,
1196+ align_of::<T>(),
1197+ T::IS_ZST
1198+ );*/
1199+ Box ( unsafe { Unique :: new_unchecked ( ptr) } , alloc)
11711200 }
11721201
11731202 /// Constructs a box from a `NonNull` pointer in the given allocator.
0 commit comments