diff options
Diffstat (limited to 'Source/JavaScriptCore/profiler/ProfileGenerator.cpp')
| -rw-r--r-- | Source/JavaScriptCore/profiler/ProfileGenerator.cpp | 161 |
1 files changed, 63 insertions, 98 deletions
diff --git a/Source/JavaScriptCore/profiler/ProfileGenerator.cpp b/Source/JavaScriptCore/profiler/ProfileGenerator.cpp index f70e4a3f6..9361caf70 100644 --- a/Source/JavaScriptCore/profiler/ProfileGenerator.cpp +++ b/Source/JavaScriptCore/profiler/ProfileGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008, 2014 Apple Inc. All Rights Reserved. + * Copyright (C) 2008 Apple Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -27,46 +27,44 @@ #include "ProfileGenerator.h" #include "CallFrame.h" +#include "CallFrameInlines.h" #include "CodeBlock.h" #include "JSGlobalObject.h" #include "JSStringRef.h" #include "JSFunction.h" #include "LegacyProfiler.h" -#include "JSCInlines.h" +#include "Operations.h" #include "Profile.h" #include "StackVisitor.h" #include "Tracing.h" namespace JSC { -Ref<ProfileGenerator> ProfileGenerator::create(ExecState* exec, const String& title, unsigned uid, PassRefPtr<Stopwatch> stopwatch) +static const char* NonJSExecution = "(idle)"; + +PassRefPtr<ProfileGenerator> ProfileGenerator::create(ExecState* exec, const String& title, unsigned uid) { - return adoptRef(*new ProfileGenerator(exec, title, uid, stopwatch)); + return adoptRef(new ProfileGenerator(exec, title, uid)); } -ProfileGenerator::ProfileGenerator(ExecState* exec, const String& title, unsigned uid, PassRefPtr<Stopwatch> stopwatch) - : m_origin(exec ? exec->lexicalGlobalObject() : nullptr) +ProfileGenerator::ProfileGenerator(ExecState* exec, const String& title, unsigned uid) + : m_origin(exec ? exec->lexicalGlobalObject() : 0) , m_profileGroup(exec ? exec->lexicalGlobalObject()->profileGroup() : 0) - , m_stopwatch(stopwatch) - , m_foundConsoleStartParent(false) - , m_suspended(false) { - double startTime = m_stopwatch->elapsedTime(); - m_profile = Profile::create(title, uid, startTime); - m_currentNode = m_rootNode = m_profile->rootNode(); + m_profile = Profile::create(title, uid); + m_currentNode = m_head = m_profile->head(); if (exec) - addParentForConsoleStart(exec, startTime); + addParentForConsoleStart(exec); } class AddParentForConsoleStartFunctor { public: - AddParentForConsoleStartFunctor(ExecState* exec, RefPtr<ProfileNode>& rootNode, RefPtr<ProfileNode>& currentNode, double startTime) + AddParentForConsoleStartFunctor(ExecState* exec, RefPtr<ProfileNode>& head, RefPtr<ProfileNode>& currentNode) : m_exec(exec) , m_hasSkippedFirstFrame(false) , m_foundParent(false) - , m_rootNode(rootNode) + , m_head(head) , m_currentNode(currentNode) - , m_startTime(startTime) { } @@ -80,11 +78,10 @@ public: } unsigned line = 0; - unsigned column = 0; - visitor->computeLineAndColumn(line, column); - m_currentNode = ProfileNode::create(m_exec, LegacyProfiler::createCallIdentifier(m_exec, visitor->callee(), visitor->sourceURL(), line, column), m_rootNode.get()); - m_currentNode->appendCall(ProfileNode::Call(m_startTime)); - m_rootNode->spliceNode(m_currentNode.get()); + unsigned unusedColumn = 0; + visitor->computeLineAndColumn(line, unusedColumn); + m_currentNode = ProfileNode::create(m_exec, LegacyProfiler::createCallIdentifier(m_exec, visitor->callee(), visitor->sourceURL(), line), m_head.get(), m_head.get()); + m_head->insertNode(m_currentNode.get()); m_foundParent = true; return StackVisitor::Done; @@ -93,18 +90,20 @@ public: private: ExecState* m_exec; bool m_hasSkippedFirstFrame; - bool m_foundParent; - RefPtr<ProfileNode>& m_rootNode; + bool m_foundParent; + RefPtr<ProfileNode>& m_head; RefPtr<ProfileNode>& m_currentNode; - double m_startTime; }; -void ProfileGenerator::addParentForConsoleStart(ExecState* exec, double startTime) +void ProfileGenerator::addParentForConsoleStart(ExecState* exec) { - AddParentForConsoleStartFunctor functor(exec, m_rootNode, m_currentNode, startTime); + AddParentForConsoleStartFunctor functor(exec, m_head, m_currentNode); exec->iterate(functor); - m_foundConsoleStartParent = functor.foundParent(); + if (!functor.foundParent()) { + m_currentNode = ProfileNode::create(exec, LegacyProfiler::createCallIdentifier(exec, JSValue(), String(), 0), m_head.get(), m_head.get()); + m_head->insertNode(m_currentNode.get()); + } } const String& ProfileGenerator::title() const @@ -112,92 +111,46 @@ const String& ProfileGenerator::title() const return m_profile->title(); } -void ProfileGenerator::beginCallEntry(ProfileNode* node, double startTime) -{ - ASSERT_ARG(node, node); - - if (std::isnan(startTime)) - startTime = m_stopwatch->elapsedTime(); - - node->appendCall(ProfileNode::Call(startTime)); -} - -void ProfileGenerator::endCallEntry(ProfileNode* node) -{ - ASSERT_ARG(node, node); - - ProfileNode::Call& last = node->lastCall(); - - double previousElapsedTime = std::isnan(last.elapsedTime()) ? 0.0 : last.elapsedTime(); - double newlyElapsedTime = m_stopwatch->elapsedTime() - last.startTime(); - last.setElapsedTime(previousElapsedTime + newlyElapsedTime); -} - void ProfileGenerator::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) { if (JAVASCRIPTCORE_PROFILE_WILL_EXECUTE_ENABLED()) { - CString name = callIdentifier.functionName().utf8(); - CString url = callIdentifier.url().utf8(); - JAVASCRIPTCORE_PROFILE_WILL_EXECUTE(m_profileGroup, const_cast<char*>(name.data()), const_cast<char*>(url.data()), callIdentifier.lineNumber(), callIdentifier.columnNumber()); + CString name = callIdentifier.m_name.utf8(); + CString url = callIdentifier.m_url.utf8(); + JAVASCRIPTCORE_PROFILE_WILL_EXECUTE(m_profileGroup, const_cast<char*>(name.data()), const_cast<char*>(url.data()), callIdentifier.m_lineNumber); } if (!m_origin) return; - if (m_suspended) - return; - - RefPtr<ProfileNode> calleeNode = nullptr; - - // Find or create a node for the callee call frame. - for (const RefPtr<ProfileNode>& child : m_currentNode->children()) { - if (child->callIdentifier() == callIdentifier) - calleeNode = child; - } - - if (!calleeNode) { - calleeNode = ProfileNode::create(callerCallFrame, callIdentifier, m_currentNode.get()); - m_currentNode->addChild(calleeNode); - } - - m_currentNode = calleeNode; - beginCallEntry(calleeNode.get(), m_stopwatch->elapsedTime()); + ASSERT(m_currentNode); + m_currentNode = m_currentNode->willExecute(callerCallFrame, callIdentifier); } void ProfileGenerator::didExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) { if (JAVASCRIPTCORE_PROFILE_DID_EXECUTE_ENABLED()) { - CString name = callIdentifier.functionName().utf8(); - CString url = callIdentifier.url().utf8(); - JAVASCRIPTCORE_PROFILE_DID_EXECUTE(m_profileGroup, const_cast<char*>(name.data()), const_cast<char*>(url.data()), callIdentifier.lineNumber(), callIdentifier.columnNumber()); + CString name = callIdentifier.m_name.utf8(); + CString url = callIdentifier.m_url.utf8(); + JAVASCRIPTCORE_PROFILE_DID_EXECUTE(m_profileGroup, const_cast<char*>(name.data()), const_cast<char*>(url.data()), callIdentifier.m_lineNumber); } if (!m_origin) return; - if (m_suspended) - return; - - // Make a new node if the caller node has never seen this callee call frame before. - // This can happen if |console.profile()| is called several frames deep in the call stack. ASSERT(m_currentNode); if (m_currentNode->callIdentifier() != callIdentifier) { - RefPtr<ProfileNode> calleeNode = ProfileNode::create(callerCallFrame, callIdentifier, m_currentNode.get()); - beginCallEntry(calleeNode.get(), m_currentNode->lastCall().startTime()); - endCallEntry(calleeNode.get()); - m_currentNode->spliceNode(calleeNode.release()); + RefPtr<ProfileNode> returningNode = ProfileNode::create(callerCallFrame, callIdentifier, m_head.get(), m_currentNode.get()); + returningNode->setStartTime(m_currentNode->startTime()); + returningNode->didExecute(); + m_currentNode->insertNode(returningNode.release()); return; } - endCallEntry(m_currentNode.get()); - m_currentNode = m_currentNode->parent(); + m_currentNode = m_currentNode->didExecute(); } void ProfileGenerator::exceptionUnwind(ExecState* handlerCallFrame, const CallIdentifier&) { - if (m_suspended) - return; - // If the current node was called by the handler (==) or any // more nested function (>) the we have exited early from it. ASSERT(m_currentNode); @@ -209,44 +162,56 @@ void ProfileGenerator::exceptionUnwind(ExecState* handlerCallFrame, const CallId void ProfileGenerator::stopProfiling() { - for (ProfileNode* node = m_currentNode.get(); node != m_profile->rootNode(); node = node->parent()) - endCallEntry(node); + m_profile->forEach(&ProfileNode::stopProfiling); - if (m_foundConsoleStartParent) { - removeProfileStart(); - removeProfileEnd(); - } + removeProfileStart(); + removeProfileEnd(); ASSERT(m_currentNode); // Set the current node to the parent, because we are in a call that // will not get didExecute call. m_currentNode = m_currentNode->parent(); + + if (double headSelfTime = m_head->selfTime()) { + RefPtr<ProfileNode> idleNode = ProfileNode::create(0, CallIdentifier(NonJSExecution, String(), 0), m_head.get(), m_head.get()); + + idleNode->setTotalTime(headSelfTime); + idleNode->setSelfTime(headSelfTime); + + m_head->setSelfTime(0.0); + m_head->addChild(idleNode.release()); + } } // The console.profile that started this ProfileGenerator will be the first child. void ProfileGenerator::removeProfileStart() { - ProfileNode* currentNode = nullptr; - for (ProfileNode* next = m_rootNode.get(); next; next = next->firstChild()) + ProfileNode* currentNode = 0; + for (ProfileNode* next = m_head.get(); next; next = next->firstChild()) currentNode = next; - if (currentNode->callIdentifier().functionName() != "profile") + if (currentNode->callIdentifier().m_name != "profile") return; + // Attribute the time of the node aobut to be removed to the self time of its parent + currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime()); currentNode->parent()->removeChild(currentNode); } // The console.profileEnd that stopped this ProfileGenerator will be the last child. void ProfileGenerator::removeProfileEnd() { - ProfileNode* currentNode = nullptr; - for (ProfileNode* next = m_rootNode.get(); next; next = next->lastChild()) + ProfileNode* currentNode = 0; + for (ProfileNode* next = m_head.get(); next; next = next->lastChild()) currentNode = next; - if (currentNode->callIdentifier().functionName() != "profileEnd") + if (currentNode->callIdentifier().m_name != "profileEnd") return; + // Attribute the time of the node aobut to be removed to the self time of its parent + currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime()); + ASSERT(currentNode->callIdentifier() == (currentNode->parent()->children()[currentNode->parent()->children().size() - 1])->callIdentifier()); currentNode->parent()->removeChild(currentNode); } |
