Auto merge of #14969 - Veykril:inert-attrs, r=Veykril
Update builtin attribute list
This commit is contained in:
commit
c4eb3946fa
@ -1,6 +1,7 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
members = ["xtask/", "lib/*", "crates/*"]
|
members = ["xtask/", "lib/*", "crates/*"]
|
||||||
exclude = ["crates/proc-macro-test/imp"]
|
exclude = ["crates/proc-macro-test/imp"]
|
||||||
|
resolver = "2"
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
rust-version = "1.66"
|
rust-version = "1.66"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//!
|
//!
|
||||||
//! The actual definitions were copied from rustc's `compiler/rustc_feature/src/builtin_attrs.rs`.
|
//! The actual definitions were copied from rustc's `compiler/rustc_feature/src/builtin_attrs.rs`.
|
||||||
//!
|
//!
|
||||||
//! It was last synchronized with upstream commit c1a2db3372a4d6896744919284f3287650a38ab7.
|
//! It was last synchronized with upstream commit e29821ff85a2a3000d226f99f62f89464028d5d6.
|
||||||
//!
|
//!
|
||||||
//! The macros were adjusted to only expand to the attribute name, since that is all we need to do
|
//! The macros were adjusted to only expand to the attribute name, since that is all we need to do
|
||||||
//! name resolution, and `BUILTIN_ATTRIBUTES` is almost entirely unchanged from the original, to
|
//! name resolution, and `BUILTIN_ATTRIBUTES` is almost entirely unchanged from the original, to
|
||||||
@ -108,7 +108,7 @@ macro_rules! experimental {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/// "Inert" built-in attributes that have a special meaning to rustc or rustdoc.
|
/// Attributes that have a special meaning to rustc or rustdoc.
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
pub const INERT_ATTRIBUTES: &[BuiltinAttribute] = &[
|
pub const INERT_ATTRIBUTES: &[BuiltinAttribute] = &[
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
@ -123,7 +123,7 @@ macro_rules! experimental {
|
|||||||
ungated!(ignore, Normal, template!(Word, NameValueStr: "reason"), WarnFollowing),
|
ungated!(ignore, Normal, template!(Word, NameValueStr: "reason"), WarnFollowing),
|
||||||
ungated!(
|
ungated!(
|
||||||
should_panic, Normal,
|
should_panic, Normal,
|
||||||
template!(Word, List: r#"expected = "reason"#, NameValueStr: "reason"), FutureWarnFollowing,
|
template!(Word, List: r#"expected = "reason""#, NameValueStr: "reason"), FutureWarnFollowing,
|
||||||
),
|
),
|
||||||
// FIXME(Centril): This can be used on stable but shouldn't.
|
// FIXME(Centril): This can be used on stable but shouldn't.
|
||||||
ungated!(reexport_test_harness_main, CrateLevel, template!(NameValueStr: "name"), ErrorFollowing),
|
ungated!(reexport_test_harness_main, CrateLevel, template!(NameValueStr: "name"), ErrorFollowing),
|
||||||
@ -142,20 +142,24 @@ macro_rules! experimental {
|
|||||||
|
|
||||||
// Lints:
|
// Lints:
|
||||||
ungated!(
|
ungated!(
|
||||||
warn, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#), DuplicatesOk
|
warn, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#),
|
||||||
|
DuplicatesOk, @only_local: true,
|
||||||
),
|
),
|
||||||
ungated!(
|
ungated!(
|
||||||
allow, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#), DuplicatesOk
|
allow, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#),
|
||||||
|
DuplicatesOk, @only_local: true,
|
||||||
),
|
),
|
||||||
gated!(
|
gated!(
|
||||||
expect, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#), DuplicatesOk,
|
expect, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#), DuplicatesOk,
|
||||||
lint_reasons, experimental!(expect)
|
lint_reasons, experimental!(expect)
|
||||||
),
|
),
|
||||||
ungated!(
|
ungated!(
|
||||||
forbid, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#), DuplicatesOk
|
forbid, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#),
|
||||||
|
DuplicatesOk, @only_local: true,
|
||||||
),
|
),
|
||||||
ungated!(
|
ungated!(
|
||||||
deny, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#), DuplicatesOk
|
deny, Normal, template!(List: r#"lint1, lint2, ..., /*opt*/ reason = "...""#),
|
||||||
|
DuplicatesOk, @only_local: true,
|
||||||
),
|
),
|
||||||
ungated!(must_use, Normal, template!(Word, NameValueStr: "reason"), FutureWarnFollowing),
|
ungated!(must_use, Normal, template!(Word, NameValueStr: "reason"), FutureWarnFollowing),
|
||||||
gated!(
|
gated!(
|
||||||
@ -181,16 +185,17 @@ macro_rules! experimental {
|
|||||||
// ABI, linking, symbols, and FFI
|
// ABI, linking, symbols, and FFI
|
||||||
ungated!(
|
ungated!(
|
||||||
link, Normal,
|
link, Normal,
|
||||||
template!(List: r#"name = "...", /*opt*/ kind = "dylib|static|...", /*opt*/ wasm_import_module = "...""#),
|
template!(List: r#"name = "...", /*opt*/ kind = "dylib|static|...", /*opt*/ wasm_import_module = "...", /*opt*/ import_name_type = "decorated|noprefix|undecorated""#),
|
||||||
DuplicatesOk,
|
DuplicatesOk,
|
||||||
),
|
),
|
||||||
ungated!(link_name, Normal, template!(NameValueStr: "name"), FutureWarnPreceding),
|
ungated!(link_name, Normal, template!(NameValueStr: "name"), FutureWarnPreceding),
|
||||||
ungated!(no_link, Normal, template!(Word), WarnFollowing),
|
ungated!(no_link, Normal, template!(Word), WarnFollowing),
|
||||||
ungated!(repr, Normal, template!(List: "C"), DuplicatesOk),
|
ungated!(repr, Normal, template!(List: "C"), DuplicatesOk, @only_local: true),
|
||||||
ungated!(export_name, Normal, template!(NameValueStr: "name"), FutureWarnPreceding),
|
ungated!(export_name, Normal, template!(NameValueStr: "name"), FutureWarnPreceding),
|
||||||
ungated!(link_section, Normal, template!(NameValueStr: "name"), FutureWarnPreceding),
|
ungated!(link_section, Normal, template!(NameValueStr: "name"), FutureWarnPreceding),
|
||||||
ungated!(no_mangle, Normal, template!(Word), WarnFollowing, @only_local: true),
|
ungated!(no_mangle, Normal, template!(Word), WarnFollowing, @only_local: true),
|
||||||
ungated!(used, Normal, template!(Word, List: "compiler|linker"), WarnFollowing, @only_local: true),
|
ungated!(used, Normal, template!(Word, List: "compiler|linker"), WarnFollowing, @only_local: true),
|
||||||
|
ungated!(link_ordinal, Normal, template!(List: "ordinal"), ErrorPreceding),
|
||||||
|
|
||||||
// Limits:
|
// Limits:
|
||||||
ungated!(recursion_limit, CrateLevel, template!(NameValueStr: "N"), FutureWarnFollowing),
|
ungated!(recursion_limit, CrateLevel, template!(NameValueStr: "N"), FutureWarnFollowing),
|
||||||
@ -205,6 +210,7 @@ macro_rules! experimental {
|
|||||||
),
|
),
|
||||||
|
|
||||||
// Entry point:
|
// Entry point:
|
||||||
|
gated!(unix_sigpipe, Normal, template!(Word, NameValueStr: "inherit|sig_ign|sig_dfl"), ErrorFollowing, experimental!(unix_sigpipe)),
|
||||||
ungated!(start, Normal, template!(Word), WarnFollowing),
|
ungated!(start, Normal, template!(Word), WarnFollowing),
|
||||||
ungated!(no_start, CrateLevel, template!(Word), WarnFollowing),
|
ungated!(no_start, CrateLevel, template!(Word), WarnFollowing),
|
||||||
ungated!(no_main, CrateLevel, template!(Word), WarnFollowing),
|
ungated!(no_main, CrateLevel, template!(Word), WarnFollowing),
|
||||||
@ -226,11 +232,15 @@ macro_rules! experimental {
|
|||||||
ungated!(inline, Normal, template!(Word, List: "always|never"), FutureWarnFollowing, @only_local: true),
|
ungated!(inline, Normal, template!(Word, List: "always|never"), FutureWarnFollowing, @only_local: true),
|
||||||
ungated!(cold, Normal, template!(Word), WarnFollowing, @only_local: true),
|
ungated!(cold, Normal, template!(Word), WarnFollowing, @only_local: true),
|
||||||
ungated!(no_builtins, CrateLevel, template!(Word), WarnFollowing),
|
ungated!(no_builtins, CrateLevel, template!(Word), WarnFollowing),
|
||||||
ungated!(target_feature, Normal, template!(List: r#"enable = "name""#), DuplicatesOk),
|
ungated!(
|
||||||
|
target_feature, Normal, template!(List: r#"enable = "name""#),
|
||||||
|
DuplicatesOk, @only_local: true,
|
||||||
|
),
|
||||||
ungated!(track_caller, Normal, template!(Word), WarnFollowing),
|
ungated!(track_caller, Normal, template!(Word), WarnFollowing),
|
||||||
|
ungated!(instruction_set, Normal, template!(List: "set"), ErrorPreceding),
|
||||||
gated!(
|
gated!(
|
||||||
no_sanitize, Normal,
|
no_sanitize, Normal,
|
||||||
template!(List: "address, memory, thread"), DuplicatesOk,
|
template!(List: "address, kcfi, memory, thread"), DuplicatesOk,
|
||||||
experimental!(no_sanitize)
|
experimental!(no_sanitize)
|
||||||
),
|
),
|
||||||
gated!(no_coverage, Normal, template!(Word), WarnFollowing, experimental!(no_coverage)),
|
gated!(no_coverage, Normal, template!(Word), WarnFollowing, experimental!(no_coverage)),
|
||||||
@ -239,25 +249,23 @@ macro_rules! experimental {
|
|||||||
doc, Normal, template!(List: "hidden|inline|...", NameValueStr: "string"), DuplicatesOk
|
doc, Normal, template!(List: "hidden|inline|...", NameValueStr: "string"), DuplicatesOk
|
||||||
),
|
),
|
||||||
|
|
||||||
|
// Debugging
|
||||||
|
ungated!(
|
||||||
|
debugger_visualizer, Normal,
|
||||||
|
template!(List: r#"natvis_file = "...", gdb_script_file = "...""#), DuplicatesOk
|
||||||
|
),
|
||||||
|
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Unstable attributes:
|
// Unstable attributes:
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
|
|
||||||
// RFC #3191: #[debugger_visualizer] support
|
|
||||||
gated!(
|
|
||||||
debugger_visualizer, Normal, template!(List: r#"natvis_file = "...", gdb_script_file = "...""#),
|
|
||||||
DuplicatesOk, experimental!(debugger_visualizer)
|
|
||||||
),
|
|
||||||
|
|
||||||
// Linking:
|
// Linking:
|
||||||
gated!(naked, Normal, template!(Word), WarnFollowing, @only_local: true, naked_functions, experimental!(naked)),
|
|
||||||
gated!(
|
gated!(
|
||||||
link_ordinal, Normal, template!(List: "ordinal"), ErrorPreceding, raw_dylib,
|
naked, Normal, template!(Word), WarnFollowing, @only_local: true,
|
||||||
experimental!(link_ordinal)
|
naked_functions, experimental!(naked)
|
||||||
),
|
),
|
||||||
|
|
||||||
// Plugins:
|
// Plugins:
|
||||||
// XXX Modified for use in rust-analyzer
|
|
||||||
// BuiltinAttribute {
|
// BuiltinAttribute {
|
||||||
// name: sym::plugin,
|
// name: sym::plugin,
|
||||||
// only_local: false,
|
// only_local: false,
|
||||||
@ -274,10 +282,6 @@ macro_rules! experimental {
|
|||||||
// cfg_fn!(plugin)
|
// cfg_fn!(plugin)
|
||||||
// ),
|
// ),
|
||||||
// },
|
// },
|
||||||
BuiltinAttribute {
|
|
||||||
name: "plugin",
|
|
||||||
template: template!(List: "name"),
|
|
||||||
},
|
|
||||||
|
|
||||||
// Testing:
|
// Testing:
|
||||||
gated!(
|
gated!(
|
||||||
@ -286,7 +290,8 @@ macro_rules! experimental {
|
|||||||
),
|
),
|
||||||
// RFC #1268
|
// RFC #1268
|
||||||
gated!(
|
gated!(
|
||||||
marker, Normal, template!(Word), WarnFollowing, marker_trait_attr, experimental!(marker)
|
marker, Normal, template!(Word), WarnFollowing, @only_local: true,
|
||||||
|
marker_trait_attr, experimental!(marker)
|
||||||
),
|
),
|
||||||
gated!(
|
gated!(
|
||||||
thread_local, Normal, template!(Word), WarnFollowing,
|
thread_local, Normal, template!(Word), WarnFollowing,
|
||||||
@ -298,21 +303,12 @@ macro_rules! experimental {
|
|||||||
optimize, Normal, template!(List: "size|speed"), ErrorPreceding, optimize_attribute,
|
optimize, Normal, template!(List: "size|speed"), ErrorPreceding, optimize_attribute,
|
||||||
experimental!(optimize),
|
experimental!(optimize),
|
||||||
),
|
),
|
||||||
// RFC 2867
|
|
||||||
gated!(
|
|
||||||
instruction_set, Normal, template!(List: "set"), ErrorPreceding,
|
|
||||||
isa_attribute, experimental!(instruction_set)
|
|
||||||
),
|
|
||||||
|
|
||||||
gated!(
|
gated!(
|
||||||
ffi_returns_twice, Normal, template!(Word), WarnFollowing, experimental!(ffi_returns_twice)
|
ffi_returns_twice, Normal, template!(Word), WarnFollowing, experimental!(ffi_returns_twice)
|
||||||
),
|
),
|
||||||
gated!(ffi_pure, Normal, template!(Word), WarnFollowing, experimental!(ffi_pure)),
|
gated!(ffi_pure, Normal, template!(Word), WarnFollowing, experimental!(ffi_pure)),
|
||||||
gated!(ffi_const, Normal, template!(Word), WarnFollowing, experimental!(ffi_const)),
|
gated!(ffi_const, Normal, template!(Word), WarnFollowing, experimental!(ffi_const)),
|
||||||
gated!(
|
|
||||||
register_attr, CrateLevel, template!(List: "attr1, attr2, ..."), DuplicatesOk,
|
|
||||||
experimental!(register_attr),
|
|
||||||
),
|
|
||||||
gated!(
|
gated!(
|
||||||
register_tool, CrateLevel, template!(List: "tool1, tool2, ..."), DuplicatesOk,
|
register_tool, CrateLevel, template!(List: "tool1, tool2, ..."), DuplicatesOk,
|
||||||
experimental!(register_tool),
|
experimental!(register_tool),
|
||||||
@ -325,7 +321,7 @@ macro_rules! experimental {
|
|||||||
// RFC 2632
|
// RFC 2632
|
||||||
gated!(
|
gated!(
|
||||||
const_trait, Normal, template!(Word), WarnFollowing, const_trait_impl,
|
const_trait, Normal, template!(Word), WarnFollowing, const_trait_impl,
|
||||||
"`const` is a temporary placeholder for marking a trait that is suitable for `const` \
|
"`const_trait` is a temporary placeholder for marking a trait that is suitable for `const` \
|
||||||
`impls` and all default bodies as `const`, which may be removed or renamed in the \
|
`impls` and all default bodies as `const`, which may be removed or renamed in the \
|
||||||
future."
|
future."
|
||||||
),
|
),
|
||||||
@ -335,22 +331,47 @@ macro_rules! experimental {
|
|||||||
experimental!(deprecated_safe),
|
experimental!(deprecated_safe),
|
||||||
),
|
),
|
||||||
|
|
||||||
|
// `#[collapse_debuginfo]`
|
||||||
|
gated!(
|
||||||
|
collapse_debuginfo, Normal, template!(Word), WarnFollowing,
|
||||||
|
experimental!(collapse_debuginfo)
|
||||||
|
),
|
||||||
|
|
||||||
|
// RFC 2397
|
||||||
|
gated!(do_not_recommend, Normal, template!(Word), WarnFollowing, experimental!(do_not_recommend)),
|
||||||
|
|
||||||
|
// `#[cfi_encoding = ""]`
|
||||||
|
gated!(
|
||||||
|
cfi_encoding, Normal, template!(NameValueStr: "encoding"), ErrorPreceding,
|
||||||
|
experimental!(cfi_encoding)
|
||||||
|
),
|
||||||
|
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Internal attributes: Stability, deprecation, and unsafe:
|
// Internal attributes: Stability, deprecation, and unsafe:
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
|
|
||||||
ungated!(feature, CrateLevel, template!(List: "name1, name2, ..."), DuplicatesOk),
|
ungated!(
|
||||||
|
feature, CrateLevel,
|
||||||
|
template!(List: "name1, name2, ..."), DuplicatesOk, @only_local: true,
|
||||||
|
),
|
||||||
// DuplicatesOk since it has its own validation
|
// DuplicatesOk since it has its own validation
|
||||||
ungated!(
|
ungated!(
|
||||||
stable, Normal, template!(List: r#"feature = "name", since = "version""#), DuplicatesOk,
|
stable, Normal,
|
||||||
|
template!(List: r#"feature = "name", since = "version""#), DuplicatesOk, @only_local: true,
|
||||||
),
|
),
|
||||||
ungated!(
|
ungated!(
|
||||||
unstable, Normal,
|
unstable, Normal,
|
||||||
template!(List: r#"feature = "name", reason = "...", issue = "N""#), DuplicatesOk,
|
template!(List: r#"feature = "name", reason = "...", issue = "N""#), DuplicatesOk,
|
||||||
),
|
),
|
||||||
ungated!(rustc_const_unstable, Normal, template!(List: r#"feature = "name""#), DuplicatesOk),
|
ungated!(rustc_const_unstable, Normal, template!(List: r#"feature = "name""#), DuplicatesOk),
|
||||||
ungated!(rustc_const_stable, Normal, template!(List: r#"feature = "name""#), DuplicatesOk),
|
ungated!(
|
||||||
ungated!(rustc_safe_intrinsic, Normal, template!(List: r#"feature = "name""#), DuplicatesOk),
|
rustc_const_stable, Normal,
|
||||||
|
template!(List: r#"feature = "name""#), DuplicatesOk, @only_local: true,
|
||||||
|
),
|
||||||
|
ungated!(
|
||||||
|
rustc_default_body_unstable, Normal,
|
||||||
|
template!(List: r#"feature = "name", reason = "...", issue = "N""#), DuplicatesOk
|
||||||
|
),
|
||||||
gated!(
|
gated!(
|
||||||
allow_internal_unstable, Normal, template!(Word, List: "feat1, feat2, ..."), DuplicatesOk,
|
allow_internal_unstable, Normal, template!(Word, List: "feat1, feat2, ..."), DuplicatesOk,
|
||||||
"allow_internal_unstable side-steps feature gating and stability checks",
|
"allow_internal_unstable side-steps feature gating and stability checks",
|
||||||
@ -364,6 +385,10 @@ macro_rules! experimental {
|
|||||||
allow_internal_unsafe, Normal, template!(Word), WarnFollowing,
|
allow_internal_unsafe, Normal, template!(Word), WarnFollowing,
|
||||||
"allow_internal_unsafe side-steps the unsafe_code lint",
|
"allow_internal_unsafe side-steps the unsafe_code lint",
|
||||||
),
|
),
|
||||||
|
ungated!(rustc_safe_intrinsic, Normal, template!(Word), DuplicatesOk),
|
||||||
|
rustc_attr!(rustc_allowed_through_unstable_modules, Normal, template!(Word), WarnFollowing,
|
||||||
|
"rustc_allowed_through_unstable_modules special cases accidental stabilizations of stable items \
|
||||||
|
through unstable paths"),
|
||||||
|
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Internal attributes: Type system related:
|
// Internal attributes: Type system related:
|
||||||
@ -381,10 +406,9 @@ macro_rules! experimental {
|
|||||||
|
|
||||||
rustc_attr!(rustc_allocator, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
|
rustc_attr!(rustc_allocator, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
|
||||||
rustc_attr!(rustc_nounwind, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
|
rustc_attr!(rustc_nounwind, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
|
||||||
gated!(
|
rustc_attr!(rustc_reallocator, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
|
||||||
alloc_error_handler, Normal, template!(Word), WarnFollowing,
|
rustc_attr!(rustc_deallocator, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
|
||||||
experimental!(alloc_error_handler)
|
rustc_attr!(rustc_allocator_zeroed, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
|
||||||
),
|
|
||||||
gated!(
|
gated!(
|
||||||
default_lib_allocator, Normal, template!(Word), WarnFollowing, allocator_internals,
|
default_lib_allocator, Normal, template!(Word), WarnFollowing, allocator_internals,
|
||||||
experimental!(default_lib_allocator),
|
experimental!(default_lib_allocator),
|
||||||
@ -465,6 +489,12 @@ macro_rules! experimental {
|
|||||||
// Used by the `rustc::untranslatable_diagnostic` and `rustc::diagnostic_outside_of_impl` lints
|
// Used by the `rustc::untranslatable_diagnostic` and `rustc::diagnostic_outside_of_impl` lints
|
||||||
// to assist in changes to diagnostic APIs.
|
// to assist in changes to diagnostic APIs.
|
||||||
rustc_attr!(rustc_lint_diagnostics, Normal, template!(Word), WarnFollowing, INTERNAL_UNSTABLE),
|
rustc_attr!(rustc_lint_diagnostics, Normal, template!(Word), WarnFollowing, INTERNAL_UNSTABLE),
|
||||||
|
// Used by the `rustc::bad_opt_access` lint to identify `DebuggingOptions` and `CodegenOptions`
|
||||||
|
// types (as well as any others in future).
|
||||||
|
rustc_attr!(rustc_lint_opt_ty, Normal, template!(Word), WarnFollowing, INTERNAL_UNSTABLE),
|
||||||
|
// Used by the `rustc::bad_opt_access` lint on fields
|
||||||
|
// types (as well as any others in future).
|
||||||
|
rustc_attr!(rustc_lint_opt_deny_field_access, Normal, template!(List: "message"), WarnFollowing, INTERNAL_UNSTABLE),
|
||||||
|
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Internal attributes, Const related:
|
// Internal attributes, Const related:
|
||||||
@ -508,18 +538,25 @@ macro_rules! experimental {
|
|||||||
"language items are subject to change",
|
"language items are subject to change",
|
||||||
),
|
),
|
||||||
rustc_attr!(
|
rustc_attr!(
|
||||||
rustc_pass_by_value, Normal,
|
rustc_pass_by_value, Normal, template!(Word), ErrorFollowing,
|
||||||
template!(Word), ErrorFollowing,
|
|
||||||
"#[rustc_pass_by_value] is used to mark types that must be passed by value instead of reference."
|
"#[rustc_pass_by_value] is used to mark types that must be passed by value instead of reference."
|
||||||
),
|
),
|
||||||
rustc_attr!(
|
rustc_attr!(
|
||||||
rustc_coherence_is_core, AttributeType::CrateLevel, template!(Word), ErrorFollowing, @only_local: true,
|
rustc_coherence_is_core, AttributeType::CrateLevel, template!(Word), ErrorFollowing, @only_local: true,
|
||||||
"#![rustc_coherence_is_core] allows inherent methods on builtin types, only intended to be used in `core`."
|
"#![rustc_coherence_is_core] allows inherent methods on builtin types, only intended to be used in `core`."
|
||||||
),
|
),
|
||||||
|
rustc_attr!(
|
||||||
|
rustc_coinductive, AttributeType::Normal, template!(Word), WarnFollowing, @only_local: true,
|
||||||
|
"#![rustc_coinductive] changes a trait to be coinductive, allowing cycles in the trait solver."
|
||||||
|
),
|
||||||
rustc_attr!(
|
rustc_attr!(
|
||||||
rustc_allow_incoherent_impl, AttributeType::Normal, template!(Word), ErrorFollowing, @only_local: true,
|
rustc_allow_incoherent_impl, AttributeType::Normal, template!(Word), ErrorFollowing, @only_local: true,
|
||||||
"#[rustc_allow_incoherent_impl] has to be added to all impl items of an incoherent inherent impl."
|
"#[rustc_allow_incoherent_impl] has to be added to all impl items of an incoherent inherent impl."
|
||||||
),
|
),
|
||||||
|
rustc_attr!(
|
||||||
|
rustc_deny_explicit_impl, AttributeType::Normal, template!(Word), ErrorFollowing, @only_local: false,
|
||||||
|
"#[rustc_deny_explicit_impl] enforces that a trait can have no user-provided impls"
|
||||||
|
),
|
||||||
rustc_attr!(
|
rustc_attr!(
|
||||||
rustc_has_incoherent_inherent_impls, AttributeType::Normal, template!(Word), ErrorFollowing,
|
rustc_has_incoherent_inherent_impls, AttributeType::Normal, template!(Word), ErrorFollowing,
|
||||||
"#[rustc_has_incoherent_inherent_impls] allows the addition of incoherent inherent impls for \
|
"#[rustc_has_incoherent_inherent_impls] allows the addition of incoherent inherent impls for \
|
||||||
@ -531,13 +568,13 @@ macro_rules! experimental {
|
|||||||
and it is only intended to be used in `alloc`."
|
and it is only intended to be used in `alloc`."
|
||||||
),
|
),
|
||||||
|
|
||||||
// modified for r-a
|
BuiltinAttribute {
|
||||||
// BuiltinAttribute {
|
|
||||||
// name: sym::rustc_diagnostic_item,
|
// name: sym::rustc_diagnostic_item,
|
||||||
// // FIXME: This can be `true` once we always use `tcx.is_diagnostic_item`.
|
name: "rustc_diagnostic_item",
|
||||||
|
// FIXME: This can be `true` once we always use `tcx.is_diagnostic_item`.
|
||||||
// only_local: false,
|
// only_local: false,
|
||||||
// type_: Normal,
|
// type_: Normal,
|
||||||
// template: template!(NameValueStr: "name"),
|
template: template!(NameValueStr: "name"),
|
||||||
// duplicates: ErrorFollowing,
|
// duplicates: ErrorFollowing,
|
||||||
// gate: Gated(
|
// gate: Gated(
|
||||||
// Stability::Unstable,
|
// Stability::Unstable,
|
||||||
@ -545,10 +582,6 @@ macro_rules! experimental {
|
|||||||
// "diagnostic items compiler internal support for linting",
|
// "diagnostic items compiler internal support for linting",
|
||||||
// cfg_fn!(rustc_attrs),
|
// cfg_fn!(rustc_attrs),
|
||||||
// ),
|
// ),
|
||||||
// },
|
|
||||||
BuiltinAttribute {
|
|
||||||
name: "rustc_diagnostic_item",
|
|
||||||
template: template!(NameValueStr: "name"),
|
|
||||||
},
|
},
|
||||||
gated!(
|
gated!(
|
||||||
// Used in resolve:
|
// Used in resolve:
|
||||||
@ -572,7 +605,7 @@ macro_rules! experimental {
|
|||||||
for reserving for `for<T> From<!> for T` impl"
|
for reserving for `for<T> From<!> for T` impl"
|
||||||
),
|
),
|
||||||
rustc_attr!(
|
rustc_attr!(
|
||||||
rustc_test_marker, Normal, template!(Word), WarnFollowing,
|
rustc_test_marker, Normal, template!(NameValueStr: "name"), WarnFollowing,
|
||||||
"the `#[rustc_test_marker]` attribute is used internally to track tests",
|
"the `#[rustc_test_marker]` attribute is used internally to track tests",
|
||||||
),
|
),
|
||||||
rustc_attr!(
|
rustc_attr!(
|
||||||
@ -598,11 +631,16 @@ macro_rules! experimental {
|
|||||||
definition of a trait, it's currently in experimental form and should be changed before \
|
definition of a trait, it's currently in experimental form and should be changed before \
|
||||||
being exposed outside of the std"
|
being exposed outside of the std"
|
||||||
),
|
),
|
||||||
|
rustc_attr!(
|
||||||
|
rustc_doc_primitive, Normal, template!(NameValueStr: "primitive name"), ErrorFollowing,
|
||||||
|
r#"`rustc_doc_primitive` is a rustc internal attribute"#,
|
||||||
|
),
|
||||||
|
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Internal attributes, Testing:
|
// Internal attributes, Testing:
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
|
|
||||||
|
rustc_attr!(TEST, rustc_effective_visibility, Normal, template!(Word), WarnFollowing),
|
||||||
rustc_attr!(TEST, rustc_outlives, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_outlives, Normal, template!(Word), WarnFollowing),
|
||||||
rustc_attr!(TEST, rustc_capture_analysis, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_capture_analysis, Normal, template!(Word), WarnFollowing),
|
||||||
rustc_attr!(TEST, rustc_insignificant_dtor, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_insignificant_dtor, Normal, template!(Word), WarnFollowing),
|
||||||
@ -643,6 +681,10 @@ macro_rules! experimental {
|
|||||||
rustc_attr!(TEST, rustc_polymorphize_error, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_polymorphize_error, Normal, template!(Word), WarnFollowing),
|
||||||
rustc_attr!(TEST, rustc_def_path, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_def_path, Normal, template!(Word), WarnFollowing),
|
||||||
rustc_attr!(TEST, rustc_mir, Normal, template!(List: "arg1, arg2, ..."), DuplicatesOk),
|
rustc_attr!(TEST, rustc_mir, Normal, template!(List: "arg1, arg2, ..."), DuplicatesOk),
|
||||||
|
gated!(
|
||||||
|
custom_mir, Normal, template!(List: r#"dialect = "...", phase = "...""#),
|
||||||
|
ErrorFollowing, "the `#[custom_mir]` attribute is just used for the Rust test suite",
|
||||||
|
),
|
||||||
rustc_attr!(TEST, rustc_dump_program_clauses, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_dump_program_clauses, Normal, template!(Word), WarnFollowing),
|
||||||
rustc_attr!(TEST, rustc_dump_env_program_clauses, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_dump_env_program_clauses, Normal, template!(Word), WarnFollowing),
|
||||||
rustc_attr!(TEST, rustc_object_lifetime_default, Normal, template!(Word), WarnFollowing),
|
rustc_attr!(TEST, rustc_object_lifetime_default, Normal, template!(Word), WarnFollowing),
|
||||||
|
@ -798,6 +798,7 @@ fn update_diagnostics(&mut self) {
|
|||||||
// so we run them on a latency sensitive thread.
|
// so we run them on a latency sensitive thread.
|
||||||
self.task_pool.handle.spawn(stdx::thread::ThreadIntent::LatencySensitive, move || {
|
self.task_pool.handle.spawn(stdx::thread::ThreadIntent::LatencySensitive, move || {
|
||||||
let _p = profile::span("publish_diagnostics");
|
let _p = profile::span("publish_diagnostics");
|
||||||
|
let _ctx = stdx::panic_context::enter("publish_diagnostics".to_owned());
|
||||||
let diagnostics = subscriptions
|
let diagnostics = subscriptions
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.filter_map(|file_id| {
|
.filter_map(|file_id| {
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
//! future: pin
|
//! future: pin
|
||||||
//! generator: pin
|
//! generator: pin
|
||||||
//! hash:
|
//! hash:
|
||||||
|
//! include:
|
||||||
//! index: sized
|
//! index: sized
|
||||||
//! infallible:
|
//! infallible:
|
||||||
//! iterator: option
|
//! iterator: option
|
||||||
@ -1274,6 +1275,14 @@ pub(crate) mod builtin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// endregion:derive
|
// endregion:derive
|
||||||
|
|
||||||
|
// region:include
|
||||||
|
#[rustc_builtin_macro]
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! include {
|
||||||
|
($file:expr $(,)?) => {{ /* compiler built-in */ }};
|
||||||
|
}
|
||||||
|
// endregion:include
|
||||||
}
|
}
|
||||||
|
|
||||||
// region:non_zero
|
// region:non_zero
|
||||||
|
Loading…
Reference in New Issue
Block a user