Home
last modified time | relevance | path

Searched refs:m_numParameters (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/JavaScriptCore/jit/
DJIT.cpp506 branch32(Equal, regT1, TrustedImm32(m_codeBlock->m_numParameters)).linkTo(beginLabel, this); in privateCompile()
603 if (!calleeCodeBlock || (callerArgCount == calleeCodeBlock->m_numParameters)) { in linkCall()
620 if (!calleeCodeBlock || (callerArgCount == calleeCodeBlock->m_numParameters)) { in linkConstruct()
DJITStubs.cpp1979 ASSERT(argCount != newCodeBlock->m_numParameters); in DEFINE_STUB_FUNCTION()
1984 if (argCount > newCodeBlock->m_numParameters) { in DEFINE_STUB_FUNCTION()
1985 size_t numParameters = newCodeBlock->m_numParameters; in DEFINE_STUB_FUNCTION()
2000 size_t omittedArgCount = newCodeBlock->m_numParameters - argCount; in DEFINE_STUB_FUNCTION()
2038 ASSERT(argCount != newCodeBlock->m_numParameters); in DEFINE_STUB_FUNCTION()
2043 if (argCount > newCodeBlock->m_numParameters) { in DEFINE_STUB_FUNCTION()
2044 size_t numParameters = newCodeBlock->m_numParameters; in DEFINE_STUB_FUNCTION()
2059 size_t omittedArgCount = newCodeBlock->m_numParameters - argCount; in DEFINE_STUB_FUNCTION()
2106 … if (callFrame->argumentCountIncludingThis() == static_cast<size_t>(codeBlock->m_numParameters)) in DEFINE_STUB_FUNCTION()
2140 … if (callFrame->argumentCountIncludingThis() == static_cast<size_t>(codeBlock->m_numParameters)) in DEFINE_STUB_FUNCTION()
DJITOpcodes.cpp1231 if (m_codeBlock->m_numParameters == 1) in emit_op_create_arguments()
1573 int numArgs = m_codeBlock->m_numParameters; in emit_op_get_argument_by_val()
1602 if (m_codeBlock->m_numParameters == 1) in emitSlow_op_get_argument_by_val()
1679 int expectedParams = m_codeBlock->m_numParameters - 1; in emit_op_load_varargs()
1728 int expectedParams = m_codeBlock->m_numParameters - 1; in emitSlow_op_load_varargs()
DJITOpcodes32_64.cpp1558 if (m_codeBlock->m_numParameters == 1) in emit_op_create_arguments()
1708 int numArgs = m_codeBlock->m_numParameters; in emit_op_get_argument_by_val()
1739 if (m_codeBlock->m_numParameters == 1) in emitSlow_op_get_argument_by_val()
/external/webkit/Source/JavaScriptCore/runtime/
DExecutable.cpp256 m_numParametersForCall = m_codeBlockForCall->m_numParameters; in compileForCallInternal()
304 m_numParametersForConstruct = m_codeBlockForConstruct->m_numParameters; in compileForConstructInternal()
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp331 if (LIKELY(argc == newCodeBlock->m_numParameters)) { // correct number of arguments in slideRegisterWindowForCall()
335 } else if (argc < newCodeBlock->m_numParameters) { // too few arguments -- fill in the blanks in slideRegisterWindowForCall()
336 size_t omittedArgCount = newCodeBlock->m_numParameters - argc; in slideRegisterWindowForCall()
347 size_t numParameters = newCodeBlock->m_numParameters; in slideRegisterWindowForCall()
468 it = callFrame->registers() - RegisterFile::CallFrameHeaderSize - codeBlock->m_numParameters; in dumpRegisters()
475 end = it + max(codeBlock->m_numParameters - 1, 0); // - 1 to skip "this" in dumpRegisters()
743 …Register* newEnd = oldEnd + codeBlock->m_numParameters + RegisterFile::CallFrameHeaderSize + codeB… in execute()
751 …CallFrame* newCallFrame = CallFrame::create(oldEnd + codeBlock->m_numParameters + RegisterFile::Ca… in execute()
752 ASSERT(codeBlock->m_numParameters == 1); // 1 parameter for 'this'. in execute()
753 …newCallFrame->init(codeBlock, 0, scopeChain, CallFrame::noCaller(), codeBlock->m_numParameters, 0); in execute()
[all …]
/external/webkit/Source/JavaScriptCore/dfg/
DDFGJITCompiler.h207 …return Address(callFrameRegister, (argument - (m_codeBlock->m_numParameters + RegisterFile::CallFr… in addressForArgument()
DDFGByteCodeParser.cpp59 , m_arguments(codeBlock->m_numParameters) in ByteCodeParser()
161 … unsigned argument = operand + m_codeBlock->m_numParameters + RegisterFile::CallFrameHeaderSize; in getArgument()
178 … unsigned argument = operand + m_codeBlock->m_numParameters + RegisterFile::CallFrameHeaderSize; in setArgument()
DDFGJITCompiler.cpp338 branch32(Equal, regT1, Imm32(m_codeBlock->m_numParameters)).linkTo(fromArityCheck, this); in compileFunction()
/external/webkit/Source/JavaScriptCore/bytecompiler/
DBytecodeGenerator.cpp237 m_codeBlock->m_numParameters = 1; // Allocate space for "this" in BytecodeGenerator()
244 …m_globalVarStorageOffset = -RegisterFile::CallFrameHeaderSize - m_codeBlock->m_numParameters - reg… in BytecodeGenerator()
459 ++m_codeBlock->m_numParameters; in BytecodeGenerator()
519 m_codeBlock->m_numParameters = 1; // Allocate space for "this" in BytecodeGenerator()
555 ++m_codeBlock->m_numParameters; in addParameter()
1738 } else if (m_codeBlock->usesArguments() && m_codeBlock->m_numParameters > 1 in emitReturn()
/external/webkit/Source/JavaScriptCore/bytecode/
DCodeBlock.h470 int m_numParameters; variable
DCodeBlock.cpp346 this, m_numParameters, m_numCalleeRegisters); in dump()
1367 , m_numParameters(0) in CodeBlock()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2010-05-2420674 Add m_numParameters.