OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:callerCallFrame
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/JavaScriptCore/profiler/
Profiler.cpp
123
void Profiler::willExecute(ExecState*
callerCallFrame
, JSValue function)
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)
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)
143
dispatchFunctionToProfiles(
callerCallFrame
, m_currentProfiles, &ProfileGenerator::didExecute, createCallIdentifier(callerCallFrame, function, (…)
[
all
...]
Profiler.h
63
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);
ProfileGenerator.h
54
void willExecute(ExecState*
callerCallFrame
, const CallIdentifier&);
55
void didExecute(ExecState*
callerCallFrame
, const CallIdentifier&);
ProfileGenerator.cpp
75
void ProfileGenerator::willExecute(ExecState*
callerCallFrame
, const CallIdentifier& callIdentifier)
87
m_currentNode = m_currentNode->willExecute(
callerCallFrame
, callIdentifier);
90
void ProfileGenerator::didExecute(ExecState*
callerCallFrame
, const CallIdentifier& callIdentifier)
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());
ProfileNode.h
48
static PassRefPtr<ProfileNode> create(ExecState*
callerCallFrame
, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
50
return adoptRef(new ProfileNode(
callerCallFrame
, callIdentifier, headNode, parentNode));
52
static PassRefPtr<ProfileNode> create(ExecState*
callerCallFrame
, ProfileNode* headNode, ProfileNode* node)
54
return adoptRef(new ProfileNode(
callerCallFrame
, headNode, node));
59
ProfileNode* willExecute(ExecState*
callerCallFrame
, const CallIdentifier&);
65
ExecState*
callerCallFrame
() const { return m_callerCallFrame; }
133
ProfileNode(ExecState*
callerCallFrame
, const CallIdentifier&, ProfileNode* headNode, ProfileNode* parentNode);
134
ProfileNode(ExecState*
callerCallFrame
, ProfileNode* headNode, ProfileNode* nodeToCopy);
ProfileNode.cpp
59
ProfileNode::ProfileNode(ExecState*
callerCallFrame
, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
60
: m_callerCallFrame(
callerCallFrame
)
76
ProfileNode::ProfileNode(ExecState*
callerCallFrame
, ProfileNode* headNode, ProfileNode* nodeToCopy)
77
: m_callerCallFrame(
callerCallFrame
)
92
ProfileNode* ProfileNode::willExecute(ExecState*
callerCallFrame
, const CallIdentifier& callIdentifier)
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 376 milliseconds