Title: [238000] trunk/Source/_javascript_Core
Revision
238000
Author
[email protected]
Date
2018-11-08 13:46:51 -0800 (Thu, 08 Nov 2018)

Log Message

jitEnabledByDefault() should be on useJIT not useBaselineJIT
https://bugs.webkit.org/show_bug.cgi?id=191434

Reviewed by Saam Barati.

* runtime/Options.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (237999 => 238000)


--- trunk/Source/_javascript_Core/ChangeLog	2018-11-08 21:15:24 UTC (rev 237999)
+++ trunk/Source/_javascript_Core/ChangeLog	2018-11-08 21:46:51 UTC (rev 238000)
@@ -1,3 +1,12 @@
+2018-11-08  Keith Miller  <[email protected]>
+
+        jitEnabledByDefault() should be on useJIT not useBaselineJIT
+        https://bugs.webkit.org/show_bug.cgi?id=191434
+
+        Reviewed by Saam Barati.
+
+        * runtime/Options.h:
+
 2018-11-08  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Restrict domains at the target level instead of only at the window level

Modified: trunk/Source/_javascript_Core/runtime/Options.h (237999 => 238000)


--- trunk/Source/_javascript_Core/runtime/Options.h	2018-11-08 21:15:24 UTC (rev 237999)
+++ trunk/Source/_javascript_Core/runtime/Options.h	2018-11-08 21:46:51 UTC (rev 238000)
@@ -130,8 +130,8 @@
     v(optionString, configFile, nullptr, Normal, "file to configure JSC options and logging location") \
     \
     v(bool, useLLInt,  true, Normal, "allows the LLINT to be used if true") \
-    v(bool, useJIT, true, Normal, "allows the executable pages to be allocated for JIT and thunks if true") \
-    v(bool, useBaselineJIT, jitEnabledByDefault(), Normal, "allows the baseline JIT to be used if true") \
+    v(bool, useJIT, jitEnabledByDefault(), Normal, "allows the executable pages to be allocated for JIT and thunks if true") \
+    v(bool, useBaselineJIT, true, Normal, "allows the baseline JIT to be used if true") \
     v(bool, useDFGJIT, true, Normal, "allows the DFG JIT to be used if true") \
     v(bool, useRegExpJIT, true, Normal, "allows the RegExp JIT to be used if true") \
     v(bool, useDOMJIT, is64Bit(), Normal, "allows the DOMJIT to be used if true") \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to