Auto merge of #82985 - cjgillot:lint, r=jackh726

Cleanup the computation of lint levels

This now uses an `IndexVec` and a special root `LintStackIndex = 0` to encode command-line levels.
This commit is contained in:
bors 2021-07-06 00:33:21 +00:00
commit d5a406bb66
2 changed files with 36 additions and 61 deletions

View File

@ -11,7 +11,8 @@ use rustc_middle::hir::map::Map;
use rustc_middle::lint::LevelAndSource; use rustc_middle::lint::LevelAndSource;
use rustc_middle::lint::LintDiagnosticBuilder; use rustc_middle::lint::LintDiagnosticBuilder;
use rustc_middle::lint::{ use rustc_middle::lint::{
struct_lint_level, LintLevelMap, LintLevelSets, LintLevelSource, LintSet, struct_lint_level, LintLevelMap, LintLevelSets, LintLevelSource, LintSet, LintStackIndex,
COMMAND_LINE,
}; };
use rustc_middle::ty::query::Providers; use rustc_middle::ty::query::Providers;
use rustc_middle::ty::TyCtxt; use rustc_middle::ty::TyCtxt;
@ -50,15 +51,15 @@ fn lint_levels(tcx: TyCtxt<'_>, (): ()) -> LintLevelMap {
pub struct LintLevelsBuilder<'s> { pub struct LintLevelsBuilder<'s> {
sess: &'s Session, sess: &'s Session,
sets: LintLevelSets, sets: LintLevelSets,
id_to_set: FxHashMap<HirId, u32>, id_to_set: FxHashMap<HirId, LintStackIndex>,
cur: u32, cur: LintStackIndex,
warn_about_weird_lints: bool, warn_about_weird_lints: bool,
store: &'s LintStore, store: &'s LintStore,
crate_attrs: &'s [ast::Attribute], crate_attrs: &'s [ast::Attribute],
} }
pub struct BuilderPush { pub struct BuilderPush {
prev: u32, prev: LintStackIndex,
pub changed: bool, pub changed: bool,
} }
@ -72,7 +73,7 @@ impl<'s> LintLevelsBuilder<'s> {
let mut builder = LintLevelsBuilder { let mut builder = LintLevelsBuilder {
sess, sess,
sets: LintLevelSets::new(), sets: LintLevelSets::new(),
cur: 0, cur: COMMAND_LINE,
id_to_set: Default::default(), id_to_set: Default::default(),
warn_about_weird_lints, warn_about_weird_lints,
store, store,
@ -120,7 +121,7 @@ impl<'s> LintLevelsBuilder<'s> {
} }
} }
self.sets.list.push(LintSet::CommandLine { specs }); self.cur = self.sets.list.push(LintSet { specs, parent: COMMAND_LINE });
} }
/// Attempts to insert the `id` to `level_src` map entry. If unsuccessful /// Attempts to insert the `id` to `level_src` map entry. If unsuccessful
@ -523,8 +524,7 @@ impl<'s> LintLevelsBuilder<'s> {
let prev = self.cur; let prev = self.cur;
if !specs.is_empty() { if !specs.is_empty() {
self.cur = self.sets.list.len() as u32; self.cur = self.sets.list.push(LintSet { specs, parent: prev });
self.sets.list.push(LintSet::Node { specs, parent: prev });
} }
BuilderPush { prev, changed: prev != self.cur } BuilderPush { prev, changed: prev != self.cur }

View File

@ -5,6 +5,7 @@ use rustc_data_structures::fx::FxHashMap;
use rustc_data_structures::stable_hasher::{HashStable, StableHasher}; use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
use rustc_errors::{DiagnosticBuilder, DiagnosticId}; use rustc_errors::{DiagnosticBuilder, DiagnosticId};
use rustc_hir::HirId; use rustc_hir::HirId;
use rustc_index::vec::IndexVec;
use rustc_session::lint::{ use rustc_session::lint::{
builtin::{self, FORBIDDEN_LINT_GROUPS}, builtin::{self, FORBIDDEN_LINT_GROUPS},
FutureIncompatibilityReason, Level, Lint, LintId, FutureIncompatibilityReason, Level, Lint, LintId,
@ -51,35 +52,37 @@ impl LintLevelSource {
/// A tuple of a lint level and its source. /// A tuple of a lint level and its source.
pub type LevelAndSource = (Level, LintLevelSource); pub type LevelAndSource = (Level, LintLevelSource);
#[derive(Debug)] #[derive(Debug, HashStable)]
pub struct LintLevelSets { pub struct LintLevelSets {
pub list: Vec<LintSet>, pub list: IndexVec<LintStackIndex, LintSet>,
pub lint_cap: Level, pub lint_cap: Level,
} }
#[derive(Debug)] rustc_index::newtype_index! {
pub enum LintSet { #[derive(HashStable)]
CommandLine { pub struct LintStackIndex {
const COMMAND_LINE = 0,
}
}
#[derive(Debug, HashStable)]
pub struct LintSet {
// -A,-W,-D flags, a `Symbol` for the flag itself and `Level` for which // -A,-W,-D flags, a `Symbol` for the flag itself and `Level` for which
// flag. // flag.
specs: FxHashMap<LintId, LevelAndSource>, pub specs: FxHashMap<LintId, LevelAndSource>,
},
Node { pub parent: LintStackIndex,
specs: FxHashMap<LintId, LevelAndSource>,
parent: u32,
},
} }
impl LintLevelSets { impl LintLevelSets {
pub fn new() -> Self { pub fn new() -> Self {
LintLevelSets { list: Vec::new(), lint_cap: Level::Forbid } LintLevelSets { list: IndexVec::new(), lint_cap: Level::Forbid }
} }
pub fn get_lint_level( pub fn get_lint_level(
&self, &self,
lint: &'static Lint, lint: &'static Lint,
idx: u32, idx: LintStackIndex,
aux: Option<&FxHashMap<LintId, LevelAndSource>>, aux: Option<&FxHashMap<LintId, LevelAndSource>>,
sess: &Session, sess: &Session,
) -> LevelAndSource { ) -> LevelAndSource {
@ -122,7 +125,7 @@ impl LintLevelSets {
pub fn get_lint_id_level( pub fn get_lint_id_level(
&self, &self,
id: LintId, id: LintId,
mut idx: u32, mut idx: LintStackIndex,
aux: Option<&FxHashMap<LintId, LevelAndSource>>, aux: Option<&FxHashMap<LintId, LevelAndSource>>,
) -> (Option<Level>, LintLevelSource) { ) -> (Option<Level>, LintLevelSource) {
if let Some(specs) = aux { if let Some(specs) = aux {
@ -131,28 +134,22 @@ impl LintLevelSets {
} }
} }
loop { loop {
match self.list[idx as usize] { let LintSet { ref specs, parent } = self.list[idx];
LintSet::CommandLine { ref specs } => {
if let Some(&(level, src)) = specs.get(&id) { if let Some(&(level, src)) = specs.get(&id) {
return (Some(level), src); return (Some(level), src);
} }
if idx == COMMAND_LINE {
return (None, LintLevelSource::Default); return (None, LintLevelSource::Default);
} }
LintSet::Node { ref specs, parent } => {
if let Some(&(level, src)) = specs.get(&id) {
return (Some(level), src);
}
idx = parent; idx = parent;
} }
} }
} }
}
}
#[derive(Debug)] #[derive(Debug)]
pub struct LintLevelMap { pub struct LintLevelMap {
pub sets: LintLevelSets, pub sets: LintLevelSets,
pub id_to_set: FxHashMap<HirId, u32>, pub id_to_set: FxHashMap<HirId, LintStackIndex>,
} }
impl LintLevelMap { impl LintLevelMap {
@ -180,29 +177,7 @@ impl<'a> HashStable<StableHashingContext<'a>> for LintLevelMap {
id_to_set.hash_stable(hcx, hasher); id_to_set.hash_stable(hcx, hasher);
let LintLevelSets { ref list, lint_cap } = *sets; hcx.while_hashing_spans(true, |hcx| sets.hash_stable(hcx, hasher))
lint_cap.hash_stable(hcx, hasher);
hcx.while_hashing_spans(true, |hcx| {
list.len().hash_stable(hcx, hasher);
// We are working under the assumption here that the list of
// lint-sets is built in a deterministic order.
for lint_set in list {
::std::mem::discriminant(lint_set).hash_stable(hcx, hasher);
match *lint_set {
LintSet::CommandLine { ref specs } => {
specs.hash_stable(hcx, hasher);
}
LintSet::Node { ref specs, parent } => {
specs.hash_stable(hcx, hasher);
parent.hash_stable(hcx, hasher);
}
}
}
})
} }
} }