Searched defs:newCodeBlock (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp326 ALWAYS_INLINE CallFrame* Interpreter::slideRegisterWindowForCall(CodeBlock* newCodeBlock, RegisterFile* registerFile, CallFrame* callFrame, size_t registerOffset, int argc) argument
329 Register* newEnd = r + registerOffset + newCodeBlock->m_numCalleeRegisters;
331 if (LIKELY(argc == newCodeBlock->m_numParameters)) { // correct number of arguments
335 } else if (argc < newCodeBlock->m_numParameters) { // too few arguments -- fill in the blanks
336 size_t omittedArgCount = newCodeBlock->m_numParameters - argc;
347 size_t numParameters = newCodeBlock->m_numParameters;
818 CodeBlock* newCodeBlock = &callData.js.functionExecutable->generatedBytecodeForCall(); local
819 newCallFrame = slideRegisterWindowForCall(newCodeBlock, &m_registerFile, newCallFrame, registerOffset, argCount);
825 newCallFrame->init(newCodeBlock, 0, callDataScopeChain, callFrame->addHostCallFrameFlag(), argCount, function);
907 CodeBlock* newCodeBlock local
[all...]
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp1975 CodeBlock* newCodeBlock = &callee->jsExecutable()->generatedBytecodeForCall(); local
1979 ASSERT(argCount != newCodeBlock->m_numParameters);
1984 if (argCount > newCodeBlock->m_numParameters) {
1985 size_t numParameters = newCodeBlock->m_numParameters;
1987 Register* newEnd = r + newCodeBlock->m_numCalleeRegisters;
2000 size_t omittedArgCount = newCodeBlock->m_numParameters - argCount;
2002 Register* newEnd = r + newCodeBlock->m_numCalleeRegisters;
2034 CodeBlock* newCodeBlock = &callee->jsExecutable()->generatedBytecodeForConstruct(); local
2038 ASSERT(argCount != newCodeBlock->m_numParameters);
2043 if (argCount > newCodeBlock
[all...]

Completed in 3038 milliseconds