Title: [289791] trunk/JSTests
- Revision
- 289791
- Author
- [email protected]
- Date
- 2022-02-15 00:26:18 -0800 (Tue, 15 Feb 2022)
Log Message
[JSC] Reduce iterations for getter-richards.js on MIPS
https://bugs.webkit.org/show_bug.cgi?id=236594
Patch by Xan Lopez <[email protected]> on 2022-02-15
Reviewed by Adrian Perez de Castro.
* typeProfiler/getter-richards.js: do 50 iterations on MIPS.
Modified Paths
Diff
Modified: trunk/JSTests/ChangeLog (289790 => 289791)
--- trunk/JSTests/ChangeLog 2022-02-15 07:34:20 UTC (rev 289790)
+++ trunk/JSTests/ChangeLog 2022-02-15 08:26:18 UTC (rev 289791)
@@ -1,3 +1,12 @@
+2022-02-15 Xan Lopez <[email protected]>
+
+ [JSC] Reduce iterations for getter-richards.js on MIPS
+ https://bugs.webkit.org/show_bug.cgi?id=236594
+
+ Reviewed by Adrian Perez de Castro.
+
+ * typeProfiler/getter-richards.js: do 50 iterations on MIPS.
+
2022-02-14 Yusuke Suzuki <[email protected]>
`Array#{ groupBy, groupByToMap }` should throw a `TypeError` when `this` is `null` or `undefined`
Modified: trunk/JSTests/typeProfiler/getter-richards.js (289790 => 289791)
--- trunk/JSTests/typeProfiler/getter-richards.js 2022-02-15 07:34:20 UTC (rev 289790)
+++ trunk/JSTests/typeProfiler/getter-richards.js 2022-02-15 08:26:18 UTC (rev 289791)
@@ -1,5 +1,8 @@
-//@ if $buildType == "debug" or not $jitTests or $architecture == "mips" then skip else runTypeProfiler end
+//@ requireOptions("-e", "let iterations=50") if ["mips"].include?($architecture)
+//@ if $buildType == "debug" or not $jitTests then skip else runTypeProfiler end
+iterations = typeof(iterations) === 'undefined' ? 150 : iterations;
+
// Copyright 2006-2008 the V8 project authors. All rights reserved.
// Copyright 2014 Apple Inc.
// Redistribution and use in source and binary forms, with or without
@@ -591,5 +594,5 @@
return "Packet";
};
-for (var i = 0; i < 150; ++i)
+for (var i = 0; i < iterations; ++i)
runRichards();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes