Skip to content

Commit e261649

Browse files
committedDec 15, 2020
Auto merge of #78682 - glandium:issue78471, r=lcnr
Do not inline finish_grow Fixes #78471. Looking at libgkrust.a in Firefox, the sizes for the `gkrust.*.o` file is: - 18584816 (text) 582418 (data) with unmodified master - 17937659 (text) 582554 (data) with #72227 reverted - 17968228 (text) 582858 (data) with `#[inline(never)]` on `grow_amortized` and `grow_exact`, but that has some performance consequences - 17927760 (text) 582322 (data) with this change So in terms of size, at least in the case of Firefox, this patch more than undoes the regression. I don't think it should affect performance, but we'll see.
2 parents e1cce06 + 76bd145 commit e261649

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎library/alloc/src/raw_vec.rs

+1
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,7 @@ impl<T, A: Allocator> RawVec<T, A> {
465465
// above `RawVec::grow_amortized` for details. (The `A` parameter isn't
466466
// significant, because the number of different `A` types seen in practice is
467467
// much smaller than the number of `T` types.)
468+
#[inline(never)]
468469
fn finish_grow<A>(
469470
new_layout: Result<Layout, LayoutError>,
470471
current_memory: Option<(NonNull<u8>, Layout)>,

‎library/alloc/src/vec.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -2327,7 +2327,10 @@ where
23272327
I: TrustedLen<Item = T>,
23282328
{
23292329
fn from_iter(iterator: I) -> Self {
2330-
let mut vector = Vec::new();
2330+
let mut vector = match iterator.size_hint() {
2331+
(_, Some(upper)) => Vec::with_capacity(upper),
2332+
_ => Vec::new(),
2333+
};
23312334
// must delegate to spec_extend() since extend() itself delegates
23322335
// to spec_from for empty Vecs
23332336
vector.spec_extend(iterator);

0 commit comments

Comments
 (0)