Title: [240257] trunk/Source/_javascript_Core
Revision
240257
Author
[email protected]
Date
2019-01-22 10:33:18 -0800 (Tue, 22 Jan 2019)

Log Message

Unreviewed, restore bytecode cache-related JSC options deleted in r240254
https://bugs.webkit.org/show_bug.cgi?id=192782

The JSC options were committed as part of r240210, which got rolled out in
r240224. However, the options got re-landed in r240248  and then deleted
again in 240254 (immediately before the caching code code landed in 240255)

* runtime/Options.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (240256 => 240257)


--- trunk/Source/_javascript_Core/ChangeLog	2019-01-22 18:15:00 UTC (rev 240256)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-01-22 18:33:18 UTC (rev 240257)
@@ -1,5 +1,16 @@
 2019-01-22  Tadeu Zagallo  <[email protected]>
 
+        Unreviewed, restore bytecode cache-related JSC options deleted in r240254
+        https://bugs.webkit.org/show_bug.cgi?id=192782
+
+        The JSC options were committed as part of r240210, which got rolled out in
+        r240224. However, the options got re-landed in r240248  and then deleted
+        again in 240254 (immediately before the caching code code landed in 240255)
+
+        * runtime/Options.h:
+
+2019-01-22  Tadeu Zagallo  <[email protected]>
+
         Cache bytecode to disk
         https://bugs.webkit.org/show_bug.cgi?id=192782
         <rdar://problem/46084932>

Modified: trunk/Source/_javascript_Core/runtime/Options.h (240256 => 240257)


--- trunk/Source/_javascript_Core/runtime/Options.h	2019-01-22 18:15:00 UTC (rev 240256)
+++ trunk/Source/_javascript_Core/runtime/Options.h	2019-01-22 18:33:18 UTC (rev 240257)
@@ -509,6 +509,8 @@
     v(bool, traceLLIntSlowPath, false, Configurable, nullptr) \
     v(bool, traceBaselineJITExecution, false, Normal, nullptr) \
     v(unsigned, thresholdForGlobalLexicalBindingEpoch, UINT_MAX, Normal, "Threshold for global lexical binding epoch. If the epoch reaches to this value, CodeBlock metadata for scope operations will be revised globally. It needs to be greater than 1.") \
+    v(optionString, diskCachePath, nullptr, Restricted, nullptr) \
+    v(bool, forceDiskCache, false, Restricted, nullptr) \
 
 
 enum OptionEquivalence {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to