Changeset 216960 in webkit


Ignore:
Timestamp:
May 16, 2017 5:12:36 PM (7 years ago)
Author:
msaboff@apple.com
Message:

REGRESSION(r216763): JetStream is 1% slower on Mac
https://bugs.webkit.org/show_bug.cgi?id=172124

Reviewed by Filip Pizlo.

It appears that changing maxScavengeSleepDuration from 512 to 250ms in r216763 is
responsible for the regression.

  • bmalloc/Sizes.h:
Location:
trunk/Source/bmalloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/bmalloc/ChangeLog

    r216895 r216960  
     12017-05-16  Michael Saboff  <msaboff@apple.com>
     2
     3        REGRESSION(r216763): JetStream is 1% slower on Mac
     4        https://bugs.webkit.org/show_bug.cgi?id=172124
     5
     6        Reviewed by Filip Pizlo.
     7
     8        It appears that changing maxScavengeSleepDuration from 512 to 250ms in r216763 is
     9        responsible for the regression.
     10
     11        * bmalloc/Sizes.h:
     12
    1132017-05-15  Geoffrey Garen  <ggaren@apple.com>
    214
  • trunk/Source/bmalloc/bmalloc/Sizes.h

    r216895 r216960  
    6969    static const size_t bumpRangeCacheCapacity = 3;
    7070   
    71     static const std::chrono::milliseconds maxScavengeSleepDuration = std::chrono::milliseconds(250);
     71    static const std::chrono::milliseconds maxScavengeSleepDuration = std::chrono::milliseconds(512);
    7272
    7373    static const size_t maskSizeClassCount = maskSizeClassMax / alignment;
Note: See TracChangeset for help on using the changeset viewer.