Ralf Jung
a0215d8e46
Re-do recursive const stability checks
...
Fundamentally, we have *three* disjoint categories of functions:
1. const-stable functions
2. private/unstable functions that are meant to be callable from const-stable functions
3. functions that can make use of unstable const features
This PR implements the following system:
- `#[rustc_const_stable]` puts functions in the first category. It may only be applied to `#[stable]` functions.
- `#[rustc_const_unstable]` by default puts functions in the third category. The new attribute `#[rustc_const_stable_indirect]` can be added to such a function to move it into the second category.
- `const fn` without a const stability marker are in the second category if they are still unstable. They automatically inherit the feature gate for regular calls, it can now also be used for const-calls.
Also, several holes in recursive const stability checking are being closed.
There's still one potential hole that is hard to avoid, which is when MIR
building automatically inserts calls to a particular function in stable
functions -- which happens in the panic machinery. Those need to *not* be
`rustc_const_unstable` (or manually get a `rustc_const_stable_indirect`) to be
sure they follow recursive const stability. But that's a fairly rare and special
case so IMO it's fine.
The net effect of this is that a `#[unstable]` or unmarked function can be
constified simply by marking it as `const fn`, and it will then be
const-callable from stable `const fn` and subject to recursive const stability
requirements. If it is publicly reachable (which implies it cannot be unmarked),
it will be const-unstable under the same feature gate. Only if the function ever
becomes `#[stable]` does it need a `#[rustc_const_unstable]` or
`#[rustc_const_stable]` marker to decide if this should also imply
const-stability.
Adding `#[rustc_const_unstable]` is only needed for (a) functions that need to
use unstable const lang features (including intrinsics), or (b) `#[stable]`
functions that are not yet intended to be const-stable. Adding
`#[rustc_const_stable]` is only needed for functions that are actually meant to
be directly callable from stable const code. `#[rustc_const_stable_indirect]` is
used to mark intrinsics as const-callable and for `#[rustc_const_unstable]`
functions that are actually called from other, exposed-on-stable `const fn`. No
other attributes are required.
2024-10-25 20:31:40 +02:00
..
2024-07-17 11:06:10 -04:00
2024-07-17 11:01:29 +01:00
2024-07-29 14:34:34 +00:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-09-12 13:47:51 -07:00
2024-09-23 23:49:11 -04:00
2024-06-24 11:08:41 +02:00
2024-10-14 17:51:37 +02:00
2024-06-24 11:08:41 +02:00
2024-09-07 19:02:22 -04:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-16 15:53:49 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-08-01 15:48:22 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-18 16:51:05 -04:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-23 19:15:23 -04:00
2024-10-23 19:15:23 -04:00
2024-10-23 19:15:23 -04:00
2024-10-23 19:15:23 -04:00
2024-10-23 19:15:23 -04:00
2024-10-23 19:15:23 -04:00
2024-10-23 19:15:23 -04:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-23 19:15:23 -04:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-10-25 20:31:40 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-04 13:49:39 +02:00
2024-06-24 11:08:41 +02:00
2024-06-04 13:49:39 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-19 14:39:20 +01:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-08-22 20:27:57 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-16 15:53:49 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-23 09:21:39 -07:00
2024-09-23 09:21:39 -07:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-10-23 19:15:23 -04:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-23 19:15:23 -04:00
2024-07-29 08:45:50 -07:00
2024-07-29 08:45:50 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-07-12 18:14:37 -07:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-10 17:56:05 -07:00
2024-07-12 18:14:37 -07:00
2024-07-12 18:14:37 -07:00
2024-02-22 16:04:04 +00:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-05 12:15:15 +02:00
2024-09-05 12:16:59 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-08-17 12:33:29 -04:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-17 12:32:31 -04:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-03-05 09:02:33 +00:00
2024-07-29 10:31:02 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-10 17:56:06 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-04-15 15:13:05 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-08-10 15:03:43 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-07-12 18:14:37 -07:00
2024-08-05 11:04:51 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-08-05 11:04:51 +02:00
2024-08-05 11:04:51 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-10 17:56:06 -07:00
2024-09-10 17:56:06 -07:00
2024-09-10 17:56:06 -07:00
2024-10-24 18:50:55 +02:00
2024-09-10 17:56:06 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-12 18:14:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-12 13:47:51 -07:00
2024-09-12 13:47:51 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-04-28 11:17:09 +08:00
2024-06-24 11:08:41 +02:00
2024-06-28 10:57:35 +00:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-02-22 16:04:04 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-23 19:15:23 -04:00
2024-10-23 19:15:23 -04:00
2024-10-23 19:15:23 -04:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-30 21:58:18 +00:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-08-20 16:51:37 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-23 19:15:23 -04:00
2024-09-23 09:21:39 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-10-23 19:15:23 -04:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-05-21 12:28:34 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-07-23 00:29:39 -03:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-09-10 17:56:05 -07:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00
2024-06-24 11:08:41 +02:00