-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[vm] postpone creation of handles for show/hide lists #60473
base: main
Are you sure you want to change the base?
Conversation
fixes: dart-lang#60470 for some reason it fixes deallocation of empty show/hide lists
Thank you for your contribution! This project uses Gerrit for code reviews. Your pull request has automatically been converted into a code review at: https://dart-review.googlesource.com/c/sdk/+/420301 Please wait for a developer to review your code review at the above link; you can speed up the review if you sign into Gerrit and manually add a reviewer that has recently worked on the relevant code. See CONTRIBUTING.md to learn how to upload changes to Gerrit directly. Additional commits pushed to this PR will update both the PR and the corresponding Gerrit CL. After the review is complete on the CL, your reviewer will merge the CL (automatically closing this PR). |
https://dart-review.googlesource.com/c/sdk/+/420301 has been updated with the latest commits from this pull request. |
Interesting, thanks. I think we can land it - though notice that you also need to add two checks Could you try the patch1 from this CL instead of this one against your code base? I am curious how that performs with respect to memory usage. I think we need to be more vigilant with handles when loading kernel, I suspect loading produces loads of those and all temporary objects and handles themselves are retained until the loading completes and surrounding Footnotes
|
https://dart-review.googlesource.com/c/sdk/+/420301 has been updated with the latest commits from this pull request. |
1 similar comment
https://dart-review.googlesource.com/c/sdk/+/420301 has been updated with the latest commits from this pull request. |
done
|
execution time under profiler was consistently better with both patches applied, i'm running a benchmark to see if the difference is real (will be done in approx 3.5 hours) |
Closes dart-lang#60473 GitOrigin-RevId: 4e731c9 Change-Id: I5dd9b179ff0ed4f546ca0fea16456ccda7545f10
diff between https://dart-review.googlesource.com/c/sdk/+/420321 and both fixes is not convincing enough yet, but overall these fixes seems to reduce gen_snapshot time by ~7% for our app Will check against a commit that can be built with a version without these fixes and try to remove additional noise by measuring only the LoadProgram step tomorrow result
script: output:
|
new measurements: 2 patches combined reduce time spent before ProcessPendingClasses by 2/3 measurements
patch
diff --git a/runtime/vm/kernel_loader.cc b/runtime/vm/kernel_loader.cc
index 22bf6773536..0c9fa5fde5f 100644
--- a/runtime/vm/kernel_loader.cc
+++ b/runtime/vm/kernel_loader.cc
@@ -512,6 +512,7 @@ ObjectPtr KernelLoader::LoadProgram(bool process_pending_classes) {
for (intptr_t i = 0; i < length; i++) {
LoadLibrary(i);
}
+ OS::Exit(0);
// Finalize still pending classes if requested.
if (process_pending_classes) {
masured by: https://gist.github.com/2ZeroSix/28a62636f87b3ed42028f3c53d128e1e
|
fixes: #60470
for some reason it fixes deallocation of empty show/hide lists
before (ends with out of memory):

after:

Contribution guidelines:
dart format
.Note that this repository uses Gerrit for code reviews. Your pull request will be automatically converted into a Gerrit CL and a link to the CL written into this PR. The review will happen on Gerrit but you can also push additional commits to this PR to update the code review.