Home | History | Annotate | Download | only in interpreter

Lines Matching refs:m_numParameters

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;
468 it = callFrame->registers() - RegisterFile::CallFrameHeaderSize - codeBlock->m_numParameters;
475 end = it + max(codeBlock->m_numParameters - 1, 0); // - 1 to skip "this"
743 Register* newEnd = oldEnd + codeBlock->m_numParameters + RegisterFile::CallFrameHeaderSize + codeBlock->m_numCalleeRegisters;
751 CallFrame* newCallFrame = CallFrame::create(oldEnd + codeBlock->m_numParameters + RegisterFile::CallFrameHeaderSize);
752 ASSERT(codeBlock->m_numParameters == 1); // 1 parameter for 'this'.
753 newCallFrame->init(codeBlock, 0, scopeChain, CallFrame::noCaller(), codeBlock->m_numParameters, 0);
1011 CallFrameClosure result = { callFrame, newCallFrame, function, FunctionExecutable, scopeChain->globalData, oldEnd, scopeChain, codeBlock->m_numParameters, argc };
1057 return execute(eval, callFrame, thisObj, m_registerFile.size() + eval->generatedBytecode().m_numParameters + RegisterFile::CallFrameHeaderSize, scopeChain);
1120 ASSERT(codeBlock->m_numParameters == 1); // 1 parameter for 'this'.
1121 newCallFrame->init(codeBlock, 0, scopeChain, callFrame->addHostCallFrameFlag(), codeBlock->m_numParameters, 0);
3237 unsigned numParameters = callFrame->codeBlock()->m_numParameters;