Title: [199685] trunk/Source/_javascript_Core
Revision
199685
Author
[email protected]
Date
2016-04-18 13:28:51 -0700 (Mon, 18 Apr 2016)

Log Message

Check to see how the perf bots react to megamorphic load being disabled.

Rubber stamped by Chris Dumez.

* runtime/Options.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (199684 => 199685)


--- trunk/Source/_javascript_Core/ChangeLog	2016-04-18 20:26:12 UTC (rev 199684)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-04-18 20:28:51 UTC (rev 199685)
@@ -1,3 +1,11 @@
+2016-04-18  Filip Pizlo  <[email protected]>
+
+        Check to see how the perf bots react to megamorphic load being disabled.
+
+        Rubber stamped by Chris Dumez.
+
+        * runtime/Options.h:
+
 2016-04-18  Keith Miller  <[email protected]>
 
         We should support delete in the DFG

Modified: trunk/Source/_javascript_Core/runtime/Options.h (199684 => 199685)


--- trunk/Source/_javascript_Core/runtime/Options.h	2016-04-18 20:26:12 UTC (rev 199684)
+++ trunk/Source/_javascript_Core/runtime/Options.h	2016-04-18 20:28:51 UTC (rev 199685)
@@ -192,7 +192,7 @@
     v(bool, clobberAllRegsInFTLICSlowPath, !ASSERT_DISABLED, nullptr) \
     v(bool, useAccessInlining, true, nullptr) \
     v(unsigned, maxAccessVariantListSize, 13, nullptr) \
-    v(unsigned, megamorphicLoadCost, 10, nullptr) \
+    v(unsigned, megamorphicLoadCost, 999, nullptr) /* This used to be 10, but we're temporarily testing what happens when the feature is disabled. */\
     v(bool, usePolyvariantDevirtualization, true, nullptr) \
     v(bool, usePolymorphicAccessInlining, true, nullptr) \
     v(bool, usePolymorphicCallInlining, true, nullptr) \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to