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

/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp4793 CallFrame* functionCallFrame = findFunctionCallFrame(callFrame, function); local
4794 if (!functionCallFrame)
4797 CodeBlock* codeBlock = functionCallFrame->codeBlock();
4802 if (JSValue arguments = functionCallFrame->uncheckedR(argumentsRegister).jsValue())
4804 JSValue arguments = JSValue(new (callFrame) Arguments(functionCallFrame));
4805 functionCallFrame->r(argumentsRegister) = arguments;
4806 functionCallFrame->r(realArgumentsRegister) = arguments;
4810 Arguments* arguments = new (functionCallFrame) Arguments(functionCallFrame);
4811 arguments->copyRegisters(functionCallFrame
4817 CallFrame* functionCallFrame = findFunctionCallFrame(callFrame, function); local
[all...]

Completed in 63 milliseconds