Title: [238012] trunk/Source/_javascript_Core
Revision
238012
Author
[email protected]
Date
2018-11-08 17:34:20 -0800 (Thu, 08 Nov 2018)

Log Message

Options::useRegExpJIT() should use jitEnabledByDefault() just like useJIT()
https://bugs.webkit.org/show_bug.cgi?id=191444

Reviewed by Saam Barati.

* runtime/Options.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (238011 => 238012)


--- trunk/Source/_javascript_Core/ChangeLog	2018-11-09 01:29:52 UTC (rev 238011)
+++ trunk/Source/_javascript_Core/ChangeLog	2018-11-09 01:34:20 UTC (rev 238012)
@@ -1,3 +1,12 @@
+2018-11-08  Michael Saboff  <[email protected]>
+
+        Options::useRegExpJIT() should use jitEnabledByDefault() just like useJIT()
+        https://bugs.webkit.org/show_bug.cgi?id=191444
+
+        Reviewed by Saam Barati.
+
+        * runtime/Options.h:
+
 2018-11-08  Fujii Hironori  <[email protected]>
 
         [Win] UDis86Disassembler.cpp: warning: format specifies type 'unsigned long' but the argument has type 'uintptr_t' (aka 'unsigned long long')

Modified: trunk/Source/_javascript_Core/runtime/Options.h (238011 => 238012)


--- trunk/Source/_javascript_Core/runtime/Options.h	2018-11-09 01:29:52 UTC (rev 238011)
+++ trunk/Source/_javascript_Core/runtime/Options.h	2018-11-09 01:34:20 UTC (rev 238012)
@@ -133,7 +133,7 @@
     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, useRegExpJIT, jitEnabledByDefault(), Normal, "allows the RegExp JIT to be used if true") \
     v(bool, useDOMJIT, is64Bit(), Normal, "allows the DOMJIT to be used if true") \
     \
     v(bool, reportMustSucceedExecutableAllocations, false, Normal, nullptr) \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to