D10199: rust: Preallocate the returned `Vec` in `utils::files::relativize_path`
SimonSapin
phabricator at mercurial-scm.org
Sat Mar 13 08:02:06 UTC 2021
SimonSapin created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
Profiling `rhg files > /dev/null` on an old snapshot of mozilla-central
(with `perf` and the Firefox Profiler:
https://github.com/firefox-devtools/profiler/blob/main/docs-user/guide-perf-profiling.md)
showed non-trivial time spend in this function and in `realloc`.
This change makes the wall-clock time for that process in my machine
go from ~220 ms to ~170 ms.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D10199
AFFECTED FILES
rust/hg-core/src/utils/files.rs
CHANGE DETAILS
diff --git a/rust/hg-core/src/utils/files.rs b/rust/hg-core/src/utils/files.rs
--- a/rust/hg-core/src/utils/files.rs
+++ b/rust/hg-core/src/utils/files.rs
@@ -281,7 +281,13 @@
if cwd.as_ref().is_empty() {
Cow::Borrowed(path.as_bytes())
} else {
- let mut res: Vec<u8> = Vec::new();
+ // This is not all accurate as to how large `res` will actually be, but
+ // profiling `rhg files` on a large-ish repo shows itâs better than
+ // starting from a zero-capacity `Vec` and letting `extend` reallocate
+ // repeatedly.
+ let guesstimate = path.as_bytes().len();
+
+ let mut res: Vec<u8> = Vec::with_capacity(guesstimate);
let mut path_iter = path.as_bytes().split(|b| *b == b'/').peekable();
let mut cwd_iter =
cwd.as_ref().as_bytes().split(|b| *b == b'/').peekable();
To: SimonSapin, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list