rust/tests/ui/target-feature
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
..
aarch64-neon-works.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
asm-implied-features-issue-128125.rs Add test to ensure implied target features work with asm, and fix failing tests 2024-08-07 00:41:48 -04:00
feature-hierarchy.rs Re-do recursive const stability checks 2024-10-25 20:31:40 +02:00
gate.rs rustc_target: Add various aarch64 features 2024-08-27 11:11:47 +01:00
gate.stderr tests: Update with new aarch64 target features 2024-08-27 12:06:30 +00:00
implicit-features-cli.rs Implement a implicit target feature mechanism 2024-08-04 08:44:23 +02:00
implicit-features.rs Implement a implicit target feature mechanism 2024-08-04 08:44:23 +02:00
implied-features.rs Add test to ensure implied target features work with asm, and fix failing tests 2024-08-07 00:41:48 -04:00
invalid-attribute.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
invalid-attribute.stderr Merge collect_mod_item_types query into check_well_formed 2024-03-07 14:26:31 +00:00
missing-plusminus-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
missing-plusminus-2.stderr
missing-plusminus.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
missing-plusminus.stderr
no-llvm-leaks.rs Re-do recursive const stability checks 2024-10-25 20:31:40 +02:00
rust-specific-name-no-warnings.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
similar-feature-suggestion.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
similar-feature-suggestion.stderr warn when using an unstable feature with -Ctarget-feature 2023-11-06 09:44:00 +01:00
tied-features-cli.one.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
tied-features-cli.rs Fix test problems discovered by the revision check 2024-05-09 14:47:09 +10:00
tied-features-cli.three.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
tied-features-cli.two.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
tied-features-no-implication-1.paca.stderr tests: add test for #105111 2024-09-24 15:42:15 +01:00
tied-features-no-implication-1.pacg.stderr tests: add test for #105111 2024-09-24 15:42:15 +01:00
tied-features-no-implication-1.rs tests: add test for #105111 2024-09-24 15:42:15 +01:00
tied-features-no-implication.paca.stderr tests: add test for #105111 2024-09-24 15:42:15 +01:00
tied-features-no-implication.pacg.stderr tests: add test for #105111 2024-09-24 15:42:15 +01:00
tied-features-no-implication.rs tests: add test for #105111 2024-09-24 15:42:15 +01:00
tied-features.rs codegen_ssa: consolidate tied feature checking 2024-09-24 15:48:49 +01:00
tied-features.stderr codegen_ssa: consolidate tied feature checking 2024-09-24 15:48:49 +01:00
unstable-feature.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
unstable-feature.stderr warn when using an unstable feature with -Ctarget-feature 2023-11-06 09:44:00 +01:00
wasm-relaxed-simd.rs Implement a implicit target feature mechanism 2024-08-04 08:44:23 +02:00
wasm-safe.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00