Title: [230145] trunk/Source/_javascript_Core
Revision
230145
Author
fpi...@apple.com
Date
2018-04-01 12:46:05 -0700 (Sun, 01 Apr 2018)

Log Message

Raise the for-call inlining threshold to 190 to fix JetStream/richards regression
https://bugs.webkit.org/show_bug.cgi?id=184228

Reviewed by Yusuke Suzuki.

* runtime/Options.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (230144 => 230145)


--- trunk/Source/_javascript_Core/ChangeLog	2018-04-01 17:57:53 UTC (rev 230144)
+++ trunk/Source/_javascript_Core/ChangeLog	2018-04-01 19:46:05 UTC (rev 230145)
@@ -1,3 +1,12 @@
+2018-04-01  Filip Pizlo  <fpi...@apple.com>
+
+        Raise the for-call inlining threshold to 190 to fix JetStream/richards regression
+        https://bugs.webkit.org/show_bug.cgi?id=184228
+
+        Reviewed by Yusuke Suzuki.
+
+        * runtime/Options.h:
+
 2018-03-31  Filip Pizlo  <fpi...@apple.com>
 
         JSObject shouldn't do index masking

Modified: trunk/Source/_javascript_Core/runtime/Options.h (230144 => 230145)


--- trunk/Source/_javascript_Core/runtime/Options.h	2018-04-01 17:57:53 UTC (rev 230144)
+++ trunk/Source/_javascript_Core/runtime/Options.h	2018-04-01 19:46:05 UTC (rev 230145)
@@ -288,7 +288,7 @@
     \
     v(unsigned, maximumOptimizationCandidateInstructionCount, 100000, Normal, nullptr) \
     \
-    v(unsigned, maximumFunctionForCallInlineCandidateInstructionCount, 180, Normal, nullptr) \
+    v(unsigned, maximumFunctionForCallInlineCandidateInstructionCount, 190, Normal, nullptr) \
     v(unsigned, maximumFunctionForClosureCallInlineCandidateInstructionCount, 100, Normal, nullptr) \
     v(unsigned, maximumFunctionForConstructInlineCandidateInstructionCount, 100, Normal, nullptr) \
     \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to