Changeset 277989 in webkit


Ignore:
Timestamp:
May 24, 2021 8:00:36 PM (3 years ago)
Author:
mark.lam@apple.com
Message:

Raise jitMemoryReservationSize for ftl-no-cjit-small-pool* tests.
https://bugs.webkit.org/show_bug.cgi?id=226205

Reviewed by Saam Barati.

Raise jitMemoryReservationSize for ftl-no-cjit-small-pool* tests from 50000 to

  1. The 50000 number was picked years ago to be a size that is small, but is

still large enough for JSC tests to pass. 50000 appears to not be sufficient
anymore. This has caused some JSC tests to fail intermittently on the EWS bots.

Raising the size to 75000 to give the tests a little more room to work in.

  • Scripts/run-jsc-stress-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r277987 r277989  
     12021-05-24  Mark Lam  <mark.lam@apple.com>
     2
     3        Raise jitMemoryReservationSize for ftl-no-cjit-small-pool* tests.
     4        https://bugs.webkit.org/show_bug.cgi?id=226205
     5
     6        Reviewed by Saam Barati.
     7
     8        Raise jitMemoryReservationSize for ftl-no-cjit-small-pool* tests from 50000 to
     9        75000.  The 50000 number was picked years ago to be a size that is small, but is
     10        still large enough for JSC tests to pass.  50000 appears to not be sufficient
     11        anymore.  This has caused some JSC tests to fail intermittently on the EWS bots.
     12
     13        Raising the size to 75000 to give the tests a little more room to work in.
     14
     15        * Scripts/run-jsc-stress-tests:
     16
    1172021-05-24  Chris Fleizach  <cfleizach@apple.com>
    218
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r277318 r277989  
    847847
    848848def runFTLNoCJITSmallPool(*optionalTestSpecificOptions)
    849     run("ftl-no-cjit-small-pool", "--jitMemoryReservationSize=50000", *(FTL_OPTIONS + NO_CJIT_OPTIONS + optionalTestSpecificOptions))
     849    run("ftl-no-cjit-small-pool", "--jitMemoryReservationSize=75000", *(FTL_OPTIONS + NO_CJIT_OPTIONS + optionalTestSpecificOptions))
    850850end
    851851
     
    11551155    run("ftl-eager-modules", "-m", *(FTL_OPTIONS + EAGER_OPTIONS))
    11561156    run("ftl-eager-no-cjit-modules", "-m", "--validateGraph=true", *(FTL_OPTIONS + NO_CJIT_OPTIONS + EAGER_OPTIONS))
    1157     run("ftl-no-cjit-small-pool-modules", "-m", "--jitMemoryReservationSize=50000", *(FTL_OPTIONS + NO_CJIT_OPTIONS))
     1157    run("ftl-no-cjit-small-pool-modules", "-m", "--jitMemoryReservationSize=75000", *(FTL_OPTIONS + NO_CJIT_OPTIONS))
    11581158end
    11591159
Note: See TracChangeset for help on using the changeset viewer.