Searched refs:m_numParameters (Results 1 – 13 of 13) sorted by relevance
/external/webkit/Source/JavaScriptCore/jit/ |
D | JIT.cpp | 506 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()
|
D | JITStubs.cpp | 1979 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()
|
D | JITOpcodes.cpp | 1231 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()
|
D | JITOpcodes32_64.cpp | 1558 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/ |
D | Executable.cpp | 256 m_numParametersForCall = m_codeBlockForCall->m_numParameters; in compileForCallInternal() 304 m_numParametersForConstruct = m_codeBlockForConstruct->m_numParameters; in compileForConstructInternal()
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 331 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/ |
D | DFGJITCompiler.h | 207 …return Address(callFrameRegister, (argument - (m_codeBlock->m_numParameters + RegisterFile::CallFr… in addressForArgument()
|
D | DFGByteCodeParser.cpp | 59 , 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()
|
D | DFGJITCompiler.cpp | 338 branch32(Equal, regT1, Imm32(m_codeBlock->m_numParameters)).linkTo(fromArityCheck, this); in compileFunction()
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | BytecodeGenerator.cpp | 237 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/ |
D | CodeBlock.h | 470 int m_numParameters; variable
|
D | CodeBlock.cpp | 346 this, m_numParameters, m_numCalleeRegisters); in dump() 1367 , m_numParameters(0) in CodeBlock()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 20674 Add m_numParameters.
|