Title: [118257] trunk/Source/_javascript_Core
Revision
118257
Author
[email protected]
Date
2012-05-23 15:25:21 -0700 (Wed, 23 May 2012)

Log Message

It should be possible to make C function calls from DFG code on ARM in debug mode
https://bugs.webkit.org/show_bug.cgi?id=87313

Reviewed by Gavin Barraclough.

* dfg/DFGSpeculativeJIT.h:
(SpeculativeJIT):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (118256 => 118257)


--- trunk/Source/_javascript_Core/ChangeLog	2012-05-23 22:22:16 UTC (rev 118256)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-05-23 22:25:21 UTC (rev 118257)
@@ -1,3 +1,13 @@
+2012-05-23  Filip Pizlo  <[email protected]>
+
+        It should be possible to make C function calls from DFG code on ARM in debug mode
+        https://bugs.webkit.org/show_bug.cgi?id=87313
+
+        Reviewed by Gavin Barraclough.
+
+        * dfg/DFGSpeculativeJIT.h:
+        (SpeculativeJIT):
+
 2012-05-11  Filip Pizlo  <[email protected]>
 
         DFG should be able to inline functions that use arguments reflectively

Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h (118256 => 118257)


--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h	2012-05-23 22:22:16 UTC (rev 118256)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h	2012-05-23 22:25:21 UTC (rev 118257)
@@ -1749,7 +1749,7 @@
     }
 #endif
     
-#ifndef NDEBUG
+#if !defined(NDEBUG) && !CPU(ARM_THUMB2)
     void prepareForExternalCall()
     {
         for (unsigned i = 0; i < sizeof(void*) / 4; i++)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to