Title: [249116] trunk/Tools
Revision
249116
Author
[email protected]
Date
2019-08-26 13:42:48 -0700 (Mon, 26 Aug 2019)

Log Message

Unreviewed, remove useMaximalFlushInsertionPhase use
https://bugs.webkit.org/show_bug.cgi?id=201036

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (249115 => 249116)


--- trunk/Tools/ChangeLog	2019-08-26 20:26:50 UTC (rev 249115)
+++ trunk/Tools/ChangeLog	2019-08-26 20:42:48 UTC (rev 249116)
@@ -1,3 +1,10 @@
+2019-08-26  Yusuke Suzuki  <[email protected]>
+
+        Unreviewed, remove useMaximalFlushInsertionPhase use
+        https://bugs.webkit.org/show_bug.cgi?id=201036
+
+        * Scripts/run-jsc-stress-tests:
+
 2019-08-26  David Kilzer  <[email protected]>
 
         Don't compute upconverted characters twice in buildQuery() in DataDetection.mm

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (249115 => 249116)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2019-08-26 20:26:50 UTC (rev 249115)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2019-08-26 20:42:48 UTC (rev 249116)
@@ -776,8 +776,8 @@
     run("no-cjit", *(NO_CJIT_OPTIONS + optionalTestSpecificOptions))
 end
 
-def runDFGMaximalFlushPhase(*optionalTestSpecificOptions)
-    run("dfg-maximal-flush-validate-no-cjit", "--forceCodeBlockToJettisonDueToOldAge=true", "--validateGraph=true", "--useMaximalFlushInsertionPhase=true", *(NO_CJIT_OPTIONS + optionalTestSpecificOptions))
+def runEagerJettisonNoCJIT(*optionalTestSpecificOptions)
+    run("eager-jettison-no-cjit", "--forceCodeBlockToJettisonDueToOldAge=true", *(NO_CJIT_OPTIONS + optionalTestSpecificOptions))
 end
 
 def runShadowChicken(*optionalTestSpecificOptions)
@@ -802,7 +802,7 @@
             runDFGEager
             if $mode != "basic"
                 runDFGEagerNoCJITValidate
-                runDFGMaximalFlushPhase
+                runEagerJettisonNoCJIT
             end
 
             return if !$isFTLPlatform
@@ -834,7 +834,7 @@
             runDFGEager
             if $mode != "basic"
                 runDFGEagerNoCJITValidate
-                runDFGMaximalFlushPhase
+                runEagerJettisonNoCJIT
             end
 
             return if !$isFTLPlatform
@@ -879,7 +879,7 @@
 
 def defaultSpotCheck
     defaultSpotCheckNoMaximalFlush
-    runDFGMaximalFlushPhase
+    runEagerJettisonNoCJIT
 end
 
 # This is expected to not do eager runs because eager runs can have a lot of recompilations
@@ -912,7 +912,7 @@
         runNoCJITCollectContinuously if shouldCollectContinuously?
         runDFGEager
         runDFGEagerNoCJITValidate
-        runDFGMaximalFlushPhase
+        runEagerJettisonNoCJIT
 
         return if !$isFTLPlatform
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to