WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
165758
GC scheduler should avoid consecutive pauses
https://bugs.webkit.org/show_bug.cgi?id=165758
Summary
GC scheduler should avoid consecutive pauses
Filip Pizlo
Reported
2016-12-12 09:43:58 PST
Patch forthcoming.
Attachments
the patch
(25.01 KB, patch)
2016-12-12 09:46 PST
,
Filip Pizlo
msaboff
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Filip Pizlo
Comment 1
2016-12-12 09:46:40 PST
Created
attachment 296927
[details]
the patch
Michael Saboff
Comment 2
2016-12-12 10:04:51 PST
Comment on
attachment 296927
[details]
the patch View in context:
https://bugs.webkit.org/attachment.cgi?id=296927&action=review
> Source/JavaScriptCore/ChangeLog:8 > + This factors out the scheduler from a bunch of lambdas and closed-over variables in
Should this read "... from the scheduler a bunch ..."?
> Source/JavaScriptCore/ChangeLog:14 > + still had time during a mutator timeslice. This greatly splay-latency. I'm still testing
Fix the sentence "This greatly splay-latency."
Darin Adler
Comment 3
2016-12-12 10:05:22 PST
Comment on
attachment 296927
[details]
the patch View in context:
https://bugs.webkit.org/attachment.cgi?id=296927&action=review
> Source/JavaScriptCore/heap/SpaceTimeScheduler.cpp:111 > + std::max( > + m_bytesAllocatedThisCycleAtTheBeginning, > + static_cast<double>(heap.m_maxEdenSize)))
I like writing it this way: std::max<double>( ... <<no static_cast needed here>> heap.m_maxEdenSize))
> Source/JavaScriptCore/heap/SpaceTimeScheduler.h:39 > + Decision() { }
This isn’t needed. If we leave it out, it gets generated with exactly the same contents as if we write this.
Filip Pizlo
Comment 4
2016-12-12 10:50:58 PST
(In reply to
comment #3
)
> Comment on
attachment 296927
[details]
> the patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=296927&action=review
> > > Source/JavaScriptCore/heap/SpaceTimeScheduler.cpp:111 > > + std::max( > > + m_bytesAllocatedThisCycleAtTheBeginning, > > + static_cast<double>(heap.m_maxEdenSize))) > > I like writing it this way: > > std::max<double>( ... <<no static_cast needed here>> heap.m_maxEdenSize))
That's so much better! I never thought to specialize max explicitly.
> > > Source/JavaScriptCore/heap/SpaceTimeScheduler.h:39 > > + Decision() { } > > This isn’t needed. If we leave it out, it gets generated with exactly the > same contents as if we write this.
Thanks! I always forget the exact rules. Maybe I wrote too much Java in a past life.
Filip Pizlo
Comment 5
2016-12-12 14:05:26 PST
(In reply to
comment #2
)
> Comment on
attachment 296927
[details]
> the patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=296927&action=review
> > > Source/JavaScriptCore/ChangeLog:8 > > + This factors out the scheduler from a bunch of lambdas and closed-over variables in > > Should this read "... from the scheduler a bunch ..."? > > > Source/JavaScriptCore/ChangeLog:14 > > + still had time during a mutator timeslice. This greatly splay-latency. I'm still testing > > Fix the sentence "This greatly splay-latency."
Fixed!
Filip Pizlo
Comment 6
2016-12-12 14:07:52 PST
Landed in
https://trac.webkit.org/changeset/209727
Filip Pizlo
Comment 7
2016-12-12 14:08:13 PST
***
Bug 164940
has been marked as a duplicate of this bug. ***
Chris Dumez
Comment 8
2016-12-13 13:34:40 PST
(In reply to
comment #6
)
> Landed in
https://trac.webkit.org/changeset/209727
I am still confirming but this was likely a ~4% Speedometer regression on Mac.
Filip Pizlo
Comment 9
2016-12-13 13:38:07 PST
(In reply to
comment #8
)
> (In reply to
comment #6
) > > Landed in
https://trac.webkit.org/changeset/209727
> > I am still confirming but this was likely a ~4% Speedometer regression on > Mac.
The policy change in this patch was already rolled out.
Chris Dumez
Comment 10
2016-12-13 13:40:47 PST
(In reply to
comment #9
)
> (In reply to
comment #8
) > > (In reply to
comment #6
) > > > Landed in
https://trac.webkit.org/changeset/209727
> > > > I am still confirming but this was likely a ~4% Speedometer regression on > > Mac. > > The policy change in this patch was already rolled out.
Could you point me to the revision of the rollout please so I can confirm the progression then?
Filip Pizlo
Comment 11
2016-12-13 13:53:23 PST
(In reply to
comment #10
)
> (In reply to
comment #9
) > > (In reply to
comment #8
) > > > (In reply to
comment #6
) > > > > Landed in
https://trac.webkit.org/changeset/209727
> > > > > > I am still confirming but this was likely a ~4% Speedometer regression on > > > Mac. > > > > The policy change in this patch was already rolled out. > > Could you point me to the revision of the rollout please so I can confirm > the progression then?
https://trac.webkit.org/changeset/209763
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug