Title: [265741] trunk/JSTests
Revision
265741
Author
[email protected]
Date
2020-08-16 01:16:10 -0700 (Sun, 16 Aug 2020)

Log Message

Unreviewed, reduce iteration count more for non-JIT environments

If JSC does not have JIT, many iterations do not matter.

* stress/memcpy-typed-loops.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (265740 => 265741)


--- trunk/JSTests/ChangeLog	2020-08-15 22:53:41 UTC (rev 265740)
+++ trunk/JSTests/ChangeLog	2020-08-16 08:16:10 UTC (rev 265741)
@@ -1,3 +1,11 @@
+2020-08-16  Yusuke Suzuki  <[email protected]>
+
+        Unreviewed, reduce iteration count more for non-JIT environments
+
+        If JSC does not have JIT, many iterations do not matter.
+
+        * stress/memcpy-typed-loops.js:
+
 2020-08-12  Keith Miller  <[email protected]>
 
         OSRAvailabilityAnalysis shouldn't mark GetStack nodes directly as valid places for recovery

Modified: trunk/JSTests/stress/memcpy-typed-loops.js (265740 => 265741)


--- trunk/JSTests/stress/memcpy-typed-loops.js	2020-08-15 22:53:41 UTC (rev 265740)
+++ trunk/JSTests/stress/memcpy-typed-loops.js	2020-08-16 08:16:10 UTC (rev 265741)
@@ -27,7 +27,7 @@
     arr1[i] = i
 }
 
-const iterationCount = $vm.useJIT() ? 10000000 : 100000;
+const iterationCount = $vm.useJIT() ? 10000000 : 100;
 for (let i=0; i<iterationCount; ++i) noLoop(arr1, arr2)
 for (let i=0; i<iterationCount; ++i) invalidStart(arr1, arr2)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to