HomeSort by relevance Sort by last modified time
    Searched refs:didExecute (Results 1 - 8 of 8) sorted by null

  /external/webkit/JavaScriptCore/profiler/
Profiler.h 62 void didExecute(ExecState*, JSValue function);
63 void didExecute(ExecState*, const UString& sourceURL, int startingLineNumber);
ProfileGenerator.h 54 void didExecute(const CallIdentifier&);
Profiler.cpp 124 void Profiler::didExecute(ExecState* exec, JSValue function)
128 dispatchFunctionToProfiles(m_currentProfiles, &ProfileGenerator::didExecute, createCallIdentifier(exec, function, "", 0), exec->lexicalGlobalObject()->profileGroup());
131 void Profiler::didExecute(ExecState* exec, const UString& sourceURL, int startingLineNumber)
135 dispatchFunctionToProfiles(m_currentProfiles, &ProfileGenerator::didExecute, createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumber), exec->lexicalGlobalObject()->profileGroup());
ProfileGenerator.cpp 90 void ProfileGenerator::didExecute(const CallIdentifier& callIdentifier)
105 returningNode->didExecute();
110 m_currentNode = m_currentNode->didExecute();
123 // will not get didExecute call.
ProfileNode.cpp 105 ProfileNode* ProfileNode::didExecute()
ProfileNode.h 58 ProfileNode* didExecute();
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 463 profiler->didExecute(callFrame, callFrame->callee());
465 profiler->didExecute(callFrame, codeBlock->ownerExecutable()->sourceURL(), codeBlock->ownerExecutable()->lineNo());
546 profiler->didExecute(callFrame, callFrame->r(codeBlock->instructions()[bytecodeOffset + 2].u.operand).jsValue());
548 profiler->didExecute(callFrame, callFrame->r(codeBlock->instructions()[bytecodeOffset + 10].u.operand).jsValue());
552 profiler->didExecute(callFrame, callFrame->r(functionRegisterIndex).jsValue());
628 (*profiler)->didExecute(callFrame, program->sourceURL(), program->lineNo());
694 (*profiler)->didExecute(callFrame, function);
762 (*profiler)->didExecute(closure.oldCallFrame, closure.function);
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]

Completed in 133 milliseconds