Skip to content

Commit 805f389

Browse files
committed
Remove LintExpectationId from Level variants
1 parent c51816e commit 805f389

File tree

15 files changed

+123
-122
lines changed

15 files changed

+123
-122
lines changed

compiler/rustc_driver_impl/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ fn print_crate_info(
715715
// lint is unstable and feature gate isn't active, don't print
716716
continue;
717717
}
718-
let level = lint_levels.lint_level(lint).0;
718+
let level = lint_levels.lint_level(lint).level;
719719
println_info!("{}={}", lint.name_lower(), level.as_str());
720720
}
721721
}

compiler/rustc_lint/src/context.rs

+7-8
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ use rustc_hir::def_id::{CrateNum, DefId};
1717
use rustc_hir::definitions::{DefPathData, DisambiguatedDefPathData};
1818
use rustc_hir::{Pat, PatKind};
1919
use rustc_middle::bug;
20+
use rustc_middle::lint::LevelAndSource;
2021
use rustc_middle::middle::privacy::EffectiveVisibilities;
2122
use rustc_middle::ty::layout::{LayoutError, LayoutOfHelpers, TyAndLayout};
2223
use rustc_middle::ty::print::{PrintError, PrintTraitRefExt as _, Printer, with_no_trimmed_paths};
2324
use rustc_middle::ty::{self, GenericArg, RegisteredTools, Ty, TyCtxt, TypingEnv, TypingMode};
24-
use rustc_session::lint::{
25-
FutureIncompatibleInfo, Level, Lint, LintBuffer, LintExpectationId, LintId,
26-
};
25+
use rustc_session::lint::{FutureIncompatibleInfo, Lint, LintBuffer, LintExpectationId, LintId};
2726
use rustc_session::{LintStoreMarker, Session};
2827
use rustc_span::edit_distance::find_best_match_for_names;
2928
use rustc_span::{Ident, Span, Symbol, sym};
@@ -573,7 +572,7 @@ pub trait LintContext {
573572
}
574573

575574
/// This returns the lint level for the given lint at the current location.
576-
fn get_lint_level(&self, lint: &'static Lint) -> Level;
575+
fn get_lint_level(&self, lint: &'static Lint) -> LevelAndSource;
577576

578577
/// This function can be used to manually fulfill an expectation. This can
579578
/// be used for lints which contain several spans, and should be suppressed,
@@ -642,8 +641,8 @@ impl<'tcx> LintContext for LateContext<'tcx> {
642641
}
643642
}
644643

645-
fn get_lint_level(&self, lint: &'static Lint) -> Level {
646-
self.tcx.lint_level_at_node(lint, self.last_node_with_lint_attrs).level
644+
fn get_lint_level(&self, lint: &'static Lint) -> LevelAndSource {
645+
self.tcx.lint_level_at_node(lint, self.last_node_with_lint_attrs)
647646
}
648647
}
649648

@@ -663,8 +662,8 @@ impl LintContext for EarlyContext<'_> {
663662
self.builder.opt_span_lint(lint, span.map(|s| s.into()), decorate)
664663
}
665664

666-
fn get_lint_level(&self, lint: &'static Lint) -> Level {
667-
self.builder.lint_level(lint).level
665+
fn get_lint_level(&self, lint: &'static Lint) -> LevelAndSource {
666+
self.builder.lint_level(lint)
668667
}
669668
}
670669

compiler/rustc_lint/src/levels.rs

