Title: [277989] trunk/Tools
Revision
277989
Author
mark....@apple.com
Date
2021-05-24 20:00:36 -0700 (Mon, 24 May 2021)

Log 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
75000.  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:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (277988 => 277989)


--- trunk/Tools/ChangeLog	2021-05-25 02:52:37 UTC (rev 277988)
+++ trunk/Tools/ChangeLog	2021-05-25 03:00:36 UTC (rev 277989)
@@ -1,3 +1,19 @@
+2021-05-24  Mark Lam  <mark....@apple.com>
+
+        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
+        75000.  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:
+
 2021-05-24  Chris Fleizach  <cfleiz...@apple.com>
 
         AX: Fix build failure for WK API WTF::String usage

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (277988 => 277989)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2021-05-25 02:52:37 UTC (rev 277988)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2021-05-25 03:00:36 UTC (rev 277989)
@@ -846,7 +846,7 @@
 end
 
 def runFTLNoCJITSmallPool(*optionalTestSpecificOptions)
-    run("ftl-no-cjit-small-pool", "--jitMemoryReservationSize=50000", *(FTL_OPTIONS + NO_CJIT_OPTIONS + optionalTestSpecificOptions))
+    run("ftl-no-cjit-small-pool", "--jitMemoryReservationSize=75000", *(FTL_OPTIONS + NO_CJIT_OPTIONS + optionalTestSpecificOptions))
 end
 
 def runNoCJIT(*optionalTestSpecificOptions)
@@ -1154,7 +1154,7 @@
     run("ftl-no-cjit-no-inline-validate-modules", "-m", "--validateGraph=true", "--maximumInliningDepth=1", *(FTL_OPTIONS + NO_CJIT_OPTIONS))
     run("ftl-eager-modules", "-m", *(FTL_OPTIONS + EAGER_OPTIONS))
     run("ftl-eager-no-cjit-modules", "-m", "--validateGraph=true", *(FTL_OPTIONS + NO_CJIT_OPTIONS + EAGER_OPTIONS))
-    run("ftl-no-cjit-small-pool-modules", "-m", "--jitMemoryReservationSize=50000", *(FTL_OPTIONS + NO_CJIT_OPTIONS))
+    run("ftl-no-cjit-small-pool-modules", "-m", "--jitMemoryReservationSize=75000", *(FTL_OPTIONS + NO_CJIT_OPTIONS))
 end
 
 def noNoLLIntRunModules
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to