- Status: Resolved
- Tracking Issue: #71
- Start date: 2024/08/23
- End date: 2025/04/10
- Reward: N/A
- Contributors: Aaron Lang, Shivani Ghuge and Alvaro Luna
Verify the safety of NonZero
in core::num
.
new
and get
leverage transmute_unchecked
, so verifying the safety of these methods would require verifying that transmutations are safe. This task is out of scope for this challenge (instead, it's work for Challenge 1). For this challenge, for a transmutation from type T
to type U
, it suffices to write and verify a contract that T
and U
have the same size.
You may assume that each NonZeroInner
type upholds the safety conditions of the ZeroablePrimitive
trait. Specifically, you need not verify that the integer primitives which implement ZeroablePrimitive
are valid when 0, or that transmutations to the Option
type are sound.
Verify the safety and correctness of NonZero::new
and NonZero::new_unchecked
.
Specifically, write and verify contracts specifying the following:
- The preconditions specified by the
SAFETY
comments are upheld. - For an input
n
:
a. ANonZero
object is created if and only if the input was nonzero.
b. The value of theNonZeroInner
object equalsn
.
Verify the safety of the following functions and methods (all located within core::num::nonzero
):
Function |
---|
max |
min |
clamp |
bitor (all 3 implementations) |
count_ones |
rotate_left |
rotate_right |
swap_bytes |
reverse_bits |
from_be |
from_le |
to_be |
to_le |
checked_mul |
saturating_mul |
unchecked_mul |
checked_pow |
saturating_pow |
neg |
checked_add |
saturating_add |
unchecked_add |
checked_next_power_of_two |
midpoint |
isqrt |
abs |
checked_abs |
overflowing_abs |
saturating_abs |
wrapping_abs |
unsigned_abs |
checked_neg |
overflowing_neg |
wrapping_neg |
from_mut |
from_mut_unchecked |
In addition to any properties called out as SAFETY
comments in the source
code, all proofs must automatically ensure the absence of the following undefined behaviors ref:
- Invoking undefined behavior via compiler intrinsics.
- Reading from uninitialized memory.
- Producing an invalid value.
Note: All solutions to verification challenges need to satisfy the criteria established in the challenge book in addition to the ones listed above.