Title: [201768] trunk/Source/_javascript_Core
Revision
201768
Author
sbar...@apple.com
Date
2016-06-07 13:07:56 -0700 (Tue, 07 Jun 2016)

Log Message

operationProcessTypeProfilerLogDFG doesn't update topCallFrame
https://bugs.webkit.org/show_bug.cgi?id=158428
<rdar://problem/26571493>

Reviewed by Mark Lam.

* dfg/DFGOperations.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (201767 => 201768)


--- trunk/Source/_javascript_Core/ChangeLog	2016-06-07 20:05:36 UTC (rev 201767)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-06-07 20:07:56 UTC (rev 201768)
@@ -1,3 +1,13 @@
+2016-06-07  Saam Barati  <sbar...@apple.com>
+
+        operationProcessTypeProfilerLogDFG doesn't update topCallFrame
+        https://bugs.webkit.org/show_bug.cgi?id=158428
+        <rdar://problem/26571493>
+
+        Reviewed by Mark Lam.
+
+        * dfg/DFGOperations.cpp:
+
 2016-06-07  Mark Lam  <mark....@apple.com>
 
         calculatedDisplayName() and friends actually need a VM& and not a ExecState/CallFrame.

Modified: trunk/Source/_javascript_Core/dfg/DFGOperations.cpp (201767 => 201768)


--- trunk/Source/_javascript_Core/dfg/DFGOperations.cpp	2016-06-07 20:05:36 UTC (rev 201767)
+++ trunk/Source/_javascript_Core/dfg/DFGOperations.cpp	2016-06-07 20:07:56 UTC (rev 201768)
@@ -1567,7 +1567,10 @@
 
 void JIT_OPERATION operationProcessTypeProfilerLogDFG(ExecState* exec) 
 {
-    exec->vm().typeProfilerLog()->processLogEntries(ASCIILiteral("Log Full, called from inside DFG."));
+    VM& vm = exec->vm();
+    NativeCallFrameTracer tracer(&vm, exec);
+
+    vm.typeProfilerLog()->processLogEntries(ASCIILiteral("Log Full, called from inside DFG."));
 }
 
 void JIT_OPERATION debugOperationPrintSpeculationFailure(ExecState* exec, void* debugInfoRaw, void* scratch)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to