-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add lint against (some) interior mutable consts #132146
Open
Urgau
wants to merge
6
commits into
rust-lang:master
Choose a base branch
from
Urgau:interior_mut_consts
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+738
−8
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
be30909
Add `#[rustc_significant_interior_mutable_type]` attribute
Urgau c44f879
Add `#[rustc_significant_interior_mutable_type]` to core and std types
Urgau 4a42356
Add `interior_mutable_consts` lint
Urgau 56eff43
Allow `interior_mutable_consts` lint in std for INIT const
Urgau 9234dd9
Allow `interior_mutable_consts` in tests
Urgau 0c8f814
Update cg_clif patch for 128bits integers
Urgau File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -23,10 +23,11 @@ mod improper_ctypes; | |||||
use crate::lints::{ | ||||||
AmbiguousWidePointerComparisons, AmbiguousWidePointerComparisonsAddrMetadataSuggestion, | ||||||
AmbiguousWidePointerComparisonsAddrSuggestion, AtomicOrderingFence, AtomicOrderingLoad, | ||||||
AtomicOrderingStore, ImproperCTypes, InvalidAtomicOrderingDiag, InvalidNanComparisons, | ||||||
InvalidNanComparisonsSuggestion, UnpredictableFunctionPointerComparisons, | ||||||
UnpredictableFunctionPointerComparisonsSuggestion, UnusedComparisons, UsesPowerAlignment, | ||||||
VariantSizeDifferencesDiag, | ||||||
AtomicOrderingStore, ImproperCTypes, InteriorMutableConstsDiag, | ||||||
InteriorMutableConstsSuggestionAllow, InteriorMutableConstsSuggestionStatic, | ||||||
InvalidAtomicOrderingDiag, InvalidNanComparisons, InvalidNanComparisonsSuggestion, | ||||||
UnpredictableFunctionPointerComparisons, UnpredictableFunctionPointerComparisonsSuggestion, | ||||||
UnusedComparisons, UsesPowerAlignment, VariantSizeDifferencesDiag, | ||||||
}; | ||||||
use crate::{LateContext, LateLintPass, LintContext, fluent_generated as fluent}; | ||||||
|
||||||
|
@@ -198,6 +199,47 @@ declare_lint! { | |||||
"detects unpredictable function pointer comparisons" | ||||||
} | ||||||
|
||||||
declare_lint! { | ||||||
/// The `interior_mutable_consts` lint detects instance where | ||||||
/// const-items have a interior mutable type, which silently does nothing. | ||||||
/// | ||||||
/// ### Example | ||||||
/// | ||||||
/// ```rust | ||||||
/// use std::sync::Once; | ||||||
/// | ||||||
/// // SAFETY: should only be call once | ||||||
/// unsafe extern "C" fn ffi_init() { /* ... */ } | ||||||
/// | ||||||
/// const A: Once = Once::new(); // using `B` will always creates temporaries and | ||||||
/// // never modify it-self on use, should be a | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
/// // static-item instead | ||||||
/// | ||||||
/// fn init() { | ||||||
/// A.call_once(|| unsafe { | ||||||
/// ffi_init(); // unsound, as the `call_once` is on a temporary | ||||||
/// // and not on a shared variable | ||||||
/// }) | ||||||
/// } | ||||||
/// ``` | ||||||
/// | ||||||
/// {{produces}} | ||||||
/// | ||||||
/// ### Explanation | ||||||
/// | ||||||
/// Using a const-item with an interior mutable type has no effect as const-item | ||||||
/// are essentially inlined wherever they are used, meaning that they are copied | ||||||
/// directly into the relevant context when used rendering modification through | ||||||
/// interior mutability ineffective across usage of that const-item. | ||||||
/// | ||||||
/// The current implementation of this lint only warns on significant `std` and | ||||||
/// `core` interior mutable types, like `Once`, `AtomicI32`, ... this is done out | ||||||
/// of prudence and may be extended in the future. | ||||||
INTERIOR_MUTABLE_CONSTS, | ||||||
Warn, | ||||||
"detects const items with interior mutable type", | ||||||
} | ||||||
|
||||||
#[derive(Copy, Clone, Default)] | ||||||
pub(crate) struct TypeLimits { | ||||||
/// Id of the last visited negated expression | ||||||
|
@@ -211,7 +253,8 @@ impl_lint_pass!(TypeLimits => [ | |||||
OVERFLOWING_LITERALS, | ||||||
INVALID_NAN_COMPARISONS, | ||||||
AMBIGUOUS_WIDE_POINTER_COMPARISONS, | ||||||
UNPREDICTABLE_FUNCTION_POINTER_COMPARISONS | ||||||
UNPREDICTABLE_FUNCTION_POINTER_COMPARISONS, | ||||||
INTERIOR_MUTABLE_CONSTS, | ||||||
]); | ||||||
|
||||||
impl TypeLimits { | ||||||
|
@@ -687,6 +730,48 @@ impl<'tcx> LateLintPass<'tcx> for TypeLimits { | |||||
}) | ||||||
} | ||||||
} | ||||||
|
||||||
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'tcx>) { | ||||||
if let hir::ItemKind::Const(ty, _generics, _body_id) = item.kind | ||||||
&& let hir::TyKind::Path(ref qpath) = ty.kind | ||||||
&& let Some(def_id) = cx.qpath_res(qpath, ty.hir_id).opt_def_id() | ||||||
&& cx.tcx.has_attr(def_id, sym::rustc_significant_interior_mutable_type) | ||||||
&& let Some(ty_name) = cx.tcx.opt_item_ident(def_id) | ||||||
{ | ||||||
let (sugg_static, sugg_allow) = if let Some(vis_span) = | ||||||
item.vis_span.find_ancestor_inside(item.span) | ||||||
&& item.span.can_be_used_for_suggestions() | ||||||
&& vis_span.can_be_used_for_suggestions() | ||||||
{ | ||||||
( | ||||||
InteriorMutableConstsSuggestionStatic::Spanful { | ||||||
const_: item.vis_span.between(item.ident.span), | ||||||
before: if !vis_span.is_empty() { " " } else { "" }, | ||||||
}, | ||||||
InteriorMutableConstsSuggestionAllow::Spanful { | ||||||
span: item.span.shrink_to_lo(), | ||||||
}, | ||||||
) | ||||||
} else { | ||||||
( | ||||||
InteriorMutableConstsSuggestionStatic::Spanless, | ||||||
InteriorMutableConstsSuggestionAllow::Spanless, | ||||||
) | ||||||
}; | ||||||
|
||||||
cx.emit_span_lint( | ||||||
INTERIOR_MUTABLE_CONSTS, | ||||||
item.span, | ||||||
InteriorMutableConstsDiag { | ||||||
ty_name, | ||||||
ty_span: ty.span, | ||||||
const_name: item.ident, | ||||||
sugg_static, | ||||||
sugg_allow, | ||||||
}, | ||||||
); | ||||||
} | ||||||
} | ||||||
} | ||||||
|
||||||
declare_lint! { | ||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.