2023-10-05 08:43:35 +00:00
|
|
|
//! List of the unstable feature gates.
|
2019-08-20 16:50:33 +00:00
|
|
|
|
2022-01-16 15:25:47 +00:00
|
|
|
use rustc_data_structures::fx::FxHashSet;
|
2019-12-31 17:15:40 +00:00
|
|
|
use rustc_span::Span;
|
2024-09-22 23:05:04 +00:00
|
|
|
use rustc_span::symbol::{Symbol, sym};
|
2019-08-20 16:50:33 +00:00
|
|
|
|
2024-09-22 23:05:04 +00:00
|
|
|
use super::{Feature, to_nonzero};
|
2024-07-28 22:13:50 +00:00
|
|
|
|
2023-10-05 08:43:35 +00:00
|
|
|
pub struct UnstableFeature {
|
2023-10-05 07:59:01 +00:00
|
|
|
pub feature: Feature,
|
|
|
|
pub set_enabled: fn(&mut Features),
|
|
|
|
}
|
|
|
|
|
2023-03-09 20:54:53 +00:00
|
|
|
#[derive(PartialEq)]
|
|
|
|
enum FeatureStatus {
|
|
|
|
Default,
|
|
|
|
Incomplete,
|
|
|
|
Internal,
|
|
|
|
}
|
|
|
|
|
2023-10-03 23:00:30 +00:00
|
|
|
macro_rules! status_to_enum {
|
2023-10-05 08:43:35 +00:00
|
|
|
(unstable) => {
|
2023-03-09 20:54:53 +00:00
|
|
|
FeatureStatus::Default
|
2021-06-28 18:39:20 +00:00
|
|
|
};
|
2023-10-03 23:00:30 +00:00
|
|
|
(incomplete) => {
|
2023-03-09 20:54:53 +00:00
|
|
|
FeatureStatus::Incomplete
|
|
|
|
};
|
2023-10-03 23:00:30 +00:00
|
|
|
(internal) => {
|
2023-03-09 20:54:53 +00:00
|
|
|
FeatureStatus::Internal
|
2021-06-28 18:39:20 +00:00
|
|
|
};
|
2023-10-03 23:00:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! declare_features {
|
2019-08-24 15:47:26 +00:00
|
|
|
($(
|
2023-12-10 17:34:13 +00:00
|
|
|
$(#[doc = $doc:tt])* ($status:ident, $feature:ident, $ver:expr, $issue:expr),
|
2019-08-24 15:47:26 +00:00
|
|
|
)+) => {
|
2023-10-05 08:43:35 +00:00
|
|
|
/// Unstable language features that are being implemented or being
|
|
|
|
/// considered for acceptance (stabilization) or removal.
|
|
|
|
pub const UNSTABLE_FEATURES: &[UnstableFeature] = &[
|
|
|
|
$(UnstableFeature {
|
2023-10-05 07:59:01 +00:00
|
|
|
feature: Feature {
|
2019-08-24 15:47:26 +00:00
|
|
|
name: sym::$feature,
|
|
|
|
since: $ver,
|
2020-09-17 19:11:22 +00:00
|
|
|
issue: to_nonzero($issue),
|
2023-10-05 07:59:01 +00:00
|
|
|
},
|
|
|
|
// Sets this feature's corresponding bool within `features`.
|
|
|
|
set_enabled: |features| features.$feature = true,
|
|
|
|
}),+
|
|
|
|
];
|
2019-08-20 16:50:33 +00:00
|
|
|
|
2023-11-27 03:32:41 +00:00
|
|
|
const NUM_FEATURES: usize = UNSTABLE_FEATURES.len();
|
|
|
|
|
2019-08-20 16:50:33 +00:00
|
|
|
/// A set of features to be used by later passes.
|
2021-01-03 14:19:16 +00:00
|
|
|
#[derive(Clone, Default, Debug)]
|
2019-08-20 16:50:33 +00:00
|
|
|
pub struct Features {
|
2019-09-06 02:56:45 +00:00
|
|
|
/// `#![feature]` attrs for language features, for error reporting.
|
2023-11-21 07:00:26 +00:00
|
|
|
/// "declared" here means that the feature is actually enabled in the current crate.
|
2019-08-20 16:50:33 +00:00
|
|
|
pub declared_lang_features: Vec<(Symbol, Span, Option<Symbol>)>,
|
2019-09-06 02:56:45 +00:00
|
|
|
/// `#![feature]` attrs for non-language (library) features.
|
2023-11-21 07:00:26 +00:00
|
|
|
/// "declared" here means that the feature is actually enabled in the current crate.
|
2019-08-20 16:50:33 +00:00
|
|
|
pub declared_lib_features: Vec<(Symbol, Span)>,
|
2023-10-05 05:08:07 +00:00
|
|
|
/// `declared_lang_features` + `declared_lib_features`.
|
|
|
|
pub declared_features: FxHashSet<Symbol>,
|
2023-10-05 08:43:35 +00:00
|
|
|
/// Active state of individual features (unstable only).
|
2019-08-24 15:47:26 +00:00
|
|
|
$(
|
|
|
|
$(#[doc = $doc])*
|
|
|
|
pub $feature: bool
|
|
|
|
),+
|
2019-08-20 16:50:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Features {
|
2023-10-05 05:33:42 +00:00
|
|
|
pub fn set_declared_lang_feature(
|
|
|
|
&mut self,
|
|
|
|
symbol: Symbol,
|
|
|
|
span: Span,
|
|
|
|
since: Option<Symbol>
|
|
|
|
) {
|
|
|
|
self.declared_lang_features.push((symbol, span, since));
|
|
|
|
self.declared_features.insert(symbol);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_declared_lib_feature(&mut self, symbol: Symbol, span: Span) {
|
|
|
|
self.declared_lib_features.push((symbol, span));
|
|
|
|
self.declared_features.insert(symbol);
|
|
|
|
}
|
|
|
|
|
2023-11-27 03:32:41 +00:00
|
|
|
/// This is intended for hashing the set of active features.
|
|
|
|
///
|
|
|
|
/// The expectation is that this produces much smaller code than other alternatives.
|
|
|
|
///
|
|
|
|
/// Note that the total feature count is pretty small, so this is not a huge array.
|
|
|
|
#[inline]
|
|
|
|
pub fn all_features(&self) -> [u8; NUM_FEATURES] {
|
|
|
|
[$(self.$feature as u8),+]
|
2019-08-20 16:50:33 +00:00
|
|
|
}
|
2019-12-10 20:41:27 +00:00
|
|
|
|
2023-10-05 05:08:07 +00:00
|
|
|
/// Is the given feature explicitly declared, i.e. named in a
|
|
|
|
/// `#![feature(...)]` within the code?
|
|
|
|
pub fn declared(&self, feature: Symbol) -> bool {
|
|
|
|
self.declared_features.contains(&feature)
|
2022-01-16 15:25:47 +00:00
|
|
|
}
|
|
|
|
|
2023-12-10 17:34:13 +00:00
|
|
|
/// Is the given feature active (enabled by the user)?
|
2019-12-12 19:10:21 +00:00
|
|
|
///
|
|
|
|
/// Panics if the symbol doesn't correspond to a declared feature.
|
2023-10-05 08:43:35 +00:00
|
|
|
pub fn active(&self, feature: Symbol) -> bool {
|
2019-12-10 20:41:27 +00:00
|
|
|
match feature {
|
2019-12-11 18:24:40 +00:00
|
|
|
$( sym::$feature => self.$feature, )*
|
2019-12-10 20:41:27 +00:00
|
|
|
|
2019-12-11 06:20:44 +00:00
|
|
|
_ => panic!("`{}` was not listed in `declare_features`", feature),
|
2019-12-10 20:41:27 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-18 12:31:00 +00:00
|
|
|
|
2021-06-28 18:39:20 +00:00
|
|
|
/// Some features are known to be incomplete and using them is likely to have
|
|
|
|
/// unanticipated results, such as compiler crashes. We warn the user about these
|
|
|
|
/// to alert them.
|
|
|
|
pub fn incomplete(&self, feature: Symbol) -> bool {
|
|
|
|
match feature {
|
|
|
|
$(
|
2023-10-03 23:00:30 +00:00
|
|
|
sym::$feature => status_to_enum!($status) == FeatureStatus::Incomplete,
|
2021-06-28 18:39:20 +00:00
|
|
|
)*
|
2023-10-05 08:43:35 +00:00
|
|
|
// Accepted/removed features aren't in this file but are never incomplete.
|
2023-10-05 05:35:50 +00:00
|
|
|
_ if self.declared_features.contains(&feature) => false,
|
2021-06-28 22:37:54 +00:00
|
|
|
_ => panic!("`{}` was not listed in `declare_features`", feature),
|
2021-06-28 18:39:20 +00:00
|
|
|
}
|
|
|
|
}
|
2023-03-09 20:54:53 +00:00
|
|
|
|
|
|
|
/// Some features are internal to the compiler and standard library and should not
|
2023-10-05 08:43:35 +00:00
|
|
|
/// be used in normal projects. We warn the user about these to alert them.
|
2023-03-09 20:54:53 +00:00
|
|
|
pub fn internal(&self, feature: Symbol) -> bool {
|
|
|
|
match feature {
|
|
|
|
$(
|
2023-10-03 23:00:30 +00:00
|
|
|
sym::$feature => status_to_enum!($status) == FeatureStatus::Internal,
|
2023-03-09 20:54:53 +00:00
|
|
|
)*
|
2023-11-21 07:00:26 +00:00
|
|
|
_ if self.declared_features.contains(&feature) => {
|
|
|
|
// This could be accepted/removed, or a libs feature.
|
|
|
|
// Accepted/removed features aren't in this file but are never internal
|
|
|
|
// (a removed feature might have been internal, but that's now irrelevant).
|
|
|
|
// Libs features are internal if they end in `_internal` or `_internals`.
|
2023-11-22 06:30:09 +00:00
|
|
|
// As a special exception we also consider `core_intrinsics` internal;
|
|
|
|
// renaming that age-old feature is just not worth the hassle.
|
2023-11-21 07:00:26 +00:00
|
|
|
// We just always test the name; it's not a big deal if we accidentally hit
|
|
|
|
// an accepted/removed lang feature that way.
|
|
|
|
let name = feature.as_str();
|
2023-11-22 06:30:09 +00:00
|
|
|
name == "core_intrinsics" || name.ends_with("_internal") || name.ends_with("_internals")
|
2023-11-21 07:00:26 +00:00
|
|
|
}
|
2023-03-09 20:54:53 +00:00
|
|
|
_ => panic!("`{}` was not listed in `declare_features`", feature),
|
|
|
|
}
|
|
|
|
}
|
2019-08-20 16:50:33 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-11-02 14:30:28 +00:00
|
|
|
// See https://rustc-dev-guide.rust-lang.org/feature-gates.html#feature-gates for more
|
|
|
|
// documentation about handling feature gates.
|
|
|
|
//
|
2019-08-20 16:50:33 +00:00
|
|
|
// If you change this, please modify `src/doc/unstable-book` as well.
|
|
|
|
//
|
2021-11-01 14:34:19 +00:00
|
|
|
// Don't ever remove anything from this list; move them to `accepted.rs` if
|
|
|
|
// accepted or `removed.rs` if removed.
|
2019-08-20 16:50:33 +00:00
|
|
|
//
|
|
|
|
// The version numbers here correspond to the version in which the current status
|
2023-10-05 08:43:35 +00:00
|
|
|
// was set.
|
2019-08-20 16:50:33 +00:00
|
|
|
//
|
|
|
|
// Note that the features are grouped into internal/user-facing and then
|
2023-11-22 01:30:43 +00:00
|
|
|
// sorted alphabetically inside those groups. This is enforced with tidy.
|
2019-08-20 16:50:33 +00:00
|
|
|
//
|
|
|
|
// N.B., `tools/tidy/src/features.rs` parses this information directly out of the
|
|
|
|
// source, so take care when modifying it.
|
|
|
|
|
2019-12-24 22:44:51 +00:00
|
|
|
#[rustfmt::skip]
|
2019-08-20 16:50:33 +00:00
|
|
|
declare_features! (
|
|
|
|
// -------------------------------------------------------------------------
|
2021-11-16 00:27:42 +00:00
|
|
|
// feature-group-start: internal feature gates (no tracking issue)
|
2019-08-20 16:50:33 +00:00
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// no-tracking-issue-start
|
|
|
|
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `unadjusted` ABI; perma-unstable.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, abi_unadjusted, "1.16.0", None),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#![needs_allocator]`, an implementation detail of `#[global_allocator]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, allocator_internals, "1.20.0", None),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[allow_internal_unsafe]`. This is an
|
2019-08-24 15:47:26 +00:00
|
|
|
/// attribute on `macro_rules!` and can't use the attribute handling
|
|
|
|
/// below (it has to be checked before expansion possibly makes
|
|
|
|
/// macros disappear).
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, allow_internal_unsafe, "1.0.0", None),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[allow_internal_unstable]`. This is an
|
2019-08-24 15:47:26 +00:00
|
|
|
/// attribute on `macro_rules!` and can't use the attribute handling
|
|
|
|
/// below (it has to be checked before expansion possibly makes
|
|
|
|
/// macros disappear).
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, allow_internal_unstable, "1.0.0", None),
|
2022-06-22 20:19:02 +00:00
|
|
|
/// Allows using anonymous lifetimes in argument-position impl-trait.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, anonymous_lifetime_in_impl_trait, "1.63.0", None),
|
2019-08-24 15:47:26 +00:00
|
|
|
/// Allows identifying the `compiler_builtins` crate.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, compiler_builtins, "1.13.0", None),
|
2022-08-03 11:30:13 +00:00
|
|
|
/// Allows writing custom MIR
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, custom_mir, "1.65.0", None),
|
2022-06-02 12:00:04 +00:00
|
|
|
/// Outputs useful `assert!` messages
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, generic_assert, "1.63.0", None),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `rust-intrinsic`'s "ABI".
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, intrinsics, "1.0.0", None),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[lang = ".."]` attribute for linking items to special compiler logic.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, lang_items, "1.0.0", None),
|
2023-10-19 19:00:18 +00:00
|
|
|
/// Changes `impl Trait` to capture all lifetimes in scope.
|
2023-12-21 14:39:15 +00:00
|
|
|
(unstable, lifetime_capture_rules_2024, "1.76.0", None),
|
2023-02-28 00:46:02 +00:00
|
|
|
/// Allows `#[link(..., cfg(..))]`; perma-unstable per #37406
|
2024-09-19 13:56:27 +00:00
|
|
|
(internal, link_cfg, "1.14.0", None),
|
2024-02-23 13:39:57 +00:00
|
|
|
/// Allows using `?Trait` trait bounds in more contexts.
|
2024-09-02 16:48:42 +00:00
|
|
|
(internal, more_maybe_bounds, "1.82.0", None),
|
2022-12-09 02:27:03 +00:00
|
|
|
/// Allows the `multiple_supertrait_upcastable` lint.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, multiple_supertrait_upcastable, "1.69.0", None),
|
2023-04-25 05:15:50 +00:00
|
|
|
/// Allow negative trait bounds. This is an internal-only feature for testing the trait solver!
|
2023-12-27 17:53:06 +00:00
|
|
|
(internal, negative_bounds, "1.71.0", None),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[omit_gdb_pretty_printer_section]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, omit_gdb_pretty_printer_section, "1.5.0", None),
|
2024-03-02 21:48:41 +00:00
|
|
|
/// Set the maximum pattern complexity allowed (not limited by default).
|
2024-03-17 14:36:26 +00:00
|
|
|
(internal, pattern_complexity, "1.78.0", None),
|
2023-01-31 11:35:23 +00:00
|
|
|
/// Allows using pattern types.
|
2024-04-28 13:28:27 +00:00
|
|
|
(internal, pattern_types, "1.79.0", Some(123646)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[prelude_import]` on glob `use` items.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, prelude_import, "1.2.0", None),
|
2019-08-24 15:47:26 +00:00
|
|
|
/// Used to identify crates that contain the profiler runtime.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, profiler_runtime, "1.18.0", None),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `rustc_*` attributes (RFC 572).
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, rustc_attrs, "1.0.0", None),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `#[stable]` and `#[unstable]` attributes.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, staged_api, "1.0.0", None),
|
2022-02-23 04:53:17 +00:00
|
|
|
/// Added for testing unstable lints; perma-unstable.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, test_unstable_lint, "1.60.0", None),
|
2022-01-30 21:55:22 +00:00
|
|
|
/// Use for stable + negative coherence and strict coherence depending on trait's
|
|
|
|
/// rustc_strict_coherence value.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, with_negative_coherence, "1.60.0", None),
|
2021-11-16 00:27:42 +00:00
|
|
|
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
|
|
|
|
// Features are listed in alphabetical order. Tidy will fail if you don't keep it this way.
|
|
|
|
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
|
2019-11-11 17:33:30 +00:00
|
|
|
|
2021-11-16 00:27:42 +00:00
|
|
|
// no-tracking-issue-end
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// feature-group-end: internal feature gates (no tracking issue)
|
|
|
|
// -------------------------------------------------------------------------
|
2020-01-22 23:54:04 +00:00
|
|
|
|
2021-11-16 00:27:42 +00:00
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// feature-group-start: internal feature gates
|
|
|
|
// -------------------------------------------------------------------------
|
2020-10-21 10:36:07 +00:00
|
|
|
|
2024-04-28 18:22:51 +00:00
|
|
|
/// Allows using the `vectorcall` ABI.
|
|
|
|
(unstable, abi_vectorcall, "1.7.0", Some(124485)),
|
2020-11-23 03:54:31 +00:00
|
|
|
/// Allows features specific to auto traits.
|
|
|
|
/// Renamed from `optin_builtin_traits`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, auto_traits, "1.50.0", Some(13231)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `box` in patterns (RFC 469).
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, box_patterns, "1.0.0", Some(29641)),
|
2024-07-11 19:31:34 +00:00
|
|
|
/// Allows builtin # foo() syntax
|
|
|
|
(internal, builtin_syntax, "1.71.0", Some(110680)),
|
2021-03-09 03:35:53 +00:00
|
|
|
/// Allows `#[doc(notable_trait)]`.
|
|
|
|
/// Renamed from `doc_spotlight`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, doc_notable_trait, "1.52.0", Some(45040)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `may_dangle` attribute (RFC 1327).
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, dropck_eyepatch, "1.10.0", Some(34761)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `#[fundamental]` attribute.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, fundamental, "1.0.0", Some(29635)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[link_name="llvm.*"]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, link_llvm_intrinsics, "1.0.0", Some(29602)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `#[linkage = ".."]` attribute.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, linkage, "1.0.0", Some(29603)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows declaring with `#![needs_panic_runtime]` that a panic runtime is needed.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, needs_panic_runtime, "1.10.0", Some(32837)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `#![panic_runtime]` attribute.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, panic_runtime, "1.10.0", Some(32837)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[rustc_allow_const_fn_unstable]`.
|
|
|
|
/// This is an attribute on `const fn` for the same
|
|
|
|
/// purpose as `#[allow_internal_unstable]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, rustc_allow_const_fn_unstable, "1.49.0", Some(69399)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using compiler's own crates.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, rustc_private, "1.0.0", Some(27812)),
|
2023-03-21 15:43:51 +00:00
|
|
|
/// Allows using internal rustdoc features like `doc(keyword)`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(internal, rustdoc_internals, "1.58.0", Some(90418)),
|
2022-09-12 18:10:35 +00:00
|
|
|
/// Allows using the `rustdoc::missing_doc_code_examples` lint
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, rustdoc_missing_doc_code_examples, "1.31.0", Some(101730)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[start]` on a function indicating that it is the program entrypoint.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, start, "1.0.0", Some(29633)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[structural_match]` which indicates that a type is structurally matchable.
|
|
|
|
/// FIXME: Subsumed by trait `StructuralPartialEq`, cannot move to removed until a library
|
|
|
|
/// feature with the same name exists.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, structural_match, "1.8.0", Some(31434)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `rust-call` ABI.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, unboxed_closures, "1.0.0", Some(29625)),
|
2021-11-16 00:27:42 +00:00
|
|
|
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
|
|
|
|
// Features are listed in alphabetical order. Tidy will fail if you don't keep it this way.
|
|
|
|
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
|
2019-08-20 16:50:33 +00:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// feature-group-end: internal feature gates
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// feature-group-start: actual feature gates (target features)
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// FIXME: Document these and merge with the list below.
|
|
|
|
|
|
|
|
// Unstable `#[target_feature]` directives.
|
2024-09-02 16:48:42 +00:00
|
|
|
(unstable, aarch64_unstable_target_feature, "1.82.0", Some(44839)),
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, aarch64_ver_target_feature, "1.27.0", Some(44839)),
|
|
|
|
(unstable, arm_target_feature, "1.27.0", Some(44839)),
|
|
|
|
(unstable, avx512_target_feature, "1.27.0", Some(44839)),
|
|
|
|
(unstable, bpf_target_feature, "1.54.0", Some(44839)),
|
|
|
|
(unstable, csky_target_feature, "1.73.0", Some(44839)),
|
|
|
|
(unstable, ermsb_target_feature, "1.49.0", Some(44839)),
|
|
|
|
(unstable, hexagon_target_feature, "1.27.0", Some(44839)),
|
2024-03-17 14:36:26 +00:00
|
|
|
(unstable, lahfsahf_target_feature, "1.78.0", Some(44839)),
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, loongarch_target_feature, "1.73.0", Some(44839)),
|
|
|
|
(unstable, mips_target_feature, "1.27.0", Some(44839)),
|
|
|
|
(unstable, powerpc_target_feature, "1.27.0", Some(44839)),
|
2024-03-17 14:36:26 +00:00
|
|
|
(unstable, prfchw_target_feature, "1.78.0", Some(44839)),
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, riscv_target_feature, "1.45.0", Some(44839)),
|
|
|
|
(unstable, rtm_target_feature, "1.35.0", Some(44839)),
|
2024-09-02 16:48:42 +00:00
|
|
|
(unstable, s390x_target_feature, "1.82.0", Some(44839)),
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, sse4a_target_feature, "1.27.0", Some(44839)),
|
|
|
|
(unstable, tbm_target_feature, "1.27.0", Some(44839)),
|
|
|
|
(unstable, wasm_target_feature, "1.30.0", Some(44839)),
|
2021-11-16 00:27:42 +00:00
|
|
|
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
|
|
|
|
// Features are listed in alphabetical order. Tidy will fail if you don't keep it this way.
|
|
|
|
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
|
2019-08-20 16:50:33 +00:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// feature-group-end: actual feature gates (target features)
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// feature-group-start: actual feature gates
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `extern "avr-interrupt" fn()` and `extern "avr-non-blocking-interrupt" fn()`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, abi_avr_interrupt, "1.45.0", Some(69664)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `extern "C-cmse-nonsecure-call" fn()`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, abi_c_cmse_nonsecure_call, "1.51.0", Some(81391)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `extern "msp430-interrupt" fn()`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, abi_msp430_interrupt, "1.16.0", Some(38487)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `extern "ptx-*" fn()`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, abi_ptx, "1.15.0", Some(38788)),
|
feat: `riscv-interrupt-{m,s}` calling conventions
Similar to prior support added for the mips430, avr, and x86 targets
this change implements the rough equivalent of clang's
[`__attribute__((interrupt))`][clang-attr] for riscv targets, enabling
e.g.
```rust
static mut CNT: usize = 0;
pub extern "riscv-interrupt-m" fn isr_m() {
unsafe {
CNT += 1;
}
}
```
to produce highly effective assembly like:
```asm
pub extern "riscv-interrupt-m" fn isr_m() {
420003a0: 1141 addi sp,sp,-16
unsafe {
CNT += 1;
420003a2: c62a sw a0,12(sp)
420003a4: c42e sw a1,8(sp)
420003a6: 3fc80537 lui a0,0x3fc80
420003aa: 63c52583 lw a1,1596(a0) # 3fc8063c <_ZN12esp_riscv_rt3CNT17hcec3e3a214887d53E.0>
420003ae: 0585 addi a1,a1,1
420003b0: 62b52e23 sw a1,1596(a0)
}
}
420003b4: 4532 lw a0,12(sp)
420003b6: 45a2 lw a1,8(sp)
420003b8: 0141 addi sp,sp,16
420003ba: 30200073 mret
```
(disassembly via `riscv64-unknown-elf-objdump -C -S --disassemble ./esp32c3-hal/target/riscv32imc-unknown-none-elf/release/examples/gpio_interrupt`)
This outcome is superior to hand-coded interrupt routines which, lacking
visibility into any non-assembly body of the interrupt handler, have to
be very conservative and save the [entire CPU state to the stack
frame][full-frame-save]. By instead asking LLVM to only save the
registers that it uses, we defer the decision to the tool with the best
context: it can more accurately account for the cost of spills if it
knows that every additional register used is already at the cost of an
implicit spill.
At the LLVM level, this is apparently [implemented by] marking every
register as "[callee-save]," matching the semantics of an interrupt
handler nicely (it has to leave the CPU state just as it found it after
its `{m|s}ret`).
This approach is not suitable for every interrupt handler, as it makes
no attempt to e.g. save the state in a user-accessible stack frame. For
a full discussion of those challenges and tradeoffs, please refer to
[the interrupt calling conventions RFC][rfc].
Inside rustc, this implementation differs from prior art because LLVM
does not expose the "all-saved" function flavor as a calling convention
directly, instead preferring to use an attribute that allows for
differentiating between "machine-mode" and "superivsor-mode" interrupts.
Finally, some effort has been made to guide those who may not yet be
aware of the differences between machine-mode and supervisor-mode
interrupts as to why no `riscv-interrupt` calling convention is exposed
through rustc, and similarly for why `riscv-interrupt-u` makes no
appearance (as it would complicate future LLVM upgrades).
[clang-attr]: https://clang.llvm.org/docs/AttributeReference.html#interrupt-risc-v
[full-frame-save]: https://github.com/esp-rs/esp-riscv-rt/blob/9281af2ecffe13e40992917316f36920c26acaf3/src/lib.rs#L440-L469
[implemented by]: https://github.com/llvm/llvm-project/blob/b7fb2a3fec7c187d58a6d338ab512d9173bca987/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp#L61-L67
[callee-save]: https://github.com/llvm/llvm-project/blob/973f1fe7a8591c7af148e573491ab68cc15b6ecf/llvm/lib/Target/RISCV/RISCVCallingConv.td#L30-L37
[rfc]: https://github.com/rust-lang/rfcs/pull/3246
2023-05-23 22:08:23 +00:00
|
|
|
/// Allows `extern "riscv-interrupt-m" fn()` and `extern "riscv-interrupt-s" fn()`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, abi_riscv_interrupt, "1.73.0", Some(111889)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `extern "x86-interrupt" fn()`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, abi_x86_interrupt, "1.17.0", Some(40180)),
|
2024-07-14 11:50:41 +00:00
|
|
|
/// Allows additional const parameter types, such as `[u8; 10]` or user defined types
|
|
|
|
(unstable, adt_const_params, "1.56.0", Some(95174)),
|
2023-04-24 22:08:35 +00:00
|
|
|
/// Allows defining an `#[alloc_error_handler]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, alloc_error_handler, "1.29.0", Some(51540)),
|
2024-03-30 19:25:22 +00:00
|
|
|
/// Allows inherent and trait methods with arbitrary self types.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, arbitrary_self_types, "1.23.0", Some(44874)),
|
2024-03-30 19:25:22 +00:00
|
|
|
/// Allows inherent and trait methods with arbitrary self types that are raw pointers.
|
|
|
|
(unstable, arbitrary_self_types_pointers, "CURRENT_RUSTC_VERSION", Some(44874)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Enables experimental inline assembly support for additional architectures.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, asm_experimental_arch, "1.58.0", Some(93335)),
|
2023-12-25 20:53:01 +00:00
|
|
|
/// Allows using `label` operands in inline assembly.
|
2024-03-17 14:36:26 +00:00
|
|
|
(unstable, asm_goto, "1.78.0", Some(119364)),
|
2021-11-14 19:21:05 +00:00
|
|
|
/// Allows the `may_unwind` option in inline assembly.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, asm_unwind, "1.58.0", Some(93334)),
|
2022-01-13 07:39:58 +00:00
|
|
|
/// Allows users to enforce equality of associated constants `TraitImpl<AssocConst=3>`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, associated_const_equality, "1.58.0", Some(92827)),
|
2019-08-24 15:47:26 +00:00
|
|
|
/// Allows associated type defaults.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, associated_type_defaults, "1.2.0", Some(29661)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `async || body` closures.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, async_closure, "1.37.0", Some(62290)),
|
2023-05-30 21:32:29 +00:00
|
|
|
/// Allows `#[track_caller]` on async functions.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, async_fn_track_caller, "1.73.0", Some(110011)),
|
2023-12-08 22:51:50 +00:00
|
|
|
/// Allows `for await` loops.
|
2024-02-03 21:37:58 +00:00
|
|
|
(unstable, async_for_loop, "1.77.0", Some(118898)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using C-variadics.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, c_variadic, "1.34.0", Some(44930)),
|
2023-05-02 13:53:11 +00:00
|
|
|
/// Allows the use of `#[cfg(overflow_checks)` to check if integer overflow behaviour.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cfg_overflow_checks, "1.71.0", Some(111466)),
|
2023-07-22 15:16:18 +00:00
|
|
|
/// Provides the relocation model information as cfg entry
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cfg_relocation_model, "1.73.0", Some(114929)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows the use of `#[cfg(sanitize = "option")]`; set when -Zsanitizer is used.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cfg_sanitize, "1.41.0", Some(39699)),
|
2023-12-22 23:37:35 +00:00
|
|
|
/// Allows `cfg(sanitizer_cfi_generalize_pointers)` and `cfg(sanitizer_cfi_normalize_integers)`.
|
2024-02-03 21:37:58 +00:00
|
|
|
(unstable, cfg_sanitizer_cfi, "1.77.0", Some(89653)),
|
2022-04-22 14:34:56 +00:00
|
|
|
/// Allows `cfg(target(abi = "..."))`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cfg_target_compact, "1.63.0", Some(96901)),
|
2022-02-16 02:40:07 +00:00
|
|
|
/// Allows `cfg(target_has_atomic_load_store = "...")`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cfg_target_has_atomic, "1.60.0", Some(94039)),
|
2022-02-09 18:14:35 +00:00
|
|
|
/// Allows `cfg(target_has_atomic_equal_alignment = "...")`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cfg_target_has_atomic_equal_alignment, "1.60.0", Some(93822)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `cfg(target_thread_local)`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cfg_target_thread_local, "1.7.0", Some(29594)),
|
2024-04-03 12:54:03 +00:00
|
|
|
/// Allows the use of `#[cfg(ub_checks)` to check if UB checks are enabled.
|
2024-04-28 13:28:27 +00:00
|
|
|
(unstable, cfg_ub_checks, "1.79.0", Some(123499)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allow conditional compilation depending on rust version
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cfg_version, "1.45.0", Some(64796)),
|
2022-12-13 06:42:44 +00:00
|
|
|
/// Allows to use the `#[cfi_encoding = ""]` attribute.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cfi_encoding, "1.71.0", Some(89653)),
|
2023-10-19 21:46:28 +00:00
|
|
|
/// Allows `for<...>` on closures and coroutines.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, closure_lifetime_binder, "1.64.0", Some(97362)),
|
2023-10-19 21:46:28 +00:00
|
|
|
/// Allows `#[track_caller]` on closures and coroutines.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, closure_track_caller, "1.57.0", Some(87417)),
|
2024-07-31 19:04:06 +00:00
|
|
|
/// Allows `extern "C-cmse-nonsecure-entry" fn()`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, cmse_nonsecure_entry, "1.48.0", Some(75835)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `async {}` expressions in const contexts.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, const_async_blocks, "1.53.0", Some(85368)),
|
2022-12-21 14:51:02 +00:00
|
|
|
/// Allows `const || {}` closures in const contexts.
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, const_closures, "1.68.0", Some(106003)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `for _ in _` loops in const contexts.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, const_for, "1.56.0", Some(87575)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Be more precise when looking for live drops in a const context.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, const_precise_live_drops, "1.46.0", Some(73255)),
|
2024-01-05 11:18:11 +00:00
|
|
|
/// Allows creating pointers and references to `static` items in constants.
|
2024-03-17 14:36:26 +00:00
|
|
|
(unstable, const_refs_to_static, "1.78.0", Some(119618)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `impl const Trait for T` syntax.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, const_trait_impl, "1.42.0", Some(67792)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows the `?` operator in const contexts.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, const_try, "1.56.0", Some(74935)),
|
2023-10-19 21:46:28 +00:00
|
|
|
/// Allows coroutines to be cloned.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, coroutine_clone, "1.65.0", Some(95360)),
|
2023-10-19 21:46:28 +00:00
|
|
|
/// Allows defining coroutines.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, coroutines, "1.21.0", Some(43122)),
|
2023-08-09 14:57:16 +00:00
|
|
|
/// Allows function attribute `#[coverage(on/off)]`, to control coverage
|
|
|
|
/// instrumentation of that function.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, coverage_attribute, "1.74.0", Some(84605)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows non-builtin attributes in inner attribute position.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, custom_inner_attributes, "1.30.0", Some(54726)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows custom test frameworks with `#![test_runner]` and `#[test_case]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, custom_test_frameworks, "1.30.0", Some(50297)),
|
2019-08-24 15:47:26 +00:00
|
|
|
/// Allows declarative macros 2.0 (`macro`).
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, decl_macro, "1.17.0", Some(39412)),
|
2022-03-15 22:28:53 +00:00
|
|
|
/// Allows using `#[deprecated_safe]` to deprecate the safeness of a function or trait
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, deprecated_safe, "1.61.0", Some(94978)),
|
2022-02-16 23:48:33 +00:00
|
|
|
/// Allows having using `suggestion` in the `#[deprecated]` attribute.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, deprecated_suggestion, "1.61.0", Some(94785)),
|
2024-03-08 18:17:23 +00:00
|
|
|
/// Allows deref patterns.
|
2024-04-28 13:28:27 +00:00
|
|
|
(incomplete, deref_patterns, "1.79.0", Some(87121)),
|
2024-05-26 09:57:13 +00:00
|
|
|
/// Allows deriving `SmartPointer` traits
|
|
|
|
(unstable, derive_smart_pointer, "1.79.0", Some(123430)),
|
2023-01-09 23:51:01 +00:00
|
|
|
/// Controls errors in trait implementations.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, do_not_recommend, "1.67.0", Some(51992)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Tells rustdoc to automatically generate `#[doc(cfg(...))]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, doc_auto_cfg, "1.58.0", Some(43781)),
|
2019-08-24 15:47:26 +00:00
|
|
|
/// Allows `#[doc(cfg(...))]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, doc_cfg, "1.21.0", Some(43781)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `#[doc(cfg_hide(...))]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, doc_cfg_hide, "1.57.0", Some(43781)),
|
2019-08-24 15:47:26 +00:00
|
|
|
/// Allows `#[doc(masked)]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, doc_masked, "1.21.0", Some(44027)),
|
2022-04-08 01:06:53 +00:00
|
|
|
/// Allows `dyn* Trait` objects.
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, dyn_star, "1.65.0", Some(102425)),
|
2024-01-11 18:51:36 +00:00
|
|
|
/// Uses generic effect parameters for ~const bounds
|
2024-06-21 12:22:29 +00:00
|
|
|
(incomplete, effects, "1.72.0", Some(102090)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows exhaustive pattern matching on types that contain uninhabited types.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, exhaustive_patterns, "1.13.0", Some(51085)),
|
2022-11-16 18:36:17 +00:00
|
|
|
/// Allows explicit tail calls via `become` expression.
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, explicit_tail_calls, "1.72.0", Some(112788)),
|
2024-04-12 17:19:23 +00:00
|
|
|
/// Uses 2024 rules for matching `expr` fragments in macros. Also enables `expr_2021` fragment.
|
2024-06-10 12:50:54 +00:00
|
|
|
(incomplete, expr_fragment_specifier_2024, "1.80.0", Some(123742)),
|
2022-08-08 13:31:32 +00:00
|
|
|
/// Allows using `efiapi`, `sysv64` and `win64` as calling convention
|
|
|
|
/// for functions with varargs.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, extended_varargs_abi_support, "1.65.0", Some(100189)),
|
2019-08-24 15:47:26 +00:00
|
|
|
/// Allows defining `extern type`s.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, extern_types, "1.23.0", Some(43467)),
|
2024-03-03 02:45:23 +00:00
|
|
|
/// Allow using 128-bit (quad precision) floating point numbers.
|
2024-03-17 14:36:26 +00:00
|
|
|
(unstable, f128, "1.78.0", Some(116909)),
|
2024-03-03 02:45:23 +00:00
|
|
|
/// Allow using 16-bit (half precision) floating point numbers.
|
2024-03-17 14:36:26 +00:00
|
|
|
(unstable, f16, "1.78.0", Some(116909)),
|
2020-04-13 22:19:46 +00:00
|
|
|
/// Allows the use of `#[ffi_const]` on foreign functions.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, ffi_const, "1.45.0", Some(58328)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows the use of `#[ffi_pure]` on foreign functions.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, ffi_pure, "1.45.0", Some(58329)),
|
2024-04-14 12:52:58 +00:00
|
|
|
/// Controlling the behavior of fmt::Debug
|
2024-09-02 16:48:42 +00:00
|
|
|
(unstable, fmt_debug, "1.82.0", Some(129709)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[repr(align(...))]` on function items
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, fn_align, "1.53.0", Some(82232)),
|
2023-11-16 16:08:30 +00:00
|
|
|
/// Support delegating implementation of functions to other already implemented functions.
|
2023-12-21 14:39:15 +00:00
|
|
|
(incomplete, fn_delegation, "1.76.0", Some(118212)),
|
2024-02-23 12:11:11 +00:00
|
|
|
/// Allows impls for the Freeze trait.
|
2024-03-17 14:36:26 +00:00
|
|
|
(internal, freeze_impls, "1.78.0", Some(121675)),
|
2023-10-23 11:34:27 +00:00
|
|
|
/// Allows defining gen blocks and `gen fn`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, gen_blocks, "1.75.0", Some(117078)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Infer generic args for both consts and types.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, generic_arg_infer, "1.55.0", Some(85077)),
|
2022-03-11 23:46:49 +00:00
|
|
|
/// An extension to the `generic_associated_types` feature, allowing incomplete features.
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, generic_associated_types_extended, "1.61.0", Some(95451)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows non-trivial generic constants which have to have wfness manually propagated to callers
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, generic_const_exprs, "1.56.0", Some(76560)),
|
2023-05-04 14:08:33 +00:00
|
|
|
/// Allows generic parameters and where-clauses on free & associated const items.
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, generic_const_items, "1.73.0", Some(113521)),
|
2024-05-20 15:55:20 +00:00
|
|
|
/// Allows registering static items globally, possibly across crates, to iterate over at runtime.
|
2024-06-10 12:50:54 +00:00
|
|
|
(unstable, global_registration, "1.80.0", Some(125119)),
|
2022-10-05 21:18:22 +00:00
|
|
|
/// Allows using `..=X` as a patterns in slices.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, half_open_range_patterns_in_slices, "1.66.0", Some(67264)),
|
2020-07-14 07:53:23 +00:00
|
|
|
/// Allows `if let` guard in match arms.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, if_let_guard, "1.47.0", Some(51114)),
|
2023-01-24 08:06:35 +00:00
|
|
|
/// Rescoping temporaries in `if let` to align with Rust 2024.
|
|
|
|
(unstable, if_let_rescope, "CURRENT_RUSTC_VERSION", Some(124085)),
|
2023-04-12 13:32:15 +00:00
|
|
|
/// Allows `impl Trait` to be used inside associated types (RFC 2515).
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, impl_trait_in_assoc_type, "1.70.0", Some(63063)),
|
2022-07-24 21:54:47 +00:00
|
|
|
/// Allows `impl Trait` as output type in `Fn` traits in return position of functions.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, impl_trait_in_fn_trait_return, "1.64.0", Some(99697)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows associated types in inherent impls.
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, inherent_associated_types, "1.52.0", Some(8995)),
|
2021-11-22 16:25:28 +00:00
|
|
|
/// Allow anonymous constants from an inline `const` block in pattern position
|
2024-02-01 10:27:54 +00:00
|
|
|
(unstable, inline_const_pat, "1.58.0", Some(76001)),
|
2021-01-14 16:55:52 +00:00
|
|
|
/// Allows using `pointer` and `reference` in intra-doc links
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, intra_doc_pointers, "1.51.0", Some(80896)),
|
2021-03-26 16:28:52 +00:00
|
|
|
// Allows setting the threshold for the `large_assignments` lint.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, large_assignments, "1.52.0", Some(83518)),
|
2023-06-19 11:50:22 +00:00
|
|
|
/// Allow to have type alias types for inter-crate use.
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, lazy_type_alias, "1.72.0", Some(112792)),
|
2022-08-20 18:40:08 +00:00
|
|
|
/// Allows `if/while p && let q = r && ...` chains.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, let_chains, "1.37.0", Some(53667)),
|
2023-11-29 10:13:58 +00:00
|
|
|
/// Allows using `#[link(kind = "link-arg", name = "...")]`
|
|
|
|
/// to pass custom arguments to the linker.
|
2023-12-21 14:39:15 +00:00
|
|
|
(unstable, link_arg_attribute, "1.76.0", Some(99427)),
|
2022-03-09 19:46:23 +00:00
|
|
|
/// Give access to additional metadata about declarative macro meta-variables.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, macro_metavar_expr, "1.61.0", Some(83527)),
|
2024-06-14 01:12:26 +00:00
|
|
|
/// Provides a way to concatenate identifiers using metavariable expressions.
|
2024-07-21 12:55:06 +00:00
|
|
|
(unstable, macro_metavar_expr_concat, "1.81.0", Some(124225)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `#[marker]` on certain traits allowing overlapping implementations.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, marker_trait_attr, "1.30.0", Some(29864)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// A minimal, sound subset of specialization intended to be used by the
|
|
|
|
/// standard library until the soundness issues with specialization
|
|
|
|
/// are fixed.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, min_specialization, "1.7.0", Some(31844)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows qualified paths in struct expressions, struct patterns and tuple struct patterns.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, more_qualified_paths, "1.54.0", Some(86935)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows the `#[must_not_suspend]` attribute.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, must_not_suspend, "1.57.0", Some(83310)),
|
2024-03-26 05:23:26 +00:00
|
|
|
/// Allows `mut ref` and `mut ref mut` identifier patterns.
|
2024-04-28 13:28:27 +00:00
|
|
|
(incomplete, mut_ref, "1.79.0", Some(123076)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[naked]` on functions.
|
2023-12-31 16:25:15 +00:00
|
|
|
(unstable, naked_functions, "1.9.0", Some(90957)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows specifying the as-needed link modifier
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, native_link_modifiers_as_needed, "1.53.0", Some(81490)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allow negative trait implementations.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, negative_impls, "1.44.0", Some(68318)),
|
2023-11-22 01:30:43 +00:00
|
|
|
/// Allows the `!` pattern.
|
2023-12-21 14:39:15 +00:00
|
|
|
(incomplete, never_patterns, "1.76.0", Some(118155)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows the `!` type. Does not imply 'exhaustive_patterns' (below) any more.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, never_type, "1.13.0", Some(35121)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows diverging expressions to fall back to `!` rather than `()`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, never_type_fallback, "1.41.0", Some(65992)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `#![no_core]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, no_core, "1.3.0", Some(29639)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows the use of `no_sanitize` attribute.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, no_sanitize, "1.42.0", Some(39699)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `non_exhaustive_omitted_patterns` lint.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, non_exhaustive_omitted_patterns_lint, "1.57.0", Some(89554)),
|
2023-02-04 01:59:17 +00:00
|
|
|
/// Allows `for<T>` binders in where-clauses
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, non_lifetime_binders, "1.69.0", Some(108185)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows making `dyn Trait` well-formed even if `Trait` is not object safe.
|
|
|
|
/// In that case, `dyn Trait: Trait` does not hold. Moreover, coercions and
|
|
|
|
/// casts in safe Rust to `dyn Trait` for such a `Trait` is also forbidden.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, object_safe_for_dispatch, "1.40.0", Some(43561)),
|
2023-11-03 13:16:47 +00:00
|
|
|
/// Allows using enums in offset_of!
|
2024-01-19 20:29:40 +00:00
|
|
|
(unstable, offset_of_enum, "1.75.0", Some(120141)),
|
2024-06-08 09:26:56 +00:00
|
|
|
/// Allows using fields with slice type in offset_of!
|
2024-07-21 12:55:06 +00:00
|
|
|
(unstable, offset_of_slice, "1.81.0", Some(126151)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[optimize(X)]`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, optimize_attribute, "1.34.0", Some(54882)),
|
2023-12-12 21:37:04 +00:00
|
|
|
/// Allows specifying nop padding on functions for dynamic patching.
|
2024-07-21 12:55:06 +00:00
|
|
|
(unstable, patchable_function_entry, "1.81.0", Some(123115)),
|
2024-09-04 23:03:47 +00:00
|
|
|
/// Experimental features that make `Pin` more ergonomic.
|
|
|
|
(incomplete, pin_ergonomics, "CURRENT_RUSTC_VERSION", Some(130494)),
|
2024-02-16 00:54:35 +00:00
|
|
|
/// Allows postfix match `expr.match { ... }`
|
2024-04-28 13:28:27 +00:00
|
|
|
(unstable, postfix_match, "1.79.0", Some(121618)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows macro attributes on expressions, statements and non-inline modules.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, proc_macro_hygiene, "1.30.0", Some(54727)),
|
2024-04-01 03:27:19 +00:00
|
|
|
/// Makes `&` and `&mut` patterns eat only one layer of references in Rust 2024.
|
2024-04-28 13:28:27 +00:00
|
|
|
(incomplete, ref_pat_eat_one_layer_2024, "1.79.0", Some(123076)),
|
2024-06-26 21:01:04 +00:00
|
|
|
/// Makes `&` and `&mut` patterns eat only one layer of references in Rust 2024—structural variant
|
2024-07-21 12:55:06 +00:00
|
|
|
(incomplete, ref_pat_eat_one_layer_2024_structural, "1.81.0", Some(123076)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using the `#[register_tool]` attribute.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, register_tool, "1.41.0", Some(66079)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows the `#[repr(i128)]` attribute for enums.
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, repr128, "1.16.0", Some(56071)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `repr(simd)` and importing the various simd intrinsics.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, repr_simd, "1.4.0", Some(27731)),
|
2024-03-19 03:31:48 +00:00
|
|
|
/// Allows enums like Result<T, E> to be used across FFI, if T's niche value can
|
|
|
|
/// be used to describe E or vise-versa.
|
2024-06-10 12:50:54 +00:00
|
|
|
(unstable, result_ffi_guarantees, "1.80.0", Some(110503)),
|
2023-03-04 02:23:36 +00:00
|
|
|
/// Allows bounding the return type of AFIT/RPITIT.
|
2024-09-21 16:09:44 +00:00
|
|
|
(unstable, return_type_notation, "1.70.0", Some(109417)),
|
2022-05-29 07:25:14 +00:00
|
|
|
/// Allows `extern "rust-cold"`.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, rust_cold_cc, "1.63.0", Some(97544)),
|
2024-08-01 17:43:51 +00:00
|
|
|
/// Allows use of x86 SHA512, SM3 and SM4 target-features and intrinsics
|
2024-09-02 16:48:42 +00:00
|
|
|
(unstable, sha512_sm_x86, "1.82.0", Some(126624)),
|
|
|
|
/// Shortern the tail expression lifetime
|
2024-04-12 15:24:45 +00:00
|
|
|
(unstable, shorter_tail_lifetimes, "1.79.0", Some(123739)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows the use of SIMD types in functions declared in `extern` blocks.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, simd_ffi, "1.0.0", Some(27731)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows specialization of implementations (RFC 1210).
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, specialization, "1.7.0", Some(31844)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows attributes on expressions and non-item statements.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, stmt_expr_attributes, "1.6.0", Some(15701)),
|
2022-04-02 19:07:00 +00:00
|
|
|
/// Allows lints part of the strict provenance effort.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, strict_provenance, "1.61.0", Some(95228)),
|
2022-11-11 14:31:07 +00:00
|
|
|
/// Allows string patterns to dereference values to match them.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, string_deref_patterns, "1.67.0", Some(87121)),
|
2023-03-02 12:41:17 +00:00
|
|
|
/// Allows the use of `#[target_feature]` on safe functions.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, target_feature_11, "1.45.0", Some(69098)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `#[thread_local]` on `static` items.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, thread_local, "1.0.0", Some(29594)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows defining `trait X = A + B;` alias items.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, trait_alias, "1.24.0", Some(41517)),
|
2024-01-22 12:23:50 +00:00
|
|
|
/// Allows dyn upcasting trait objects via supertraits.
|
|
|
|
/// Dyn upcasting is casting, e.g., `dyn Foo -> dyn Bar` where `Foo: Bar`.
|
|
|
|
(unstable, trait_upcasting, "1.56.0", Some(65991)),
|
2023-04-04 08:41:44 +00:00
|
|
|
/// Allows for transmuting between arrays with sizes that contain generic consts.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, transmute_generic_consts, "1.70.0", Some(109929)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows #[repr(transparent)] on unions (RFC 2645).
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, transparent_unions, "1.37.0", Some(60405)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows inconsistent bounds in where clauses.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, trivial_bounds, "1.28.0", Some(48214)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows using `try {...}` expressions.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, try_blocks, "1.29.0", Some(31436)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows `impl Trait` to be used inside type aliases (RFC 2515).
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, type_alias_impl_trait, "1.38.0", Some(63063)),
|
2021-10-10 06:50:39 +00:00
|
|
|
/// Allows creation of instances of a struct by moving fields that have
|
|
|
|
/// not changed from prior instances of the same struct (RFC #2528)
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, type_changing_struct_update, "1.58.0", Some(86555)),
|
2023-08-23 12:53:47 +00:00
|
|
|
/// Allows unnamed fields of struct and union type
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, unnamed_fields, "1.74.0", Some(49804)),
|
2024-07-14 12:38:51 +00:00
|
|
|
/// Allows const generic parameters to be defined with types that
|
|
|
|
/// are not `Sized`, e.g. `fn foo<const N: [u8]>() {`.
|
2024-09-02 16:48:42 +00:00
|
|
|
(incomplete, unsized_const_params, "1.82.0", Some(95174)),
|
2024-05-16 06:41:55 +00:00
|
|
|
/// Allows unsized fn parameters.
|
2024-06-22 13:34:50 +00:00
|
|
|
(internal, unsized_fn_params, "1.49.0", Some(48055)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows unsized rvalues at arguments and parameters.
|
2023-12-10 17:34:13 +00:00
|
|
|
(incomplete, unsized_locals, "1.30.0", Some(48055)),
|
2021-11-16 00:27:42 +00:00
|
|
|
/// Allows unsized tuple coercion.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, unsized_tuple_coercion, "1.20.0", Some(42877)),
|
2022-02-07 00:21:23 +00:00
|
|
|
/// Allows using the `#[used(linker)]` (or `#[used(compiler)]`) attribute.
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, used_with_arg, "1.60.0", Some(93798)),
|
2024-06-23 06:42:51 +00:00
|
|
|
/// Allows use of x86 `AMX` target-feature attributes and intrinsics
|
2024-07-21 12:55:06 +00:00
|
|
|
(unstable, x86_amx_intrinsics, "1.81.0", Some(126622)),
|
2024-07-12 18:00:22 +00:00
|
|
|
/// Allows use of the `xop` target-feature
|
2024-07-21 12:55:06 +00:00
|
|
|
(unstable, xop_target_feature, "1.81.0", Some(127208)),
|
2022-03-26 06:43:54 +00:00
|
|
|
/// Allows `do yeet` expressions
|
2023-12-10 17:34:13 +00:00
|
|
|
(unstable, yeet_expr, "1.62.0", Some(96373)),
|
2021-11-16 00:27:42 +00:00
|
|
|
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
|
|
|
|
// Features are listed in alphabetical order. Tidy will fail if you don't keep it this way.
|
|
|
|
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
|
2021-10-27 17:37:18 +00:00
|
|
|
|
2019-08-20 16:50:33 +00:00
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// feature-group-end: actual feature gates
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
);
|
|
|
|
|
2020-09-03 17:47:35 +00:00
|
|
|
/// Some features are not allowed to be used together at the same time, if
|
2020-09-10 06:52:02 +00:00
|
|
|
/// the two are present, produce an error.
|
2020-11-17 09:55:13 +00:00
|
|
|
///
|
|
|
|
/// Currently empty, but we will probably need this again in the future,
|
|
|
|
/// so let's keep it in for now.
|
|
|
|
pub const INCOMPATIBLE_FEATURES: &[(Symbol, Symbol)] = &[];
|