OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_numParameters
(Results
1 - 12
of
12
) sorted by null
/external/webkit/Source/JavaScriptCore/jit/
JIT.cpp
506
branch32(Equal, regT1, TrustedImm32(m_codeBlock->
m_numParameters
)).linkTo(beginLabel, this);
603
if (!calleeCodeBlock || (callerArgCount == calleeCodeBlock->
m_numParameters
)) {
620
if (!calleeCodeBlock || (callerArgCount == calleeCodeBlock->
m_numParameters
)) {
JITStubs.cpp
[
all
...]
JITOpcodes.cpp
[
all
...]
JITOpcodes32_64.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
Executable.cpp
256
m_numParametersForCall = m_codeBlockForCall->
m_numParameters
;
304
m_numParametersForConstruct = m_codeBlockForConstruct->
m_numParameters
;
/external/webkit/Source/JavaScriptCore/dfg/
DFGJITCompiler.h
207
return Address(callFrameRegister, (argument - (m_codeBlock->
m_numParameters
+ RegisterFile::CallFrameHeaderSize)) * sizeof(Register));
DFGByteCodeParser.cpp
59
, m_arguments(codeBlock->
m_numParameters
)
161
unsigned argument = operand + m_codeBlock->
m_numParameters
+ RegisterFile::CallFrameHeaderSize;
178
unsigned argument = operand + m_codeBlock->
m_numParameters
+ RegisterFile::CallFrameHeaderSize;
[
all
...]
DFGJITCompiler.cpp
338
branch32(Equal, regT1, Imm32(m_codeBlock->
m_numParameters
)).linkTo(fromArityCheck, this);
/external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp
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)
[
all
...]
/external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp
237
m_codeBlock->
m_numParameters
= 1; // Allocate space for "this"
244
m_globalVarStorageOffset = -RegisterFile::CallFrameHeaderSize - m_codeBlock->
m_numParameters
- registerFile->size();
459
++m_codeBlock->
m_numParameters
;
519
m_codeBlock->
m_numParameters
= 1; // Allocate space for "this"
555
++m_codeBlock->
m_numParameters
;
[
all
...]
/external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h
470
int
m_numParameters
;
CodeBlock.cpp
346
this,
m_numParameters
, m_numCalleeRegisters);
[
all
...]
Completed in 1087 milliseconds