+43-47
Original file line numberDiff line numberDiff line change
@@ -84,28 +84,28 @@ impl LintLevelSets {
8484
) -> LevelAndSource {
8585
let lint = LintId::of(lint);
8686
let (level, mut src) = self.raw_lint_id_level(lint, idx, aux);
87-
let level = reveal_actual_level(level, &mut src, sess, lint, |id| {
87+
let (level, lint_id) = reveal_actual_level(level, &mut src, sess, lint, |id| {
8888
self.raw_lint_id_level(id, idx, aux)
8989
});
90-
LevelAndSource { level, src }
90+
LevelAndSource { level, lint_id, src }
9191
}
9292

9393
fn raw_lint_id_level(
9494
&self,
9595
id: LintId,
9696
mut idx: LintStackIndex,
9797
aux: Option<&FxIndexMap<LintId, LevelAndSource>>,
98-
) -> (Option<Level>, LintLevelSource) {
98+
) -> (Option<(Level, Option<LintExpectationId>)>, LintLevelSource) {
9999
if let Some(specs) = aux
100-
&& let Some(&LevelAndSource { level, src }) = specs.get(&id)
100+
&& let Some(&LevelAndSource { level, lint_id, src }) = specs.get(&id)
101101
{
102-
return (Some(level), src);
102+
return (Some((level, lint_id)), src);
103103
}
104104

105105
loop {
106106
let LintSet { ref specs, parent } = self.list[idx];
107-
if let Some(&LevelAndSource { level, src }) = specs.get(&id) {
108-
return (Some(level), src);
107+
if let Some(&LevelAndSource { level, lint_id, src }) = specs.get(&id) {
108+
return (Some((level, lint_id)), src);
109109
}
110110
if idx == COMMAND_LINE {
111111
return (None, LintLevelSource::Default);
@@ -379,13 +379,7 @@ impl<'tcx> Visitor<'tcx> for LintLevelMaximum<'tcx> {
379379
fn visit_attribute(&mut self, attribute: &'tcx hir::Attribute) {
380380
if matches!(
381381
Level::from_attr(attribute),
382-
Some(
383-
Level::Warn
384-
| Level::Deny
385-
| Level::Forbid
386-
| Level::Expect(..)
387-
| Level::ForceWarn(..),
388-
)
382+
Some((Level::Warn | Level::Deny | Level::Forbid | Level::Expect | Level::ForceWarn, _))
389383
) {
390384
let store = unerased_lint_store(self.tcx.sess);
391385
// Lint attributes are always a metalist inside a
@@ -541,9 +535,7 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
541535
for &(ref lint_name, level) in &self.sess.opts.lint_opts {
542536
// Checks the validity of lint names derived from the command line.
543537
let (tool_name, lint_name_only) = parse_lint_and_tool_name(lint_name);
544-
if lint_name_only == crate::WARNINGS.name_lower()
545-
&& matches!(level, Level::ForceWarn(_))
546-
{
538+
if lint_name_only == crate::WARNINGS.name_lower() && matches!(level, Level::ForceWarn) {
547539
self.sess
548540
.dcx()
549541
.emit_err(UnsupportedGroup { lint_group: crate::WARNINGS.name_lower() });
@@ -586,7 +578,6 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
586578
_ => {}
587579
};
588580

589-
let orig_level = level;
590581
let lint_flag_val = Symbol::intern(lint_name);
591582

592583
let Ok(ids) = self.store.find_lints(lint_name) else {
@@ -595,15 +586,15 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
595586
};
596587
for id in ids {
597588
// ForceWarn and Forbid cannot be overridden
598-
if let Some(LevelAndSource { level: Level::ForceWarn(_) | Level::Forbid, .. }) =
589+
if let Some(LevelAndSource { level: Level::ForceWarn | Level::Forbid, .. }) =
599590
self.current_specs().get(&id)
600591
{
601592
continue;
602593
}
603594

604595
if self.check_gated_lint(id, DUMMY_SP, true) {
605-
let src = LintLevelSource::CommandLine(lint_flag_val, orig_level);
606-
self.insert(id, LevelAndSource { level, src });
596+
let src = LintLevelSource::CommandLine(lint_flag_val, level);
597+
self.insert(id, LevelAndSource { level, lint_id: None, src });
607598
}
608599
}
609600
}
@@ -612,8 +603,8 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
612603
/// Attempts to insert the `id` to `level_src` map entry. If unsuccessful
613604
/// (e.g. if a forbid was already inserted on the same scope), then emits a
614605
/// diagnostic with no change to `specs`.
615-
fn insert_spec(&mut self, id: LintId, LevelAndSource { level, src }: LevelAndSource) {
616-
let LevelAndSource { level: old_level, src: old_src } =
606+
fn insert_spec(&mut self, id: LintId, LevelAndSource { level, lint_id, src }: LevelAndSource) {
607+
let LevelAndSource { level: old_level, src: old_src, .. } =
617608
self.provider.get_lint_level(id.lint, self.sess);
618609

619610
// Setting to a non-forbid level is an error if the lint previously had
@@ -686,24 +677,24 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
686677
// The lint `unfulfilled_lint_expectations` can't be expected, as it would suppress itself.
687678
// Handling expectations of this lint would add additional complexity with little to no
688679
// benefit. The expect level for this lint will therefore be ignored.
689-
if let Level::Expect(_) = level
680+
if let Level::Expect = level
690681
&& id == LintId::of(UNFULFILLED_LINT_EXPECTATIONS)
691682
{
692683
return;
693684
}
694685

695686
match (old_level, level) {
696687
// If the new level is an expectation store it in `ForceWarn`
697-
(Level::ForceWarn(_), Level::Expect(expectation_id)) => self.insert(
688+
(Level::ForceWarn, Level::Expect) => {
689+
self.insert(id, LevelAndSource { level: Level::ForceWarn, lint_id, src: old_src })
690+
}
691+
// Keep `ForceWarn` level but drop the expectation
692+
(Level::ForceWarn, _) => self.insert(
698693
id,
699-
LevelAndSource { level: Level::ForceWarn(Some(expectation_id)), src: old_src },
694+
LevelAndSource { level: Level::ForceWarn, lint_id: None, src: old_src },
700695
),
701-
// Keep `ForceWarn` level but drop the expectation
702-
(Level::ForceWarn(_), _) => {
703-
self.insert(id, LevelAndSource { level: Level::ForceWarn(None), src: old_src })
704-
}
705696
// Set the lint level as normal
706-
_ => self.insert(id, LevelAndSource { level, src }),
697+
_ => self.insert(id, LevelAndSource { level, lint_id, src }),
707698
};
708699
}
709700

@@ -718,7 +709,11 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
718709
if attr.has_name(sym::automatically_derived) {
719710
self.insert(
720711
LintId::of(SINGLE_USE_LIFETIMES),
721-
LevelAndSource { level: Level::Allow, src: LintLevelSource::Default },
712+
LevelAndSource {
713+
level: Level::Allow,
714+
lint_id: None,
715+
src: LintLevelSource::Default,
716+
},
722717
);
723718
continue;
724719
}
@@ -731,16 +726,20 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
731726
{
732727
self.insert(
733728
LintId::of(MISSING_DOCS),
734-
LevelAndSource { level: Level::Allow, src: LintLevelSource::Default },
729+
LevelAndSource {
730+
level: Level::Allow,
731+
lint_id: None,
732+
src: LintLevelSource::Default,
733+
},
735734
);
736735
continue;
737736
}
738737

739-
let level = match Level::from_attr(attr) {
738+
let (level, lint_id) = match Level::from_attr(attr) {
740739
None => continue,
741740
// This is the only lint level with a `LintExpectationId` that can be created from
742741
// an attribute.
743-
Some(Level::Expect(unstable_id)) if let Some(hir_id) = source_hir_id => {
742+
Some((Level::Expect, Some(unstable_id))) if let Some(hir_id) = source_hir_id => {
744743
let LintExpectationId::Unstable { lint_index: None, attr_id: _ } = unstable_id
745744
else {
746745
bug!("stable id Level::from_attr")
@@ -752,9 +751,9 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
752751
lint_index: None,
753752
};
754753

755-
Level::Expect(stable_id)
754+
(Level::Expect, Some(stable_id))
756755
}
757-
Some(lvl) => lvl,
756+
Some((lvl, id)) => (lvl, id),
758757
};
759758

760759
let Some(mut metas) = attr.meta_item_list() else { continue };
@@ -802,13 +801,10 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
802801
}
803802

804803
for (lint_index, li) in metas.iter_mut().enumerate() {
805-
let level = match level {
806-
Level::Expect(mut id) => {
807-
id.set_lint_index(Some(lint_index as u16));
808-
Level::Expect(id)
809-
}
810-
level => level,
811-
};
804+
let mut lint_id = lint_id;
805+
if let Some(id) = &mut lint_id {
806+
id.set_lint_index(Some(lint_index as u16));
807+
}
812808

813809
let sp = li.span();
814810
let meta_item = match li {
@@ -940,7 +936,7 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
940936
let src = LintLevelSource::Node { name, span: sp, reason };
941937
for &id in ids {
942938
if self.check_gated_lint(id, sp, false) {
943-
self.insert_spec(id, LevelAndSource { level, src });
939+
self.insert_spec(id, LevelAndSource { level, lint_id, src });
944940
}
945941
}
946942

@@ -949,7 +945,7 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
949945
// overriding the lint level but instead add an expectation that can't be
950946
// fulfilled. The lint message will include an explanation, that the
951947
// `unfulfilled_lint_expectations` lint can't be expected.
952-
if let Level::Expect(expect_id) = level {
948+
if let (Level::Expect, Some(expect_id)) = (level, lint_id) {
953949
// The `unfulfilled_lint_expectations` lint is not part of any lint
954950
// groups. Therefore. we only need to check the slice if it contains a
955951
// single lint.
@@ -971,7 +967,7 @@ impl<'s, P: LintLevelsProvider> LintLevelsBuilder<'s, P> {
971967
}
972968

973969
if self.lint_added_lints && !is_crate_node {
974-
for (id, &LevelAndSource { level, ref src }) in self.current_specs().iter() {
970+
for (id, &LevelAndSource { level, ref src, .. }) in self.current_specs().iter() {
975971
if !id.lint.crate_level_only {
976972
continue;
977973
}

compiler/rustc_lint_defs/src/lib.rs

+22-23
Original file line numberDiff line numberDiff line change
@@ -199,19 +199,19 @@ pub enum Level {
199199
///
200200
/// See RFC 2383.
201201
///
202-
/// The [`LintExpectationId`] is used to later link a lint emission to the actual
202+
/// Requires a [`LintExpectationId`] to later link a lint emission to the actual
203203
/// expectation. It can be ignored in most cases.
204-
Expect(LintExpectationId),
204+
Expect,
205205
/// The `warn` level will produce a warning if the lint was violated, however the
206206
/// compiler will continue with its execution.
207207
Warn,
208208
/// This lint level is a special case of [`Warn`], that can't be overridden. This is used
209209
/// to ensure that a lint can't be suppressed. This lint level can currently only be set
210210
/// via the console and is therefore session specific.
211211
///
212-
/// The [`LintExpectationId`] is intended to fulfill expectations marked via the
212+
/// Requires a [`LintExpectationId`] to fulfill expectations marked via the
213213
/// `#[expect]` attribute, that will still be suppressed due to the level.
214-
ForceWarn(Option<LintExpectationId>),
214+
ForceWarn,
215215
/// The `deny` level will produce an error and stop further execution after the lint
216216
/// pass is complete.
217217
Deny,
@@ -225,9 +225,9 @@ impl Level {
225225
pub fn as_str(self) -> &'static str {
226226
match self {
227227
Level::Allow => "allow",
228-
Level::Expect(_) => "expect",
228+
Level::Expect => "expect",
229229
Level::Warn => "warn",
230-
Level::ForceWarn(_) => "force-warn",
230+
Level::ForceWarn => "force-warn",
231231
Level::Deny => "deny",
232232
Level::Forbid => "forbid",
233233
}
@@ -246,24 +246,30 @@ impl Level {
246246
}
247247

248248
/// Converts an `Attribute` to a level.
249-
pub fn from_attr(attr: &impl AttributeExt) -> Option<Self> {
249+
pub fn from_attr(attr: &impl AttributeExt) -> Option<(Self, Option<LintExpectationId>)> {
250250
Self::from_symbol(attr.name_or_empty(), || Some(attr.id()))
251251
}
252252

253253
/// Converts a `Symbol` to a level.
254-
pub fn from_symbol(s: Symbol, id: impl FnOnce() -> Option<AttrId>) -> Option<Self> {
254+
pub fn from_symbol(
255+
s: Symbol,
256+
id: impl FnOnce() -> Option<AttrId>,
257+
) -> Option<(Self, Option<LintExpectationId>)> {
255258
match s {
256-
sym::allow => Some(Level::Allow),
259+
sym::allow => Some((Level::Allow, None)),
257260
sym::expect => {
258261
if let Some(attr_id) = id() {
259-
Some(Level::Expect(LintExpectationId::Unstable { attr_id, lint_index: None }))
262+
Some((
263+
Level::Expect,
264+
Some(LintExpectationId::Unstable { attr_id, lint_index: None }),
265+
))
260266
} else {
261267
None
262268
}
263269
}
264-
sym::warn => Some(Level::Warn),
265-
sym::deny => Some(Level::Deny),
266-
sym::forbid => Some(Level::Forbid),
270+
sym::warn => Some((Level::Warn, None)),
271+
sym::deny => Some((Level::Deny, None)),
272+
sym::forbid => Some((Level::Forbid, None)),
267273
_ => None,
268274
}
269275
}
@@ -274,26 +280,19 @@ impl Level {
274280
Level::Deny => "-D",
275281
Level::Forbid => "-F",
276282
Level::Allow => "-A",
277-
Level::ForceWarn(_) => "--force-warn",
278-
Level::Expect(_) => {
283+
Level::ForceWarn => "--force-warn",
284+
Level::Expect => {
279285
unreachable!("the expect level does not have a commandline flag")
280286
}
281287
}
282288
}
283289

284290
pub fn is_error(self) -> bool {
285291
match self {
286-
Level::Allow | Level::Expect(_) | Level::Warn | Level::ForceWarn(_) => false,
292+
Level::Allow | Level::Expect | Level::Warn | Level::ForceWarn => false,
287293
Level::Deny | Level::Forbid => true,
288294
}
289295
}
290-
291-
pub fn get_expectation_id(&self) -> Option<LintExpectationId> {
292-
match self {
293-
Level::Expect(id) | Level::ForceWarn(Some(id)) => Some(*id),
294-
_ => None,
295-
}
296-
}
297296
}
298297

299298
/// Specification of a single lint.

0 commit comments

Comments
 (0)