|
1 |
| -## Behavior not considered unsafe |
2 |
| - |
3 |
| -This is a list of behavior not considered *unsafe* in Rust terms, but that may |
4 |
| -be undesired. |
5 |
| - |
6 |
| -* Deadlocks |
7 |
| -* Leaks of memory and other resources |
8 |
| -* Exiting without calling destructors |
9 |
| -* Integer overflow |
10 |
| - - Overflow is considered "unexpected" behavior and is always user-error, |
11 |
| - unless the `wrapping` primitives are used. In non-optimized builds, the compiler |
12 |
| - will insert debug checks that panic on overflow, but in optimized builds overflow |
13 |
| - instead results in wrapped values. See [RFC 560] for the rationale and more details. |
| 1 | +## Behavior not considered `unsafe` |
| 2 | + |
| 3 | +The Rust compiler does not consider the following behaviors _unsafe_, |
| 4 | +though a programmer may (should) find them undesirable, unexpected, |
| 5 | +or erroneous. |
| 6 | + |
| 7 | +##### Deadlocks |
| 8 | +##### Leaks of memory and other resources |
| 9 | +##### Exiting without calling destructors |
| 10 | +##### Integer overflow |
| 11 | + |
| 12 | +If a program contains arithmetic overflow, the programmer has made an |
| 13 | +error. In the following discussion, we maintain a distinction between |
| 14 | +arithmetic overflow and wrapping arithmetic. The first is erroneous, |
| 15 | +while the second is intentional. |
| 16 | + |
| 17 | +When the programmer has enabled `debug_assert!` assertions (for |
| 18 | +example, by enabling a non-optimized build), implementations must |
| 19 | +insert dynamic checks that `panic` on overflow. Other kinds of builds |
| 20 | +may result in `panics` or silently wrapped values on overflow, at the |
| 21 | +implementation's discretion. |
| 22 | + |
| 23 | +In the case of implicitly-wrapped overflow, implementations must |
| 24 | +provide well-defined (even if still considered erroneous) results by |
| 25 | +using two's complement overflow conventions. |
| 26 | + |
| 27 | +The integral types provide inherent methods to allow programmers |
| 28 | +explicitly to perform wrapping arithmetic. For example, |
| 29 | +`i32::wrapping_add` provides two's complement, wrapping addition. |
| 30 | + |
| 31 | +The standard library also provides a `Wrapping<T>` newtype which |
| 32 | +ensures all standard arithmetic operations for `T` have wrapping |
| 33 | +semantics. |
| 34 | + |
| 35 | +See [RFC 560] for error conditions, rationale, and more details about |
| 36 | +integer overflow. |
14 | 37 |
|
15 | 38 | [RFC 560]: https://github.com/rust-lang/rfcs/blob/master/text/0560-integer-overflow.md
|
0 commit comments