Skip to content

Commit e0c1b2b

Browse files
committed
Auto merge of #17417 - Wilfred:intern_macros_salsa, r=Veykril
refactor: Prefer plain trait definitions over macros for impl_intern_value_trivial `impl_intern_value_trivial` can be defined with a trait directly, so prefer that over a macro definition.
2 parents 5ca4b3d + 767da82 commit e0c1b2b

File tree

7 files changed

+36
-32
lines changed

7 files changed

+36
-32
lines changed

src/tools/rust-analyzer/crates/hir-def/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ use std::{
7373

7474
use base_db::{
7575
impl_intern_key,
76-
salsa::{self, impl_intern_value_trivial},
76+
salsa::{self, InternValueTrivial},
7777
CrateId,
7878
};
7979
use hir_expand::{
@@ -187,7 +187,7 @@ pub trait ItemTreeLoc {
187187
macro_rules! impl_intern {
188188
($id:ident, $loc:ident, $intern:ident, $lookup:ident) => {
189189
impl_intern_key!($id);
190-
impl_intern_value_trivial!($loc);
190+
impl InternValueTrivial for $loc {}
191191
impl_intern_lookup!(DefDatabase, $id, $loc, $intern, $lookup);
192192
};
193193
}
@@ -535,7 +535,7 @@ pub struct TypeOrConstParamId {
535535
pub parent: GenericDefId,
536536
pub local_id: LocalTypeOrConstParamId,
537537
}
538-
impl_intern_value_trivial!(TypeOrConstParamId);
538+
impl InternValueTrivial for TypeOrConstParamId {}
539539

540540
/// A TypeOrConstParamId with an invariant that it actually belongs to a type
541541
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
@@ -597,7 +597,7 @@ pub struct LifetimeParamId {
597597
pub local_id: LocalLifetimeParamId,
598598
}
599599
pub type LocalLifetimeParamId = Idx<generics::LifetimeParamData>;
600-
impl_intern_value_trivial!(LifetimeParamId);
600+
impl InternValueTrivial for LifetimeParamId {}
601601

602602
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
603603
pub enum ItemContainerId {

src/tools/rust-analyzer/crates/hir-expand/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use triomphe::Arc;
3131

3232
use std::{fmt, hash::Hash};
3333

34-
use base_db::{salsa::impl_intern_value_trivial, CrateId, FileId};
34+
use base_db::{salsa::InternValueTrivial, CrateId, FileId};
3535
use either::Either;
3636
use span::{
3737
Edition, ErasedFileAstId, FileAstId, FileRange, HirFileIdRepr, Span, SpanAnchor,
@@ -173,7 +173,7 @@ pub struct MacroCallLoc {
173173
pub kind: MacroCallKind,
174174
pub ctxt: SyntaxContextId,
175175
}
176-
impl_intern_value_trivial!(MacroCallLoc);
176+
impl InternValueTrivial for MacroCallLoc {}
177177

178178
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
179179
pub struct MacroDefId {

src/tools/rust-analyzer/crates/hir-ty/src/db.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use std::sync;
55

66
use base_db::{
77
impl_intern_key,
8-
salsa::{self, impl_intern_value_trivial},
8+
salsa::{self, InternValueTrivial},
99
CrateId, Upcast,
1010
};
1111
use hir_def::{
@@ -298,15 +298,16 @@ impl_intern_key!(InternedClosureId);
298298

299299
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
300300
pub struct InternedClosure(pub DefWithBodyId, pub ExprId);
301-
impl_intern_value_trivial!(InternedClosure);
301+
302+
impl InternValueTrivial for InternedClosure {}
302303

303304
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
304305
pub struct InternedCoroutineId(salsa::InternId);
305306
impl_intern_key!(InternedCoroutineId);
306307

307308
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
308309
pub struct InternedCoroutine(pub DefWithBodyId, pub ExprId);
309-
impl_intern_value_trivial!(InternedCoroutine);
310+
impl InternValueTrivial for InternedCoroutine {}
310311

311312
/// This exists just for Chalk, because Chalk just has a single `FnDefId` where
312313
/// we have different IDs for struct and enum variant constructors.

src/tools/rust-analyzer/crates/hir-ty/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use std::{
5252
hash::{BuildHasherDefault, Hash},
5353
};
5454

55-
use base_db::salsa::impl_intern_value_trivial;
55+
use base_db::salsa::InternValueTrivial;
5656
use chalk_ir::{
5757
fold::{Shift, TypeFoldable},
5858
interner::HasInterner,
@@ -606,7 +606,7 @@ pub enum ImplTraitId {
606606
AssociatedTypeImplTrait(hir_def::TypeAliasId, ImplTraitIdx),
607607
AsyncBlockTypeImplTrait(hir_def::DefWithBodyId, ExprId),
608608
}
609-
impl_intern_value_trivial!(ImplTraitId);
609+
impl InternValueTrivial for ImplTraitId {}
610610

611611
#[derive(PartialEq, Eq, Debug, Hash)]
612612
pub struct ImplTraits {

src/tools/rust-analyzer/crates/hir-ty/src/lower.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::{
1111
};
1212

1313
use base_db::{
14-
salsa::{impl_intern_value_trivial, Cycle},
14+
salsa::{Cycle, InternValueTrivial},
1515
CrateId,
1616
};
1717
use chalk_ir::{
@@ -1965,7 +1965,9 @@ pub enum CallableDefId {
19651965
StructId(StructId),
19661966
EnumVariantId(EnumVariantId),
19671967
}
1968-
impl_intern_value_trivial!(CallableDefId);
1968+
1969+
impl InternValueTrivial for CallableDefId {}
1970+
19691971
impl_from!(FunctionId, StructId, EnumVariantId for CallableDefId);
19701972
impl From<CallableDefId> for ModuleDefId {
19711973
fn from(def: CallableDefId) -> ModuleDefId {

src/tools/rust-analyzer/crates/salsa/src/interned.rs

+19-18
Original file line numberDiff line numberDiff line change
@@ -98,26 +98,27 @@ impl<A: InternValue + Eq + Hash + Debug + Clone, B: InternValue + Eq + Hash + De
9898
}
9999
}
100100

101+
pub trait InternValueTrivial
102+
where
103+
Self: Eq + Hash + Debug + Clone,
104+
{
105+
}
106+
101107
/// Implement [`InternValue`] trivially, that is without actually mapping at all.
102-
#[macro_export]
103-
macro_rules! impl_intern_value_trivial {
104-
($($ty:ty),*) => {
105-
$(
106-
impl $crate::InternValue for $ty {
107-
type Key = $ty;
108-
#[inline]
109-
fn into_key(&self) -> Self::Key {
110-
self.clone()
111-
}
112-
#[inline]
113-
fn with_key<F: FnOnce(&Self::Key) -> T, T>(&self, f: F) -> T {
114-
f(self)
115-
}
116-
}
117-
)*
118-
};
108+
impl<V: InternValueTrivial> InternValue for V {
109+
type Key = Self;
110+
#[inline]
111+
fn into_key(&self) -> Self::Key {
112+
self.clone()
113+
}
114+
#[inline]
115+
fn with_key<F: FnOnce(&Self::Key) -> T, T>(&self, f: F) -> T {
116+
f(self)
117+
}
119118
}
120-
impl_intern_value_trivial!(String);
119+
120+
impl InternValueTrivial for String {}
121+
121122
#[derive(Debug)]
122123
struct Slot<V> {
123124
/// DatabaseKeyIndex for this slot.

src/tools/rust-analyzer/crates/salsa/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ use std::panic::{self, UnwindSafe};
4040

4141
pub use crate::durability::Durability;
4242
pub use crate::intern_id::InternId;
43-
pub use crate::interned::{InternKey, InternValue};
43+
pub use crate::interned::{InternKey, InternValue, InternValueTrivial};
4444
pub use crate::runtime::Runtime;
4545
pub use crate::runtime::RuntimeId;
4646
pub use crate::storage::Storage;

0 commit comments

Comments
 (0)