blob: fcf3f05d22f5a61164f7ef1c8db64770f4c4b0c3 [file] [log] [blame] [view] [edit]
r[const-eval]
# Constant evaluation
r[const-eval.general]
Constant evaluation is the process of computing the result of [expressions] during compilation. Only a subset of all expressions can be evaluated at compile-time.
r[const-eval.const-expr]
## Constant expressions
r[const-eval.const-expr.general]
Certain forms of expressions, called constant expressions, can be evaluated at compile time.
r[const-eval.const-expr.const-context]
Expressions in a [const context] must be constant expressions.
r[const-eval.const-expr.evaluation]
Expressions in const contexts are always evaluated at compile time.
r[const-eval.const-expr.runtime-context]
Outside of const contexts, constant expressions *may* be, but are not guaranteed to be, evaluated at compile time.
r[const-eval.const-expr.error]
Behaviors such as out of bounds [array indexing] or [overflow] are compiler errors if the value must be evaluated at compile time (i.e. in const contexts). Otherwise, these behaviors are warnings, but will likely panic at run-time.
r[const-eval.const-expr.list]
The following expressions are constant expressions, so long as any operands are also constant expressions and do not cause any [`Drop::drop`][destructors] calls to be run.
r[const-eval.const-expr.literal]
* [Literals].
r[const-eval.const-expr.parameter]
* [Const parameters].
r[const-eval.const-expr.path-item]
* [Paths] to [functions] and [constants]. Recursively defining constants is not allowed.
r[const-eval.const-expr.path-static]
* Paths to [statics] with these restrictions:
* Writes to `static` items are not allowed in any constant evaluation context.
* Reads from `extern` statics are not allowed in any constant evaluation context.
* If the evaluation is *not* carried out in an initializer of a `static` item, then reads from any mutable `static` are not allowed. A mutable `static` is a `static mut` item, or a `static` item with an interior-mutable type.
These requirements are checked only when the constant is evaluated. In other words, having such accesses syntactically occur in const contexts is allowed as long as they never get executed.
r[const-eval.const-expr.tuple]
* [Tuple expressions].
r[const-eval.const-expr.array]
* [Array expressions].
r[const-eval.const-expr.constructor]
* [Struct expressions].
r[const-eval.const-expr.block]
* [Block expressions], including `unsafe` and `const` blocks.
* [let statements] and thus irrefutable [patterns], including mutable bindings
* [assignment expressions]
* [compound assignment expressions]
* [expression statements]
r[const-eval.const-expr.field]
* [Field] expressions.
r[const-eval.const-expr.index]
* Index expressions, [array indexing] or [slice] with a `usize`.
r[const-eval.const-expr.range]
* [Range expressions].
r[const-eval.const-expr.closure]
* [Closure expressions] which don't capture variables from the environment.
r[const-eval.const-expr.builtin-arith-logic]
* Built-in [negation], [arithmetic], [logical], [comparison] or [lazy boolean] operators used on integer and floating point types, `bool`, and `char`.
r[const-eval.const-expr.borrows]
* All forms of [borrow]s, including raw borrows, except borrows of expressions whose temporary scopes would be extended (see [temporary lifetime extension]) to the end of the program and which are either:
* Mutable borrows.
* Shared borrows of expressions that result in values with [interior mutability].
```rust,compile_fail,E0764
// Due to being in tail position, this borrow extends the scope of the
// temporary to the end of the program. Since the borrow is mutable,
// this is not allowed in a const expression.
const C: &u8 = &mut 0; // ERROR not allowed
```
```rust,compile_fail,E0764
// Const blocks are similar to initializers of `const` items.
let _: &u8 = const { &mut 0 }; // ERROR not allowed
```
```rust,compile_fail,E0492
# use core::sync::atomic::AtomicU8;
// This is not allowed as 1) the temporary scope is extended to the
// end of the program and 2) the temporary has interior mutability.
const C: &AtomicU8 = &AtomicU8::new(0); // ERROR not allowed
```
```rust,compile_fail,E0492
# use core::sync::atomic::AtomicU8;
// As above.
let _: &_ = const { &AtomicU8::new(0) }; // ERROR not allowed
```
```rust
# #![allow(static_mut_refs)]
// Even though this borrow is mutable, it's not of a temporary, so
// this is allowed.
const C: &u8 = unsafe { static mut S: u8 = 0; &mut S }; // OK
```
```rust
# use core::sync::atomic::AtomicU8;
// Even though this borrow is of a value with interior mutability,
// it's not of a temporary, so this is allowed.
const C: &AtomicU8 = {
static S: AtomicU8 = AtomicU8::new(0); &S // OK
};
```
```rust
# use core::sync::atomic::AtomicU8;
// This shared borrow of an interior mutable temporary is allowed
// because its scope is not extended.
const C: () = { _ = &AtomicU8::new(0); }; // OK
```
```rust
// Even though the borrow is mutable and the temporary lives to the
// end of the program due to promotion, this is allowed because the
// borrow is not in tail position and so the scope of the temporary
// is not extended via temporary lifetime extension.
const C: () = { let _: &'static mut [u8] = &mut []; }; // OK
// ~~
// Promoted temporary.
```
> [!NOTE]
> In other words --- to focus on what's allowed rather than what's not allowed --- shared borrows of interior mutable data and mutable borrows are only allowed in a [const context] when the borrowed [place expression] is *transient*, *indirect*, or *static*.
>
> A place expression is *transient* if it is a variable local to the current const context or an expression whose temporary scope is contained inside the current const context.
>
> ```rust
> // The borrow is of a variable local to the initializer, therefore
> // this place expression is transient.
> const C: () = { let mut x = 0; _ = &mut x; };
> ```
>
> ```rust
> // The borrow is of a temporary whose scope has not been extended,
> // therefore this place expression is transient.
> const C: () = { _ = &mut 0u8; };
> ```
>
> ```rust
> // When a temporary is promoted but not lifetime extended, its
> // place expression is still treated as transient.
> const C: () = { let _: &'static mut [u8] = &mut []; };
> ```
>
> A place expression is *indirect* if it is a [dereference expression].
>
> ```rust
> const C: () = { _ = &mut *(&mut 0); };
> ```
>
> A place expression is *static* if it is a `static` item.
>
> ```rust
> # #![allow(static_mut_refs)]
> const C: &u8 = unsafe { static mut S: u8 = 0; &mut S };
> ```
> [!NOTE]
> One surprising consequence of these rules is that we allow this,
>
> ```rust
> const C: &[u8] = { let x: &mut [u8] = &mut []; x }; // OK
> // ~~~~~~~
> // Empty arrays are promoted even behind mutable borrows.
> ```
>
> but we disallow this similar code:
>
> ```rust,compile_fail,E0764
> const C: &[u8] = &mut []; // ERROR
> // ~~~~~~~
> // Tail expression.
> ```
>
> The difference between these is that, in the first, the empty array is [promoted] but its scope does not undergo [temporary lifetime extension], so we consider the [place expression] to be transient (even though after promotion the place indeed lives to the end of the program). In the second, the scope of the empty array temporary does undergo lifetime extension, and so it is rejected due to being a mutable borrow of a lifetime-extended temporary (and therefore borrowing a non-transient place expression).
>
> The effect is surprising because temporary lifetime extension, in this case, causes less code to compile than would without it.
>
> See [issue #143129](https://github.com/rust-lang/rust/issues/143129) for more details.
r[const-eval.const-expr.deref]
* [Dereference expressions].
```rust,no_run
# use core::cell::UnsafeCell;
const _: u8 = unsafe {
let x: *mut u8 = &raw mut *&mut 0;
// ^^^^^^^
// Dereference of mutable reference.
*x = 1; // Dereference of mutable pointer.
*(x as *const u8) // Dereference of constant pointer.
};
const _: u8 = unsafe {
let x = &UnsafeCell::new(0);
*x.get() = 1; // Mutation of interior mutable value.
*x.get()
};
```
r[const-eval.const-expr.group]
* [Grouped] expressions.
r[const-eval.const-expr.cast]
* [Cast] expressions, except
* pointer to address casts and
* function pointer to address casts.
r[const-eval.const-expr.const-fn]
* Calls of [const functions] and const methods.
r[const-eval.const-expr.loop]
* [loop] and [while] expressions.
r[const-eval.const-expr.if-match]
* [if] and [match] expressions.
r[const-eval.const-context]
## Const context
[const context]: #const-context
r[const-eval.const-context.general]
A _const context_ is one of the following:
r[const-eval.const-context.array-length]
* [Array type length expressions]
r[const-eval.const-context.repeat-length]
* [Array repeat length expressions][array expressions]
r[const-eval.const-context.init]
* The initializer of
* [constants]
* [statics]
* [enum discriminants]
r[const-eval.const-context.generic]
* A [const generic argument]
r[const-eval.const-context.block]
* A [const block]
r[const-eval.const-context.outer-generics]
Const contexts that are used as parts of types (array type and repeat length expressions as well as const generic arguments) can only make restricted use of surrounding generic parameters: such an expression must either be a single bare const generic parameter, or an arbitrary expression not making use of any generics.
r[const-eval.const-fn]
## Const functions
r[const-eval.const-fn.intro]
A _const function_ is a function that can be called from a const context. It is defined with the `const` qualifier, and also includes [tuple struct] and [tuple enum variant] constructors.
> [!EXAMPLE]
> ```rust
> const fn square(x: i32) -> i32 { x * x }
>
> const VALUE: i32 = square(12);
> ```
r[const-eval.const-fn.const-context]
When called from a const context, a const function is interpreted by the compiler at compile time. The interpretation happens in the environment of the compilation target and not the host. So `usize` is `32` bits if you are compiling against a `32` bit system, irrelevant of whether you are building on a `64` bit or a `32` bit system.
r[const-eval.const-fn.outside-context]
When a const function is called from outside a const context, it behaves the same as if it did not have the `const` qualifier.
r[const-eval.const-fn.body-restriction]
The body of a const function may only use [constant expressions].
r[const-eval.const-fn.async]
Const functions are not allowed to be [async].
r[const-eval.const-fn.type-restrictions]
The types of a const function's parameters and return type are restricted to those that are compatible with a const context.
<!-- TODO: Define the type restrictions. -->
[arithmetic]: expressions/operator-expr.md#arithmetic-and-logical-binary-operators
[array expressions]: expressions/array-expr.md
[array indexing]: expressions/array-expr.md#array-and-slice-indexing-expressions
[array indexing]: expressions/array-expr.md#array-and-slice-indexing-expressions
[array type length expressions]: types/array.md
[assignment expressions]: expressions/operator-expr.md#assignment-expressions
[async]: items/functions.md#async-functions
[compound assignment expressions]: expressions/operator-expr.md#compound-assignment-expressions
[block expressions]: expressions/block-expr.md
[borrow]: expressions/operator-expr.md#borrow-operators
[cast]: expressions/operator-expr.md#type-cast-expressions
[closure expressions]: expressions/closure-expr.md
[comparison]: expressions/operator-expr.md#comparison-operators
[const block]: expressions/block-expr.md#const-blocks
[const functions]: items/functions.md#const-functions
[const generic argument]: items/generics.md#const-generics
[const generic parameters]: items/generics.md#const-generics
[constant expressions]: #constant-expressions
[constants]: items/constant-items.md
[Const parameters]: items/generics.md
[dereference expression]: expr.deref
[dereference expressions]: expr.deref
[destructors]: destructors.md
[enum discriminants]: items/enumerations.md#discriminants
[expression statements]: statements.md#expression-statements
[expressions]: expressions.md
[`extern` statics]: items/external-blocks.md#statics
[field]: expressions/field-expr.md
[functions]: items/functions.md
[grouped]: expressions/grouped-expr.md
[interior mutability]: interior-mutability.md
[if]: expressions/if-expr.md#if-expressions
[lazy boolean]: expressions/operator-expr.md#lazy-boolean-operators
[let statements]: statements.md#let-statements
[literals]: expressions/literal-expr.md
[logical]: expressions/operator-expr.md#arithmetic-and-logical-binary-operators
[loop]: expressions/loop-expr.md#infinite-loops
[match]: expressions/match-expr.md
[negation]: expressions/operator-expr.md#negation-operators
[overflow]: expressions/operator-expr.md#overflow
[paths]: expressions/path-expr.md
[patterns]: patterns.md
[place expression]: expr.place-value.place-memory-location
[promoted expression]: destructors.md#constant-promotion
[promoted]: destructors.md#constant-promotion
[range expressions]: expressions/range-expr.md
[slice]: types/slice.md
[statics]: items/static-items.md
[Struct expressions]: expressions/struct-expr.md
[temporary lifetime extension]: destructors.scope.lifetime-extension
[tuple enum variant]: items/enumerations.md
[tuple expressions]: expressions/tuple-expr.md
[tuple struct]: items/structs.md
[while]: expressions/loop-expr.md#predicate-loops