Title: [218820] trunk/Source/_javascript_Core
- Revision
- 218820
- Author
- [email protected]
- Date
- 2017-06-26 13:17:50 -0700 (Mon, 26 Jun 2017)
Log Message
Renamed DumpRegisterFunctor to DumpReturnVirtualPCFunctor.
https://bugs.webkit.org/show_bug.cgi?id=173848
Reviewed by JF Bastien.
This functor only dumps the return VirtualPC.
* interpreter/Interpreter.cpp:
(JSC::DumpReturnVirtualPCFunctor::DumpReturnVirtualPCFunctor):
(JSC::Interpreter::dumpRegisters):
(JSC::DumpRegisterFunctor::DumpRegisterFunctor): Deleted.
(JSC::DumpRegisterFunctor::operator()): Deleted.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (218819 => 218820)
--- trunk/Source/_javascript_Core/ChangeLog 2017-06-26 19:34:21 UTC (rev 218819)
+++ trunk/Source/_javascript_Core/ChangeLog 2017-06-26 20:17:50 UTC (rev 218820)
@@ -1,3 +1,18 @@
+2017-06-26 Mark Lam <[email protected]>
+
+ Renamed DumpRegisterFunctor to DumpReturnVirtualPCFunctor.
+ https://bugs.webkit.org/show_bug.cgi?id=173848
+
+ Reviewed by JF Bastien.
+
+ This functor only dumps the return VirtualPC.
+
+ * interpreter/Interpreter.cpp:
+ (JSC::DumpReturnVirtualPCFunctor::DumpReturnVirtualPCFunctor):
+ (JSC::Interpreter::dumpRegisters):
+ (JSC::DumpRegisterFunctor::DumpRegisterFunctor): Deleted.
+ (JSC::DumpRegisterFunctor::operator()): Deleted.
+
2017-06-26 Saam Barati <[email protected]>
Crash in JSC::Lexer<unsigned char>::setCode
Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (218819 => 218820)
--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2017-06-26 19:34:21 UTC (rev 218819)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2017-06-26 20:17:50 UTC (rev 218820)
@@ -367,9 +367,9 @@
dumpRegisters(callFrame);
}
-class DumpRegisterFunctor {
+class DumpReturnVirtualPCFunctor {
public:
- DumpRegisterFunctor(const Register*& it)
+ DumpReturnVirtualPCFunctor(const Register*& it)
: m_hasSkippedFirstFrame(false)
, m_it(it)
{
@@ -431,7 +431,7 @@
dataLogF("[ReturnJITPC] | %10p | %p \n", it, pc.jitReturnAddress().value());
#endif
- DumpRegisterFunctor functor(it);
+ DumpReturnVirtualPCFunctor functor(it);
callFrame->iterate(functor);
dataLogF("[CodeBlock] | %10p | %p \n", it, callFrame->codeBlock());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes