@@ -2569,6 +2569,12 @@ extern "rust-intrinsic" {
2569
2569
#[ rustc_nounwind]
2570
2570
#[ cfg( not( bootstrap) ) ]
2571
2571
pub fn is_val_statically_known < T : Copy > ( arg : T ) -> bool ;
2572
+
2573
+ #[ rustc_const_unstable( feature = "delayed_debug_assertions" , issue = "none" ) ]
2574
+ #[ rustc_safe_intrinsic]
2575
+ #[ rustc_nounwind]
2576
+ #[ cfg( not( bootstrap) ) ]
2577
+ pub ( crate ) fn debug_assertions ( ) -> bool ;
2572
2578
}
2573
2579
2574
2580
// FIXME: Seems using `unstable` here completely ignores `rustc_allow_const_fn_unstable`
@@ -2604,10 +2610,18 @@ pub const unsafe fn is_val_statically_known<T: Copy>(_arg: T) -> bool {
2604
2610
///
2605
2611
/// So in a sense it is UB if this macro is useful, but we expect callers of `unsafe fn` to make
2606
2612
/// the occasional mistake, and this check should help them figure things out.
2607
- #[ allow_internal_unstable( const_eval_select) ] // permit this to be called in stably-const fn
2613
+ #[ allow_internal_unstable( const_eval_select, delayed_debug_assertions ) ] // permit this to be called in stably-const fn
2608
2614
macro_rules! assert_unsafe_precondition {
2609
2615
( $name: expr, $( [ $( $tt: tt) * ] ) ?( $( $i: ident: $ty: ty) ,* $( , ) ?) => $e: expr $( , ) ?) => {
2610
- if cfg!( debug_assertions) {
2616
+ {
2617
+ #[ cfg( bootstrap) ]
2618
+ let should_check = cfg!( debug_assertions) ;
2619
+
2620
+ // Turn assertions off in Miri, but otherwise check in codegen
2621
+ #[ cfg( not( bootstrap) ) ]
2622
+ let should_check = !cfg!( miri) && :: core:: intrinsics:: debug_assertions( ) ;
2623
+
2624
+ if should_check {
2611
2625
// allow non_snake_case to allow capturing const generics
2612
2626
#[ allow( non_snake_case) ]
2613
2627
#[ inline( always) ]
@@ -2625,6 +2639,7 @@ macro_rules! assert_unsafe_precondition {
2625
2639
2626
2640
:: core:: intrinsics:: const_eval_select( ( $( $i, ) * ) , comptime, runtime) ;
2627
2641
}
2642
+ }
2628
2643
} ;
2629
2644
}
2630
2645
pub ( crate ) use assert_unsafe_precondition;
@@ -2633,9 +2648,13 @@ pub(crate) use assert_unsafe_precondition;
2633
2648
/// `align_of::<T>()`.
2634
2649
#[ inline]
2635
2650
pub ( crate ) fn is_aligned_and_not_null < T > ( ptr : * const T ) -> bool {
2636
- !ptr. is_null ( ) && ptr. is_aligned ( )
2651
+ let mask = const { crate :: mem:: align_of :: < T > ( ) - 1 } ;
2652
+ let is_aligned = ( ptr. addr ( ) & mask) == 0 ;
2653
+ let not_null = ptr. addr ( ) != 0 ;
2654
+ is_aligned && not_null
2637
2655
}
2638
2656
2657
+ /*
2639
2658
/// Checks whether an allocation of `len` instances of `T` exceeds
2640
2659
/// the maximum allowed allocation size.
2641
2660
#[inline]
@@ -2646,6 +2665,7 @@ pub(crate) fn is_valid_allocation_size<T>(len: usize) -> bool {
2646
2665
};
2647
2666
len <= max_len
2648
2667
}
2668
+ */
2649
2669
2650
2670
/// Checks whether the regions of memory starting at `src` and `dst` of size
2651
2671
/// `count * size_of::<T>()` do *not* overlap.
0 commit comments