Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to rustc 1.36.0-nightly (e305df184 2019-04-24) #23263

Merged
merged 1 commit into from
Apr 25, 2019
Merged

Conversation

SimonSapin
Copy link
Member

@SimonSapin SimonSapin commented Apr 25, 2019

This includes a size_of regression for a few DOM types, due to rust-lang/rust#58623 which replaces the implementation of HashMap in the standard library to Hashbrown.

Although size_of<HashMap> grows, it’s not obvious how total memory usage is going to be impacted: Hashbrown only has one u8 instead of one usize of overhead per hash table bucket for storing (part of) a hash, and so might allocate less memory itself.

Hashbrown also typically has better run time performance: https://github.com/rust-lang/hashbrown#performance

Still, I’ve filed rust-lang/hashbrown#69 about potentially reducing the size_of<HashMap> regression.


This change is Reviewable

This includes a `size_of` regression for a few DOM types,
due to rust-lang/rust#58623 which replaces the
implementation of `HashMap` in the standard library to Hashbrown.

Although `size_of<HashMap>` grows, it’s not obvious how total memory usage
is going to be impacted: Hashbrown only has one `u8` instead of one `usize`
of overhead per hash table bucket for storing (part of) a hash,
and so might allocate less memory itself.

Hashbrown also typically has better run time performance:
https://github.com/rust-lang/hashbrown#performance

Still, I’ve filed rust-lang/hashbrown#69
about potentially reducing the `size_of<HashMap>` regression.
@SimonSapin
Copy link
Member Author

We could also replace this HashMap with a Vec and linear scan. A given event target rarely has many handlers, right?

handlers: DomRefCell<HashMap<Atom, EventListeners, BuildHasherDefault<FnvHasher>>>,

@SimonSapin
Copy link
Member Author

We actually considered exactly this before and @nox wrote:

#15704 (comment)

One day we will optimise such things extensively, but today is not the day.

r? @jdm

@jdm
Copy link
Member

jdm commented Apr 25, 2019

@bors-servo r+
I agree with past @nox.

@bors-servo
Copy link
Contributor

📌 Commit 51d6b63 has been approved by jdm

@highfive highfive added the S-awaiting-merge The PR is in the process of compiling and running tests on the automated CI. label Apr 25, 2019
@bors-servo
Copy link
Contributor

⌛ Testing commit 51d6b63 with merge e877dc2...

bors-servo pushed a commit that referenced this pull request Apr 25, 2019
Upgrade to rustc 1.36.0-nightly (e305df184 2019-04-24)

This includes a `size_of` regression for a few DOM types, due to rust-lang/rust#58623 which replaces the implementation of `HashMap` in the standard library to Hashbrown.

Although `size_of<HashMap>` grows, it’s not obvious how total memory usage is going to be impacted: Hashbrown only has one `u8` instead of one `usize` of overhead per hash table bucket for storing (part of) a hash, and so might allocate less memory itself.

Hashbrown also typically has better run time performance: https://github.com/rust-lang/hashbrown#performance

Still, I’ve filed rust-lang/hashbrown#69 about potentially reducing the `size_of<HashMap>` regression.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23263)
<!-- Reviewable:end -->
@bors-servo
Copy link
Contributor

☀️ Test successful - android-mac, arm32, arm64, linux-rel-css, linux-rel-wpt, mac-rel-css1, mac-rel-css2, mac-rel-wpt1, mac-rel-wpt2, mac-rel-wpt3, mac-rel-wpt4, magicleap, status-taskcluster
Approved by: jdm
Pushing e877dc2 to master...

@bors-servo bors-servo merged commit 51d6b63 into master Apr 25, 2019
@highfive highfive removed the S-awaiting-merge The PR is in the process of compiling and running tests on the automated CI. label Apr 25, 2019
This was referenced Apr 25, 2019
@SimonSapin SimonSapin deleted the rustup branch April 26, 2019 12:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants