Title: [162484] branches/jsCStack/Source/_javascript_Core
Revision
162484
Author
[email protected]
Date
2014-01-21 16:42:52 -0800 (Tue, 21 Jan 2014)

Log Message

FTL should support AllocationProfileWatchpoint
https://bugs.webkit.org/show_bug.cgi?id=127383

Rubber stamped by Mark Hahnenberg.

* ftl/FTLCapabilities.cpp:
(JSC::FTL::canCompile):
* ftl/FTLLowerDFGToLLVM.cpp:
(JSC::FTL::LowerDFGToLLVM::compileNode):

Modified Paths

Diff

Modified: branches/jsCStack/Source/_javascript_Core/ChangeLog (162483 => 162484)


--- branches/jsCStack/Source/_javascript_Core/ChangeLog	2014-01-22 00:28:04 UTC (rev 162483)
+++ branches/jsCStack/Source/_javascript_Core/ChangeLog	2014-01-22 00:42:52 UTC (rev 162484)
@@ -1,3 +1,15 @@
+2014-01-21  Filip Pizlo  <[email protected]>
+
+        FTL should support AllocationProfileWatchpoint
+        https://bugs.webkit.org/show_bug.cgi?id=127383
+
+        Rubber stamped by Mark Hahnenberg.
+
+        * ftl/FTLCapabilities.cpp:
+        (JSC::FTL::canCompile):
+        * ftl/FTLLowerDFGToLLVM.cpp:
+        (JSC::FTL::LowerDFGToLLVM::compileNode):
+
 2014-01-20  Filip Pizlo  <[email protected]>
 
         IC status classes should directly query exit site information

Modified: branches/jsCStack/Source/_javascript_Core/ftl/FTLCapabilities.cpp (162483 => 162484)


--- branches/jsCStack/Source/_javascript_Core/ftl/FTLCapabilities.cpp	2014-01-22 00:28:04 UTC (rev 162483)
+++ branches/jsCStack/Source/_javascript_Core/ftl/FTLCapabilities.cpp	2014-01-22 00:42:52 UTC (rev 162484)
@@ -122,6 +122,7 @@
     case CountExecution:
     case CheckExecutable:
     case GetScope:
+    case AllocationProfileWatchpoint:
         // These are OK.
         break;
     case GetById:

Modified: branches/jsCStack/Source/_javascript_Core/ftl/FTLLowerDFGToLLVM.cpp (162483 => 162484)


--- branches/jsCStack/Source/_javascript_Core/ftl/FTLLowerDFGToLLVM.cpp	2014-01-22 00:28:04 UTC (rev 162483)
+++ branches/jsCStack/Source/_javascript_Core/ftl/FTLLowerDFGToLLVM.cpp	2014-01-22 00:42:52 UTC (rev 162484)
@@ -529,6 +529,7 @@
         case VariableWatchpoint:
         case FunctionReentryWatchpoint:
         case TypedArrayWatchpoint:
+        case AllocationProfileWatchpoint:
             break;
         default:
             RELEASE_ASSERT_NOT_REACHED();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to