Searched refs:callerCallFrame (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/profiler/
H A DProfiler.cpp123 void Profiler::willExecute(ExecState* callerCallFrame, JSValue function) argument
127 dispatchFunctionToProfiles(callerCallFrame, m_currentProfiles, &ProfileGenerator::willExecute, createCallIdentifier(callerCallFrame, function, "", 0), callerCallFrame->lexicalGlobalObject()->profileGroup());
130 void Profiler::willExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNumber) argument
134 CallIdentifier callIdentifier = createCallIdentifier(callerCallFrame, JSValue(), sourceURL, startingLineNumber);
136 dispatchFunctionToProfiles(callerCallFrame, m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, callerCallFrame->lexicalGlobalObject()->profileGroup());
139 void Profiler::didExecute(ExecState* callerCallFrame, JSValue function) argument
143 dispatchFunctionToProfiles(callerCallFrame, m_currentProfile
146 didExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNumber) argument
[all...]
H A DProfiler.h63 void willExecute(ExecState* callerCallFrame, JSValue function);
64 void willExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNumber);
65 void didExecute(ExecState* callerCallFrame, JSValue function);
66 void didExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNumber);
H A DProfileGenerator.cpp75 void ProfileGenerator::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) argument
87 m_currentNode = m_currentNode->willExecute(callerCallFrame, callIdentifier);
90 void ProfileGenerator::didExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) argument
103 RefPtr<ProfileNode> returningNode = ProfileNode::create(callerCallFrame, callIdentifier, m_head.get(), m_currentNode.get());
118 while (m_currentNode->callerCallFrame() >= handlerCallFrame) {
119 didExecute(m_currentNode->callerCallFrame(), m_currentNode->callIdentifier());
H A DProfileGenerator.h54 void willExecute(ExecState* callerCallFrame, const CallIdentifier&);
55 void didExecute(ExecState* callerCallFrame, const CallIdentifier&);
H A DProfileNode.h48 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode) argument
50 return adoptRef(new ProfileNode(callerCallFrame, callIdentifier, headNode, parentNode));
52 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNode* node) argument
54 return adoptRef(new ProfileNode(callerCallFrame, headNode, node));
59 ProfileNode* willExecute(ExecState* callerCallFrame, const CallIdentifier&);
65 ExecState* callerCallFrame() const { return m_callerCallFrame; } function in class:JSC::ProfileNode
133 ProfileNode(ExecState* callerCallFrame, const CallIdentifier&, ProfileNode* headNode, ProfileNode* parentNode);
134 ProfileNode(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNode* nodeToCopy);
H A DProfileNode.cpp59 ProfileNode::ProfileNode(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode) argument
60 : m_callerCallFrame(callerCallFrame)
76 ProfileNode::ProfileNode(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNode* nodeToCopy) argument
77 : m_callerCallFrame(callerCallFrame)
92 ProfileNode* ProfileNode::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) argument
101 RefPtr<ProfileNode> newChild = ProfileNode::create(callerCallFrame, callIdentifier, m_head ? m_head : this, this); // If this ProfileNode has no head it is the head.

Completed in 57 milliseconds