Title: [189050] branches/jsc-tailcall/Source/_javascript_Core
Revision
189050
Author
[email protected]
Date
2015-08-27 14:13:39 -0700 (Thu, 27 Aug 2015)

Log Message

Unreviewed, re-enable the FTL
https://bugs.webkit.org/show_bug.cgi?id=146942

We are not using the register preservation thunk anymore, so we can
have both the FTL and tail calls!

* runtime/Options.h:

Modified Paths

Diff

Modified: branches/jsc-tailcall/Source/_javascript_Core/ChangeLog (189049 => 189050)


--- branches/jsc-tailcall/Source/_javascript_Core/ChangeLog	2015-08-27 21:13:37 UTC (rev 189049)
+++ branches/jsc-tailcall/Source/_javascript_Core/ChangeLog	2015-08-27 21:13:39 UTC (rev 189050)
@@ -1,3 +1,13 @@
+2015-08-27  Basile Clement  <[email protected]>
+
+        Unreviewed, re-enable the FTL
+        https://bugs.webkit.org/show_bug.cgi?id=146942
+
+        We are not using the register preservation thunk anymore, so we can
+        have both the FTL and tail calls!
+
+        * runtime/Options.h:
+
 2015-08-27  Michael Saboff  <[email protected]>
 
         jsc-tailcall: Test failures with FTL enabled after r188986

Modified: branches/jsc-tailcall/Source/_javascript_Core/runtime/Options.h (189049 => 189050)


--- branches/jsc-tailcall/Source/_javascript_Core/runtime/Options.h	2015-08-27 21:13:37 UTC (rev 189049)
+++ branches/jsc-tailcall/Source/_javascript_Core/runtime/Options.h	2015-08-27 21:13:39 UTC (rev 189050)
@@ -157,7 +157,7 @@
     v(bool, enableOSREntryToDFG, true, nullptr) \
     v(bool, enableOSREntryToFTL, true, nullptr) \
     \
-    v(bool, useFTLJIT, false, "allows the FTL JIT to be used if true") \
+    v(bool, useFTLJIT, true, "allows the FTL JIT to be used if true") \
     v(bool, useFTLTBAA, true, nullptr) \
     v(bool, enableLLVMFastISel, false, nullptr) \
     v(bool, useLLVMSmallCodeModel, false, nullptr) \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to