Title: [144379] trunk/Source/_javascript_Core
Revision
144379
Author
[email protected]
Date
2013-02-28 15:23:14 -0800 (Thu, 28 Feb 2013)

Log Message

Don't try to emit profiling if you don't have the DFG JIT.

Rubber stamped by Mark Hahnenberg.

* jit/JIT.h:
(JSC::JIT::shouldEmitProfiling):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (144378 => 144379)


--- trunk/Source/_javascript_Core/ChangeLog	2013-02-28 23:17:36 UTC (rev 144378)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-02-28 23:23:14 UTC (rev 144379)
@@ -1,5 +1,14 @@
 2013-02-28  Filip Pizlo  <[email protected]>
 
+        Don't try to emit profiling if you don't have the DFG JIT.
+
+        Rubber stamped by Mark Hahnenberg.
+
+        * jit/JIT.h:
+        (JSC::JIT::shouldEmitProfiling):
+
+2013-02-28  Filip Pizlo  <[email protected]>
+
         DFG Phantom node should be honest about the fact that it can exit
         https://bugs.webkit.org/show_bug.cgi?id=111115
 

Modified: trunk/Source/_javascript_Core/jit/JIT.h (144378 => 144379)


--- trunk/Source/_javascript_Core/jit/JIT.h	2013-02-28 23:17:36 UTC (rev 144378)
+++ trunk/Source/_javascript_Core/jit/JIT.h	2013-02-28 23:23:14 UTC (rev 144379)
@@ -904,7 +904,7 @@
         bool canBeOptimizedOrInlined() { return false; }
         // Enables use of value profiler with tiered compilation turned off,
         // in which case all code gets profiled.
-        bool shouldEmitProfiling() { return true; }
+        bool shouldEmitProfiling() { return false; }
 #endif
 
         Interpreter* m_interpreter;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to