Skip to content

Commit c46570e

Browse files
committed
Auto merge of rust-lang#12704 - jonas-schievink:smol-paths, r=jonas-schievink
internal: Use `SmallVec` to slightly shrink `ModPath` size Saves like a megabyte on r-a itself.
2 parents 00194ad + d2fd137 commit c46570e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/hir-expand/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ itertools = "0.10.3"
1919
hashbrown = { version = "0.12.1", features = [
2020
"inline-more",
2121
], default-features = false }
22+
smallvec = { version = "1.9.0", features = ["const_new"] }
2223

2324
stdx = { path = "../stdx", version = "0.0.0" }
2425
base-db = { path = "../base-db", version = "0.0.0" }

crates/hir-expand/src/mod_path.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ use crate::{
1212
};
1313
use base_db::CrateId;
1414
use either::Either;
15+
use smallvec::SmallVec;
1516
use syntax::{ast, AstNode};
1617

1718
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
1819
pub struct ModPath {
1920
pub kind: PathKind,
20-
segments: Vec<Name>,
21+
segments: SmallVec<[Name; 1]>,
2122
}
2223

2324
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
@@ -41,13 +42,13 @@ impl ModPath {
4142
}
4243

4344
pub fn from_segments(kind: PathKind, segments: impl IntoIterator<Item = Name>) -> ModPath {
44-
let segments = segments.into_iter().collect::<Vec<_>>();
45+
let segments = segments.into_iter().collect();
4546
ModPath { kind, segments }
4647
}
4748

4849
/// Creates a `ModPath` from a `PathKind`, with no extra path segments.
4950
pub const fn from_kind(kind: PathKind) -> ModPath {
50-
ModPath { kind, segments: Vec::new() }
51+
ModPath { kind, segments: SmallVec::new_const() }
5152
}
5253

5354
pub fn segments(&self) -> &[Name] {

0 commit comments

Comments
 (0)