]> git.lizzy.rs Git - rust.git/blob - src/librustc_feature/active.rs
Add note to src/ci/docker/README.md about multiple docker images
[rust.git] / src / librustc_feature / active.rs
1 //! List of the active feature gates.
2
3 use super::{State, Feature};
4
5 use syntax_pos::edition::Edition;
6 use syntax_pos::Span;
7 use syntax_pos::symbol::{Symbol, sym};
8
9 macro_rules! set {
10     ($field: ident) => {{
11         fn f(features: &mut Features, _: Span) {
12             features.$field = true;
13         }
14         f as fn(&mut Features, Span)
15     }}
16 }
17
18 macro_rules! declare_features {
19     ($(
20         $(#[doc = $doc:tt])* (active, $feature:ident, $ver:expr, $issue:expr, $edition:expr),
21     )+) => {
22         /// Represents active features that are currently being implemented or
23         /// currently being considered for addition/removal.
24         pub const ACTIVE_FEATURES:
25             &[Feature] =
26             &[$(
27                 // (sym::$feature, $ver, $issue, $edition, set!($feature))
28                 Feature {
29                     state: State::Active { set: set!($feature) },
30                     name: sym::$feature,
31                     since: $ver,
32                     issue: $issue,
33                     edition: $edition,
34                     description: concat!($($doc,)*),
35                 }
36             ),+];
37
38         /// A set of features to be used by later passes.
39         #[derive(Clone, Default)]
40         pub struct Features {
41             /// `#![feature]` attrs for language features, for error reporting.
42             pub declared_lang_features: Vec<(Symbol, Span, Option<Symbol>)>,
43             /// `#![feature]` attrs for non-language (library) features.
44             pub declared_lib_features: Vec<(Symbol, Span)>,
45             $(
46                 $(#[doc = $doc])*
47                 pub $feature: bool
48             ),+
49         }
50
51         impl Features {
52             pub fn walk_feature_fields(&self, mut f: impl FnMut(&str, bool)) {
53                 $(f(stringify!($feature), self.$feature);)+
54             }
55         }
56     };
57 }
58
59 impl Feature {
60     /// Sets this feature in `Features`. Panics if called on a non-active feature.
61     pub fn set(&self, features: &mut Features, span: Span) {
62         match self.state {
63             State::Active { set } => set(features, span),
64             _ => panic!("called `set` on feature `{}` which is not `active`", self.name)
65         }
66     }
67 }
68
69 // If you change this, please modify `src/doc/unstable-book` as well.
70 //
71 // Don't ever remove anything from this list; move them to `removed.rs`.
72 //
73 // The version numbers here correspond to the version in which the current status
74 // was set. This is most important for knowing when a particular feature became
75 // stable (active).
76 //
77 // Note that the features are grouped into internal/user-facing and then
78 // sorted by version inside those groups. This is enforced with tidy.
79 //
80 // N.B., `tools/tidy/src/features.rs` parses this information directly out of the
81 // source, so take care when modifying it.
82
83 declare_features! (
84     // -------------------------------------------------------------------------
85     // feature-group-start: internal feature gates
86     // -------------------------------------------------------------------------
87
88     // no-tracking-issue-start
89
90     /// Allows using compiler's own crates.
91     (active, rustc_private, "1.0.0", Some(27812), None),
92
93     /// Allows using the `rust-intrinsic`'s "ABI".
94     (active, intrinsics, "1.0.0", None, None),
95
96     /// Allows using `#[lang = ".."]` attribute for linking items to special compiler logic.
97     (active, lang_items, "1.0.0", None, None),
98
99     /// Allows using the `#[stable]` and `#[unstable]` attributes.
100     (active, staged_api, "1.0.0", None, None),
101
102     /// Allows using `#[allow_internal_unstable]`. This is an
103     /// attribute on `macro_rules!` and can't use the attribute handling
104     /// below (it has to be checked before expansion possibly makes
105     /// macros disappear).
106     (active, allow_internal_unstable, "1.0.0", None, None),
107
108     /// Allows using `#[allow_internal_unsafe]`. This is an
109     /// attribute on `macro_rules!` and can't use the attribute handling
110     /// below (it has to be checked before expansion possibly makes
111     /// macros disappear).
112     (active, allow_internal_unsafe, "1.0.0", None, None),
113
114     /// Allows using `#[rustc_const_unstable(feature = "foo", ..)]` which
115     /// lets a function to be `const` when opted into with `#![feature(foo)]`.
116     (active, rustc_const_unstable, "1.0.0", None, None),
117
118     /// no-tracking-issue-end
119
120     /// Allows using `#[link_name="llvm.*"]`.
121     (active, link_llvm_intrinsics, "1.0.0", Some(29602), None),
122
123     /// Allows using `rustc_*` attributes (RFC 572).
124     (active, rustc_attrs, "1.0.0", Some(29642), None),
125
126     /// Allows using the `box $expr` syntax.
127     (active, box_syntax, "1.0.0", Some(49733), None),
128
129     /// Allows using `#[main]` to replace the entrypoint `#[lang = "start"]` calls.
130     (active, main, "1.0.0", Some(29634), None),
131
132     /// Allows using `#[start]` on a function indicating that it is the program entrypoint.
133     (active, start, "1.0.0", Some(29633), None),
134
135     /// Allows using the `#[fundamental]` attribute.
136     (active, fundamental, "1.0.0", Some(29635), None),
137
138     /// Allows using the `rust-call` ABI.
139     (active, unboxed_closures, "1.0.0", Some(29625), None),
140
141     /// Allows using the `#[linkage = ".."]` attribute.
142     (active, linkage, "1.0.0", Some(29603), None),
143
144     /// Allows features specific to OIBIT (auto traits).
145     (active, optin_builtin_traits, "1.0.0", Some(13231), None),
146
147     /// Allows using `box` in patterns (RFC 469).
148     (active, box_patterns, "1.0.0", Some(29641), None),
149
150     // no-tracking-issue-start
151
152     /// Allows using `#[prelude_import]` on glob `use` items.
153     (active, prelude_import, "1.2.0", None, None),
154
155     // no-tracking-issue-end
156
157     // no-tracking-issue-start
158
159     /// Allows using `#[omit_gdb_pretty_printer_section]`.
160     (active, omit_gdb_pretty_printer_section, "1.5.0", None, None),
161
162     /// Allows using the `vectorcall` ABI.
163     (active, abi_vectorcall, "1.7.0", None, None),
164
165     // no-tracking-issue-end
166
167     /// Allows using `#[structural_match]` which indicates that a type is structurally matchable.
168     (active, structural_match, "1.8.0", Some(31434), None),
169
170     /// Allows using the `may_dangle` attribute (RFC 1327).
171     (active, dropck_eyepatch, "1.10.0", Some(34761), None),
172
173     /// Allows using the `#![panic_runtime]` attribute.
174     (active, panic_runtime, "1.10.0", Some(32837), None),
175
176     /// Allows declaring with `#![needs_panic_runtime]` that a panic runtime is needed.
177     (active, needs_panic_runtime, "1.10.0", Some(32837), None),
178
179     // no-tracking-issue-start
180
181     /// Allows identifying the `compiler_builtins` crate.
182     (active, compiler_builtins, "1.13.0", None, None),
183
184     /// Allows using the `unadjusted` ABI; perma-unstable.
185     (active, abi_unadjusted, "1.16.0", None, None),
186
187     /// Allows identifying crates that contain sanitizer runtimes.
188     (active, sanitizer_runtime, "1.17.0", None, None),
189
190     /// Used to identify crates that contain the profiler runtime.
191     (active, profiler_runtime, "1.18.0", None, None),
192
193     /// Allows using the `thiscall` ABI.
194     (active, abi_thiscall, "1.19.0", None, None),
195
196     /// Allows using `#![needs_allocator]`, an implementation detail of `#[global_allocator]`.
197     (active, allocator_internals, "1.20.0", None, None),
198
199     /// Added for testing E0705; perma-unstable.
200     (active, test_2018_feature, "1.31.0", None, Some(Edition::Edition2018)),
201
202     // no-tracking-issue-end
203
204     // -------------------------------------------------------------------------
205     // feature-group-end: internal feature gates
206     // -------------------------------------------------------------------------
207
208     // -------------------------------------------------------------------------
209     // feature-group-start: actual feature gates (target features)
210     // -------------------------------------------------------------------------
211
212     // FIXME: Document these and merge with the list below.
213
214     // Unstable `#[target_feature]` directives.
215     (active, arm_target_feature, "1.27.0", Some(44839), None),
216     (active, aarch64_target_feature, "1.27.0", Some(44839), None),
217     (active, hexagon_target_feature, "1.27.0", Some(44839), None),
218     (active, powerpc_target_feature, "1.27.0", Some(44839), None),
219     (active, mips_target_feature, "1.27.0", Some(44839), None),
220     (active, avx512_target_feature, "1.27.0", Some(44839), None),
221     (active, mmx_target_feature, "1.27.0", Some(44839), None),
222     (active, sse4a_target_feature, "1.27.0", Some(44839), None),
223     (active, tbm_target_feature, "1.27.0", Some(44839), None),
224     (active, wasm_target_feature, "1.30.0", Some(44839), None),
225     (active, adx_target_feature, "1.32.0", Some(44839), None),
226     (active, cmpxchg16b_target_feature, "1.32.0", Some(44839), None),
227     (active, movbe_target_feature, "1.34.0", Some(44839), None),
228     (active, rtm_target_feature, "1.35.0", Some(44839), None),
229     (active, f16c_target_feature, "1.36.0", Some(44839), None),
230
231     // -------------------------------------------------------------------------
232     // feature-group-end: actual feature gates (target features)
233     // -------------------------------------------------------------------------
234
235     // -------------------------------------------------------------------------
236     // feature-group-start: actual feature gates
237     // -------------------------------------------------------------------------
238
239     /// Allows using the `#[link_args]` attribute.
240     (active, link_args, "1.0.0", Some(29596), None),
241
242     /// Allows defining identifiers beyond ASCII.
243     (active, non_ascii_idents, "1.0.0", Some(55467), None),
244
245     /// Allows using `#[plugin_registrar]` on functions.
246     (active, plugin_registrar, "1.0.0", Some(29597), None),
247
248     /// Allows using `#![plugin(myplugin)]`.
249     (active, plugin, "1.0.0", Some(29597), None),
250
251     /// Allows using `#[thread_local]` on `static` items.
252     (active, thread_local, "1.0.0", Some(29594), None),
253
254     /// Allows the use of SIMD types in functions declared in `extern` blocks.
255     (active, simd_ffi, "1.0.0", Some(27731), None),
256
257     /// Allows using non lexical lifetimes (RFC 2094).
258     (active, nll, "1.0.0", Some(43234), None),
259
260     /// Allows using slice patterns.
261     (active, slice_patterns, "1.0.0", Some(62254), None),
262
263     /// Allows the definition of `const` functions with some advanced features.
264     (active, const_fn, "1.2.0", Some(57563), None),
265
266     /// Allows associated type defaults.
267     (active, associated_type_defaults, "1.2.0", Some(29661), None),
268
269     /// Allows `#![no_core]`.
270     (active, no_core, "1.3.0", Some(29639), None),
271
272     /// Allows default type parameters to influence type inference.
273     (active, default_type_parameter_fallback, "1.3.0", Some(27336), None),
274
275     /// Allows `repr(simd)` and importing the various simd intrinsics.
276     (active, repr_simd, "1.4.0", Some(27731), None),
277
278     /// Allows `extern "platform-intrinsic" { ... }`.
279     (active, platform_intrinsics, "1.4.0", Some(27731), None),
280
281     /// Allows `#[unwind(..)]`.
282     ///
283     /// Permits specifying whether a function should permit unwinding or abort on unwind.
284     (active, unwind_attributes, "1.4.0", Some(58760), None),
285
286     /// Allows `#[no_debug]`.
287     (active, no_debug, "1.5.0", Some(29721), None),
288
289     /// Allows attributes on expressions and non-item statements.
290     (active, stmt_expr_attributes, "1.6.0", Some(15701), None),
291
292     /// Allows the use of type ascription in expressions.
293     (active, type_ascription, "1.6.0", Some(23416), None),
294
295     /// Allows `cfg(target_thread_local)`.
296     (active, cfg_target_thread_local, "1.7.0", Some(29594), None),
297
298     /// Allows specialization of implementations (RFC 1210).
299     (active, specialization, "1.7.0", Some(31844), None),
300
301     /// Allows using `#[naked]` on functions.
302     (active, naked_functions, "1.9.0", Some(32408), None),
303
304     /// Allows `cfg(target_has_atomic = "...")`.
305     (active, cfg_target_has_atomic, "1.9.0", Some(32976), None),
306
307     /// Allows `X..Y` patterns.
308     (active, exclusive_range_pattern, "1.11.0", Some(37854), None),
309
310     /// Allows exhaustive pattern matching on types that contain uninhabited types.
311     (active, exhaustive_patterns, "1.13.0", Some(51085), None),
312
313     /// Allows `union`s to implement `Drop`. Moreover, `union`s may now include fields
314     /// that don't implement `Copy` as long as they don't have any drop glue.
315     /// This is checked recursively. On encountering type variable where no progress can be made,
316     /// `T: Copy` is used as a substitute for "no drop glue".
317     ///
318     /// NOTE: A limited form of `union U { ... }` was accepted in 1.19.0.
319     (active, untagged_unions, "1.13.0", Some(55149), None),
320
321     /// Allows `#[link(..., cfg(..))]`.
322     (active, link_cfg, "1.14.0", Some(37406), None),
323
324     /// Allows `extern "ptx-*" fn()`.
325     (active, abi_ptx, "1.15.0", Some(38788), None),
326
327     /// Allows the `#[repr(i128)]` attribute for enums.
328     (active, repr128, "1.16.0", Some(35118), None),
329
330     /// Allows `#[link(kind="static-nobundle"...)]`.
331     (active, static_nobundle, "1.16.0", Some(37403), None),
332
333     /// Allows `extern "msp430-interrupt" fn()`.
334     (active, abi_msp430_interrupt, "1.16.0", Some(38487), None),
335
336     /// Allows declarative macros 2.0 (`macro`).
337     (active, decl_macro, "1.17.0", Some(39412), None),
338
339     /// Allows `extern "x86-interrupt" fn()`.
340     (active, abi_x86_interrupt, "1.17.0", Some(40180), None),
341
342     /// Allows overlapping impls of marker traits.
343     (active, overlapping_marker_traits, "1.18.0", Some(29864), None),
344
345     /// Allows a test to fail without failing the whole suite.
346     (active, allow_fail, "1.19.0", Some(46488), None),
347
348     /// Allows unsized tuple coercion.
349     (active, unsized_tuple_coercion, "1.20.0", Some(42877), None),
350
351     /// Allows defining generators.
352     (active, generators, "1.21.0", Some(43122), None),
353
354     /// Allows `#[doc(cfg(...))]`.
355     (active, doc_cfg, "1.21.0", Some(43781), None),
356
357     /// Allows `#[doc(masked)]`.
358     (active, doc_masked, "1.21.0", Some(44027), None),
359
360     /// Allows `#[doc(spotlight)]`.
361     (active, doc_spotlight, "1.22.0", Some(45040), None),
362
363     /// Allows `#[doc(include = "some-file")]`.
364     (active, external_doc, "1.22.0", Some(44732), None),
365
366     /// Allows using `crate` as visibility modifier, synonymous with `pub(crate)`.
367     (active, crate_visibility_modifier, "1.23.0", Some(53120), None),
368
369     /// Allows defining `extern type`s.
370     (active, extern_types, "1.23.0", Some(43467), None),
371
372     /// Allows trait methods with arbitrary self types.
373     (active, arbitrary_self_types, "1.23.0", Some(44874), None),
374
375     /// Allows in-band quantification of lifetime bindings (e.g., `fn foo(x: &'a u8) -> &'a u8`).
376     (active, in_band_lifetimes, "1.23.0", Some(44524), None),
377
378     /// Allows associated types to be generic, e.g., `type Foo<T>;` (RFC 1598).
379     (active, generic_associated_types, "1.23.0", Some(44265), None),
380
381     /// Allows defining `trait X = A + B;` alias items.
382     (active, trait_alias, "1.24.0", Some(41517), None),
383
384     /// Allows infering `'static` outlives requirements (RFC 2093).
385     (active, infer_static_outlives_requirements, "1.26.0", Some(54185), None),
386
387     /// Allows accessing fields of unions inside `const` functions.
388     (active, const_fn_union, "1.27.0", Some(51909), None),
389
390     /// Allows casting raw pointers to `usize` during const eval.
391     (active, const_raw_ptr_to_usize_cast, "1.27.0", Some(51910), None),
392
393     /// Allows dereferencing raw pointers during const eval.
394     (active, const_raw_ptr_deref, "1.27.0", Some(51911), None),
395
396     /// Allows comparing raw pointers during const eval.
397     (active, const_compare_raw_pointers, "1.27.0", Some(53020), None),
398
399     /// Allows `#[doc(alias = "...")]`.
400     (active, doc_alias, "1.27.0", Some(50146), None),
401
402     /// Allows inconsistent bounds in where clauses.
403     (active, trivial_bounds, "1.28.0", Some(48214), None),
404
405     /// Allows `'a: { break 'a; }`.
406     (active, label_break_value, "1.28.0", Some(48594), None),
407
408     /// Allows using `#[doc(keyword = "...")]`.
409     (active, doc_keyword, "1.28.0", Some(51315), None),
410
411     /// Allows using `try {...}` expressions.
412     (active, try_blocks, "1.29.0", Some(31436), None),
413
414     /// Allows defining an `#[alloc_error_handler]`.
415     (active, alloc_error_handler, "1.29.0", Some(51540), None),
416
417     /// Allows using the `amdgpu-kernel` ABI.
418     (active, abi_amdgpu_kernel, "1.29.0", Some(51575), None),
419
420     /// Allows panicking during const eval (producing compile-time errors).
421     (active, const_panic, "1.30.0", Some(51999), None),
422
423     /// Allows `#[marker]` on certain traits allowing overlapping implementations.
424     (active, marker_trait_attr, "1.30.0", Some(29864), None),
425
426     /// Allows macro invocations on modules expressions and statements and
427     /// procedural macros to expand to non-items.
428     (active, proc_macro_hygiene, "1.30.0", Some(54727), None),
429
430     /// Allows unsized rvalues at arguments and parameters.
431     (active, unsized_locals, "1.30.0", Some(48055), None),
432
433     /// Allows custom test frameworks with `#![test_runner]` and `#[test_case]`.
434     (active, custom_test_frameworks, "1.30.0", Some(50297), None),
435
436     /// Allows non-builtin attributes in inner attribute position.
437     (active, custom_inner_attributes, "1.30.0", Some(54726), None),
438
439     /// Allows `impl Trait` in bindings (`let`, `const`, `static`).
440     (active, impl_trait_in_bindings, "1.30.0", Some(63065), None),
441
442     /// Allows using `reason` in lint attributes and the `#[expect(lint)]` lint check.
443     (active, lint_reasons, "1.31.0", Some(54503), None),
444
445     /// Allows exhaustive integer pattern matching on `usize` and `isize`.
446     (active, precise_pointer_size_matching, "1.32.0", Some(56354), None),
447
448     /// Allows using `#[ffi_returns_twice]` on foreign functions.
449     (active, ffi_returns_twice, "1.34.0", Some(58314), None),
450
451     /// Allows const generic types (e.g. `struct Foo<const N: usize>(...);`).
452     (active, const_generics, "1.34.0", Some(44580), None),
453
454     /// Allows using `#[optimize(X)]`.
455     (active, optimize_attribute, "1.34.0", Some(54882), None),
456
457     /// Allows using C-variadics.
458     (active, c_variadic, "1.34.0", Some(44930), None),
459
460     /// Allows the user of associated type bounds.
461     (active, associated_type_bounds, "1.34.0", Some(52662), None),
462
463     /// Allows `if/while p && let q = r && ...` chains.
464     (active, let_chains, "1.37.0", Some(53667), None),
465
466     /// Allows #[repr(transparent)] on enums (RFC 2645).
467     (active, transparent_enums, "1.37.0", Some(60405), None),
468
469     /// Allows #[repr(transparent)] on unions (RFC 2645).
470     (active, transparent_unions, "1.37.0", Some(60405), None),
471
472     /// Allows explicit discriminants on non-unit enum variants.
473     (active, arbitrary_enum_discriminant, "1.37.0", Some(60553), None),
474
475     /// Allows `impl Trait` with multiple unrelated lifetimes.
476     (active, member_constraints, "1.37.0", Some(61977), None),
477
478     /// Allows `async || body` closures.
479     (active, async_closure, "1.37.0", Some(62290), None),
480
481     /// Allows `[x; N]` where `x` is a constant (RFC 2203).
482     (active, const_in_array_repeat_expressions, "1.37.0", Some(49147), None),
483
484     /// Allows `impl Trait` to be used inside type aliases (RFC 2515).
485     (active, type_alias_impl_trait, "1.38.0", Some(63063), None),
486
487     /// Allows the use of or-patterns (e.g., `0 | 1`).
488     (active, or_patterns, "1.38.0", Some(54883), None),
489
490     /// Allows the definition of `const extern fn` and `const unsafe extern fn`.
491     (active, const_extern_fn, "1.40.0", Some(64926), None),
492
493     /// Allows the use of raw-dylibs (RFC 2627).
494     (active, raw_dylib, "1.40.0", Some(58713), None),
495
496     /// Allows `#[track_caller]` to be used which provides
497     /// accurate caller location reporting during panic (RFC 2091).
498     (active, track_caller, "1.40.0", Some(47809), None),
499
500     /// Allows making `dyn Trait` well-formed even if `Trait` is not object safe.
501     /// In that case, `dyn Trait: Trait` does not hold. Moreover, coercions and
502     /// casts in safe Rust to `dyn Trait` for such a `Trait` is also forbidden.
503     (active, object_safe_for_dispatch, "1.40.0", Some(43561), None),
504
505     /// Allows using the `efiapi` ABI.
506     (active, abi_efiapi, "1.40.0", Some(65815), None),
507
508     /// Allows `&raw const $place_expr` and `&raw mut $place_expr` expressions.
509     (active, raw_ref_op, "1.41.0", Some(64490), None),
510
511     /// Allows diverging expressions to fall back to `!` rather than `()`.
512     (active, never_type_fallback, "1.41.0", Some(65992), None),
513
514     /// Allows using the `#[register_attr]` attribute.
515     (active, register_attr, "1.41.0", Some(66080), None),
516
517     /// Allows using the `#[register_tool]` attribute.
518     (active, register_tool, "1.41.0", Some(66079), None),
519
520     /// Allows the use of `if` and `match` in constants.
521     (active, const_if_match, "1.41.0", Some(49146), None),
522
523     /// Allows the use of `#[cfg(sanitize = "option")]`; set when -Zsanitizer is used.
524     (active, cfg_sanitize, "1.41.0", Some(39699), None),
525
526     // -------------------------------------------------------------------------
527     // feature-group-end: actual feature gates
528     // -------------------------------------------------------------------------
529 );
530
531 /// Some features are known to be incomplete and using them is likely to have
532 /// unanticipated results, such as compiler crashes. We warn the user about these
533 /// to alert them.
534 pub const INCOMPLETE_FEATURES: &[Symbol] = &[
535     sym::impl_trait_in_bindings,
536     sym::generic_associated_types,
537     sym::const_generics,
538     sym::or_patterns,
539     sym::let_chains,
540     sym::raw_dylib,
541     sym::track_caller,
542 ];