Skip to content

Commit 9ca739e

Browse files
committed
cfg out checks in add and sub but not offset
...because the checks in offset found bugs in a crater run.
1 parent 8293e74 commit 9ca739e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

core/src/ptr/const_ptr.rs

+4
Original file line numberDiff line numberDiff line change
@@ -887,6 +887,7 @@ impl<T: ?Sized> *const T {
887887
where
888888
T: Sized,
889889
{
890+
#[cfg(debug_assertions)]
890891
#[inline]
891892
const fn runtime_add_nowrap(this: *const (), count: usize, size: usize) -> bool {
892893
#[inline]
@@ -905,6 +906,7 @@ impl<T: ?Sized> *const T {
905906
intrinsics::const_eval_select((this, count, size), comptime, runtime)
906907
}
907908

909+
#[cfg(debug_assertions)] // Expensive, and doesn't catch much in the wild.
908910
ub_checks::assert_unsafe_precondition!(
909911
check_language_ub,
910912
"ptr::add requires that the address calculation does not overflow",
@@ -993,6 +995,7 @@ impl<T: ?Sized> *const T {
993995
where
994996
T: Sized,
995997
{
998+
#[cfg(debug_assertions)]
996999
#[inline]
9971000
const fn runtime_sub_nowrap(this: *const (), count: usize, size: usize) -> bool {
9981001
#[inline]
@@ -1010,6 +1013,7 @@ impl<T: ?Sized> *const T {
10101013
intrinsics::const_eval_select((this, count, size), comptime, runtime)
10111014
}
10121015

1016+
#[cfg(debug_assertions)] // Expensive, and doesn't catch much in the wild.
10131017
ub_checks::assert_unsafe_precondition!(
10141018
check_language_ub,
10151019
"ptr::sub requires that the address calculation does not overflow",

core/src/ptr/mut_ptr.rs

+4
Original file line numberDiff line numberDiff line change
@@ -971,6 +971,7 @@ impl<T: ?Sized> *mut T {
971971
where
972972
T: Sized,
973973
{
974+
#[cfg(debug_assertions)]
974975
#[inline]
975976
const fn runtime_add_nowrap(this: *const (), count: usize, size: usize) -> bool {
976977
#[inline]
@@ -989,6 +990,7 @@ impl<T: ?Sized> *mut T {
989990
intrinsics::const_eval_select((this, count, size), comptime, runtime)
990991
}
991992

993+
#[cfg(debug_assertions)] // Expensive, and doesn't catch much in the wild.
992994
ub_checks::assert_unsafe_precondition!(
993995
check_language_ub,
994996
"ptr::add requires that the address calculation does not overflow",
@@ -1077,6 +1079,7 @@ impl<T: ?Sized> *mut T {
10771079
where
10781080
T: Sized,
10791081
{
1082+
#[cfg(debug_assertions)]
10801083
#[inline]
10811084
const fn runtime_sub_nowrap(this: *const (), count: usize, size: usize) -> bool {
10821085
#[inline]
@@ -1094,6 +1097,7 @@ impl<T: ?Sized> *mut T {
10941097
intrinsics::const_eval_select((this, count, size), comptime, runtime)
10951098
}
10961099

1100+
#[cfg(debug_assertions)] // Expensive, and doesn't catch much in the wild.
10971101
ub_checks::assert_unsafe_precondition!(
10981102
check_language_ub,
10991103
"ptr::sub requires that the address calculation does not overflow",

0 commit comments

Comments
 (0)