internal: Add config to specifiy lru capacities for all queries
This commit is contained in:
parent
27c076a367
commit
5616d91b73
@ -88,6 +88,7 @@ pub(crate) fn variants_attrs_query(
|
|||||||
db: &dyn DefDatabase,
|
db: &dyn DefDatabase,
|
||||||
e: EnumId,
|
e: EnumId,
|
||||||
) -> Arc<ArenaMap<LocalEnumVariantId, Attrs>> {
|
) -> Arc<ArenaMap<LocalEnumVariantId, Attrs>> {
|
||||||
|
let _p = profile::span("variants_attrs_query");
|
||||||
// FIXME: There should be some proper form of mapping between item tree enum variant ids and hir enum variant ids
|
// FIXME: There should be some proper form of mapping between item tree enum variant ids and hir enum variant ids
|
||||||
let mut res = ArenaMap::default();
|
let mut res = ArenaMap::default();
|
||||||
|
|
||||||
@ -114,6 +115,7 @@ pub(crate) fn fields_attrs_query(
|
|||||||
db: &dyn DefDatabase,
|
db: &dyn DefDatabase,
|
||||||
v: VariantId,
|
v: VariantId,
|
||||||
) -> Arc<ArenaMap<LocalFieldId, Attrs>> {
|
) -> Arc<ArenaMap<LocalFieldId, Attrs>> {
|
||||||
|
let _p = profile::span("fields_attrs_query");
|
||||||
// FIXME: There should be some proper form of mapping between item tree field ids and hir field ids
|
// FIXME: There should be some proper form of mapping between item tree field ids and hir field ids
|
||||||
let mut res = ArenaMap::default();
|
let mut res = ArenaMap::default();
|
||||||
|
|
||||||
@ -253,6 +255,7 @@ pub fn is_proc_macro_derive(&self) -> bool {
|
|||||||
|
|
||||||
impl AttrsWithOwner {
|
impl AttrsWithOwner {
|
||||||
pub(crate) fn attrs_query(db: &dyn DefDatabase, def: AttrDefId) -> Self {
|
pub(crate) fn attrs_query(db: &dyn DefDatabase, def: AttrDefId) -> Self {
|
||||||
|
let _p = profile::span("attrs_query");
|
||||||
// FIXME: this should use `Trace` to avoid duplication in `source_map` below
|
// FIXME: this should use `Trace` to avoid duplication in `source_map` below
|
||||||
let raw_attrs = match def {
|
let raw_attrs = match def {
|
||||||
AttrDefId::ModuleId(module) => {
|
AttrDefId::ModuleId(module) => {
|
||||||
|
@ -141,16 +141,175 @@ pub fn new(lru_capacity: Option<usize>) -> RootDatabase {
|
|||||||
db.set_local_roots_with_durability(Default::default(), Durability::HIGH);
|
db.set_local_roots_with_durability(Default::default(), Durability::HIGH);
|
||||||
db.set_library_roots_with_durability(Default::default(), Durability::HIGH);
|
db.set_library_roots_with_durability(Default::default(), Durability::HIGH);
|
||||||
db.set_enable_proc_attr_macros(false);
|
db.set_enable_proc_attr_macros(false);
|
||||||
db.update_lru_capacity(lru_capacity);
|
db.update_parse_query_lru_capacity(lru_capacity);
|
||||||
db
|
db
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn update_lru_capacity(&mut self, lru_capacity: Option<usize>) {
|
pub fn update_parse_query_lru_capacity(&mut self, lru_capacity: Option<usize>) {
|
||||||
let lru_capacity = lru_capacity.unwrap_or(base_db::DEFAULT_LRU_CAP);
|
let lru_capacity = lru_capacity.unwrap_or(base_db::DEFAULT_LRU_CAP);
|
||||||
base_db::ParseQuery.in_db_mut(self).set_lru_capacity(lru_capacity);
|
base_db::ParseQuery.in_db_mut(self).set_lru_capacity(lru_capacity);
|
||||||
hir::db::ParseMacroExpansionQuery.in_db_mut(self).set_lru_capacity(lru_capacity);
|
hir::db::ParseMacroExpansionQuery.in_db_mut(self).set_lru_capacity(lru_capacity);
|
||||||
hir::db::MacroExpandQuery.in_db_mut(self).set_lru_capacity(lru_capacity);
|
hir::db::MacroExpandQuery.in_db_mut(self).set_lru_capacity(lru_capacity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn update_lru_capacities(&mut self, lru_capacities: &FxHashMap<Box<str>, usize>) {
|
||||||
|
use hir::db as hir_db;
|
||||||
|
|
||||||
|
base_db::ParseQuery.in_db_mut(self).set_lru_capacity(
|
||||||
|
lru_capacities.get(stringify!(ParseQuery)).copied().unwrap_or(base_db::DEFAULT_LRU_CAP),
|
||||||
|
);
|
||||||
|
hir_db::ParseMacroExpansionQuery.in_db_mut(self).set_lru_capacity(
|
||||||
|
lru_capacities
|
||||||
|
.get(stringify!(ParseMacroExpansionQuery))
|
||||||
|
.copied()
|
||||||
|
.unwrap_or(base_db::DEFAULT_LRU_CAP),
|
||||||
|
);
|
||||||
|
hir_db::MacroExpandQuery.in_db_mut(self).set_lru_capacity(
|
||||||
|
lru_capacities
|
||||||
|
.get(stringify!(MacroExpandQuery))
|
||||||
|
.copied()
|
||||||
|
.unwrap_or(base_db::DEFAULT_LRU_CAP),
|
||||||
|
);
|
||||||
|
|
||||||
|
macro_rules! update_lru_capacity_per_query {
|
||||||
|
($( $module:ident :: $query:ident )*) => {$(
|
||||||
|
if let Some(&cap) = lru_capacities.get(stringify!($query)) {
|
||||||
|
$module::$query.in_db_mut(self).set_lru_capacity(cap);
|
||||||
|
}
|
||||||
|
)*}
|
||||||
|
}
|
||||||
|
update_lru_capacity_per_query![
|
||||||
|
// SourceDatabase
|
||||||
|
// base_db::ParseQuery
|
||||||
|
// base_db::CrateGraphQuery
|
||||||
|
// base_db::ProcMacrosQuery
|
||||||
|
|
||||||
|
// SourceDatabaseExt
|
||||||
|
// base_db::FileTextQuery
|
||||||
|
// base_db::FileSourceRootQuery
|
||||||
|
// base_db::SourceRootQuery
|
||||||
|
base_db::SourceRootCratesQuery
|
||||||
|
|
||||||
|
// ExpandDatabase
|
||||||
|
hir_db::AstIdMapQuery
|
||||||
|
// hir_db::ParseMacroExpansionQuery
|
||||||
|
// hir_db::InternMacroCallQuery
|
||||||
|
hir_db::MacroArgTextQuery
|
||||||
|
hir_db::MacroDefQuery
|
||||||
|
// hir_db::MacroExpandQuery
|
||||||
|
hir_db::ExpandProcMacroQuery
|
||||||
|
hir_db::MacroExpandErrorQuery
|
||||||
|
hir_db::HygieneFrameQuery
|
||||||
|
|
||||||
|
// DefDatabase
|
||||||
|
hir_db::FileItemTreeQuery
|
||||||
|
hir_db::CrateDefMapQueryQuery
|
||||||
|
hir_db::BlockDefMapQuery
|
||||||
|
hir_db::StructDataQuery
|
||||||
|
hir_db::StructDataWithDiagnosticsQuery
|
||||||
|
hir_db::UnionDataQuery
|
||||||
|
hir_db::UnionDataWithDiagnosticsQuery
|
||||||
|
hir_db::EnumDataQuery
|
||||||
|
hir_db::EnumDataWithDiagnosticsQuery
|
||||||
|
hir_db::ImplDataQuery
|
||||||
|
hir_db::ImplDataWithDiagnosticsQuery
|
||||||
|
hir_db::TraitDataQuery
|
||||||
|
hir_db::TraitDataWithDiagnosticsQuery
|
||||||
|
hir_db::TraitAliasDataQuery
|
||||||
|
hir_db::TypeAliasDataQuery
|
||||||
|
hir_db::FunctionDataQuery
|
||||||
|
hir_db::ConstDataQuery
|
||||||
|
hir_db::StaticDataQuery
|
||||||
|
hir_db::Macro2DataQuery
|
||||||
|
hir_db::MacroRulesDataQuery
|
||||||
|
hir_db::ProcMacroDataQuery
|
||||||
|
hir_db::BodyWithSourceMapQuery
|
||||||
|
hir_db::BodyQuery
|
||||||
|
hir_db::ExprScopesQuery
|
||||||
|
hir_db::GenericParamsQuery
|
||||||
|
hir_db::VariantsAttrsQuery
|
||||||
|
hir_db::FieldsAttrsQuery
|
||||||
|
hir_db::VariantsAttrsSourceMapQuery
|
||||||
|
hir_db::FieldsAttrsSourceMapQuery
|
||||||
|
hir_db::AttrsQuery
|
||||||
|
hir_db::CrateLangItemsQuery
|
||||||
|
hir_db::LangItemQuery
|
||||||
|
hir_db::ImportMapQuery
|
||||||
|
hir_db::FieldVisibilitiesQuery
|
||||||
|
hir_db::FunctionVisibilityQuery
|
||||||
|
hir_db::ConstVisibilityQuery
|
||||||
|
hir_db::CrateSupportsNoStdQuery
|
||||||
|
|
||||||
|
// HirDatabase
|
||||||
|
hir_db::InferQueryQuery
|
||||||
|
hir_db::MirBodyQuery
|
||||||
|
hir_db::BorrowckQuery
|
||||||
|
hir_db::TyQuery
|
||||||
|
hir_db::ValueTyQuery
|
||||||
|
hir_db::ImplSelfTyQuery
|
||||||
|
hir_db::ConstParamTyQuery
|
||||||
|
hir_db::ConstEvalQuery
|
||||||
|
hir_db::ConstEvalDiscriminantQuery
|
||||||
|
hir_db::ImplTraitQuery
|
||||||
|
hir_db::FieldTypesQuery
|
||||||
|
hir_db::LayoutOfAdtQuery
|
||||||
|
hir_db::TargetDataLayoutQuery
|
||||||
|
hir_db::CallableItemSignatureQuery
|
||||||
|
hir_db::ReturnTypeImplTraitsQuery
|
||||||
|
hir_db::GenericPredicatesForParamQuery
|
||||||
|
hir_db::GenericPredicatesQuery
|
||||||
|
hir_db::TraitEnvironmentQuery
|
||||||
|
hir_db::GenericDefaultsQuery
|
||||||
|
hir_db::InherentImplsInCrateQuery
|
||||||
|
hir_db::InherentImplsInBlockQuery
|
||||||
|
hir_db::IncoherentInherentImplCratesQuery
|
||||||
|
hir_db::TraitImplsInCrateQuery
|
||||||
|
hir_db::TraitImplsInBlockQuery
|
||||||
|
hir_db::TraitImplsInDepsQuery
|
||||||
|
// hir_db::InternCallableDefQuery
|
||||||
|
// hir_db::InternLifetimeParamIdQuery
|
||||||
|
// hir_db::InternImplTraitIdQuery
|
||||||
|
// hir_db::InternTypeOrConstParamIdQuery
|
||||||
|
// hir_db::InternClosureQuery
|
||||||
|
// hir_db::InternGeneratorQuery
|
||||||
|
hir_db::AssociatedTyDataQuery
|
||||||
|
hir_db::TraitDatumQuery
|
||||||
|
hir_db::StructDatumQuery
|
||||||
|
hir_db::ImplDatumQuery
|
||||||
|
hir_db::FnDefDatumQuery
|
||||||
|
hir_db::FnDefVarianceQuery
|
||||||
|
hir_db::AdtVarianceQuery
|
||||||
|
hir_db::AssociatedTyValueQuery
|
||||||
|
hir_db::TraitSolveQueryQuery
|
||||||
|
hir_db::ProgramClausesForChalkEnvQuery
|
||||||
|
|
||||||
|
// SymbolsDatabase
|
||||||
|
symbol_index::ModuleSymbolsQuery
|
||||||
|
symbol_index::LibrarySymbolsQuery
|
||||||
|
// symbol_index::LocalRootsQuery
|
||||||
|
// symbol_index::LibraryRootsQuery
|
||||||
|
|
||||||
|
// LineIndexDatabase
|
||||||
|
crate::LineIndexQuery
|
||||||
|
|
||||||
|
// InternDatabase
|
||||||
|
// hir_db::InternFunctionQuery
|
||||||
|
// hir_db::InternStructQuery
|
||||||
|
// hir_db::InternUnionQuery
|
||||||
|
// hir_db::InternEnumQuery
|
||||||
|
// hir_db::InternConstQuery
|
||||||
|
// hir_db::InternStaticQuery
|
||||||
|
// hir_db::InternTraitQuery
|
||||||
|
// hir_db::InternTraitAliasQuery
|
||||||
|
// hir_db::InternTypeAliasQuery
|
||||||
|
// hir_db::InternImplQuery
|
||||||
|
// hir_db::InternExternBlockQuery
|
||||||
|
// hir_db::InternBlockQuery
|
||||||
|
// hir_db::InternMacro2Query
|
||||||
|
// hir_db::InternProcMacroQuery
|
||||||
|
// hir_db::InternMacroRulesQuery
|
||||||
|
];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl salsa::ParallelDatabase for RootDatabase {
|
impl salsa::ParallelDatabase for RootDatabase {
|
||||||
|
@ -67,7 +67,7 @@ macro_rules! eprintln {
|
|||||||
salsa::{self, ParallelDatabase},
|
salsa::{self, ParallelDatabase},
|
||||||
CrateOrigin, Env, FileLoader, FileSet, SourceDatabase, VfsPath,
|
CrateOrigin, Env, FileLoader, FileSet, SourceDatabase, VfsPath,
|
||||||
},
|
},
|
||||||
symbol_index, LineIndexDatabase,
|
symbol_index, FxHashMap, LineIndexDatabase,
|
||||||
};
|
};
|
||||||
use syntax::SourceFile;
|
use syntax::SourceFile;
|
||||||
|
|
||||||
@ -154,7 +154,11 @@ pub fn new(lru_capacity: Option<usize>) -> AnalysisHost {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn update_lru_capacity(&mut self, lru_capacity: Option<usize>) {
|
pub fn update_lru_capacity(&mut self, lru_capacity: Option<usize>) {
|
||||||
self.db.update_lru_capacity(lru_capacity);
|
self.db.update_parse_query_lru_capacity(lru_capacity);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn update_lru_capacities(&mut self, lru_capacities: &FxHashMap<Box<str>, usize>) {
|
||||||
|
self.db.update_lru_capacities(lru_capacities);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns a snapshot of the current state, which you can query for
|
/// Returns a snapshot of the current state, which you can query for
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
//! configure the server itself, feature flags are passed into analysis, and
|
//! configure the server itself, feature flags are passed into analysis, and
|
||||||
//! tweak things like automatic insertion of `()` in completions.
|
//! tweak things like automatic insertion of `()` in completions.
|
||||||
|
|
||||||
use std::{fmt, iter, path::PathBuf};
|
use std::{fmt, iter, ops::Not, path::PathBuf};
|
||||||
|
|
||||||
use flycheck::FlycheckConfig;
|
use flycheck::FlycheckConfig;
|
||||||
use ide::{
|
use ide::{
|
||||||
@ -418,6 +418,8 @@ struct ConfigData {
|
|||||||
|
|
||||||
/// Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.
|
/// Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.
|
||||||
lru_capacity: Option<usize> = "null",
|
lru_capacity: Option<usize> = "null",
|
||||||
|
/// Sets the LRU capacity of the specified queries.
|
||||||
|
lru_query_capacities: FxHashMap<Box<str>, usize> = "{}",
|
||||||
|
|
||||||
/// Whether to show `can't find Cargo.toml` error message.
|
/// Whether to show `can't find Cargo.toml` error message.
|
||||||
notifications_cargoTomlNotFound: bool = "true",
|
notifications_cargoTomlNotFound: bool = "true",
|
||||||
@ -1085,10 +1087,14 @@ pub fn check_extra_env(&self) -> FxHashMap<String, String> {
|
|||||||
extra_env
|
extra_env
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn lru_capacity(&self) -> Option<usize> {
|
pub fn lru_parse_query_capacity(&self) -> Option<usize> {
|
||||||
self.data.lru_capacity
|
self.data.lru_capacity
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn lru_query_capacities(&self) -> Option<&FxHashMap<Box<str>, usize>> {
|
||||||
|
self.data.lru_query_capacities.is_empty().not().then(|| &self.data.lru_query_capacities)
|
||||||
|
}
|
||||||
|
|
||||||
pub fn proc_macro_srv(&self) -> Option<(AbsPathBuf, /* is path explicitly set */ bool)> {
|
pub fn proc_macro_srv(&self) -> Option<(AbsPathBuf, /* is path explicitly set */ bool)> {
|
||||||
if !self.data.procMacro_enable {
|
if !self.data.procMacro_enable {
|
||||||
return None;
|
return None;
|
||||||
@ -2020,6 +2026,9 @@ macro_rules! set {
|
|||||||
"FxHashMap<String, String>" => set! {
|
"FxHashMap<String, String>" => set! {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
},
|
},
|
||||||
|
"FxHashMap<Box<str>, usize>" => set! {
|
||||||
|
"type": "object",
|
||||||
|
},
|
||||||
"Option<usize>" => set! {
|
"Option<usize>" => set! {
|
||||||
"type": ["null", "integer"],
|
"type": ["null", "integer"],
|
||||||
"minimum": 0,
|
"minimum": 0,
|
||||||
|
@ -139,7 +139,10 @@ pub(crate) fn new(sender: Sender<lsp_server::Message>, config: Config) -> Global
|
|||||||
Handle { handle, receiver }
|
Handle { handle, receiver }
|
||||||
};
|
};
|
||||||
|
|
||||||
let analysis_host = AnalysisHost::new(config.lru_capacity());
|
let mut analysis_host = AnalysisHost::new(config.lru_parse_query_capacity());
|
||||||
|
if let Some(capacities) = config.lru_query_capacities() {
|
||||||
|
analysis_host.update_lru_capacities(capacities);
|
||||||
|
}
|
||||||
let (flycheck_sender, flycheck_receiver) = unbounded();
|
let (flycheck_sender, flycheck_receiver) = unbounded();
|
||||||
let mut this = GlobalState {
|
let mut this = GlobalState {
|
||||||
sender,
|
sender,
|
||||||
|
@ -73,8 +73,13 @@ pub(crate) fn is_quiescent(&self) -> bool {
|
|||||||
pub(crate) fn update_configuration(&mut self, config: Config) {
|
pub(crate) fn update_configuration(&mut self, config: Config) {
|
||||||
let _p = profile::span("GlobalState::update_configuration");
|
let _p = profile::span("GlobalState::update_configuration");
|
||||||
let old_config = mem::replace(&mut self.config, Arc::new(config));
|
let old_config = mem::replace(&mut self.config, Arc::new(config));
|
||||||
if self.config.lru_capacity() != old_config.lru_capacity() {
|
if self.config.lru_parse_query_capacity() != old_config.lru_parse_query_capacity() {
|
||||||
self.analysis_host.update_lru_capacity(self.config.lru_capacity());
|
self.analysis_host.update_lru_capacity(self.config.lru_parse_query_capacity());
|
||||||
|
}
|
||||||
|
if self.config.lru_query_capacities() != old_config.lru_query_capacities() {
|
||||||
|
self.analysis_host.update_lru_capacities(
|
||||||
|
&self.config.lru_query_capacities().cloned().unwrap_or_default(),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
if self.config.linked_projects() != old_config.linked_projects() {
|
if self.config.linked_projects() != old_config.linked_projects() {
|
||||||
self.fetch_workspaces_queue.request_op("linked projects changed".to_string())
|
self.fetch_workspaces_queue.request_op("linked projects changed".to_string())
|
||||||
|
@ -639,6 +639,11 @@ Elements must be paths pointing to `Cargo.toml`,
|
|||||||
--
|
--
|
||||||
Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.
|
Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.
|
||||||
--
|
--
|
||||||
|
[[rust-analyzer.lru.query.capacities]]rust-analyzer.lru.query.capacities (default: `{}`)::
|
||||||
|
+
|
||||||
|
--
|
||||||
|
Sets the LRU capacity of the specified queries.
|
||||||
|
--
|
||||||
[[rust-analyzer.notifications.cargoTomlNotFound]]rust-analyzer.notifications.cargoTomlNotFound (default: `true`)::
|
[[rust-analyzer.notifications.cargoTomlNotFound]]rust-analyzer.notifications.cargoTomlNotFound (default: `true`)::
|
||||||
+
|
+
|
||||||
--
|
--
|
||||||
|
@ -1247,6 +1247,11 @@
|
|||||||
],
|
],
|
||||||
"minimum": 0
|
"minimum": 0
|
||||||
},
|
},
|
||||||
|
"rust-analyzer.lru.query.capacities": {
|
||||||
|
"markdownDescription": "Sets the LRU capacity of the specified queries.",
|
||||||
|
"default": {},
|
||||||
|
"type": "object"
|
||||||
|
},
|
||||||
"rust-analyzer.notifications.cargoTomlNotFound": {
|
"rust-analyzer.notifications.cargoTomlNotFound": {
|
||||||
"markdownDescription": "Whether to show `can't find Cargo.toml` error message.",
|
"markdownDescription": "Whether to show `can't find Cargo.toml` error message.",
|
||||||
"default": true,
|
"default": true,
|
||||||
|
Loading…
Reference in New Issue
Block a user